@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,
figcaption,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* -----------------------------------
   ブロック系要素の表示修正
----------------------------------- */
header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

/* -----------------------------------
   リスト系の初期化
----------------------------------- */
ol,
ul {
  list-style: none;
}

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

/* -----------------------------------
   画像要素
----------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

/* -----------------------------------
   ボタン初期化
----------------------------------- */
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
}

/* -----------------------------------
   フォーム要素の初期化
----------------------------------- */
input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* -----------------------------------
   基本の行間
----------------------------------- */
html {
  line-height: 1;
}

/* -----------------------------------
   ※以下カスタマイズしやすいスタイル※
----------------------------------- */
/* スタイルを当てやすいように調整 */
picture,
img,
a,
span {
  display: inline-block;
}

/* リンクの初期化（必要なら調整） */
a {
  color: inherit;
  text-decoration: none;
}

/* メディア要素の100%表示（必要に応じて調整） */
video,
img,
svg {
  width: 100%;
  height: auto;
}

/* ボタンの初期化（プロジェクトに応じて拡張可能） */
button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

/* フォーム要素の初期化（必要に応じて） */
input,
textarea,
select {
  font: inherit;
}

@media screen and (max-width: 1159px) and (min-width: 768px) {
  html {
    font-size: clamp(10px, 16 / 1160 * 100vw, 18px);
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.1rem;
}

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  width: 100%;
  max-width: 1160px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

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

.l-section {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
}
@media (min-width: 768px) {
  .l-section {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
    -webkit-padding-after: 3.75rem;
            padding-block-end: 3.75rem;
  }
}

.c-cta__btn-wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* 非表示時はクリック不可 */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 100;
}

.c-cta__btn-wrapper.js-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* 表示時はクリック可能 */
}

.c-cta__btn {
  width: 10rem;
  height: auto;
  aspect-ratio: 160/180;
  -webkit-animation: bounce 1.7s infinite;
          animation: bounce 1.7s infinite;
}
@media screen and (max-width: 767px) {
  .c-cta__btn {
    width: 7.5rem;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  15% {
    -webkit-transform: translateY(1.25rem);
            transform: translateY(1.25rem);
  }
  25% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  40% {
    -webkit-transform: translateY(0.9375rem);
            transform: translateY(0.9375rem);
  }
  50% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  15% {
    -webkit-transform: translateY(1.25rem);
            transform: translateY(1.25rem);
  }
  25% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  40% {
    -webkit-transform: translateY(0.9375rem);
            transform: translateY(0.9375rem);
  }
  50% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
}
.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 2.5rem;
  background: #e7f482;
}

.p-header__inner {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 9.375rem 1fr;
  padding-block: 1.0625rem;
}

.p-header__logo {
  font-size: 1.25rem;
}

.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: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.p-header__list li a {
  font-size: 1.25rem;
}

.p-header__btn {
  padding: 0.5rem 1.625rem;
  background: #fff;
  border: 1px solid #fff;
  color: #001A75;
  font-size: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-fv__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  margin-inline: auto;
}
@media screen and (max-width: 540px) {
  .p-fv__inner {
    width: 100%;
  }
}

.p-fv__cta-btn {
  position: absolute;
  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: flex-end;
  border-radius: 100vmax;
  bottom: clamp(16px, 1.458vw, 1.3125rem);
  right: clamp(24px, 5.417vw, 4.875rem);
  color: #ffffff;
  border: 3px solid #ffffff;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
  -webkit-column-gap: clamp(1px, 5.972vw, 5.375rem);
     -moz-column-gap: clamp(1px, 5.972vw, 5.375rem);
          column-gap: clamp(1px, 5.972vw, 5.375rem);
  font-size: clamp(10px, 1.944vw, 1.75rem);
  padding-block: clamp(6px, 0.903vw, 0.8125rem);
  -webkit-padding-end: clamp(12px, 1.667vw, 1.5rem);
          padding-inline-end: clamp(12px, 1.667vw, 1.5rem);
  width: 43.056vw;
  max-width: 38.75rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(#46cf27), color-stop(50%, #46cf27), color-stop(50%, #2abe09), to(#2abe09));
  background: linear-gradient(to bottom, #46cf27 0%, #46cf27 50%, #2abe09 50%, #2abe09 100%);
}
@media screen and (max-width: 540px) {
  .p-fv__cta-btn {
    bottom: calc(50% + 1.625rem);
    left: 50%;
    translate: -50%;
    width: 21rem;
    font-size: max(0.975rem, 11.7px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    -webkit-padding-end: 1.5rem;
            padding-inline-end: 1.5rem;
    padding-block: 0.229375rem;
    -webkit-column-gap: 2.36875rem;
       -moz-column-gap: 2.36875rem;
            column-gap: 2.36875rem;
  }
}
@media screen and (max-width: 540px) and (max-width: 767px) {
  .p-fv__cta-btn {
    font-size: 0.975rem;
  }
}
@media (any-hover: hover) {
  .p-fv__cta-btn:hover {
    opacity: 0.8;
  }
}

.p-fv__cta-btn-icon {
  width: 3.6681vw;
  max-width: 3.3125rem;
  height: auto;
  aspect-ratio: 53/57.86;
}
@media screen and (max-width: 540px) {
  .p-fv__cta-btn-icon {
    width: 49.91px;
  }
}

.p-fv__bottom-img {
  display: none;
}
@media screen and (max-width: 540px) {
  .p-fv__bottom-img {
    display: block;
  }
}

.p-footer {
  color: #ffffff;
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
}

.p-footer__cta {
  background-color: #3232c3;
  -webkit-padding-before: 4.9375rem;
          padding-block-start: 4.9375rem;
  -webkit-padding-after: 1.875rem;
          padding-block-end: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__cta {
    -webkit-padding-before: 3.125rem;
            padding-block-start: 3.125rem;
    -webkit-padding-after: 6.5rem;
            padding-block-end: 6.5rem;
  }
}

.p-footer__cta-inner {
  width: 100%;
  max-width: 72.5rem;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.p-footer__cta-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-contents {
    display: grid;
    place-items: center;
    grid-template-areas: "text" "img" "btn";
    row-gap: 1.625rem;
  }
}

.p-footer__cta-left {
  width: 32.5rem;
  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 (max-width: 767px) {
  .p-footer__cta-left {
    display: contents;
  }
}

.p-footer__cta-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  -webkit-padding-before: 3.70625rem;
          padding-block-start: 3.70625rem;
  font-size: max(2rem, 24px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__cta-text {
    font-size: max(1.4rem, 16.8px);
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.05em;
    grid-area: text;
    -webkit-padding-before: unset;
            padding-block-start: unset;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-footer__cta-text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__cta-right {
    grid-area: img;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__cta-img {
  width: 32.5rem;
  height: auto;
  aspect-ratio: 520/436.8;
}

.p-footer-cta__brn-wrap {
  display: grid;
  place-items: center;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer-cta__brn-wrap {
    grid-area: btn;
    -webkit-margin-before: unset;
            margin-block-start: unset;
  }
}

.p-footer-cta__btn {
  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;
  width: 29.4375rem;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  background-color: #ffffff;
  color: #3232c3;
  padding-block: 1.4375rem;
  border-radius: 100vmax;
  font-size: max(1.6rem, 19.2px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer-cta__btn {
    font-size: 1.6rem;
  }
}
.p-footer-cta__btn .arrow {
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer-cta__btn .arrow {
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer-cta__btn {
    width: 21.9375rem;
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    font-size: max(1.1875rem, 14.25px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding-block: 1.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-footer-cta__btn {
    font-size: 1.1875rem;
  }
}
@media (any-hover: hover) {
  .p-footer-cta__btn:hover {
    opacity: 0.8;
  }
}

.p-footer__links {
  background-color: #284a7a;
  -webkit-padding-before: 5.125rem;
          padding-block-start: 5.125rem;
  -webkit-padding-after: 4.25rem;
          padding-block-end: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    -webkit-padding-before: 3rem;
            padding-block-start: 3rem;
    -webkit-padding-after: 7.75rem;
            padding-block-end: 7.75rem;
  }
}

.p-footer__links-inner {
  width: 100%;
  max-width: 101rem;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 1440px) {
  .p-footer__links-inner {
    max-width: 77rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__links-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -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: 0.5rem;
  }
}

.p-footer__nav-link {
  font-size: max(1rem, 12px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  padding-inline: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 1rem;
  }
}
.p-footer__nav-link:first-child {
  -webkit-padding-start: unset;
          padding-inline-start: unset;
}
.p-footer__nav-link:first-child::after {
  display: none;
}
.p-footer__nav-link::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  height: 1rem;
  width: 0.0625rem;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link::after {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: max(0.875rem, 10.5px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.04em;
    padding-inline: unset;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 0.875rem;
  }
}

.p-footer__nav-link--company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__nav-link--company .icon {
  width: 1rem;
}

.p-footer__copyright {
  display: inline-block;
  font-size: max(0.875rem, 10.5px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0em;
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    -webkit-margin-before: 1.5rem;
            margin-block-start: 1.5rem;
  }
}

.p-media {
  -webkit-padding-before: 2.4rem;
          padding-block-start: 2.4rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-media {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
    -webkit-padding-after: 3.75rem;
            padding-block-end: 3.75rem;
  }
}

.p-media__title {
  font-size: max(1.75rem, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-media__title {
    font-size: 1.75rem;
  }
}

.p-media__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-margin-before: 4.8125rem;
          margin-block-start: 4.8125rem;
  -webkit-column-gap: 3.1875rem;
     -moz-column-gap: 3.1875rem;
          column-gap: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-media__contents {
    -webkit-margin-before: 1.625rem;
            margin-block-start: 1.625rem;
    -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: 3.1875rem;
  }
}

.p-media__img-left {
  max-width: 22.75rem;
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-media__img-left {
    max-width: 17.875rem;
  }
}

.p-media__img-right {
  max-width: 22rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-media__img-right {
    max-width: 21.625rem;
  }
}

.p-about {
  position: relative;
  z-index: 10;
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
  -webkit-padding-before: 8.25rem;
          padding-block-start: 8.25rem;
  -webkit-padding-after: 5.14875rem;
          padding-block-end: 5.14875rem;
  background: url("../img/about-bg.webp") no-repeat center top/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about {
    -webkit-padding-after: 3.3125rem;
            padding-block-end: 3.3125rem;
  }
}

.p-about__title {
  font-size: max(2.6875rem, 32.25px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: right;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: 2.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: max(2rem, 24px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-about__title {
    font-size: 2rem;
  }
}

.p-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3125rem;
     -moz-column-gap: 1.3125rem;
          column-gap: 1.3125rem;
  -webkit-margin-before: 1.6875rem;
          margin-block-start: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.1875rem;
  }
}

.p-about__img {
  width: 100%;
  max-width: 30rem;
}
.p-about__main {
  text-align: center;
}

.p-about__main-img {
  width: 25.8125rem;
  height: auto;
  aspect-ratio: 413/136.28;
}
@media screen and (max-width: 767px) {
  .p-about__main-img {
    width: 100%;
  }
}

.p-about__main-title {
  font-size: max(2.625rem, 31.5px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: right;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-margin-before: 1.125rem;
          margin-block-start: 1.125rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-about__main-title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__main-title {
    font-size: max(2rem, 24px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-about__main-title {
    font-size: 2rem;
  }
}

.p-about__main-text {
  font-size: max(1.125rem, 13.5px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  -webkit-margin-before: 2.45625rem;
          margin-block-start: 2.45625rem;
}
@media screen and (max-width: 767px) {
  .p-about__main-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__main-text {
    font-size: max(1.125rem, 13.5px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: left;
    -webkit-margin-before: 2.4375rem;
            margin-block-start: 2.4375rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-about__main-text {
    font-size: 1.125rem;
  }
}
.p-about__main-text .blue {
  display: inline;
  color: #2a40d2;
}

.p-cta {
  -webkit-padding-before: 5.625rem;
          padding-block-start: 5.625rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
  background: url("../img/cta-bg.webp") no-repeat center/cover;
  border-radius: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-cta {
    -webkit-padding-before: 3.75rem;
            padding-block-start: 3.75rem;
    -webkit-padding-after: 7.5rem;
            padding-block-end: 7.5rem;
    background-position: left -20px top;
  }
}

.p-cta--first {
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
}

.p-cta__title {
  font-size: max(2.75rem, 33px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: max(1.6rem, 19.2px);
    font-weight: 700;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.6rem;
  }
}

.yellow {
  color: #feff4c;
}
@media screen and (max-width: 767px) {
  .yellow {
    color: #ffffff;
  }
}

.p-cta__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  -webkit-margin-before: 2.875rem;
          margin-block-start: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    justify-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}

.p-cta__item {
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item {
    width: 100%;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
.p-cta__item img {
  width: 16rem;
  height: auto;
  aspect-ratio: 256/192.78;
}
@media screen and (max-width: 767px) {
  .p-cta__item img {
    width: 100%;
  }
}

.p-cta-item__text {
  color: #ffffff;
  font-size: max(1.125rem, 13.5px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-cta-item__text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta-item__text {
    font-size: max(0.875rem, 10.5px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.12em;
    -webkit-margin-before: -0.28125rem;
            margin-block-start: -0.28125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta-item__text {
    font-size: 0.875rem;
  }
}

.p-cta__img {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}
@media (max-width: 540px) {
  .p-cta__img {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-margin-before: 1.9375rem;
            margin-block-start: 1.9375rem;
  }
}

.p-cta__btn-wrapper {
  -webkit-margin-before: 3.6875rem;
          margin-block-start: 3.6875rem;
  display: grid;
  place-items: center;
}
@media (max-width: 540px) {
  .p-cta__btn-wrapper {
    -webkit-margin-before: unset;
            margin-block-start: unset;
  }
}

.p-cta__btn-text {
  color: #ffffff;
  font-size: max(1.625rem, 19.5px);
  font-weight: 700;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-text {
    font-size: 1.625rem;
  }
}
@media (max-width: 540px) {
  .p-cta__btn-text {
    display: none;
  }
}

.p-cta__btn {
  -webkit-margin-before: 0.75rem;
          margin-block-start: 0.75rem;
  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: flex-end;
  -webkit-column-gap: 3.0625rem;
     -moz-column-gap: 3.0625rem;
          column-gap: 3.0625rem;
  -webkit-padding-end: 1.5rem;
          padding-inline-end: 1.5rem;
  border-radius: 100vmax;
  bottom: 1.3125rem;
  right: 4.875rem;
  color: #ffffff;
  border: 3px solid #ffffff;
  font-size: max(1.75rem, 21px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-block: 0.84375rem;
  max-width: 34.625rem;
  width: 34.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#46cf27), color-stop(50%, #46cf27), color-stop(50%, #2abe09), to(#2abe09));
  background: linear-gradient(to bottom, #46cf27 0%, #46cf27 50%, #2abe09 50%, #2abe09 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    width: 21rem;
    font-size: max(0.975rem, 11.7px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    -webkit-padding-end: 1.5rem;
            padding-inline-end: 1.5rem;
    padding-block: 0.229375rem;
    -webkit-column-gap: 2.36875rem;
       -moz-column-gap: 2.36875rem;
            column-gap: 2.36875rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__btn {
    font-size: 0.975rem;
  }
}
@media (max-width: 540px) {
  .p-cta__btn {
    display: none;
  }
}
@media (any-hover: hover) {
  .p-cta__btn:hover {
    opacity: 0.8;
  }
}

.p-cta__btn-icon {
  width: 3.3125rem;
  height: auto;
  aspect-ratio: 53/57.86;
}
@media screen and (max-width: 767px) {
  .p-cta__btn-icon {
    width: 49.91px;
  }
}

.p-cta__btn-sp {
  display: none;
}
@media (max-width: 540px) {
  .p-cta__btn-sp {
    display: block;
    width: 21.875rem;
    height: auto;
    aspect-ratio: 350/135;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media (any-hover: hover) {
  .p-cta__btn-sp:hover {
    opacity: 0.8;
  }
}

.p-company {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  -webkit-padding-after: 4.8125rem;
          padding-block-end: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    -webkit-padding-before: 0rem;
            padding-block-start: 0rem;
    -webkit-padding-after: 0.8125rem;
            padding-block-end: 0.8125rem;
  }
}

.p-company__wrapper {
  display: grid;
  grid-template-areas: "img" "title" "logo" "text";
}

.p-company__title {
  font-size: max(2.25rem, 27px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: max(1.25rem, 15px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #274a78;
    -webkit-margin-before: 1.8125rem;
            margin-block-start: 1.8125rem;
    grid-area: title;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-company__title {
    font-size: 1.25rem;
  }
}

.p-company__logo {
  width: 18.375rem;
  height: auto;
  aspect-ratio: 294/38;
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-company__logo {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    grid-area: logo;
  }
}

.p-company__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__contents {
    display: contents;
  }
}

.p-company__left img {
  width: 29.4375rem;
  height: auto;
  aspect-ratio: 471/283.38;
}
@media screen and (max-width: 767px) {
  .p-company__left {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-company__right {
  width: 26.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__right {
    width: 100%;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    grid-area: text;
  }
}

.p-company__text {
  font-size: max(1rem, 12px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__text {
    font-size: max(0.75rem, 9px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-company__text {
    font-size: 0.75rem;
  }
}

.p-company__text + .p-company__text {
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__text + .p-company__text {
    -webkit-margin-before: 1.1875rem;
            margin-block-start: 1.1875rem;
  }
}

.p-company__list {
  -webkit-margin-before: 3.375rem;
          margin-block-start: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5.75rem;
     -moz-column-gap: 5.75rem;
          column-gap: 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-company__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.75rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-company__item--ja {
  width: 11.5rem;
  height: auto;
  aspect-ratio: 184/121.83;
}

.p-company__item--google {
  width: 6.25rem;
  height: auto;
  aspect-ratio: 100/85.5;
}

.p-company__item--soumushou {
  width: 28.5rem;
  height: auto;
  aspect-ratio: 456/102.59;
}
@media screen and (max-width: 767px) {
  .p-company__item--soumushou {
    width: 20.9375rem;
  }
}

.p-teacher {
  background: url("../img/teacher-bg.webp") no-repeat center/cover;
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
}
@media screen and (max-width: 767px) {
  .p-teacher {
    -webkit-padding-before: 7.705625rem;
            padding-block-start: 7.705625rem;
    -webkit-padding-after: 7.85rem;
            padding-block-end: 7.85rem;
  }
}

.p-teacher__title {
  font-size: max(2.25rem, 27px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-teacher__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-teacher__title {
    font-size: max(1.8125rem, 21.75px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-teacher__title {
    font-size: 1.8125rem;
  }
}

.p-teacher__contents {
  -webkit-margin-before: 3.336875rem;
          margin-block-start: 3.336875rem;
}
@media screen and (max-width: 767px) {
  .p-teacher__contents {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.p-teacher__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-teacher__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3.42375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-teacher__item {
  width: 19rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-teacher__item {
    width: 100%;
  }
}

.p-teacher__img {
  width: 16.25rem;
  height: auto;
  aspect-ratio: 260/259.55;
}
@media screen and (max-width: 767px) {
  .p-teacher__img {
    width: 21.875rem;
  }
}

.p-teacher__name {
  text-align: center;
  font-size: max(2rem, 24px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-margin-before: 2.25rem;
          margin-block-start: 2.25rem;
  color: #3232c3;
}
@media screen and (max-width: 767px) {
  .p-teacher__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-teacher__name {
    -webkit-margin-before: 1.1875rem;
            margin-block-start: 1.1875rem;
  }
}

.p-teacher__text {
  -webkit-margin-before: 2.5rem;
          margin-block-start: 2.5rem;
  text-align: left;
  font-size: max(1rem, 12px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-teacher__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-teacher__text {
    -webkit-margin-before: 1.3125rem;
            margin-block-start: 1.3125rem;
  }
}

.p-course {
  position: relative;
  z-index: 10;
  -webkit-margin-before: -1.25rem;
          margin-block-start: -1.25rem;
  -webkit-padding-before: 5.625rem;
          padding-block-start: 5.625rem;
  -webkit-padding-after: 5.0475rem;
          padding-block-end: 5.0475rem;
  background: url("../img/course-bg.webp") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-course {
    -webkit-padding-before: 5rem;
            padding-block-start: 5rem;
  }
}

.p-course__inner {
  width: 100%;
  max-width: 80.6875rem;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-course__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.p-course__title {
  text-align: center;
  font-size: max(1.5625rem, 18.75px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-course__title {
    font-size: 1.5625rem;
  }
}

.p-course__contents {
  -webkit-margin-before: 6.75rem;
          margin-block-start: 6.75rem;
}

.p-course__list {
  display: grid;
  -webkit-column-gap: 1.625rem;
     -moz-column-gap: 1.625rem;
          column-gap: 1.625rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .p-course__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-course__item {
  position: relative;
  max-width: 24.13875rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.875rem;
  padding: 3.375rem 1.25rem 1.625rem;
  display: grid;
  justify-items: center;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
@media screen and (max-width: 767px) {
  .p-course__item {
    padding-inline: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-course__item + .p-course__item {
    -webkit-margin-before: 3.75rem;
            margin-block-start: 3.75rem;
  }
}

.p-course__head {
  text-align: center;
  font-size: max(1.25rem, 15px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-course__head {
    font-size: 1.25rem;
  }
}
.p-course__head .gradation {
  font-size: max(1.75rem, 21px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .p-course__head .gradation {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course__head .gradation {
    font-size: max(1.75rem, 21px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-course__head .gradation {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course__head {
    font-size: max(1.25rem, 15px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-course__head {
    font-size: 1.25rem;
  }
}

.p-course__img {
  width: 19.5625rem;
  -webkit-margin-before: 1.355625rem;
          margin-block-start: 1.355625rem;
  -webkit-margin-after: 1.13125rem;
          margin-block-end: 1.13125rem;
}
@media screen and (max-width: 767px) {
  .p-course__img {
    width: 20.375rem;
  }
}

.p-course__text {
  font-size: max(1rem, 12px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-course__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-course__text {
    padding-inline: 0.6875rem;
  }
}

.p-course__text + .p-course__text {
  -webkit-margin-before: 1.554375rem;
          margin-block-start: 1.554375rem;
}

.p-course__num {
  position: absolute;
  width: 3.1875rem;
  height: auto;
  aspect-ratio: 1/1;
  left: 50%;
  translate: -50%;
  top: -1.5625rem;
}

.p-voice {
  -webkit-padding-before: 3.75rem;
          padding-block-start: 3.75rem;
  -webkit-padding-after: 6.25rem;
          padding-block-end: 6.25rem;
  background-color: #3232c3;
  border-radius: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-voice {
    -webkit-padding-after: 3.9375rem;
            padding-block-end: 3.9375rem;
  }
}

.p-voice__title {
  color: #ffffff;
  font-size: max(2rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__title {
    font-size: max(2.3125rem, 27.75px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__title {
    font-size: 2.3125rem;
  }
}

.p-voice__contents {
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}

.p-voice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto 1fr;
  justify-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1.031875rem;
  }
}

.p-voice__item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (max-width: 767px) {
  .p-voice__item {
    padding: 1.25rem 1rem;
    width: 100%;
    border-radius: 1.5rem;
  }
}

.p-voice__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-head {
    -webkit-column-gap: 0.625rem;
       -moz-column-gap: 0.625rem;
            column-gap: 0.625rem;
  }
}

.p-voice__img {
  width: 4.5625rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-voice__img {
    width: 2.974375rem;
    aspect-ratio: 1/1;
    height: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    min-width: 2.974375rem;
  }
}

.p-voice__profile {
  font-size: max(1.25rem, 15px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #2511d6;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-voice__profile {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__profile {
    font-size: max(0.86875rem, 10.425px);
    font-weight: 700;
    line-height: 1.3985611511;
    letter-spacing: 0.1002158273em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__profile {
    font-size: 0.86875rem;
  }
}

.p-voice__item-text {
  -webkit-margin-before: 0.94125rem;
          margin-block-start: 0.94125rem;
  font-size: max(1.125rem, 13.5px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  -webkit-margin-before: -0.9rem;
          margin-block-start: -0.9rem;
}
@media screen and (max-width: 767px) {
  .p-voice__item-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__item-text {
    font-size: max(0.73125rem, 8.775px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
    -webkit-margin-before: -0.335625rem;
            margin-block-start: -0.335625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-voice__item-text {
    font-size: 0.73125rem;
  }
}

.p-feature {
  -webkit-padding-before: unset;
          padding-block-start: unset;
  -webkit-padding-after: 1.9375rem;
          padding-block-end: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-feature {
    -webkit-margin-before: -1.5rem;
            margin-block-start: -1.5rem;
    -webkit-padding-after: 7.5rem;
            padding-block-end: 7.5rem;
  }
}

.p-feature__inner {
  width: 100%;
  max-width: 76.5rem;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.p-feature__head {
  width: 100%;
  max-width: 71.5rem;
  height: auto;
  aspect-ratio: 1144/325.08;
}
@media screen and (max-width: 767px) {
  .p-feature__head {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-feature__contents {
  -webkit-margin-before: 2.625rem;
          margin-block-start: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-feature__contents {
    -webkit-margin-before: unset;
            margin-block-start: unset;
  }
}

.p-feature__list {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 3.125rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 52.875rem;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .p-feature__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.96875rem;
       -moz-column-gap: 2.96875rem;
            column-gap: 2.96875rem;
    row-gap: 2.5rem;
    place-items: center;
  }
}

.p-feature__item {
  display: grid;
  place-items: center;
}

.p-feature__img {
  width: 100%;
  max-width: 14.5rem;
  height: auto;
  aspect-ratio: 232/310.02;
}

.p-feature__item-head {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  text-align: center;
}
.p-feature__item-head--sub {
  font-size: max(1.5rem, 18px);
  font-weight: 700;
  line-height: 1.4;
  color: #3232c3;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--sub {
    font-size: max(1rem, 12px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--sub {
    font-size: 1rem;
  }
}
.p-feature__item-head--gradation {
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-feature__item-head--37 {
  font-size: max(2.3125rem, 27.75px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--37 {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--37 {
    font-size: max(1.5rem, 18px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--37 {
    font-size: 1.5rem;
  }
}
.p-feature__item-head--35 {
  font-size: max(2.1875rem, 26.25px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--35 {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--35 {
    font-size: max(1.4375rem, 17.25px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--35 {
    font-size: 1.4375rem;
  }
}
.p-feature__item-head--34 {
  font-size: max(2.125rem, 25.5px);
  font-weight: 700;
  line-height: 1.2764705882;
  letter-spacing: 0.0273529412em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--34 {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--34 {
    font-size: max(1.375rem, 16.5px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--34 {
    font-size: 1.375rem;
  }
}
.p-feature__item-head--32 {
  font-size: max(2rem, 24px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--32 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--32 {
    font-size: max(1.3125rem, 15.75px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--32 {
    font-size: 1.3125rem;
  }
}
.p-feature__item-head--31 {
  font-size: max(1.9375rem, 23.25px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--31 {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__item-head--31 {
    font-size: max(1.25rem, 15px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-feature__item-head--31 {
    font-size: 1.25rem;
  }
}

.p-program {
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
  -webkit-padding-after: 3.75rem;
          padding-block-end: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-program {
    -webkit-padding-before: 3rem;
            padding-block-start: 3rem;
  }
}

.p-program__inner {
  width: 100%;
  max-width: 51.25rem;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-program__inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.p-program__title {
  text-align: center;
  font-size: max(1.5625rem, 18.75px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-program__title {
    font-size: 1.5625rem;
  }
}

.p-program__contents {
  -webkit-margin-before: 2.6875rem;
          margin-block-start: 2.6875rem;
}

.p-program__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-program__list {
    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: 1.4375rem;
    -webkit-column-gap: 1.4375rem;
       -moz-column-gap: 1.4375rem;
            column-gap: 1.4375rem;
  }
}

.p-program__item {
  display: grid;
  grid-template-rows: subgrid;
  width: 100%;
  max-width: 14.5625rem;
  grid-row: span 2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #3232c3;
  border-radius: 1.125rem;
  padding-block: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-program__item {
    grid-template-rows: auto auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    min-height: 10.6975rem;
    padding-block: 0.625rem;
    width: calc(50% - 0.71875rem);
    max-width: 14.5625rem;
    min-width: 9.75rem;
  }
}

.p-program__head {
  background-color: #ffffff;
  max-width: 9.875rem;
  width: 100%;
  border-radius: 3rem;
  color: #3232c3;
  font-size: max(1.3125rem, 15.75px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  -webkit-padding-before: 0.268125rem;
          padding-block-start: 0.268125rem;
  -webkit-padding-after: 0.345rem;
          padding-block-end: 0.345rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-program__head {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-program__head {
    font-size: max(0.875rem, 10.5px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    width: 100%;
    max-width: 6.625rem;
    -webkit-padding-before: 0.2rem;
            padding-block-start: 0.2rem;
    -webkit-padding-after: 0.263125rem;
            padding-block-end: 0.263125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-program__head {
    font-size: 0.875rem;
  }
}

.p-program__body {
  color: #ffffff;
  text-align: center;
}

.p-program__text--top {
  font-size: max(3rem, 36px);
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-program__text--top {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-program__text--top {
    font-size: max(2rem, 24px);
    font-weight: 900;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-program__text--top {
    font-size: 2rem;
  }
}

.p-program__text--small {
  font-size: max(2.3125rem, 27.75px);
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-program__text--small {
    font-size: 2.3125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-program__text--small {
    font-size: max(1.5625rem, 18.75px);
    font-weight: 900;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-program__text--small {
    font-size: 1.5625rem;
  }
}

.p-program__text--bottom {
  font-size: max(1.125rem, 13.5px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.05em;
  -webkit-margin-before: 0.98125rem;
          margin-block-start: 0.98125rem;
}
@media screen and (max-width: 767px) {
  .p-program__text--bottom {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-program__text--bottom {
    font-size: max(0.75rem, 9px);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-program__text--bottom {
    font-size: 0.75rem;
  }
}

.p-program__attention {
  -webkit-margin-before: 2.6875rem;
          margin-block-start: 2.6875rem;
}

.p-program__attention-text {
  font-size: max(0.75rem, 9px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-program__attention-text {
    font-size: 0.75rem;
  }
}

.p-curriculum {
  -webkit-padding-before: 0rem;
          padding-block-start: 0rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
}

.p-curriculum__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-curriculum__title-sub {
  text-align: center;
  font-size: max(1.25rem, 15px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-curriculum__title-sub {
    font-size: 1.25rem;
  }
}

.p-curriculum__title-main {
  font-size: max(2.1875rem, 26.25px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  background: -webkit-gradient(linear, left top, right top, from(#2511d6), color-stop(52%, #cc21b3), to(#ea2b2e));
  background: linear-gradient(90deg, #2511d6 0%, #cc21b3 52%, #ea2b2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .p-curriculum__title-main {
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-curriculum__title-main {
    margin-block: 0.69375rem;
    text-align: center;
    font-size: max(1.75rem, 21px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-curriculum__title-main {
    font-size: 1.75rem;
  }
}

.p-curriculum__contents {
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}

.p-curriculum__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 3.125rem;
  -webkit-column-gap: 1.4375rem;
     -moz-column-gap: 1.4375rem;
          column-gap: 1.4375rem;
}
@media (max-width: 860px) {
  .p-curriculum__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

.p-curriculum__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  width: 100%;
  max-width: 21.72375rem;
}
@media screen and (max-width: 767px) {
  .p-curriculum__item {
    -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: 10.3125rem;
    width: 100%;
  }
}

.p-curriculum__img {
  width: 100%;
  max-width: 9.75rem;
  height: auto;
  aspect-ratio: 156/154.52;
}
@media screen and (max-width: 767px) {
  .p-curriculum__img {
    max-width: 10.3125rem;
    width: 100%;
  }
}

.p-curriculum__text {
  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;
  row-gap: 0.75rem;
}

.p-curriculum__head {
  text-align: center;
  color: #3232c3;
  font-size: max(1.375rem, 16.5px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-curriculum__head {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-curriculum__head {
    font-size: max(1.2rem, 14.4px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
    -webkit-margin-before: 0.75rem;
            margin-block-start: 0.75rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-curriculum__head {
    font-size: 1.2rem;
  }
}

.p-curriculum__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-curriculum__body li {
  -webkit-padding-start: 1.0625rem;
          padding-inline-start: 1.0625rem;
  -webkit-padding-end: 0.6875rem;
          padding-inline-end: 0.6875rem;
  font-size: max(0.75rem, 9px);
  font-weight: 350;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-curriculum__body li {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-curriculum__body li {
    font-size: max(0.75rem, 9px);
    font-weight: 350;
    line-height: 1.515;
    letter-spacing: 0em;
    -webkit-padding-end: 0.625rem;
            padding-inline-end: 0.625rem;
    -webkit-padding-start: 1.25rem;
            padding-inline-start: 1.25rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-curriculum__body li {
    font-size: 0.75rem;
  }
}
.p-curriculum__body li::before {
  content: "";
  position: absolute;
  background: url("../img/checkbox-icon.webp") no-repeat center;
  background-size: cover;
  width: 0.75rem;
  height: 0.75rem;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-curriculum__body li::before {
    width: 1rem;
    height: 1rem;
  }
}

.p-reason {
  background-color: #3232c3;
  border-radius: 1.8125rem;
  padding-block: 6.1875rem;
  position: relative;
  -webkit-margin-before: 18.125rem;
          margin-block-start: 18.125rem;
}
@media screen and (max-width: 767px) {
  .p-reason {
    -webkit-padding-before: 1.9375rem;
            padding-block-start: 1.9375rem;
    -webkit-padding-after: 3.75rem;
            padding-block-end: 3.75rem;
    -webkit-margin-before: 1.9375rem;
            margin-block-start: 1.9375rem;
  }
}
.p-reason::before {
  content: "";
  position: absolute;
  background: url("../img/reason-heading.webp") no-repeat center top/contain;
  width: 23.3125rem;
  height: 20.2375rem;
  left: 50%;
  translate: -50%;
  top: -17.8675rem;
}
@media screen and (max-width: 767px) {
  .p-reason::before {
    display: none;
  }
}

.p-reason__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.75rem;
     -moz-column-gap: 3.75rem;
          column-gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason__contents {
    -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-reason__main {
  width: 100%;
  max-width: 30.75rem;
}

@media screen and (max-width: 767px) {
  .p-reason__head {
    -webkit-margin-before: -9.375rem;
            margin-block-start: -9.375rem;
    width: 18.4375rem;
    height: auto;
    aspect-ratio: 295/288;
    margin-inline: auto;
  }
}

.p-reason__text {
  -webkit-margin-before: 1.8125rem;
          margin-block-start: 1.8125rem;
  text-align: center;
  color: #ffffff;
  font-size: max(1.6875rem, 20.25px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    font-size: 1.6875rem;
  }
}
@media screen and (max-width: 860px) {
  .p-reason__text {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    font-size: max(1.5rem, 18px);
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-reason__text {
    font-size: 1.5rem;
  }
}

.p-reason__text--yellow {
  color: #feff4c;
  font-size: max(2.9375rem, 35.25px);
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.0287234043em;
}
@media screen and (max-width: 767px) {
  .p-reason__text--yellow {
    font-size: 2.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__text--yellow {
    font-size: max(2.5625rem, 30.75px);
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.0292682927em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-reason__text--yellow {
    font-size: 2.5625rem;
  }
}

.p-reason__img {
  max-width: 24.1875rem;
}
.p-reason__img img {
  width: 24.1875rem;
  height: auto;
  aspect-ratio: 387/238.38;
}
@media screen and (max-width: 767px) {
  .p-reason__img {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
    width: 100%;
  }
}

.p-message {
  background-color: #3232c3;
  border-radius: 1.8125rem;
  padding-block: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding-block: 3.75rem;
  }
}
.p-message::after {
  content: "";
  position: absolute;
  background: url("../img/about-top.webp") no-repeat center top/cover;
  width: 5.75rem;
  height: 6.153125rem;
  left: 50%;
  translate: calc(-50% + 2.4375rem);
  bottom: -5rem;
}
@media screen and (max-width: 767px) {
  .p-message::after {
    width: 5.625rem;
    height: 6.019375rem;
    translate: calc(-50% + 2.375rem);
    bottom: -4.25rem;
  }
}

.p-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-message__contents {
    -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: 2.5rem;
  }
}

.p-message__main {
  width: 100%;
  max-width: 21rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-message__main {
    max-width: 100%;
  }
}

.p-message__title {
  width: 18.4375rem;
  height: auto;
  aspect-ratio: 295/76.86;
  margin-inline: auto;
}

.p-message__lead {
  color: #ffffff;
  font-size: max(1.9375rem, 23.25px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-margin-before: 0.4375rem;
          margin-block-start: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-message__lead {
    font-size: 1.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__lead {
    font-size: max(1.9375rem, 23.25px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__lead {
    font-size: 1.9375rem;
  }
}

.p-message__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-before: 1.625rem;
          margin-block-start: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-message__img-wrapper {
    -webkit-column-gap: 1.375rem;
       -moz-column-gap: 1.375rem;
            column-gap: 1.375rem;
    -webkit-margin-before: 1.5625rem;
            margin-block-start: 1.5625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-message__img {
  width: 9.8125rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    width: 10.375rem;
  }
}

.p-message__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  text-align: center;
}

.p-message__text-top {
  color: inherit;
  font-size: max(1.5625rem, 18.75px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-message__text-top {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__text-top {
    font-size: max(1.125rem, 13.5px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__text-top {
    font-size: 1.125rem;
  }
}

.p-message__text-bottom {
  color: inherit;
  font-size: max(3.125rem, 37.5px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  -webkit-margin-before: 1.296875rem;
          margin-block-start: 1.296875rem;
}
@media screen and (max-width: 767px) {
  .p-message__text-bottom {
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-message__text-bottom {
    font-size: max(2.1875rem, 26.25px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-message__text-bottom {
    font-size: 2.1875rem;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-display__block {
    display: block !important;
  }
}
.u-visually__hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-index__20 {
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .u-index__20--sp {
    position: relative;
    z-index: 20;
  }
}

.u-index__10 {
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .u-index__10--sp {
    position: relative;
    z-index: 10;
  }
}

.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;
  }
}