*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

button {
  cursor: pointer;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

span {
  display: inline-block;
}

.l-header {
  height: 47px;
  width: 100%;
  z-index: 20;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1200px) {
  .l-header {
    height: 77px;
    background: #fff;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .l-header__inner {
    padding-inline: 40px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.l-header__logo {
  position: fixed;
  top: 0;
  left: 16px;
  z-index: 100;
}
.l-header__logo a {
  cursor: pointer;
}
.l-header__logo a img {
  width: 52.756px;
  display: block;
}
@media screen and (min-width: 900px) {
  .l-header__logo a img {
    width: 88px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    left: 43px;
  }
}

.l-header__nav {
  width: 100%;
  height: 100%;
  z-index: 80;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: inherit;
}

.l-header__list-item {
  font-weight: 700;
  letter-spacing: 0.48px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 1.125rem;
  letter-spacing: 0.027px;
  line-height: 1.7;
  padding-block: 10px;
  cursor: pointer;
}
.l-header__list-item:hover {
  color: #2c82d1;
}

.l-drawer {
  width: 100%;
  top: 0;
  z-index: 40;
  position: fixed;
  right: 0;
  padding: 40px 32px 32px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  background: var(--cta-gra, linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%));
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.l-drawer.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l-drawer__list {
  margin: 0 auto;
  max-width: 326px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-drawer__list-item {
  padding-top: 20px;
  padding-bottom: 19px;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.48px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #fff;
  font-size: 1.375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 1.1px;
}
.l-drawer__list-item:last-of-type {
  padding-bottom: 20px;
}
.l-drawer__list-item:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}

.l-drawer__policy {
  margin-top: 21px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-drawer__policy-item {
  padding-block: 8px;
}

.l-drawer__buttonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  text-align: center;
  margin-top: 20px;
  position: relative;
}

.l-drawer__icon {
  margin-left: auto;
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--cta-gra, linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%));
  min-width: 118px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 41;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
}
@media screen and (min-width: 1200px) {
  .l-drawer__icon {
    display: none;
  }
}
.l-drawer__icon.is-checked {
  background: transparent;
}
.l-drawer__icon.is-checked .l-drawer__icon-bar:nth-of-type(1) {
  top: 9px;
  right: -3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-drawer__icon.is-checked .l-drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.is-checked .l-drawer__icon-bar:nth-of-type(3) {
  top: 9px;
  right: -3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-drawer__icon.is-checked .l-drawer__icon-menu {
  color: transparent;
}

.l-drawer__icon-menu {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.027px;
  color: #fff;
}

.l-drawer__icon-barWrap {
  position: relative;
  width: 20px;
  height: 18px;
  z-index: 41;
}

.l-drawer__icon-bar {
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  right: 0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.l-drawer__icon-bar:nth-of-type(1) {
  top: 0;
}
.l-drawer__icon-bar:nth-of-type(2) {
  top: 8px;
}
.l-drawer__icon-bar:nth-of-type(3) {
  top: 16px;
}

.l-inner {
  padding-inline: 17px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1208px;
    padding-inline: 44px;
  }
}
@media screen and (min-width: 900px) {
  .l-inner {
    max-width: 1200px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-inner {
    width: 100%;
  }
}

.l-footer {
  background: #222222;
  padding-block: 24px;
  color: #fff;
  margin-top: auto;
}

.l-footer__inner {
  padding-inline: 40px;
  margin-inline: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .l-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    text-align: left;
    gap: 0;
  }
}

@media screen and (min-width: 1200px) {
  .l-footer__left {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-footer__logo {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .l-footer__logo {
    text-align: left;
  }
}

.l-footer__address {
  text-align: center;
  margin-top: 32px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .l-footer__address {
    text-align: left;
  }
}

.l-footer__address-company {
  font-weight: 500;
  line-height: 1.9;
}
@media screen and (min-width: 1200px) {
  .l-footer__address-company {
    font-size: 1.125rem;
  }
}

.l-footer__address-text {
  line-height: 1.6;
}
@media screen and (min-width: 1200px) {
  .l-footer__address-text {
    line-height: 1.7;
    letter-spacing: 0.027px;
    font-size: 1.125rem;
  }
}

.l-footer__right {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .l-footer__right {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__poricy {
  margin-top: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .l-footer__poricy {
    font-size: 1.125rem;
    letter-spacing: 0.8px;
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__poricy {
    margin-top: 0;
    line-height: 1.7;
    letter-spacing: 0.027px;
  }
}

.l-footer__copyright {
  display: block;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  color: #fff;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .l-footer__copyright {
    margin-top: auto;
  }
}

.l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.c-section-heading {
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-heading {
    font-size: clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem);
  }
}

.c-section-headingWrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-section-heading--blue {
  background: #2c82d1;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: 0 8px;
  letter-spacing: 0.8px;
  line-height: 1.9;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -ms-writing-mode: initial;
  -webkit-writing-mode: initial;
          writing-mode: initial;
  text-orientation: initial;
}
@media screen and (min-width: 1200px) {
  .c-section-heading--blue {
    font-size: 1.5rem;
    left: 0;
    padding: 24px 16px;
    line-height: 1.5;
    letter-spacing: 0.72px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: sideways;
    -webkit-transform: none;
            transform: none;
  }
}

.c-section-heading--black {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  line-height: 1.9;
  background: #222;
  padding: 4px 16px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1200px) {
  .c-section-heading--black {
    padding: 8px 16px;
  }
}

.c-button-drawer--contact {
  color: #32437f;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.027px;
  background: #fff;
  padding: 14.5px 32px;
  min-width: 326px;
  border-radius: 100px;
  text-align: center;
}

.c-button-drawer--close {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.027px;
  background: transparent;
  border: 1px solid #fff;
  padding: 13.5px 31px;
  min-width: 326px;
  border-radius: 100px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-button-drawer--close:hover {
  background: #fff;
  color: #32437f;
}

.c-button {
  display: inline-block;
  font-weight: 700;
}

.c-button-cta {
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.027px;
  border-radius: 50px;
  background: linear-gradient(113deg, #2c82d1 25.94%, #32437f 111.78%);
  line-height: 1.7;
  padding: 14.5px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  min-width: 343px;
  width: 100%;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  position: relative;
  z-index: 0;
  max-width: 680px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-button-cta::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/contain;
  width: 16px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}
.c-button-cta:hover::before {
  opacity: 1;
}
.c-button-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #32437f;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  border-radius: 50px;
  max-width: 680px;
}
@media screen and (min-width: 1200px) {
  .c-button-cta {
    font-size: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%);
    width: 360px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.72px;
    line-height: 1.5;
    padding-right: 40px;
  }
  .c-button-cta:hover::before {
    opacity: 1;
  }
  .c-button-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #32437f;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    max-width: 360px;
    height: 100px;
    border-radius: 16px;
  }
  .c-button-cta::after {
    position: absolute;
    content: "";
    background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/cover;
    width: 16px;
    height: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 84.5px;
  }
}

.c-button-cta2 {
  color: #fff;
  font-size: 1.125rem;
  letter-spacing: 0.027px;
  border-radius: 50px;
  background: linear-gradient(113deg, #f7d1a1 25.94%, #FF8F00 111.78%);
  line-height: 1.7;
  padding: 14.5px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  min-width: 343px;
  width: 100%;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  position: relative;
  z-index: 0;
  max-width: 680px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.c-button-cta2::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/contain;
  width: 16px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}
.c-button-cta2:hover::before {
  opacity: 1;
}
.c-button-cta2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #FF8F00;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  border-radius: 50px;
  max-width: 680px;
}
@media screen and (min-width: 1200px) {
  .c-button-cta2 {
    font-size: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(111deg, #f7d1a1 3.79%, #FF8F00 100%);
    width: 360px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 0.72px;
    line-height: 1.5;
    padding-right: 40px;
  }
  .c-button-cta2:hover::before {
    opacity: 1;
  }
  .c-button-cta2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #FF8F00;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    max-width: 360px;
    height: 100px;
    border-radius: 16px;
  }
  .c-button-cta2::after {
    position: absolute;
    content: "";
    background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/cover;
    width: 16px;
    height: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 84.5px;
  }
}

.c-button-contact {
  line-height: 1.7;
  letter-spacing: 0.027px;
}
@media screen and (min-width: 1200px) {
  .c-button-contact {
    color: #fff;
    border-radius: 100px;
    background: var(--cta-gra, linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%));
    padding: 8px 32px;
    font-size: 1.125rem;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    position: relative;
    z-index: 0;
  }
  .c-button-contact:hover::before {
    opacity: 1;
  }
  .c-button-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #32437f;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    border-radius: 100px;
  }
}

.c-button-contact2 {
  line-height: 1.7;
  letter-spacing: 0.027px;
}
@media screen and (min-width: 1200px) {
  .c-button-contact2 {
    color: #fff;
    border-radius: 100px;
    background: var(--cta-gra, linear-gradient(111deg, #f7d1a1 3.79%, #ff8f00 100%));
    padding: 8px 32px;
    font-size: 1.125rem;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    position: relative;
    z-index: 0;
  }
  .c-button-contact2:hover::before {
    opacity: 1;
  }
  .c-button-contact2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #ff8f00;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    border-radius: 100px;
  }
}

.c-button-contact--mv {
  font-size: 1.5rem;
  letter-spacing: 0.027px;
  border-radius: 50px;
  background: var(--cta-gra, linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%));
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #fff;
  line-height: 1.7;
  padding: 14.5px 16px;
  min-width: 357px;
  position: relative;
  place-items: center;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .c-button-contact--mv {
    width: 218px;
    height: 218px;
    min-width: 218px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--cta-gra, linear-gradient(111deg, #2c82d1 3.79%, #32437f 100%));
    border: solid #fff 16px;
    margin: 0 auto;
  }
}
.c-button-contact--mv:hover::before {
  opacity: 1;
}
.c-button-contact--mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #32437f;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  border-radius: 50px;
}
@media screen and (min-width: 1200px) {
  .c-button-contact--mv::before {
    border-radius: 50%;
    max-width: 680px;
  }
}
.c-button-contact--mv::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/contain;
  width: 16px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}

.c-button-contact--mv2 {
  font-size: 1.5rem;
  letter-spacing: 0.027px;
  border-radius: 50px;
  background: var(--cta-gra, linear-gradient(111deg, #f7d1a1 3.79%, #FF8F00 100%));
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #fff;
  line-height: 1.7;
  padding: 14.5px 16px;
  min-width: 357px;
  position: relative;
  place-items: center;
  max-width: 680px;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .c-button-contact--mv2 {
    width: 218px;
    height: 218px;
    min-width: 218px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--cta-gra, linear-gradient(111deg, #f7d1a1 3.79%, #FF8F00 100%));
    border: solid #fff 16px;
    margin: 0 auto;
  }
}
.c-button-contact--mv2:hover::before {
  opacity: 1;
}
.c-button-contact--mv2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #FF8F00;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  border-radius: 50px;
}
@media screen and (min-width: 1200px) {
  .c-button-contact--mv2::before {
    border-radius: 50%;
    max-width: 680px;
  }
}
.c-button-contact--mv2::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/contain;
  width: 16px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}

.c-button-zoom {
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.027px;
  padding: 8.5px;
  border-radius: 50px;
  border: 2px solid #222;
  width: 100%;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  background: transparent;
  height: 54px;
  max-width: 305px;
}
.c-button-zoom:hover {
  background: #dcdcdc;
}

.c-button-deliverablesClose {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.7;
  background: transparent;
  letter-spacing: 0.027px;
  padding: 8.5px;
  border: 2px solid #fff;
  border-radius: 50px;
  min-width: 353px;
}

.c-button-submit {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.72px;
  border-radius: 50px;
  background: #32437f;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  min-width: 356px;
  padding: 12px 16px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  position: relative;
  width: 100%;
}
.c-button-submit:hover {
  background: #2c82d1;
}
.c-button-submit::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/cover;
  width: 14px;
  height: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}

.c-button-top {
  color: #fff;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  padding: 12px 16px;
  background: #32437f;
  font-size: 24px;
  letter-spacing: 0.72px;
  border-radius: 50px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  min-width: 352px;
  max-width: 738px;
  position: relative;
}
.c-button-top:hover {
  background: #2c82d1;
}
.c-button-top::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_arrow_white.svg") no-repeat center center/contain;
  width: 16px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}

.c-page-top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  right: 20px;
  margin-bottom: 20px;
  width: auto;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 40;
}

.p-mv {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .p-mv {
    padding-top: 77px;
  }
}

.p-mv__top {
  text-align: center;
  position: relative;
  height: 328px;
  background: url(/assets/lp-webly/img/img_mv.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-mv__top {
    height: 554px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__top {
    height: 543px;
  }
}
@media (min-width: 1920px) {
  .p-mv__top {
    height: 823px;
  }
}

.p-mv__top-text {
  background: #222;
  /* color: #fff; */
  font-size: 1.125rem;
  height: 33px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.9px;
  padding: 3px 8px 3px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-mv__top-text {
    padding: 2px 8px 4px 44px;
  }
}
@media screen and (min-width: 900px) {
  .p-mv__top-text {
    font-size: 1.4375rem;
    letter-spacing: 1.15px;
    height: 41px;
    padding-left: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__top-text {
    padding-left: 11.1%;
  }
}
@media (min-width: 1920px) {
  .p-mv__top-text {
    padding-left: 13.75%;
  }
}
.p-mv__top-text::after {
  position: absolute;
  content: "";
  background: url(/assets/lp-webly/img/sp/deco_mv_text.svg) no-repeat center center/contain;
  right: -26px;
  bottom: 0;
  width: 26px;
  height: 33px;
}
@media screen and (min-width: 900px) {
  .p-mv__top-text::after {
    width: 26px;
    height: 41px;
    background-image: url(/assets/lp-webly/img/deco_mv_text.svg);
  }
}

.p-mv__bottom {
  padding-top: 32px;
  padding-bottom: 38px;
}
@media screen and (min-width: 900px) {
  .p-mv__bottom {
    padding-top: 21px;
    padding-bottom: 17.3px;
    position: relative;
  }
}

.p-mv__bottom-inner {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  position: relative;
  padding-inline: 16.5px;
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-inner {
    padding-inline: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__bottom-inner {
    max-width: 1208px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 8%;
    margin-right: 8.75%;
  }
}
@media (min-width: 1920px) {
  .p-mv__bottom-inner {
    margin-left: 13.8%;
    margin-right: 17.29%;
    max-width: 100%;
  }
}

.p-mv__bottom-logo {
  display: block;
}
.p-mv__bottom-logo img {
  width: 281px;
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-logo img {
    width: clamp(17.563rem, 9.853rem + 16.06vw, 24.309rem);
  }
}

.p-mv__bottom-description {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.48px;
}
@media screen and (min-width: 1200px) {
  .p-mv__bottom-description {
    margin-left: 39px;
    font-size: 1.125rem;
    letter-spacing: 0.54px;
    text-align: left;
  }
}

.p-mv__bottom-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .p-mv__bottom-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    position: absolute;
    right: -120px;
    bottom: -35px;
  }
}

.p-about {
  background: #eee;
  padding-top: 40px;
  padding-bottom: 38px;
}
@media screen and (min-width: 1200px) {
  .p-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.p-about__inner {
  margin-inline: auto;
  padding-inline: 16.5px;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-inline: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__inner {
    max-width: 1215px;
  }
}

.p-about__cards {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__cards {
    gap: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__cards {
    row-gap: 28px;
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
    margin-top: 60px;
  }
}

.p-about-card {
  border: #4f4f4f 2px solid;
  max-width: 357px;
  min-height: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-about-card:nth-of-type(1) {
  height: 408px;
}
.p-about-card:nth-of-type(2), .p-about-card:nth-of-type(3), .p-about-card:nth-of-type(4), .p-about-card:nth-of-type(5) {
  height: 414px;
}
@media screen and (min-width: 768px) {
  .p-about-card {
    max-width: 324px;
    min-height: 414px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-card:nth-of-type(1), .p-about-card:nth-of-type(2), .p-about-card:nth-of-type(3) {
    min-height: 449px;
    max-width: 357px;
  }
  .p-about-card:nth-of-type(4), .p-about-card:nth-of-type(5) {
    min-height: 465px;
    max-width: 357px;
  }
}

@media screen and (min-width: 768px) {
  .p-about-card__img img {
    height: 209px;
  }
}

.p-about-card__description {
  padding: 16px 16px 8px 16px;
  text-align: center;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .p-about-card__description {
    padding: 16px 16px 0;
  }
}

.p-about-card__title {
  color: #2c82d1;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 1.1px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-about-card__title {
    font-size: 1.5rem;
  }
}

.p-about-card__lead {
  line-height: 1.9;
  letter-spacing: 0.8px;
  padding-block: 8px;
  border-bottom: 1px solid #828282;
  width: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-about-card__lead {
    font-size: 1.125rem;
    padding-top: 16px;
    padding-bottom: 14px;
    letter-spacing: 0.027px;
    line-height: 1.7;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.p-about-card__text {
  line-height: 1.8;
  letter-spacing: 0.8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-block: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-about-card__text {
    font-size: 1.125rem;
  }
}

.p-need {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-need {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .p-need {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-need .c-section-heading--black {
  padding: 4px 16px;
}
@media screen and (min-width: 900px) {
  .p-need .c-section-heading--black {
    padding: 8px 16px;
  }
}

.p-need__boxes {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 390px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-need__boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 100%;
    margin-inline: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .p-need__boxes {
    margin-top: 80px;
    gap: 0;
    margin-inline: 0;
  }
}

.p-need-box {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-need-box:nth-of-type(1), .p-need-box:nth-of-type(3) {
    padding-right: 32px;
  }
  .p-need-box:nth-of-type(1)::after, .p-need-box:nth-of-type(3)::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 280px;
    right: 0px;
    background: #4f4f4f;
  }
  .p-need-box:nth-of-type(1)::after {
    top: 0;
  }
  .p-need-box:nth-of-type(3)::after {
    top: 32px;
  }
  .p-need-box:nth-of-type(2), .p-need-box:nth-of-type(4) {
    padding-left: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .p-need-box:nth-of-type(1), .p-need-box:nth-of-type(2) {
    padding-bottom: 31px;
    border-bottom: 1px solid #4f4f4f;
  }
  .p-need-box:nth-of-type(3), .p-need-box:nth-of-type(4) {
    padding-top: 31px;
    border-top: 1px solid #4f4f4f;
  }
}

.p-need__box-title {
  color: #2c82d1;
  background: #e0e9f5;
  font-size: 1.375rem;
  padding: 8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 1.1px;
}
@media screen and (min-width: 1200px) {
  .p-need__box-title {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}

.p-need-box__img {
  margin-top: 16px;
}

.p-need-box__description {
  padding-inline: 16px;
  margin-top: 8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-need-box__description {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-need-box__description {
    margin-top: 16px;
    letter-spacing: 0.72px;
  }
}

.p-need-box__lead {
  font-size: clamp(1.125rem, 0.696rem + 0.89vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.9px;
  padding-top: 16px;
  padding-bottom: 15px;
  border-bottom: #828282 1px solid;
  white-space: nowrap;
  letter-spacing: 0.9px;
}

.p-need-box__text {
  font-size: clamp(1.125rem, 0.696rem + 0.89vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.72px;
  padding-block: 16px;
  white-space: nowrap;
  letter-spacing: 0.9px;
}

.p-service {
  background: #e0e9f5;
  padding-top: 40px;
  padding-bottom: 60px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-service {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.p-service__inner {
  padding-inline: 20px;
}

.p-service__description {
  color: #000;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-service__description {
    font-size: 1.125rem;
    letter-spacing: 0.027px;
    line-height: 1.7;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.p-service__boxes {
  margin-top: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (min-width: 600px) {
  .p-service__boxes {
    row-gap: 32px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__boxes {
    margin-top: 60px;
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-service__boxes2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (min-width: 600px) {
  .p-service__boxes2 {
    row-gap: 32px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .p-service__boxes2 {
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-service-box {
  text-align: center;
  background: #fff;
  padding: 39.5px 24px 24px;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .p-service-box {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 900px) {
  .p-service-box {
    width: 33.3333333333%;
    padding: 32px 24px;
    height: 440px;
    max-width: 100%;
  }
}

.p-service-box2 {
  text-align: center;
  background: #fff;
  padding: 39.5px 24px 24px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-service-box2 {
    width: calc(50% - 16px);
  }
}
@media screen and (min-width: 900px) {
  .p-service-box2 {
    width: 33.3333333333%;
    padding: 32px 24px;
    height: auto;
    max-width: 100%;
  }
}

.p-service-box__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 49.5px;
}
@media screen and (min-width: 1200px) {
  .p-service-box__title-wrap {
    margin-top: 24.5px;
    margin-bottom: 56.5px;
  }
}

.p-service-box2__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .p-service-box2__title-wrap {
    margin-bottom: 20px;
  }
}

.p-service-box__title {
  font-family: "Noto Serif JP";
  color: #2c82d1;
  font-size: 2.375rem;
  font-weight: 700;
  letter-spacing: 0.057px;
  line-height: 1.5;
}

.p-service-box__description {
  padding-top: 30px;
  border-top: 2px solid #4f4f4f;
}

.p-service-box__lead {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-service-box__lead {
    font-size: 1.25rem;
    letter-spacing: 0.03px;
  }
}

.p-service-box__text {
  margin-top: 16px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .p-service-box__text {
    line-height: 1.6;
  }
}

.p-cta {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(/assets/lp-webly/img/sp/bg_cta.jpg) no-repeat center center/cover;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-cta {
    background: url(/assets/lp-webly/img/bg_cta.jpg) no-repeat right center/cover;
  }
}
@media screen and (min-width: 1200px) {
  .p-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 0;
  }
}

.p-cta__inner {
  padding-inline: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .p-cta__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-cta__description {
  color: #fff;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .p-cta__description {
    text-align: left;
  }
}

.p-cta__heading {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 1.2px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-cta__heading {
    font-size: clamp(1.5rem, 0.357rem + 2.38vw, 2.5rem);
  }
}

.p-cta__text {
  margin-top: 16px;
  font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
  line-height: 1.9;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-cta__text {
    line-height: 1.7;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    font-size: 1.125rem;
    letter-spacing: 0.027px;
    margin-top: 8px;
  }
}

.p-cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .p-cta__button {
    margin-left: auto;
    margin-top: 0;
  }
}

.p-flow {
  background: #eee;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-flow {
    padding-top: 5rem;
    margin-top: 0;
  }
}

.p-flow__inner {
  padding-inline: 16px;
  max-width: 1184px;
}

.p-flow__description {
  color: #000;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-flow__description {
    line-height: 1.68;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__description {
    font-size: 1.125rem;
    letter-spacing: 0.027px;
  }
}

.p-flow__cards-wrap {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 77px;
}
@media screen and (min-width: 1200px) {
  .p-flow__cards-wrap {
    gap: 87px;
  }
}

.p-flow__cards-container {
  padding-top: 32px;
  background: #fff;
  text-align: center;
  position: relative;
  margin-inline: auto;
}
.p-flow__cards-container:not(:last-of-type)::after {
  position: absolute;
  content: "";
  background: url(/assets/lp-webly/img/icon_step_arrow_black.svg) no-repeat center center/contain;
  width: 43px;
  height: 24px;
  bottom: -54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .p-flow__cards-container:not(:last-of-type)::after {
    bottom: -60px;
  }
}

.p-flow__cards-headingNumber {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 0.739rem + 2.1vw, 2.625rem);
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow__cards-headingNumber {
    font-size: clamp(1.25rem, -0.321rem + 3.27vw, 2.625rem);
  }
}

.p-flow__cards-heading {
  margin-top: 4px;
  font-size: clamp(1.375rem, 1.329rem + 0.19vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.1px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-flow__cards-heading {
    margin-top: 2px;
  }
}
@media screen and (min-width: 900px) {
  .p-flow__cards-heading {
    letter-spacing: 0.72px;
    margin-top: 8px;
  }
}

.p-flow__cards {
  row-gap: 45px;
  background: #fff;
  padding: 32px 16px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-flow__cards {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 39px;
       -moz-column-gap: 39px;
            column-gap: 39px;
    row-gap: 44px;
    padding: 32px 29.5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 900px) {
  .p-flow__cards {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 41px;
       -moz-column-gap: 41px;
            column-gap: 41px;
    row-gap: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__cards {
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 27px;
       -moz-column-gap: 27px;
            column-gap: 27px;
  }
}

.p-flow__card:not(:last-of-type)::after {
  position: absolute;
  content: "";
  background: url(/assets/lp-webly/img/icon_step_arrow_blue.svg) no-repeat center center/contain;
  width: 24px;
  height: 24px;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (min-width: 768px) {
  .p-flow__card:not(:last-of-type)::after {
    background: url(/assets/lp-webly/img/icon_step_arrow_blue_right.svg) no-repeat center center/contain;
    top: 50%;
    bottom: auto;
    left: auto;
    right: -33px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__card:not(:last-of-type)::after {
    top: 50%;
    right: -25px;
  }
}
@media screen and (min-width: 768px) {
  .p-flow__card:nth-of-type(2)::after {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow__card:nth-of-type(2)::after {
    display: block;
  }
}

.p-flow-card {
  padding: 16px;
  background: #eee;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 326px;
}
@media screen and (min-width: 768px) {
  .p-flow-card {
    max-width: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .p-flow-card {
    padding: 16px 8px 8px;
    height: 398px;
  }
}

.p-flow-card__number {
  color: #fff;
  font-size: 1.25rem;
  background: #2c82d1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03px;
  padding: 15px 18px;
  border-radius: 50%;
}
@media screen and (min-width: 1200px) {
  .p-flow-card__number {
    padding: 25px 28px;
  }
}

.p-flow-card__description {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.p-flow-card__title {
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 1.1px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-flow-card__title {
    font-size: 1.25rem;
    letter-spacing: 0.03px;
  }
}

.p-flow-card__text {
  margin-top: 4px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}

.p-flow-card__img {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .p-flow-card__img {
    margin-top: auto;
  }
}
.p-flow-card__img img {
  height: 110px;
}

.p-flow-card__list-wrap {
  margin-top: auto;
  padding: 8px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .p-flow-card__list-wrap {
    margin-top: auto;
  }
}

.p-flow-card__list {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
}

.p-flow-card__list-title {
  color: #2c82d1;
  font-weight: 700;
  line-height: 1.9;
}

.p-flow-card__list-item {
  text-align: left;
}

.p-deliverables {
  background: #e0e9f5;
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-deliverables {
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.p-deliverables__cards {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 353px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-deliverables__cards {
    row-gap: 32px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .p-deliverables__cards {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .p-deliverables__cards {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-deliverables__inner {
  padding-inline: 18.5px;
}

.p-deliverables-card {
  padding: 22px;
  border: 2px solid #4f4f4f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-deliverables-card:nth-child(-n+3) .p-deliverables__card-img img {
  max-width: 170px;
}
.p-deliverables-card:nth-child(-n+3):nth-child(n+4):nth-child(-n+5) .p-deliverables__card-img img {
  max-width: 255px;
}
@media screen and (min-width: 768px) {
  .p-deliverables-card {
    max-width: calc(50% - 32px);
    width: 320px;
  }
  .p-deliverables-card:nth-of-type(1), .p-deliverables-card:nth-of-type(2) {
    min-height: 550px;
  }
  .p-deliverables-card:nth-of-type(3), .p-deliverables-card:nth-of-type(4) {
    min-height: 486px;
  }
  .p-deliverables-card:nth-of-type(5) {
    min-height: 538px;
  }
}
@media screen and (min-width: 1200px) {
  .p-deliverables-card:nth-of-type(1), .p-deliverables-card:nth-of-type(2), .p-deliverables-card:nth-of-type(3) {
    width: 352px;
  }
  .p-deliverables-card:nth-of-type(4), .p-deliverables-card:nth-of-type(5) {
    max-width: 544px;
    width: 100%;
    min-height: auto;
  }
}
.p-deliverables-card:nth-of-type(1) .p-deliverables-card__img img, .p-deliverables-card:nth-of-type(2) .p-deliverables-card__img img, .p-deliverables-card:nth-of-type(3) .p-deliverables-card__img img {
  max-width: 170px;
}
.p-deliverables-card:nth-of-type(4) .p-deliverables-card__img, .p-deliverables-card:nth-of-type(5) .p-deliverables-card__img {
  max-width: 250px;
}
@media screen and (min-width: 1200px) {
  .p-deliverables-card:nth-of-type(4) .p-deliverables-card__img, .p-deliverables-card:nth-of-type(5) .p-deliverables-card__img {
    max-width: 305px;
  }
}

.p-deliverables-card__title {
  color: #2c82d1;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 1.1px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-deliverables-card__text {
  margin-top: 8px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}

.p-deliverables-card__img {
  padding-top: 16px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-deliverables-card__img {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-deliverables-card__img img {
    max-width: 305px;
  }
}

.p-deliverables-card__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .p-deliverables-card__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-deliverables-card__button-img {
  margin-left: 10px;
}
.p-deliverables-card__button-img img {
  width: 26px;
}

.p-deliverables-modal {
  position: fixed;
  inset: 0;
  max-width: 100%;
  height: 100vh;
  overflow: auto;
  padding: 56px 16.5px 32px;
  border: none;
  z-index: 60;
  background: rgba(34, 34, 34, 0.8);
  max-height: 100%;
}
.p-deliverables-modal::-ms-backdrop {
  background: rgba(34, 34, 34, 0.8);
}
.p-deliverables-modal::backdrop {
  background: rgba(34, 34, 34, 0.8);
}

.p-deliverables-modal__button {
  position: fixed;
  top: 10px;
  right: 10px;
  background: inherit;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .p-deliverables-modal__button {
    top: 30px;
    right: 30px;
  }
}
.p-deliverables-modal__button img {
  width: 26px;
}

.p-deliverables-modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 56px);
  padding-inline: 20px;
  max-width: 80vw;
  max-height: 80vh;
  padding-top: 56px;
  margin: auto;
}
@media screen and (min-width: 900px) {
  .p-deliverables-modal__body {
    padding-top: 36px;
    height: calc(100% - 36px);
  }
}

.p-deliverables-modal__img {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
  max-height: 80vh;
}
.p-deliverables-modal__img img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 80vh;
}

.p-deliverables-modal__bottom-button {
  margin-top: 32px;
  text-align: center;
}

.p-faq {
  padding-top: 40px;
  padding-bottom: 60px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.p-faq__inner {
  padding-inline: 18px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    width: min(544px, 100%);
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-faq__inner {
    width: min(776px, 100%);
  }
}

.p-faq__description {
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .p-faq__description {
    font-size: 1.125rem;
    letter-spacing: 0.027px;
    line-height: 1.7;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.p-faq__boxes-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .p-faq__boxes-wrap {
    margin-top: 60px;
  }
}

.p-faq__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.p-faq__text {
  color: #4f4f4f;
  letter-spacing: 0.8px;
  margin-top: 40px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 900px) {
  .p-faq__text {
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.027px;
    margin-top: 60px;
  }
}

.p-faq-box {
  cursor: pointer;
}
.p-faq-box.is-open .p-faq-box__q-text::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

details[open] .p-faq-box__q-text::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-faq-box__title {
  color: #32437f;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 1.1px;
  line-height: 1.5;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-faq-box__title {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}

.p-faq-box__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq-box__q-text {
  color: #2c82d1;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.9px;
  list-style: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  padding-right: 29px;
  font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-faq-box__q-text {
    font-size: 1.25rem;
    letter-spacing: 0.03px;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}
.p-faq-box__q-text::after {
  position: absolute;
  content: "";
  background: url("/assets/lp-webly/img/icon_faq_arrow.svg") no-repeat center center/contain;
  height: 13px;
  width: 7px;
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-faq-box__q-text.active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-faq-box__q-icon,
.p-faq-box__a-icon {
  display: inline-block;
}
.p-faq-box__q-icon img,
.p-faq-box__a-icon img {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
}

.p-faq-box__q-textArrow {
  display: inline-block;
}
.p-faq-box__q-textArrow img {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
}

.p-faq-box__a-body {
  margin-top: 8px;
}
@media screen and (min-width: 1200px) {
  .p-faq-box__a-body {
    margin-top: 16px;
  }
}

.p-faq-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.p-faq-box__a-text {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.7;
  letter-spacing: 0.027px;
}

.p-contact {
  padding-top: 2.5rem;
  padding-bottom: 7.5rem;
  background: linear-gradient(174deg, #fff -23.29%, #a5cee4 100%);
}
@media screen and (min-width: 768px) {
  .p-contact {
    background: linear-gradient(174deg, #fff -23.29%, #a5cee4 100%);
  }
}
@media screen and (min-width: 1200px) {
  .p-contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: var(--gradation, linear-gradient(94deg, #fff -0.82%, #a5cee4 100%));
  }
}

.p-contact__inner {
  padding-inline: 17px;
  margin-inline: auto;
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding-inline: 20px;
    margin-inline: auto;
    width: min(778px, 100%);
    max-width: 100%;
  }
}

.p-contact__box {
  margin-inline: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-contact__box {
    max-width: 540px;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__box {
    margin-top: 3.75rem;
  }
}

.p-form {
  margin-inline: auto;
  width: 100%;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .p-form {
    max-width: 738px;
  }
}
@media screen and (min-width: 1200px) {
  .p-form {
    margin-top: 60px;
  }
}

.p-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.p-form__field-head > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-form__field-label {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-form__field-tag {
  color: #c22;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-form__field-text {
  color: #4f4f4f;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-form__field-input {
  margin-top: 16px;
}

.p-form__field-text-input {
  height: 52px;
}

.p-form__field-text-input,
.p-form__field-textarea-input {
  width: 100%;
  border: none;
  padding: 16px 24px 18px 24px;
  border: 2px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-form__field-text-input:hover, .p-form__field-text-input:focus,
.p-form__field-textarea-input:hover,
.p-form__field-textarea-input:focus {
  border-color: #2c82d1;
  outline: none;
}

.p-form__field-textarea-input {
  height: 200px;
}

.p-form__privacy {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .p-form__privacy {
    text-align: center;
  }
}
/* p-form__checkbox コンタクトフォーム変換 */
.p-form__privacy > p > span > span > span > label {
  position: relative;
  cursor: pointer;
}
/* .p-form__checkbox {
  position: relative;
  cursor: pointer;
} */

.p-form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-form__checkbox-input:checked + .p-form__checkbox-text::after {
  opacity: 1;
}
.p-form__checkbox-input:focus + .p-form__checkbox-text::before {
  outline: none;
  border: 1px solid #2c82d1;
}

.p-form__checkbox-text {
  color: #333;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding-left: 29px;
  position: relative;
}
.p-form__checkbox-text a {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.p-form__checkbox-text a:hover {
  color: #2c82d1;
}
.p-form__checkbox-text::before, .p-form__checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.p-form__checkbox-text::before {
  width: 21px;
  height: 21px;
  border-radius: 2px;
  background: #fff;
}
.p-form__checkbox-text::after {
  background: url(/assets/lp-webly/img/icon_form_check.svg) no-repeat center center/contain;
  width: 17px;
  height: 13px;
  left: 2px;
  top: 3px;
  opacity: 0;
}

.p-form__button {
  text-align: center;
  margin-top: 2rem;
  height: 60px;
}
@media screen and (min-width: 1200px) {
  .p-form__button {
    margin-top: 3.75rem;
  }
}

.error-text {
  display: none;
}

.p-form__message-error,
.p-form__message-success {
  display: none;
  font-size: clamp(1.125rem, 0.986rem + 0.57vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 1200px) {
  .p-form__message-error,
  .p-form__message-success {
    margin-top: 60px;
  }
}

.p-form__message-error {
  color: #c22;
}
.p-form__message-error.is-active {
  display: block;
}

.p-form__message-success.is-active {
  display: block;
}

.p-about-bottom {
  background: #eeeeee;
  padding-bottom: 60px;
  position: relative;
  padding-top: 40px;
}
@media screen and (min-width: 1200px) {
  .p-about-bottom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.p-about-bottom__inner {
  padding-inline: 17px;
}
@media screen and (min-width: 1200px) {
  .p-about-bottom__inner {
    padding-inline: 80px;
  }
}

.p-about-bottom__description {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
  text-align: center;
  margin-top: 8px;
}

.p-about-bottom__boxes-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1200px) {
  .p-about-bottom__boxes-wrap {
    margin-top: 60px;
    padding-inline: 60px;
    max-width: 1240px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom__boxes-wrap {
    padding-inline: 0;
  }
}

.p-about-bottom__boxes-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 1.1px;
  padding: 7px 2px;
  background: #2c82d1;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 1200px) {
  .p-about-bottom__boxes-title {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}

.p-about-bottom-box__wrap {
  margin-top: 32px;
}

.p-about-bottom-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-about-bottom-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box {
    padding-top: 24px;
  }
}
.p-about-bottom-box:first-of-type {
  padding-top: 24px;
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box:first-of-type {
    padding-top: 32px;
  }
}
.p-about-bottom-box:not(:last-of-type) {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 31px;
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box:not(:last-of-type) {
    padding-bottom: 23px;
  }
}

.p-about-bottom-box__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-about-bottom-box__description {
    max-width: 65.7142857143%;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box__description {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
}

.p-about-bottom-box__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.9px;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-about-bottom-box__title {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box__title {
    font-size: 1.25rem;
    letter-spacing: 0.03px;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.p-about-bottom-box__text {
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
}

.p-about-bottom-box__img {
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 356px;
  margin-inline: auto;
  position: relative;
  height: 217px;
  min-width: 332px;
}
.p-about-bottom-box__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about-bottom-box__img {
    width: 332px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box__img {
    width: 352px;
  }
}
@media screen and (min-width: 1200px) {
  .p-about-bottom-box__img {
    width: 31.4285714286%;
    margin-left: auto;
    margin-top: 0;
  }
}

.p-policy {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1200px) {
  .p-policy {
    padding-top: 157px;
    padding-bottom: 80px;
  }
}

.p-policy2 {
  padding-top: 80px;
}
@media screen and (min-width: 1200px) {
  .p-policy2 {
    padding-top: 157px;
  }
}

.p-policy__inner {
  padding-inline: 15px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .p-policy__inner {
    padding-inline: 30px;
    max-width: 766px;
  }
}
@media screen and (min-width: 900px) {
  .p-policy__inner {
    padding-inline: 30px;
    max-width: 796px;
  }
}

.p-policy__text {
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-top: 8px;
}
.p-policy__text a {
  text-decoration: underline;
}
@media screen and (min-width: 1200px) {
  .p-policy__text {
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.027px;
  }
}

.p-policy__boxes {
  margin-top: 60px;
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}

.p-policy__bottom {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .p-policy__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-policy__bottom-img {
  text-align: center;
}

.p-policy__bottom-text {
  text-align: left;
  padding-inline: 9.5px;
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 900px) {
  .p-policy__bottom-text {
    color: #000;
    padding-inline: 0;
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.027px;
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.p-policy-box__title {
  color: #2c82d1;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.375rem;
  line-height: 1.5;
  letter-spacing: 1.1px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .p-policy-box__title {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}

.p-policy-box__Subtitle {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .p-policy-box__Subtitle {
    line-height: 1.5;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.03px;
  }
}

.p-policy-box__Subtitle--blue {
  color: #32437f;
  letter-spacing: 0.027px;
  line-height: 1.7;
  font-weight: 700;
}

.p-policy-box__text {
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
}
@media screen and (min-width: 1200px) {
  .p-policy-box__text {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    line-height: 1.7;
    letter-spacing: 0.027px;
  }
}
.p-policy-box__text a {
  text-decoration: underline;
}
.p-policy-box__text:first-of-type {
  margin-top: 16px;
}

.p-policy-box__list-item {
  letter-spacing: 0.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1rem, 0.954rem + 0.19vw, 1.125rem);
  padding-left: 15px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .p-policy-box__list-item {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
    line-height: 1.7;
    letter-spacing: 0.027px;
  }
}
.p-policy-box__list-item a {
  text-decoration: underline;
}
.p-policy-box__list-item::before {
  position: absolute;
  content: "";
  background: #222;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
}

.p-404 {
  height: calc(100% - 47px);
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .p-404 {
    height: calc(100% - 77px - 50px);
  }
}

.p-404__inner {
  text-align: center;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.p-404__heading {
  font-size: clamp(1.5rem, 1.129rem + 1.52vw, 2.5rem);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
}

.p-404__text {
  margin-top: 8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.8px;
}

.p-404__button {
  margin-top: 60px;
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 1200px) {
  .u-hidden-sp {
    display: block;
  }
}

.u-hidden-sm {
  display: none;
}
@media screen and (min-width: 600px) {
  .u-hidden-sm {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-menu-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(204, 204, 204, 0.8);
  display: none;
}
.u-menu-bg.is-active {
  display: block;
}
@media screen and (min-width: 1200px) {
  .u-menu-bg.is-active {
    display: none;
  }
}

/* contact form7 */
.wpcf7 {
  width: 100%;
}
.wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form-control-wrap > input {
  width: 100%;
}
.screen-reader-response {
  display: none;
}

.wpcf7-acceptance {
    position: relative;
    cursor: pointer;
}

.wpcf7-submit.wpcf7-active {
  pointer-events: none;
  opacity: .5;
}

.wpcf7-response-output {
  font-size: clamp(1.125rem, 0.986rem + 0.57vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 1200px) {
  .wpcf7-response-output {
    margin-top: 60px;
  }
}

.wpcf7-not-valid-tip {
  display: block;
  color: #c22;
}