@charset "UTF-8";
*,
*::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;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 1319px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1320 * 100vw);
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #274b66;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

body:has(.p-drawer.js-show) {
  overflow: hidden;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* =================================
  アニメーション（共通）
================================= */
.animated__fadeIn {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.js-fade.js-show {
  opacity: 1;
  translate: 0 0;
}

/* 下からフェードイン */
@-webkit-keyframes slideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 上からclip-pathで出現 */
@-webkit-keyframes clipDown {
  to {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
  }
}
@keyframes clipDown {
  to {
    clip-path: inset(0 0 0% 0);
    opacity: 1;
  }
}
/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes shine-loop {
  0% {
    left: -100px; /* ボタンの左外側から開始 */
  }
  25% {
    /* 25%の時間で光を右外側まで移動させる */
    left: calc(100% + 50px);
  }
  100% {
    left: calc(100% + 50px); /* ボタンの右外側へ移動して完了 */
  }
}
@keyframes shine-loop {
  0% {
    left: -100px; /* ボタンの左外側から開始 */
  }
  25% {
    /* 25%の時間で光を右外側まで移動させる */
    left: calc(100% + 50px);
  }
  100% {
    left: calc(100% + 50px); /* ボタンの右外側へ移動して完了 */
  }
}
@-webkit-keyframes circleExpand {
  0% {
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    clip-path: circle(75vmax at 50% 50%);
  }
}
@keyframes circleExpand {
  0% {
    clip-path: circle(0% at 50% 50%);
  }
  100% {
    clip-path: circle(75vmax at 50% 50%);
  }
}
.l-header {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.l-main {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  min-height: 100vh;
}
@media screen and (max-width: 1400px) {
  .l-main {
    -webkit-margin-before: 62px;
            margin-block-start: 62px;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1320px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 375px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 55rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 335px;
  }
}

.c-btn {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  border-radius: 10px;
  background: #66b1c5;
  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;
  border: 2px solid #66b1c5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (any-hover: hover) {
  .c-btn:hover {
    background: #fff;
    color: #66b1c5;
  }
  .c-btn:hover svg {
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
    fill: #66b1c5;
  }
  .c-btn:hover svg.c-btn__icon-mail path {
    fill: #66b1c5;
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
  }
  .c-btn:hover svg.c-btn__icon-play circle {
    fill: #66b1c5;
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
  }
  .c-btn:hover svg.c-btn__icon-play path {
    fill: #fff;
    -webkit-transition: fill 0.3s ease;
    transition: fill 0.3s ease;
  }
}

.c-btn__small {
  font-size: 16px;
  letter-spacing: 0.48px;
  padding-block: 10px;
  padding-inline: 30px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.c-btn__small .c-btn__icon-mail {
  width: 18px;
  height: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn__small .c-btn__icon-play {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-btn__large {
  font-size: 20px;
  letter-spacing: 1px;
  padding-block: 18px;
  padding-inline: 30px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.c-btn__large .c-btn__icon-mail {
  width: 24px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn__large .c-btn__icon-play {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-btn__large {
    font-size: 1.125rem;
    letter-spacing: 0.9px !important;
  }
}

.c-btn__large-sp {
  padding-block: 20px;
  padding-inline: 22px;
}
.c-btn__large-sp .c-btn__text {
  font-size: 18px;
  letter-spacing: 0.9px;
  -webkit-padding-start: 36px;
          padding-inline-start: 36px;
  -webkit-padding-end: 34px;
          padding-inline-end: 34px;
}
.c-btn__large-sp .c-btn__text::before {
  width: 24px;
  height: 18px;
}
.c-btn__large-sp .c-btn__text::after {
  width: 22px;
  height: 22px;
}

.c-section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-section-title__center .c-section-title__en {
  text-align: center;
}

.c-section-title__left .c-section-title__en {
  text-align: left;
}

.c-section-title__sp .c-section-title__ja {
  color: #274b66;
  font-size: 26px;
  font-style: normal;
  letter-spacing: 1.3px;
}

.c-section-title__en {
  color: #66b1c5;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .c-section-title__en {
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.8px;
  }
}

.c-section-title__ja {
  color: inherit;
  text-align: center;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 52.5px */
  letter-spacing: 1.75px;
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 39px */
    letter-spacing: 1.3px;
  }
}

.c-tel-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-tel-info.p-contact__tel-info {
    row-gap: 0;
  }
}

.c-tel-info__number {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  -webkit-padding-start: 25.6px;
          padding-inline-start: 25.6px;
}
.c-tel-info__number::before {
  content: "";
  position: absolute;
  width: 21.6px;
  height: 27px;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background: url("../img/tel-icon.png") no-repeat center/contain;
}

.c-tel-info__time {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.6px;
}

.p-header {
  width: 100%;
  height: auto;
  background: #fff;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 40px 12.801px;
  max-width: 1440px;
  margin-inline: auto;
}
@media screen and (max-width: 1400px) {
  .p-header__inner {
    padding: 16px 20px 16px 19px;
  }
}

.p-header__logo {
  width: 225px;
  height: 36px;
}
@media screen and (max-width: 1400px) {
  .p-header__logo {
    width: 187.5px;
    height: 30px;
  }
}
.p-header__logo a:hover img {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1400px) {
  .p-header__right {
    display: none;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.p-header__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}
.p-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #274b66;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.p-header__link:hover::after {
  width: 100%;
}

.p-drawer__icon {
  position: fixed;
  z-index: 1000;
  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;
  top: 16px;
  right: 20px;
  width: 30px;
  height: 30px;
  padding-block: 6px;
  -webkit-padding-end: 2px;
          padding-inline-end: 2px;
  cursor: pointer;
}
@media screen and (min-width: 1400px) {
  .p-drawer__icon {
    display: none;
  }
}

.p-drawer__icon-bar {
  width: 100%;
  height: 3px;
  background: #274b66;
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.p-drawer__icon.js-show {
  width: 32px;
  height: 32px;
  padding-block: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7.21px;
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(1) {
  width: 24px;
  -webkit-transform: rotate(45deg) translate(5px, 6px);
          transform: rotate(45deg) translate(5px, 6px);
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon-bar:nth-of-type(3) {
  width: 24px;
  -webkit-transform: rotate(-45deg) translate(5px, -6px);
          transform: rotate(-45deg) translate(5px, -6px);
}

.p-drawer {
  position: fixed;
  z-index: 999;
  overflow-y: auto;
  top: 62px;
  right: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  background: #ecf6f9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.p-drawer.js-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1400px) {
  .p-drawer {
    display: none;
  }
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 62px 20px;
  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;
  row-gap: 40px;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-drawer__list li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

.p-drawer__tel-info {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.p-drawer__tel-info-number {
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}
.p-drawer__tel-info-number::before {
  width: 31px;
  height: 41px;
}

.p-drawer__tel-info-time {
  -webkit-padding-start: 39px;
          padding-inline-start: 39px;
  -webkit-margin-before: -3px;
          margin-block-start: -3px;
}

.p-drawer__cta {
  -webkit-margin-before: 3px;
          margin-block-start: 3px;
}

.p-footer {
  background: #ecf6f9;
  padding-block: 60px;
}
.p-footer__inner {
  padding-inline: 40px;
  max-width: 1120px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 20px;
    max-width: none;
  }
}

.p-footer__logo-tel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-after: 21.5px;
          margin-block-end: 21.5px;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-tel-wrapper {
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}
@media screen and (max-width: 520px) {
  .p-footer__logo-tel-wrapper {
    -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;
  }
}

.p-footer__icon {
  width: 225px;
  height: 36px;
}
@media screen and (max-width: 520px) {
  .p-footer__icon {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}
.p-footer__icon img {
  width: 100%;
  height: 100%;
}
.p-footer__icon a:hover img {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media screen and (max-width: 767px) {
  .p-footer__tel-info {
    -webkit-margin-after: 42px;
            margin-block-end: 42px;
  }
}

.p-footer__tel-info-number {
  -webkit-padding-start: 39px;
          padding-inline-start: 39px;
}
.p-footer__tel-info-number::before {
  width: 31px;
  height: 40px;
}

.p-footer__tel-info-time {
  -webkit-padding-start: 31px;
          padding-inline-start: 31px;
}

.p-footer__nav {
  -webkit-padding-after: 32px;
          padding-block-end: 32px;
  border-bottom: 1px solid #274b66;
}

.p-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    -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;
    row-gap: 39px;
  }
}

.p-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.p-footer__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}
.p-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #274b66;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.p-footer__link:hover::after {
  width: 100%;
}

.p-footer__copy-sns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-sns-wrapper {
    -webkit-padding-before: 31px;
            padding-block-start: 31px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-footer__copy {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.6px;
}

@media screen and (max-width: 767px) {
  .p-footer__sns {
    -webkit-margin-after: 16px;
            margin-block-end: 16px;
  }
}

.p-footer__sns-link {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__sns-link:hover {
    opacity: 0.7;
  }
}

.p-fv {
  background: url("../img/kv-background_pc.png") no-repeat center/cover;
  -webkit-padding-after: 74px;
          padding-block-end: 74px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-fv {
    background: url("../img/kv-background_sp.png") no-repeat center/cover;
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding: 40px 20px;
  }
}

.yellow {
  color: #e9c243;
}

.p-fv__contents {
  display: grid;
  grid-template-columns: 30.5555555556vw 1fr;
  grid-template-areas: "catch  swiper" "cta    swiper";
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__contents {
    grid-template-columns: 1fr;
    grid-template-areas: "catch" "swiper" "cta";
  }
}

.p-fv__catch {
  grid-area: catch;
  position: relative;
  z-index: 10;
  -webkit-padding-before: 155px;
          padding-block-start: 155px;
  -webkit-padding-start: 52px;
          padding-inline-start: 52px;
  -webkit-margin-end: -23px;
          margin-inline-end: -23px;
  -webkit-margin-after: 5.625rem;
          margin-block-end: 5.625rem;
}
@media screen and (max-width: 1400px) {
  .p-fv__catch {
    -webkit-padding-before: 8.125rem;
            padding-block-start: 8.125rem;
    -webkit-margin-end: -23px;
            margin-inline-end: -23px;
    -webkit-margin-after: 70px;
            margin-block-end: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__catch {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__catch {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}

.p-fv__catch-title-text {
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.5px;
  white-space: nowrap;
  -webkit-padding-after: 24px;
          padding-block-end: 24px;
}
@media screen and (max-width: 767px) {
  .p-fv__catch-title-text {
    font-size: 2.5rem;
    -webkit-padding-after: 16px;
            padding-block-end: 16px;
  }
}
@media screen and (min-width: 1500px) {
  .p-fv__catch-title-text {
    font-size: 3.4722222222vw;
  }
}

.p-fv__catch-title-sub {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__catch-title-sub {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}
@media screen and (min-width: 1500px) {
  .p-fv__catch-title-sub {
    font-size: 1.6666666667vw;
  }
}

.p-fv__cta-wrap {
  grid-area: cta;
  position: relative;
  z-index: 10;
  -webkit-padding-start: 3.25rem;
          padding-inline-start: 3.25rem;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  opacity: 0;
  -webkit-animation: fade-in 0.8s ease-out forwards;
          animation: fade-in 0.8s ease-out forwards;
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
@media screen and (max-width: 767px) {
  .p-fv__cta-wrap {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .p-fv__cta-wrap {
    -webkit-padding-start: 52px;
            padding-inline-start: 52px;
  }
}
@media screen and (min-width: 1600px) {
  .p-fv__cta-wrap {
    -webkit-padding-start: 75px;
            padding-inline-start: 75px;
  }
}
@media screen and (min-width: 2000px) {
  .p-fv__cta-wrap {
    -webkit-padding-start: 100px;
            padding-inline-start: 100px;
  }
}

.p-fv__cta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 3px;
  -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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.p-fv__cta-text {
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  font-size: 1.25rem;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-animation: bounce 1.5s ease-out infinite 2.7s;
          animation: bounce 1.5s ease-out infinite 2.7s;
}
@media screen and (max-width: 1400px) {
  .p-fv__cta-text {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .p-fv__cta-text {
    font-size: 1.3888888889vw;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  70% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  55% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  70% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-fv__cta-btn {
  position: relative;
  overflow: hidden;
  font-size: 1.25rem;
}
.p-fv__cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  width: 40px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
  -webkit-animation: shine-loop 3s linear infinite;
          animation: shine-loop 3s linear infinite; /* 4秒かけて無限ループ、等速(linear) */
  -webkit-animation-delay: 3s;
          animation-delay: 3s; /* 3秒のディレイを設定し、ページロードのアニメーション完了後に開始 */
}
@media screen and (max-width: 1400px) {
  .p-fv__cta-btn {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .p-fv__cta-btn {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .p-fv__cta-btn {
    padding-inline: 14px;
    padding-block: 12px;
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
  }
  .p-fv__cta-btn .c-btn__icon-mail {
    width: 16px;
    height: 12px;
  }
  .p-fv__cta-btn .c-btn__icon-play {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .p-fv__cta-btn {
    padding-inline: 10px;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__cta-btn {
    padding-inline: 18px;
    padding-block: 18px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .p-fv__cta-btn .c-btn__icon-mail {
    width: 24px;
    height: 18px;
  }
  .p-fv__cta-btn .c-btn__icon-play {
    width: 22px;
    height: 22px;
  }
}
@media screen and (min-width: 1500px) {
  .p-fv__cta-btn {
    font-size: 1.3888888889vw;
  }
}

.p-fv__swiper-container {
  grid-area: swiper;
  width: 69.4444444444vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-container {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.p-fv__swiper {
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper {
    width: 100%;
    border-radius: 0 0 0 7.018px;
  }
}

.is-clip-animated {
  clip-path: circle(0% at 50% 50%);
  -webkit-animation: circleExpand 1s 1s ease-in-out forwards;
          animation: circleExpand 1s 1s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .is-clip-animated {
    -webkit-animation: none;
            animation: none;
    clip-path: none;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__swiper-wrapper {
    width: 100%;
  }
}

.p-fv__swiper-slide {
  width: 100% !important;
}
.p-fv__swiper-slide img {
  aspect-ratio: 1000/650;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__swiper-slide img {
    aspect-ratio: 335/228.07;
  }
}

/* スライド内の picture に scale をかける */
.p-fv__swiper-slide > picture {
  display: block;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: -webkit-transform 3s ease-out;
  transition: -webkit-transform 3s ease-out;
  transition: transform 3s ease-out;
  transition: transform 3s ease-out, -webkit-transform 3s ease-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

/* 表示中のスライドだけ 1倍 */
.p-fv__swiper-slide.swiper-slide-active > picture {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* 前のスライドも 1倍で固定 */
.p-fv__swiper-slide.swiper-slide-prev > picture,
.p-fv__swiper-slide.swiper-slide-duplicate-prev > picture {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullet {
  margin-inline: 6px !important;
  width: 10px;
  height: 10px;
  border: 1px solid #66b1c5;
  opacity: 1;
  background-color: transparent;
}

.swiper-pagination-bullet-active {
  background-color: #66b1c5;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -34px;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -18.42px;
  }
}

.p-fv__swiper-slide,
.p-fv__swiper-slide picture,
.p-fv__swiper-slide img {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.p-fv__catch-title-text {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-animation: slideUp 0.8s ease-out forwards;
          animation: slideUp 0.8s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.p-fv__catch-title-sub span {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  -webkit-animation: clipDown 0.8s ease-out forwards;
          animation: clipDown 0.8s ease-out forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.p-mission {
  -webkit-padding-before: 120px;
          padding-block-start: 120px;
  -webkit-padding-after: 115px;
          padding-block-end: 115px;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-mission {
    padding-block: 80px;
  }
}

.p-mission__inner {
  padding-inline: 2.5rem;
  max-width: 1320px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mission__inner {
    padding-inline: 20px;
  }
}

.p-mission__contents {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mission__contents {
    max-width: 560px;
  }
}

.p-mission__head {
  width: 496px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
@media screen and (max-width: 767px) {
  .p-mission__head {
    width: 100%;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}

.p-mission__head-text {
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1200px) {
  .p-mission__head-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head-text {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
}

.p-mission__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: 2.75rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-mission__list {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}

.p-mission__item {
  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;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-mission__item {
    row-gap: 8px;
  }
}

.p-mission__item-img {
  margin-inline: auto;
  padding-inline: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-mission__item-img {
    padding-inline: 130px;
  }
}
@media screen and (max-width: 500px) {
  .p-mission__item-img {
    padding-inline: 2.96875rem;
  }
}
.p-mission__item-img img {
  aspect-ratio: 260/148;
}
@media screen and (max-width: 767px) {
  .p-mission__item-img img {
    aspect-ratio: 240/137;
  }
}

.p-mission__item:nth-child(1),
.p-mission__item:nth-child(2),
.p-mission__item:nth-child(3) {
  border-right: 1px dashed #b4adad;
}
@media screen and (max-width: 767px) {
  .p-mission__item:nth-child(1),
  .p-mission__item:nth-child(2),
  .p-mission__item:nth-child(3) {
    border-right: none;
    border-bottom: 1px dashed #b4adad;
  }
}

.p-mission__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 13px;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission__item-body {
    row-gap: 8px;
    padding-inline: 0.75rem;
  }
}

.p-mission__item-title {
  color: #274b66;
  text-align: center;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 1.1px;
}
@media screen and (max-width: 800px) {
  .p-mission__item-title {
    font-size: 12.5px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
  }
}

.p-mission__item-text {
  color: #274b66;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1200px) {
  .p-mission__item-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__item-text {
    font-size: 15px;
    letter-spacing: 0.75px;
    min-height: 98px;
  }
}

.p-cta-contact {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta-contact {
    padding-block: 80px;
    padding-inline: 20px;
  }
}

.p-cta-contact__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.p-cta-contact__bg picture,
.p-cta-contact__bg img {
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-cta-contact__bg picture,
  .p-cta-contact__bg img {
    height: calc(100% + 120px);
  }
}

.p-cta-contact__contents {
  display: inline-block;
  position: relative;
  border-radius: 20px;
  z-index: 2;
  background: #fff;
  padding: 40px 103.32px;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__contents {
    padding: 40px 16px;
  }
}

.p-cta-contact__title {
  color: #274b66;
  text-align: center;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.75px;
  -webkit-margin-after: 32px;
          margin-block-end: 32px;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__title {
    color: #274b66;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.3px;
    -webkit-margin-after: 16px;
            margin-block-end: 16px;
  }
}

.p-cta-contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}

.p-cta-contact__items-tel-title {
  color: #274b66;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__items-tel-title {
    color: #274b66;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.75px;
    -webkit-margin-after: 5px;
            margin-block-end: 5px;
  }
}

.p-contact__tel-info-number {
  color: #66b1c5;
  font-family: "Montserrat", sans-serif;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 52.5px */
  letter-spacing: 1.75px;
  -webkit-padding-start: 30.35442px;
          padding-inline-start: 30.35442px;
  -webkit-padding-start: 31px;
          padding-inline-start: 31px;
}
.p-contact__tel-info-number::before {
  content: "";
  width: 22.35442px;
  height: 32.99938px;
  background: url(../img/tel-icon-green.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-info-number {
    color: #66b1c5;
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 52.5px */
    letter-spacing: 1.75px;
  }
}

@media screen and (max-width: 767px) {
  .p-contact__tel-info-time {
    color: #274b66;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 19.2px */
    letter-spacing: 0.6px;
    -webkit-margin-before: -3px;
            margin-block-start: -3px;
  }
}

.p-cta-contact__items-mail .c-cta__wrap {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

@media screen and (max-width: 767px) {
  .p-cta-contact__cta {
    -webkit-margin-before: 32px;
            margin-block-start: 32px;
  }
}

.p-cta-contact__cta-text {
  color: #274b66;
  text-align: center;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 1px;
  -webkit-margin-after: 4px;
          margin-block-end: 4px;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__cta-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 28.8px */
    letter-spacing: 0.9px;
  }
}

.p-cta-contact__cta-btn {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta-contact__cta-btn {
    font-size: 18px;
    padding: 18px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}

.p-reason {
  padding-block: 120px;
  background: url(../img/reason-background_pc.png) no-repeat center/cover;
}
@media screen and (max-width: 1000px) {
  .p-reason {
    padding-block: 80px;
    background: url(../img/reason-background_sp.png) no-repeat center/cover;
  }
}

.p-reason__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 9rem;
     -moz-column-gap: 9rem;
          column-gap: 9rem;
  padding-inline: 40px;
  max-width: 1320px;
  margin-inline: auto;
}
@media screen and (max-width: 1350px) {
  .p-reason__inner {
    -webkit-column-gap: 6.875rem;
       -moz-column-gap: 6.875rem;
            column-gap: 6.875rem;
  }
}
@media screen and (max-width: 1150px) {
  .p-reason__inner {
    -webkit-column-gap: 5.625rem;
       -moz-column-gap: 5.625rem;
            column-gap: 5.625rem;
  }
}
@media screen and (max-width: 1000px) {
  .p-reason__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-inline: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-reason__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  position: sticky;
  top: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .p-reason__title-block {
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__title-block {
    -webkit-column-gap: calc(100vw - 290px);
       -moz-column-gap: calc(100vw - 290px);
            column-gap: calc(100vw - 290px);
  }
}
@media screen and (max-width: 400px) {
  .p-reason__title-block {
    -webkit-column-gap: 101px;
       -moz-column-gap: 101px;
            column-gap: 101px;
  }
}

.p-reason__title .c-section-title__ja {
  white-space: nowrap;
}

.p-reason__title-icon {
  -webkit-margin-before: 11px;
          margin-block-start: 11px;
  width: 85px;
  height: 144px;
}
@media screen and (max-width: 767px) {
  .p-reason__title-icon {
    width: 56.148px;
    height: 94.609px;
    -webkit-margin-before: -35px;
            margin-block-start: -35px;
  }
}
.p-reason__title-icon img,
.p-reason__title-icon picture {
  width: 100%;
  height: auto;
}

.p-reason__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 1000px) {
  .p-reason__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 660px;
    margin-inline: auto;
  }
}

.p-reason__item {
  position: relative;
  background: #f7f7f7;
  padding: 26px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.p-reason__item::before {
  content: "";
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .p-reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 30px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 16px;
    width: calc((100% + 80px - 100px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    width: 100%;
    padding: 20px 16px;
  }
}

.p-reason__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 22.25rem;
}
@media screen and (max-width: 1000px) {
  .p-reason__textarea {
    max-width: 100%;
  }
}

.p-reason__item-title {
  color: #274b66;
  font-family: "Noto Sans JP";
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 1.1px;
}
@media screen and (max-width: 1000px) {
  .p-reason__item-title {
    font-size: 18px;
  }
}

.p-reason__item-text {
  color: #274b66;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .p-reason__item-text {
    font-size: 15px;
  }
}

.p-reason__img {
  aspect-ratio: 306/228;
  min-width: 200px;
  max-width: 306px;
}
.p-reason__img img,
.p-reason__img picture {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .p-reason__img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    aspect-ratio: 303/200;
  }
}

.p-reason__number {
  position: absolute;
  top: -11px;
  left: -23px;
  width: 60px;
  height: 60px;
  background: #66b1c5;
  border-radius: 50%;
  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;
  row-gap: 1px;
}
@media screen and (max-width: 1100px) {
  .p-reason__number {
    top: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .p-reason__number {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__number {
    right: 14px;
  }
}

.p-reason__number-label {
  color: #fff;
  font-family: Montserrat;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 9px */
  letter-spacing: 0.3px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.p-reason__number-value {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 30px */
}

.p-cta-first {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-cta-first {
    padding-block: 80px;
    padding-inline: 20px;
  }
}

.p-cta-first__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 508px;
  aspect-ratio: 1440/508;
  overflow: hidden;
}
.p-cta-first__bg picture,
.p-cta-first__bg img {
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .p-cta-first__bg picture,
  .p-cta-first__bg img {
    height: calc(100% + 120px);
  }
}

.p-cta-first__contents {
  position: relative;
  z-index: 2;
  max-width: 660px;
  text-align: center;
}

.p-cta-first__title {
  color: #fff;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 52.5px */
  letter-spacing: 1.75px;
  white-space: nowrap;
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}
@media screen and (max-width: 767px) {
  .p-cta-first__title {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 39px */
    letter-spacing: 1.3px;
    -webkit-margin-after: 20px;
            margin-block-end: 20px;
  }
}

.p-cta-first__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
  -webkit-margin-after: 32px;
          margin-block-end: 32px;
  padding-inline: 41px;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .p-cta-first__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-first__text {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 27px */
    letter-spacing: 0.75px;
    padding-inline: 0;
  }
}

.p-cta-first__cta-btn {
  margin-inline: auto;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  padding-inline: 30px;
  -webkit-padding-after: 19px;
          padding-block-end: 19px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta-first__cta-btn {
    font-size: 18px;
    padding-inline: 28px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}

.p-teacher {
  background: #f7f7f7;
  -webkit-padding-before: 120px;
          padding-block-start: 120px;
  -webkit-padding-after: 122px;
          padding-block-end: 122px;
}
@media screen and (max-width: 767px) {
  .p-teacher {
    padding-block: 80px;
  }
}

.p-teacher__inner {
  padding-inline: 100px;
}
@media screen and (max-width: 767px) {
  .p-teacher__inner {
    padding-inline: 20px;
  }
}

.p-teacher__title {
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
@media screen and (max-width: 767px) {
  .p-teacher__title {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}

.p-teacher__swiper-container {
  -webkit-padding-start: 100px;
          padding-inline-start: 100px;
}
@media screen and (max-width: 767px) {
  .p-teacher__swiper-container {
    -webkit-padding-start: 20px;
            padding-inline-start: 20px;
  }
}

.p-teacher__swiper {
  position: relative;
  -webkit-padding-after: 99px;
          padding-block-end: 99px;
}
@media screen and (max-width: 767px) {
  .p-teacher__swiper {
    -webkit-padding-after: 63px;
            padding-block-end: 63px;
  }
}

.p-teacher__swiper-slide {
  width: 352px;
  -webkit-padding-after: 12px;
          padding-block-end: 12px;
}
@media screen and (max-width: 767px) {
  .p-teacher__swiper-slide {
    width: 320px;
    -webkit-padding-after: 46px;
            padding-block-end: 46px;
  }
}

.p-teacher__card-img {
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
  border-radius: 20px;
}
.p-teacher__card-img img {
  aspect-ratio: 352/260;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-teacher__card-img img {
    aspect-ratio: 320/240;
  }
}

.p-teacher__card-name {
  color: #274b66;
  font-family: "Noto Sans JP";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 1.1px;
  -webkit-margin-after: 12px;
          margin-block-end: 12px;
}
@media screen and (max-width: 767px) {
  .p-teacher__card-name {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
  }
}

.p-teacher__card-subject-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-margin-after: 4px;
          margin-block-end: 4px;
}

.p-teacher__card-subject {
  border-radius: 3px;
  width: 46px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  background: #66b1c5;
  padding-block: 3px;
}

.p-teacher__card-comment {
  color: #274b66;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .p-teacher__card-comment {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-teacher__card-comment {
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 24px */
    letter-spacing: 0.75px;
  }
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
  position: absolute;
  width: 450px;
  height: 8px;
  background: rgba(180, 173, 173, 0.5);
  left: 0;
  top: 543px;
  border-radius: 0 10px 10px 0;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-progressbar.swiper-pagination-horizontal {
    width: 150px;
    top: auto;
    bottom: 15.5px;
  }
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #66b1c5;
  border-radius: 10px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: ""; /* デフォルトのものを初期化 */
}

.swiper-button-prev,
.swiper-button-next {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  top: auto;
  width: 39px;
  height: 39px;
  left: auto;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 0.7;
  }
}

.p-teacher_swiper-button-prev {
  position: absolute;
  right: 161.29px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-teacher_swiper-button-prev {
    right: 84.29px;
  }
}

.p-teacher_swiper-button-next {
  position: absolute;
  right: 100px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-teacher_swiper-button-next {
    right: 23px;
  }
}

.p-course {
  background: #ecf6f9;
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
  -webkit-padding-before: 122px;
          padding-block-start: 122px;
}
@media screen and (max-width: 1000px) {
  .p-course {
    padding-block: 80px;
  }
}

@media screen and (max-width: 1000px) {
  .p-course__inner {
    padding-inline: 20px;
  }
}

.p-course__title {
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-course__title .c-section-title__en {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-course__title {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
    margin-left: 0;
    margin-right: auto;
  }
}

.service-tabs__inner {
  width: min(920px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 1000px) {
  .service-tabs__inner {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .service-tabs__inner {
    padding-inline: 0;
  }
}

.service-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-tabs__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
.service-tabs__item[aria-selected=true] {
  border-radius: 10px 10px 0px 0px;
  background: #fff;
  color: #66b1c5;
  pointer-events: none;
  padding-block: 20px;
}
.service-tabs__item[aria-selected=false] {
  -webkit-margin-before: 9px;
          margin-block-start: 9px;
  border-radius: 0 10px 0 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: #f7f7f7;
  color: #b4adad;
  padding-block: 15.5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (any-hover: hover) {
  .service-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.service-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.service-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  display: block;
}

.service-tabs__contents {
  margin-inline: auto;
  position: relative;
}
.service-tabs__contents::before {
  content: "";
  position: absolute;
  width: 122px;
  height: 167px;
  bottom: 0;
  left: -118px;
  background-image: url("../img/service-icon.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 997;
}
@media screen and (max-width: 1200px) {
  .service-tabs__contents::before {
    left: -20px;
  }
}
@media screen and (max-width: 1000px) {
  .service-tabs__contents::before {
    right: 0;
    left: auto;
    top: -250px;
  }
}
@media screen and (max-width: 767px) {
  .service-tabs__contents::before {
    width: 73px;
    height: 101px;
    right: 10px;
    top: -180px;
  }
}

.service-tabs__content {
  border-radius: 0 0 10px 10px;
  padding: 40px 148px;
  background: #fff;
  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;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .service-tabs__content {
    padding-inline: 110px;
  }
}
@media screen and (max-width: 1000px) {
  .service-tabs__content {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .service-tabs__content {
    padding: 32px 16px;
  }
}
.service-tabs__content h3 {
  color: #274b66;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 1.1px;
  -webkit-margin-after: 12px;
          margin-block-end: 12px;
}
@media screen and (max-width: 1000px) {
  .service-tabs__content h3 {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}
@media screen and (max-width: 500px) {
  .service-tabs__content h3 {
    text-align: center;
  }
}
.service-tabs__content p {
  color: #274b66;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .service-tabs__content p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .service-tabs__content p {
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 24px */
    letter-spacing: 0.75px;
  }
}

.content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
  -webkit-margin-after: 34px;
          margin-block-end: 34px;
}
@media screen and (max-width: 767px) {
  .content-list {
    row-gap: 32px;
  }
}

.content1-btn,
.content2-btn {
  width: 220px;
}
.content1-btn .c-btn,
.content2-btn .c-btn {
  width: 100%;
}

.p-course__modal {
  position: fixed;
  padding: 80px 120px;
  border-radius: 30px;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  height: 0;
  background: #fff;
  max-width: 905px;
  margin-inline: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .p-course__modal {
    max-width: none;
    width: 90vw;
    padding: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-course__modal {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 500px) {
  .p-course__modal {
    width: calc(100vw - 40px);
    padding: 40px 16px;
  }
}
.p-course__modal.is-active {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  translate: 0;
}

.p-course__modal-inner {
  position: relative;
}

.p-course__modal-close {
  position: absolute;
  cursor: pointer;
  top: -44px;
  right: -84px;
}
@media screen and (max-width: 1000px) {
  .p-course__modal-close {
    top: -14px;
    right: -7px;
  }
}

.p-course__modal-content + .p-course__modal-content {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}

.p-course__modal-content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
}
@media screen and (max-width: 1000px) {
  .p-course__modal-content-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 500px) {
  .p-course__modal-content-title {
    -webkit-margin-after: 16px;
            margin-block-end: 16px;
  }
}
.p-course__modal-content-title h3 {
  color: #274b66;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 33px */
  letter-spacing: 1.1px;
}
@media screen and (max-width: 767px) {
  .p-course__modal-content-title h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 27px */
    letter-spacing: 0.9px;
  }
}
.p-course__modal-content-title p {
  color: #274b66;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .p-course__modal-content-title p {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-course__modal-content-title p {
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 27px */
    letter-spacing: 0.75px;
  }
}

.p-course__modal-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 500px) {
  .p-course__modal-content-list {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}

.p-course__modal-content-item {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}

.p-course__modal-content-item-title {
  background: #66b1c5;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
  padding-block: 4px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-course__modal-content-item-title {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 27px */
    letter-spacing: 0.75px;
  }
}

.p-course__modal-content-item-text {
  color: #274b66;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .p-course__modal-content-item-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-course__modal-content-item-text {
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 24px */
    letter-spacing: 0.75px;
  }
}

.p-course__modal-overlay {
  position: fixed;
  inset: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}
.p-course__modal-overlay.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-faq {
  padding-block: 120px;
  background: #f7f7f7;
}
@media screen and (max-width: 500px) {
  .p-faq {
    padding-block: 80px;
  }
}

.p-faq__inner {
  padding-inline: 40px;
}
@media screen and (max-width: 500px) {
  .p-faq__inner {
    padding-inline: 20px;
  }
}

.p-faq__title {
  margin-inline: auto;
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
@media screen and (max-width: 500px) {
  .p-faq__title {
    margin-left: 0;
    margin-right: auto;
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__title .c-section-title__en {
    text-align: left;
  }
}

.p-faq__items-wrap {
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (max-width: 1240px) {
  .p-faq__items-wrap {
    max-width: 660px;
  }
}

.js-details.is-opened .p-faq__question span::after {
  background: url(../img/faq-minus.png) center center/cover no-repeat;
  width: 16px;
  height: 2px;
}

.p-faq__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32.5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__items {
    row-gap: 32px;
  }
}
.p-faq__items::after {
  content: "";
  position: absolute;
  width: 137px;
  height: 153px;
  right: -198px;
  bottom: -69px;
  background: url(../img/faq-icon.png) center center/cover no-repeat;
}
@media screen and (max-width: 1400px) {
  .p-faq__items::after {
    width: 115.5px;
    height: 129px;
    right: -130px;
  }
}
@media screen and (max-width: 1000px) {
  .p-faq__items::after {
    right: 0;
    top: -156px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__items::after {
    width: 77px;
    height: 86px;
    right: 10px;
    top: -113px;
  }
}

.p-faq__summary {
  display: block;
  list-style: none;
}
.p-faq__summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  .p-faq__summary:hover {
    cursor: pointer;
  }
}

.p-faq__question {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
  border-radius: 10px;
  background: #fff;
  padding: 19.5px 24px;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    padding: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
    letter-spacing: 0.8px;
  }
}
.p-faq__question span {
  position: relative;
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
  -webkit-padding-end: 40px;
          padding-inline-end: 40px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-faq__question span {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 500px) {
  .p-faq__question span {
    -webkit-padding-start: 48px;
            padding-inline-start: 48px;
    -webkit-padding-end: 28px;
            padding-inline-end: 28px;
  }
}
.p-faq__question span::before {
  content: "";
  background: url(../img/faq-q.png) center center/cover no-repeat;
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
}
.p-faq__question span::after {
  content: "";
  background: url(../img/faq-plus.png) center center/cover no-repeat;
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .p-faq__question span::after {
    top: 50%;
    translate: 0 -50%;
  }
}

.first-question {
  text-indent: 0.3em;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 27px */
  letter-spacing: 0.75px;
}

.p-faq__content {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  padding-inline: 26px;
  min-width: 52px;
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}
@media screen and (max-width: 767px) {
  .p-faq__content {
    padding-inline: 13px;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 24px */
    letter-spacing: 0.75px;
  }
}
.p-faq__content span {
  position: relative;
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-faq__content span {
    -webkit-padding-start: 48px;
            padding-inline-start: 48px;
  }
}
.p-faq__content span::before {
  content: "";
  background: url(../img/faq-a.png) center center/cover no-repeat;
  position: absolute;
  left: 0;
  width: 36px;
  height: 36px;
}

.p-contact {
  -webkit-padding-before: 122px;
          padding-block-start: 122px;
  -webkit-padding-after: 120px;
          padding-block-end: 120px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 80px;
  }
}

.p-contact__inner {
  padding-inline: 40px;
}
@media screen and (max-width: 500px) {
  .p-contact__inner {
    padding-inline: 20px;
  }
}

.p-contact__title {
  margin-inline: auto;
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}

.p-contact__form {
  margin-inline: auto;
  max-width: 640px;
}

.p-contact__row + .p-contact__row {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
}

.p-contact__row-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.7777777778vw;
     -moz-column-gap: 2.7777777778vw;
          column-gap: 2.7777777778vw;
  -webkit-margin-before: 26px;
          margin-block-start: 26px;
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
}
.p-contact__row-wrapper .p-contact__row {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-contact__row-wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 35px;
  }
}
.p-contact__row-wrapper .p-contact__row + .p-contact__row {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.p-contact__head {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
  -webkit-padding-after: 8px;
          padding-block-end: 8px;
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 27px */
    letter-spacing: 0.75px;
  }
}

.p-contact__head-must {
  position: relative;
  -webkit-padding-end: 7px;
          padding-inline-end: 7px;
}
.p-contact__head-must::after {
  content: "*";
  position: absolute;
  color: #dc5d5c;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.75px;
  right: 0;
  top: 1px;
}

.must-space {
  -webkit-padding-end: 12px;
          padding-inline-end: 12px;
}

input[type=text],
input[type=email],
textarea,
select {
  width: 100%;
  padding: 16px;
  background: #f7f7f7;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  line-height: normal;
  letter-spacing: 0.56px;
}

textarea {
  height: 240px !important;
  resize: vertical;
}

/* フォーム要素がフォーカスされた時のスタイル */
.p-contact__form input[type=text]:focus,
.p-contact__form input[type=email]:focus,
.p-contact__form textarea:focus,
.p-contact__form select:focus {
  border: 1px solid #66b1c5;
  outline: none;
}

.p-contact__form input.invalid,
.p-contact__form textarea.invalid,
.p-contact__form select.invalid {
  border: 1px solid #dc5d5c;
  background: #f4d9d9;
}

/* ご用件の行全体がエラー状態（.is-error）の時に、
   その中の全てのカスタムチェックボックス（span::before）の枠線を変更 */
.p-contact__row-contact-type.is-error .p-contact__data-checkbox span::before {
  border: 1px solid #dc5d5c;
}

.p-contact__acceptance #inPrivacy.invalid + span::before {
  border: 1px solid #dc5d5c; /* 枠線を赤色に変更 */
}

.p-contact__error-message {
  color: #dc5d5c;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.6px;
  margin-top: 2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
}

.p-contact__select-wrap {
  position: relative;
}
.p-contact__select-wrap::after {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 11.414px;
  height: 7.121px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 22.29px;
  background: url(../img/select-open-icon.png) center center/cover no-repeat;
}
@media (any-hover: hover) {
  .p-contact__select-wrap:hover {
    cursor: pointer;
  }
}

.p-contact__row-contact-type .p-contact__head {
  -webkit-padding-after: 6px;
          padding-block-end: 6px;
}
@media screen and (max-width: 767px) {
  .p-contact__row-contact-type .p-contact__head {
    -webkit-padding-after: 8px;
            padding-block-end: 8px;
  }
}
.p-contact__row-contact-type .p-contact__data-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (max-width: 700px) {
  .p-contact__row-contact-type .p-contact__data-checkbox {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 610px) {
  .p-contact__row-contact-type .p-contact__data-checkbox {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    row-gap: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-contact__data-checkbox span {
  padding-left: 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact__data-checkbox span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #b4adad;
  border-radius: 4px;
}
.p-contact__data-checkbox span::after {
  content: "";
  position: absolute;
  background: url(../img/checkbox-icon.png) center center/cover no-repeat;
  width: 16.3px;
  height: 12.025px;
  top: 3.48x;
  left: 3.85px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-contact__data-checkbox label {
  cursor: pointer;
}

.p-contact__data-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.7777777778vw;
     -moz-column-gap: 2.7777777778vw;
          column-gap: 2.7777777778vw;
}

input::-webkit-input-placeholder {
  color: #b4adad;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

input::-moz-placeholder {
  color: #b4adad;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

input:-ms-input-placeholder {
  color: #b4adad;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

input::-ms-input-placeholder {
  color: #b4adad;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

input::placeholder {
  color: #b4adad;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
}

.p-contact__acceptance {
  -webkit-margin-before: 21px;
          margin-block-start: 21px;
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance {
    -webkit-margin-before: 31px;
            margin-block-start: 31px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-contact__acceptance span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-contact__acceptance span {
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 27px */
    letter-spacing: 0.75px;
  }
}
.p-contact__acceptance span::before {
  top: 4.5px;
}
.p-contact__acceptance span::after {
  top: 8.98px;
}

.p-contact__data-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 垂直方向の中央揃え */
  gap: 8px; /* チェックボックスと文字の間の余白 */
}

.p-contact__submit {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    -webkit-margin-before: 14px;
            margin-block-start: 14px;
  }
}
.p-contact__submit .c-btn__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.48px;
}

.p-contact__cta-btn {
  -webkit-padding-start: 20px;
          padding-inline-start: 20px;
  -webkit-padding-end: 20px;
          padding-inline-end: 20px;
  cursor: pointer;
}

#emFullname {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; /* ←エラーだけ改行させる */
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Montserrat", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}