@charset "UTF-8";

.open-text{
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#FB9538), to(#FFD747));
  background: linear-gradient(90deg, #FB9538 0%, #FFD747 100%);
  -webkit-background-clip: text;
          background-clip: text;
  text-shadow: 0 0.4rem 3rem rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .open-text{
    font-size: 3rem;
  }
}




/* ============================
/* 幅に関する設定※案件ごとに変更
/* ========================= */

/* キャンパス設定 */

/* インナー幅設定 */

/* 左右の最低余白設定 */

/* ブレイクポイント設定 */

/* ==============================================
/* メディアクエリとブレークポイントの関数※変更不可
/* ============================================== */

/* ============================
/* カラー設定
/* ========================= */

/* 全体設定 */

/* 無彩色 */

/* メインカラー */

/* アクセントカラー */

/* ボタンカラー */

/* シャドウ */

/* グラデーション */

/* ============================
/* フォント設定
/* ========================= */

/* フォントファミリー */

/* フォントウェイト */

/* ============================
/* z-indexの数値管理
/* ========================= */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #403326;
}

a {
  color: #403326;
}

/* PCでは電話番号のクリックを無効にする */

a[href^="tel:"] {
  pointer-events: none;
}

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

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* form reset */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

button {
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  vertical-align: middle;
}

input[type=checkbox]:focus-visible + span,
input[type=radio]:focus-visible + span {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.l-content {
  position: relative;
  width: 100%;
  max-width: 144rem;
  margin-inline: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
}

.l-footer {
  width: 100%;
}

.l-header {
  width: 100%;
}

.l-inner {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 113rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.l-inner.l-inner--wide {
  max-width: 125rem;
}

.l-inner.l-inner--small {
  max-width: 101rem;
}

.l-main {
  width: 100%;
}

.l-sp-footer {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.c-button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-button a {
  position: relative;
  display: inline-block;
  padding: 1.8rem 5.8rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#34BDE8), color-stop(15%, #3DC6F1), color-stop(40%, #2DA5CB), color-stop(58%, #2DA5CB), color-stop(93%, #1996BD), to(#026989));
  background-image: linear-gradient(to bottom, #34BDE8 0%, #3DC6F1 15%, #2DA5CB 40%, #2DA5CB 58%, #1996BD 93%, #026989 100%);
  border-radius: 1rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.4rem rgba(61, 131, 154, 0.3);
          box-shadow: 0.2rem 0.2rem 0.4rem rgba(61, 131, 154, 0.3);
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.4rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.8rem;
  height: 1.2rem;
  background-image: url(../img/common/arrow-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-button a:hover {
  opacity: 0.7;
}

.c-button.c-button--fukidashi {
  position: relative;
}

.c-button__fukidashi {
  position: absolute;
  top: -5.2rem;
  left: -2.2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #2DA5CB;
  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;
  z-index: 2;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-button__fukidashi .content {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 100%;
  text-align: center;
  color: #2DA5CB;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-button__fukidashi .content .strong {
  font-size: 2.4rem;
  line-height: 100%;
}

.c-button__fukidashi::before,
.c-button__fukidashi::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

.c-button__fukidashi::before {
  background-color: #2DA5CB;
  bottom: 0px;
}

.c-button__fukidashi::after {
  background-color: #ffffff;
  bottom: 2px;
}

.c-button.c-button--fukidashi a {
  padding: 2.2rem 8.8rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.4rem rgba(255, 255, 255, 0.1);
          box-shadow: 0.2rem 0.2rem 0.4rem rgba(255, 255, 255, 0.1);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.c-button.c-button--fukidashi a::after {
  width: 1rem;
  height: 1.6rem;
}

.c-cta {
  position: relative;
  padding-bottom: 0.8rem;
}

.c-cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.8rem;
  bottom: 0;
  background-image: linear-gradient(45deg, #3EA9CB 0%, #1D25AE 100%);
}

.c-cta__heading-wrapper {
  width: 100%;
  padding: 4rem 3.2rem 5.6rem;
  background-image: linear-gradient(45deg, #3EA9CB 0%, #1D25AE 100%);
  -webkit-clip-path: polygon(50% 100%, 100% 76%, 100% 0, 0 0, 0 76%);
          clip-path: polygon(50% 100%, 100% 76%, 100% 0, 0 0, 0 76%);
}

.c-cta__heading {
  font-weight: 500;
  font-size: 4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.c-cta__heading .strong {
  font-size: 4.8rem;
  line-height: 100%;
}

.c-cta__content {
  margin-top: -5.6rem;
  padding-top: 9.6rem;
  padding-bottom: 5.6rem;
  background-image: url(../img/top/cta-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.c-cta__list {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.6rem;
}

.c-cta__item {
  position: relative;
  padding-left: 4.4rem;
  z-index: 1;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.c-cta__item .strong {
  display: inline-block;
  position: relative;
  font-size: 3.2rem;
  line-height: 100%;
}

.c-cta__item .strong::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.6rem;
  width: 100%;
  aspect-ratio: 204/22;
  background-image: url(../img/common/under-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.c-cta__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon-check-yellow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-cta__button {
  margin-top: 7.6rem;
  margin-inline: auto;
}

.c-cta__body {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 3.2rem 8rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
  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;
  gap: 0.8rem;
}

.c-cta__first-price {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #2DA5CB;
}

.c-cta__first-price .strong {
  font-size: 3.2rem;
  line-height: 150%;
}

.c-cta__text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.c-cta__text.c-cta__text--before-price {
  position: relative;
}

.c-cta__text.c-cta__text--before-price::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #403326;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-cta__arrow {
  width: 8rem;
  aspect-ratio: 1/1;
}

.c-cta__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-cta__new-price {
  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;
}

.c-cta__new-price-main {
  position: relative;
  font-weight: 500;
  font-size: 6.4rem;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #E71F13;
  z-index: 1;
}

.c-cta__new-price-main::after {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 251/27;
  bottom: -1.6rem;
  left: 0;
  background-image: url(../img/common/under-line-yellow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.c-cta__new-price-sub {
  position: relative;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  z-index: 1;
}

.c-heading {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}

.c-heading--logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 15rem;
  aspect-ratio: 150/57;
  background-image: url(../img/common/logo-text.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-heading__en {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-weight: 400;
  font-size: 12rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #EFEFEF;
}

.c-heading__ja {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-heading__ja .num {
  font-size: 6rem;
  line-height: 150%;
  letter-spacing: 0.1em;
  color: #E8740B;
}

.p-about {
  width: 100%;
  background-color: #ffffff;
}

.p-about__heading-wrap {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding: 2.4rem 3.2rem;
  background-color: #E8740B;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-about__heading-wrap::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 4rem;
  height: 2.1rem;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #E8740B;
}

.p-about__heading {
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-about__heading .strong {
  font-weight: 400;
  font-size: 6rem;
}

.p-about__points {
  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;
  gap: 8rem;
}

.p-about__point {
  width: 20rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #E89F00;
  background-color: #ffffff;
  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;
}

.p-about__point:not(:first-child) {
  position: relative;
}

.p-about__point:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 8rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon-cross.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-about__point-text {
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: transparent;
  background-image: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-about__point-text::first-letter {
  font-size: 4.8rem;
  line-height: 150%;
}

.p-about__arrow {
  margin: 1.2rem auto;
  width: 8rem;
  aspect-ratio: 1/1;
}

.p-about__arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about__main-catch {
  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;
}

.p-about__main-catch::before,
.p-about__main-catch::after {
  content: "";
  display: block;
  width: 4rem;
  height: 6rem;
}

.p-about__main-catch::before {
  border-top: 4px solid #E8740B;
  border-left: 4px solid #E8740B;
  margin-bottom: auto;
}

.p-about__main-catch::after {
  border-right: 4px solid #E8740B;
  border-bottom: 4px solid #E8740B;
  margin-top: auto;
}

.p-about__main-catch-text {
  padding: 0.8rem;
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-about__main-catch-text .strong {
  font-size: 5.6rem;
  line-height: 150%;
  color: transparent;
  background-image: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-about__feature-section {
  margin-top: 6.6rem;
}

.p-about__feature-section + .p-about__feature-section {
  margin-top: 4rem;
}

.p-course {
  width: 100%;
  padding-top: 12.8rem;
  padding-bottom: 12rem;
}

.p-course__course-table {
  margin-top: 6.4rem;
  width: 84rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  border-right: 1px solid #F8CE00;
  border-bottom: 1px solid #F8CE00;
}

.p-course__course-table tr,
.p-course__course-table tbody,
.p-course__course-table thead,
.p-course__course-table tfoot {
  display: contents;
}

.p-course__course-table th,
.p-course__course-table td {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.6rem 2.4rem;
}

.p-course__course-table th[colspan="2"],
.p-course__course-table td[colspan="2"] {
  grid-column: auto/span 2;
}

.p-course__course-table th[rowspan="2"],
.p-course__course-table td[rowspan="2"] {
  grid-row: auto/span 2;
}

.p-course__course-table th:not([rowspan="2"]),
.p-course__course-table td:not([rowspan="2"]) {
  height: 8.5rem;
}

.p-course__course-table thead th.main-color {
  background-color: #F1A700;
}

.p-course__course-table thead th.accent-color {
  background-color: #313690;
}

.p-course__course-table tbody th {
  background-color: #706255;
}

.p-course__course-table th {
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0;
  color: #ffffff;
}

.p-course__course-table th .small {
  font-size: max(1.6rem, 10px);
  line-height: 150%;
}

.p-course__course-table td {
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0;
}

.p-course__course-table th:not(.none),
.p-course__course-table td {
  border-left: 1px solid #F8CE00;
  border-top: 1px solid #F8CE00;
}

.p-course__features {
  margin-top: 6.4rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 8rem;
}

.p-course__feature {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-course__feature-img {
  width: 100%;
  aspect-ratio: 400/280;
}

.p-course__feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-course__feature-body {
  position: relative;
  padding-top: 5.4rem;
}

.p-course__feature-title {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0.8rem 2.4rem;
  background-color: #313690;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.p-course__feature-detail {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-course__feature:nth-of-type(even) .p-course__feature-title {
  background-color: #E89F00;
}

.p-course__sub-heading-wrap {
  margin-top: 8rem;
  margin-inline: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  padding: 2.4rem 3.2rem;
  background-color: #E8740B;
}

.p-course__sub-heading-wrap::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  width: 4rem;
  height: 2.1rem;
  background-color: #E8740B;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.p-course__sub-heading-wrap.p-course__sub-heading-wrap--secondary {
  margin-top: 6.4rem;
  background-color: #666666;
}

.p-course__sub-heading-wrap.p-course__sub-heading-wrap--secondary::after {
  background-color: #666666;
}

.p-course__sub-heading {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-course__movie-wrap {
  margin-top: 4rem;
  margin-inline: auto;
  width: 80rem;
  aspect-ratio: 800/450;
  overflow: hidden;
}

.p-course__movie-wrap video {
  width: 100%;
  height: 100%;
}

.p-course__comparison {
  margin-top: 5.2rem;
}

.p-course__comparison + .p-course__comparison {
  margin-top: 6.4rem;
}

.p-course__comparison-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem;
}

.p-course__comparison-title-wrap::before,
.p-course__comparison-title-wrap::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #333333;
}

.p-course__comparison-title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-course__comparison-table {
  margin-top: 6.4rem;
  width: 84rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  border-right: 1px solid #F8CE00;
  border-bottom: 1px solid #F8CE00;
}

.p-course__comparison-table tr,
.p-course__comparison-table tbody,
.p-course__comparison-table thead,
.p-course__comparison-table tfoot {
  display: contents;
}

.p-course__comparison-table th,
.p-course__comparison-table td {
  display: block;
  text-align: center;
  gap: 0;
  padding: 1.6rem 2.4rem;
}

.p-course__comparison-table thead th {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.p-course__comparison-table thead th:not(.none) {
  background-color: #706255;
}

.p-course__comparison-table thead th:not(.none).main-color {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#FB9538), to(#FFD747));
  background-image: linear-gradient(90deg, #FB9538 0%, #FFD747 100%);
}

.p-course__comparison-table tbody th {
  background-color: #706255;
  white-space: nowrap;
}

.p-course__comparison-table th,
.p-course__comparison-table td {
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0;
}

.p-course__comparison-table th .small,
.p-course__comparison-table td .small {
  font-size: 1.4rem;
  line-height: 150%;
}

.p-course__comparison-table th {
  color: #ffffff;
}

.p-course__comparison-table th:not(.none),
.p-course__comparison-table td {
  border-left: 1px solid #F8CE00;
  border-top: 1px solid #F8CE00;
}

.p-course__comparison-arrow {
  margin: 0.8rem auto;
  width: 8rem;
  aspect-ratio: 1/1;
}

.p-course__comparison-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-course__comparison-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 1.6rem 2.4rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#FB9538), to(#FFD747));
  background-image: linear-gradient(90deg, #FB9538 0%, #FFD747 100%);
}

.p-course__comparison-result::before {
  content: "";
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon-good.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-course__comparison-result-text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.p-facility {
  width: 100%;
  background-color: #FDF9F1;
  padding-bottom: 8rem;
}

.p-facility__heading-wrap {
  width: 100%;
  background-image: url(../img/top/facility-heading-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-facility__heading {
  padding-top: 5.6rem;
  padding-bottom: 15rem;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-facility__heading .num {
  font-weight: 400;
  font-size: 6rem;
  line-height: 150%;
}

.p-facility__heading .strong {
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#FB9538), to(#FFD747));
  background: linear-gradient(90deg, #FB9538 0%, #FFD747 100%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-facility__container {
  margin-top: -11.8rem;
  background-color: #ffffff;
  width: 100%;
  padding: 4rem 6rem;
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
}

.p-facility__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 6rem;
}

.p-facility__item {
  width: 100%;
  aspect-ratio: 1/1;
}

.p-facility__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-faq-list {
  width: 100%;
  max-width: 84rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}

.p-faq-list__item {
  background-color: #ffffff;
}

.p-faq-list__item-question {
  padding: 1.6rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  cursor: pointer;
  background-color: #F8F6F3;
  border-radius: 1rem;
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
}

.p-faq-list__item-question::before {
  content: "Q";
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 100%;
  color: #ffffff;
  width: 3.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #313690;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-faq-list__item-question .button {
  position: relative;
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-faq-list__item-question .button::before,
.p-faq-list__item-question .button::after {
  content: "";
  width: 11px;
  height: 1px;
  background-color: #313690;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.p-faq-list__item-question .button::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.p-faq-list__item-question.is-open .button::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.p-faq-list__item-answer {
  height: 0;
  overflow: hidden;
}

.p-faq-list__item-answer p {
  padding: 1.6rem 2.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-faq-list__item-answer p::before {
  content: "A";
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 100%;
  color: #ffffff;
  width: 3.6rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F1A700;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-faq {
  margin-top: 12rem;
}

.p-faq__list {
  margin-top: 6.4rem;
}

.p-feature {
  position: relative;
  padding-top: 13.5rem;
}

.p-feature__num {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 12rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #E0F2F7;
}

.p-feature__num::first-letter {
  color: #2DA5CB;
}

.p-feature__heading {
  position: relative;
  width: 100%;
  padding: 4.2rem 2.4rem 1.6rem;
  background-color: #313690;
}

.p-feature__subtitle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding: 0.8rem 2.4rem;
  border: 2px solid #313690;
  background-color: #ffffff;
  border-radius: 10rem;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #313690;
}

.p-feature__maintitle {
  font-weight: 400;
  font-size: 4.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-feature__content {
  width: 100%;
  aspect-ratio: 1440/600;
  padding-bottom: 4rem;
  background-image: url(../img/top/feature-bg1-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-feature__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-feature__detail {
  width: 100%;
  max-width: 48rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 180%;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: 0 0 2rem rgba(102, 102, 102, 0.2);
}

.p-feature:nth-of-type(even) .p-feature__num {
  right: auto;
  left: 0;
  color: #FEF5CC;
}

.p-feature:nth-of-type(even) .p-feature__num::first-letter {
  color: #F8CE00;
}

.p-feature:nth-of-type(even) .p-feature__heading {
  background-color: #E89F00;
}

.p-feature:nth-of-type(even) .p-feature__subtitle {
  border-color: #F8CE00;
  color: #F8CE00;
}

.p-feature:nth-of-type(2) .p-feature__content {
  background-image: url(../img/top/feature-bg2-pc.webp);
}

.p-flow {
  padding-top: 12rem;
}

.p-flow__content {
  margin-top: 10.4rem;
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11.2rem;
}

.p-flow__item {
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
  position: relative;
}

.p-flow__item + .p-flow__item::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 8rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/arrow-bold.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-flow__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.p-flow__img {
  width: 32rem;
  aspect-ratio: 320/240;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-flow__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-flow__body {
  width: 100%;
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
}

.p-flow__num {
  position: absolute;
  right: 2.4rem;
  top: 0;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 5.6rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #C5DAE1;
}

.p-flow__title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem 2.4rem;
  background-color: #313690;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.p-flow__detail {
  width: 100%;
  max-width: 56rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-flow__item:nth-child(even) .p-flow__num {
  color: #FEF5CC;
}

.p-flow__item:nth-child(even) .p-flow__title {
  background-color: #F1A700;
}

.p-footer {
  width: 100%;
  background-color: #333333;
  padding: 3.1rem 0;
}

.p-footer__copy {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-header {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  z-index: 5;
}

.p-header__inner {
  width: 100%;
  padding-right: 8rem;
  padding-left: 8rem;
}

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

.p-header__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 15.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1px solid #F1A700;
  border-bottom: 1px solid #F1A700;
  z-index: 5;
}

.p-header__title::before {
  content: "";
  display: block;
  height: 2rem;
  background-image: linear-gradient(120deg, #E8740B 41%, #F1A700 41%);
}

.p-header__logo {
  width: 100%;
  background-color: #ffffff;
  padding: 2rem 3rem;
}

.p-header__logo img {
  width: 100%;
  height: auto;
}

.p-header__button {
  margin-left: auto;
}

.p-merit__container {
  width: 100%;
  padding-top: 17.7rem;
  padding-bottom: 17.6rem;
  -webkit-clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
          clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), to(#FFFCEE));
  background-image: linear-gradient(to bottom, #ffffff 40%, #FFFCEE 100%);
  -webkit-filter: drop-shadow(0 0 3rem rgba(51, 51, 51, 0.05));
          filter: drop-shadow(0 0 3rem rgba(51, 51, 51, 0.05));
}

.p-merit__content {
  margin-top: 6.4rem;
}

.p-merit__content-title {
  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;
  gap: 2.4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-merit__content-title::before,
.p-merit__content-title::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background-color: #333333;
}

.p-merit__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 2.4rem;
}

.p-merit__item {
  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;
  gap: 2.4rem;
  padding: 1.6rem 0.8rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0.4rem 0.4rem 0 #E8740B;
          box-shadow: 0.4rem 0.4rem 0 #E8740B;
}

.p-merit__img {
  width: 10rem;
  aspect-ratio: 1/1;
}

.p-merit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-merit__detail {
  font-weight: 400;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-merit__detail .strong {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  color: #E8740B;
}

.p-appeal {
  margin-top: -12rem;
  width: 100%;
  background-color: #333333;
  background-image: url(../img/top/appeal-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 10.4rem;
}

.p-appeal__inner {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-appeal__points {
  padding-top: 18.8rem;
  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;
  gap: 11.2rem;
}

.p-appeal__point {
  width: 32rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid #E89F00;
  background-color: #ffffff;
  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;
}

.p-appeal__point:not(:first-child) {
  position: relative;
}

.p-appeal__point:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.6rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 8rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon-cross.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-appeal__point-text {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #F98113;
}

.p-appeal__equal {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  margin-inline: auto;
  width: 8rem;
  aspect-ratio: 1/1;
}

.p-appeal__equal img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.appeal__name-text {
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: transparent;
  background-image: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-appeal__main-catch {
  margin-top: 4.8rem;
  padding: 2.4rem 3.2rem;
  border: 2px solid #ffffff;
}

.p-appeal__main-catch-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #ffffff;
}

.p-appeal__main-catch-text .strong {
  font-size: 3.2rem;
  line-height: 150%;
}

.p-appeal__main-catch-text .num {
  font-size: 4rem;
  line-height: 150%;
}

.p-appeal__main-catch-text .name {
  font-size: 4.8rem;
  line-height: 150%;
  color: transparent;
  background-image: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-point {
  margin-top: -15rem;
  padding-bottom: 13.3rem;
  width: 100%;
  background-image: url(../img/top/point-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__heading-wrap {
  width: 100%;
  background-image: url(../img/top/point-heading-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-point__heading {
  padding-top: 17.4rem;
  padding-bottom: 15rem;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-point__heading .strong-en {
  font-weight: 400;
  font-size: 6rem;
  line-height: 150%;
  color: transparent;
  background: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
}

.p-point__heading .strong {
  font-size: 6rem;
  line-height: 150%;
}

.u-font-family-en {
  font-family: "Ubuntu", sans-serif;
}

.p-point__container {
  margin-top: -11.8rem;
  width: 100%;
  padding: 4rem 6rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
}

.p-point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.6rem;
}

.p-point__item {
  position: relative;
  padding-top: 1.4rem;
}

.p-point__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.p-point__img {
  width: 32rem;
  aspect-ratio: 320/240;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-point__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-point__body {
  padding-bottom: 4rem;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-point__title {
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem 2.4rem;
  background-color: #313690;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.p-point__title .strong {
  font-size: 2.8rem;
  line-height: 180%;
}

.p-point__detail {
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-point__item:nth-child(even) .p-point__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-point__item:nth-child(even) .p-point__title {
  right: auto;
  left: 0;
  background-color: #E89F00;
}

.p-sp-footer {
  padding: 1.6rem;
  background-color: rgba(51, 51, 51, 0.8);
}

.p-sp-footer__button {
  margin-inline: auto;
}

.p-staff {
  width: 100%;
  padding-top: 20rem;
  padding-bottom: 12rem;
}

.p-staff__list {
  margin-top: 6.4rem;
  padding-bottom: 6.4rem;
  width: 100%;
  max-width: 108rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-staff-item {
  width: 100%;
  max-width: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  -webkit-box-shadow: 0.4rem 0.4rem 0 #F8CE00;
          box-shadow: 0.4rem 0.4rem 0 #F8CE00;
}

.c-staff-item__img {
  width: 100%;
  aspect-ratio: 320/400;
  overflow: hidden;
}

.c-staff-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-staff-item__person-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}

.c-staff-item__body {
  position: relative;
  padding: 4.8rem 0.8rem 1.6rem;
}

.c-staff-item__name {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem 2.4rem;
  background-color: #E8740B;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 180%;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.c-staff-item__detail {
  display: none;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  letter-spacing: 0.05em;
}

.c-staff-item:nth-of-type(even) .c-staff-item__name {
  background-color: #F1A700;
}

.p-store {
  margin-top: 12rem;
  width: 100%;
  padding-bottom: 8rem;
  background-color: #FDF9F1;
}

.p-store__heading-wrap {
  background-image: url(../img/top/info-heading-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.p-store__heading {
  padding-top: 25.6rem;
  padding-bottom: 17.2rem;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-align: center;
}

.p-store__heading .strong {
  background-image: -webkit-gradient(linear, left top, right top, from(#FB9538), to(#FFD747));
  background-image: linear-gradient(90deg, #FB9538 0%, #FFD747 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.p-store__container {
  margin-top: -14rem;
  background-color: #ffffff;
  padding: 4rem 6rem;
  -webkit-box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
          box-shadow: 0 0 3rem rgba(51, 51, 51, 0.05);
}

.p-store__map {
  width: 100%;
  aspect-ratio: 840/372;
}

.p-store__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-store__info-list {
  margin-top: 3.2rem;
  border: 1px solid #F8CE00;
}

.p-store__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-store__info-item dt {
  width: 20.8rem;
  padding: 1.6rem 2.4rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #F1A700;
  font-weight: 500;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
  color: #ffffff;
}

.p-store__info-item dd {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 150%;
}

.p-store__info-item dd a {
  text-decoration: underline;
}

.p-store__info-item dd a:hover {
  text-decoration: none;
}

.p-store__info-item:not(:first-child) {
  border-top: 1px solid #F8CE00;
}

.p-top-mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/808;
}

.p-top-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/808;
  z-index: 0;
}

.p-top-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv__body {
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-top-mv__medal {
  position: absolute;
  top: -6rem;
  right: -1rem;
}

.p-mv-medal {
  width: 12.2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, right top, from(#F98113), to(#FFC045));
  background-image: linear-gradient(to right, #F98113, #FFC045);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}

.p-mv-medal__flame-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #ffffff;
  padding: 0.2rem 1.6rem;
  border-radius: 1rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0.3em;
  color: #F98113;
}

.p-mv-medal__main-text,
.p-mv-medal__sub-text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.p-mv-medal__main-text .strong {
  font-family: "Ubuntu", sans-serif;
  font-size: 4rem;
  line-height: 100%;
}

.p-top-mv__catch {
  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;
  gap: 1.6rem;
}

.p-top-mv__catch-1st {
  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;
  gap: 1rem;
  font-weight: 700;
  font-size: 3rem;
  line-height: 100%;
}

.p-top-mv__catch-1st .frame {
  background-color: #ffffff;
  padding: 1rem;
  border: 1px solid #F98113;
  font-size: 4rem;
  line-height: 100%;
  color: #F98113;
}

.p-top-mv__catch-2nd {
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.p-top-mv__title {
  margin-top: 2.4rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 9.6rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, #F98113 17%, #F8CE00 29%, #FB9538 50%, #F8CE00 70%, #F98113 85%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: 0 0.4rem 3rem rgba(255, 255, 255, 0.3);
}

.u-text-transform-upper {
  text-transform: uppercase;
}

.p-top-mv__points {
  margin-top: 4.8rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #ffffff;
  border: 2px solid #E89F00;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-mv__point {
  padding: 0 2rem;
  font-weight: 500;
  font-size: 2rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
}

.p-top-mv__point .small {
  font-size: 1.6rem;
  line-height: 150%;
}

.p-top-mv__point .strong {
  font-size: 2.4rem;
  line-height: 150%;
  color: #F98113;
}

.p-top-mv__point + .p-top-mv__point {
  border-left: 2px solid #E89F00;
}

.p-top-mv__button {
  margin-top: 10rem;
}

.p-top-mv__campaign {
  position: absolute;
  right: 0;
  bottom: 0;
}

.p-mv-campaign {
  padding: 4rem 2rem 2rem;
  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;
  background-color: #F1A700;
}

.p-mv-campaign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background-color: #E8740B;
}

.p-mv-campaign__deco {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
}

.p-mv-campaign__title {
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
}

.p-mv-campaign__body {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.4rem;
}

.p-mv-campaign__before {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-mv-campaign__before::after {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  right: -0.6rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 0.8rem;
  height: 1.4rem;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #ff0000;
}

.p-mv-campaign__price-title {
  padding: 0.4rem 0.8rem;
  border: 1px solid #ffffff;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 100%;
  letter-spacing: 0.16em;
  text-align: center;
  color: #ffffff;
}

.p-mv-campaign__before-price {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 100%;
  color: #ffffff;
}

.p-mv-campaign__before-price .small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
}

.p-mv-campaign__before-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ff0000;
}

.p-mv-campaign__after-price {
  font-weight: 500;
  font-size: 5.6rem;
  line-height: 100%;
  color: #ffffff;
}

.p-mv-campaign__after-price .small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.p-trouble {
  width: 100%;
  background-image: url(../img/top/trouble-bg-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-clip-path: polygon(50% 100%, 100% 70%, 100% 0, 0 0, 0 70%);
          clip-path: polygon(50% 100%, 100% 70%, 100% 0, 0 0, 0 70%);
}

.p-trouble__container {
  padding-top: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}

.p-trouble__img {
  width: 32rem;
  aspect-ratio: 320/412;
}

.p-trouble__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-trouble__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
}

.p-trouble__heading-wrap {
  position: relative;
}

.p-trouble__heading-wrap .fukidashi {
  width: 100%;
  display: block;
  position: relative;
  height: 0.8rem;
}

.p-trouble__heading-wrap .fukidashi .fukidashi-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 2.4px;
  border-radius: 10rem;
  background-color: #403326;
}

.p-trouble__heading-wrap .fukidashi .fukidashi-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 2.4px;
  border-radius: 10rem;
  background-color: #403326;
}

.p-trouble__heading-wrap .fukidashi .fukidashi-right::before {
  content: "";
  position: absolute;
  bottom: -0.8px;
  left: 2.8px;
  width: 1.6rem;
  height: 2.4px;
  border-radius: 10rem;
  background-color: #403326;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: rotate(121deg);
          transform: rotate(121deg);
}

.p-trouble__heading {
  font-weight: 500;
  font-size: 4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-trouble__heading .strong {
  font-size: 4.8rem;
  color: #E8740B;
  line-height: 150%;
}

.p-trouble__list {
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
}

.p-trouble__item {
  position: relative;
  padding-left: 4.4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  letter-spacing: 0.05em;
}

.p-trouble__item .strong {
  color: #A36D3B;
}

.p-trouble__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.6rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon-check-yellow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-voice {
  width: 100%;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.p-voice__splide {
  margin-top: 6.4rem;
  padding-bottom: 5.6rem;
}

.p-voice__splide .splide__track {
  width: 100%;
  max-width: 86.4rem;
  margin-inline: auto;
  padding-bottom: 0.4rem;
}

.p-voice__splide .splide__pagination {
  bottom: 0;
  gap: 1.6rem;
}

.p-voice__splide .splide__pagination__page {
  margin: 0;
  opacity: 1;
  background-color: #d9d9d9;
}

.p-voice__splide .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: #313690;
}

.p-voice__splide .splide__arrow.button {
  width: 4.8rem;
  height: 4.8rem;
  background-color: transparent;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  top: 24rem;
  opacity: 1;
}

.p-voice__splide .splide__arrow.button.prev {
  left: 0;
}

.p-voice__splide .splide__arrow.button.next {
  right: 0;
}

.p-voice__splide .splide__arrow.button:hover {
  opacity: 0.7;
}

.p-voice__splide .button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 4.8rem;
  height: 4.8rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-voice__splide .button.prev::before {
  background-image: url(../img/common/arrow-prev.webp);
}

.p-voice__splide .button.next::before {
  background-image: url(../img/common/arrow-next.webp);
}

.p-voice__splide .button:disabled::before {
  opacity: 0.5;
}

.c-voice-item {
  width: 100%;
  max-width: 40.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0.4rem 0.4rem 0 #F8CE00;
          box-shadow: 0.4rem 0.4rem 0 #F8CE00;
}

.c-voice-item__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}

.c-voice-item__img {
  width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 10rem;
  overflow: hidden;
}

.c-voice-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-voice-item__person-wrap {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8rem;
}

.c-voice-item__name,
.c-voice-item__history {
  padding: 0.4rem 1.2rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 100%;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.c-voice-item__name {
  background-color: #E8740B;
}

.c-voice-item__history {
  background-color: #666666;
}

.c-voice-item__body {
  font-weight: 400;
  font-size: max(1.6rem, 10px);
  line-height: 180%;
  letter-spacing: 0.08em;
}

/* ============================
/* PC/SP 表示切替
/* ========================= */

/* 768px以上で表示 */

/* 768px以下で表示 */

.u-sp {
  display: none;
}

.u-display-none {
  display: none;
}

.u-mt-0 {
  margin-top: 0;
}

.u-mr-0 {
  margin-right: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-ml-0 {
  margin-left: 0;
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (max-width: 1250px) {
  html {
    font-size: 0.8vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }

  a[href^="tel:"] {
    pointer-events: auto;
  }

  .l-inner {
    max-width: 54rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .l-inner.l-inner--wide {
    max-width: 54rem;
  }

  .l-inner.l-inner--small {
    max-width: 54rem;
  }

  .c-button a {
    min-width: 32rem;
    padding: 2.4rem 4rem 2.4rem 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }

  .c-button__fukidashi {
    width: 6rem;
    height: 6rem;
    top: -3.2rem;
    left: -2.4rem;
  }

  .c-button__fukidashi .content {
    font-size: 1.4rem;
  }

  .c-button__fukidashi .content .strong {
    font-size: 1.6rem;
  }

  .c-button__fukidashi::before,
  .c-button__fukidashi::after {
    width: 0.8rem;
    height: 0.8rem;
  }

  .c-button.c-button--fukidashi a {
    padding: 2rem 5.2rem;
    font-size: 1.8rem;
  }

  .c-button.c-button--fukidashi a::after {
    width: 0.8rem;
    height: 1.2rem;
  }

  .c-cta__heading {
    font-size: 2rem;
  }

  .c-cta__heading .strong {
    font-size: 2.4rem;
  }

  .c-cta__item {
    padding-left: 3.6rem;
    font-size: 1.8rem;
  }

  .c-cta__item .strong {
    font-size: 3rem;
    line-height: 150%;
  }

  .c-cta__item::before {
    width: 2.4rem;
  }

  .c-cta__body {
    padding: 2.4rem 1.6rem;
  }

  .c-cta__first-price {
    font-size: 1.8rem;
  }

  .c-cta__first-price .strong {
    font-size: 2.4rem;
  }

  .c-cta__text {
    font-size: 1.6rem;
  }

  .c-cta__arrow {
    width: 4rem;
  }

  .c-cta__new-price-main {
    font-size: 4rem;
  }

  .c-cta__new-price-sub {
    font-size: 1.8rem;
  }

  .c-heading--logo::before {
    width: 10rem;
  }

  .c-heading__en {
    font-size: 6rem;
  }

  .c-heading__ja {
    font-size: 2.8rem;
  }

  .c-heading__ja .num {
    font-size: 3.6rem;
  }

  .p-about__heading {
    font-size: 2rem;
  }

  .p-about__heading .strong {
    font-size: 2.8rem;
  }

  .p-about__points {
    gap: 4rem;
  }

  .p-about__point {
    width: 12rem;
  }

  .p-about__point:not(:first-child)::before {
    width: 4rem;
  }

  .p-about__point-text {
    font-size: 1.8rem;
  }

  .p-about__point-text::first-letter {
    font-size: 2.4rem;
  }

  .p-about__arrow {
    width: 4rem;
  }

  .p-about__main-catch::before,
  .p-about__main-catch::after {
    width: 1.6rem;
    height: 2.4rem;
  }

  .p-about__main-catch::before {
    border-width: 2px;
  }

  .p-about__main-catch::after {
    border-width: 2px;
  }

  .p-about__main-catch-text {
    font-size: 1.8rem;
  }

  .p-about__main-catch-text .strong {
    font-size: 2.8rem;
  }

  .p-about__feature-section {
    margin-top: 4rem;
  }

  .p-about__feature-section + .p-about__feature-section {
    margin-top: 2.4rem;
  }

  .p-course {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }

  .p-course__course-list {
    overflow-x: scroll;
  }

  .p-course__course-table {
    margin-top: 4rem;
    width: 72rem;
  }

  .p-course__course-table th {
    font-size: 1.6rem;
  }

  .p-course__course-table th .small {
    font-size: 1.2rem;
  }

  .p-course__features {
    margin-top: 4rem;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .p-course__feature-body {
    padding-top: 4rem;
  }

  .p-course__feature-title {
    padding: 0.4rem 1.6rem;
    font-size: 2rem;
  }

  .p-course__feature-detail {
    font-size: 1.6rem;
  }

  .p-course__sub-heading-wrap {
    margin-top: 4.8rem;
    padding: 1.6rem 2.4rem;
  }

  .p-course__sub-heading-wrap.p-course__sub-heading-wrap--secondary {
    margin-top: 4rem;
  }

  .p-course__sub-heading {
    font-size: 2.4rem;
  }

  .p-course__movie-wrap {
    width: 100%;
  }

  .p-course__comparison-title-wrap {
    gap: 1.6rem;
  }

  .p-course__comparison-title-wrap::before,
  .p-course__comparison-title-wrap::after {
    width: 5.6rem;
  }

  .p-course__comparison-title {
    font-size: 1.8rem;
  }

  .p-course__comparison-list {
    overflow-x: scroll;
  }

  .p-course__comparison-table {
    margin-top: 4rem;
    width: 72rem;
  }

  .p-course__comparison-table th,
  .p-course__comparison-table td {
    font-size: 1.6rem;
  }

  .p-course__comparison-table th .small,
  .p-course__comparison-table td .small {
    font-size: 1.2rem;
  }

  .p-course__comparison-arrow {
    width: 4rem;
  }

  .p-course__comparison-result {
    padding: 0.8rem 1.6rem;
  }

  .p-course__comparison-result-text {
    font-size: 1.6rem;
  }

  .p-facility {
    padding-bottom: 4.8rem;
  }

  .p-facility__heading {
    padding-top: 4rem;
    padding-bottom: 12rem;
    font-size: 2rem;
  }

  .p-facility__heading .num {
    font-size: 2.8rem;
  }

  .p-facility__container {
    margin-top: -8.8rem;
    padding: 2.4rem 1.6rem;
  }

  .p-facility__gallery {
    gap: 2.4rem;
  }

  .p-faq-list {
    gap: 2.4rem;
  }

  .p-faq-list__item {
    border-radius: 1rem;
  }

  .p-faq-list__item-question {
    padding: 1.6rem;
    gap: 1.5rem;
    font-size: 1.5rem;
  }

  .p-faq-list__item-answer p {
    padding: 1.6rem 1.6rem 0;
    gap: 1.5rem;
  }

  .p-faq {
    margin-top: 8rem;
  }

  .p-faq__list {
    margin-top: 4rem;
  }

  .p-feature {
    padding-top: 6.3rem;
  }

  .p-feature__num {
    font-size: 5.6rem;
  }

  .p-feature__heading {
    padding: 2.8rem 2.4rem 1.6rem;
  }

  .p-feature__subtitle {
    padding: 0.4rem 1.6rem;
    border-width: 1px;
    font-size: 1.4rem;
  }

  .p-feature__maintitle {
    font-size: 2.4rem;
  }

  .p-feature__content {
    aspect-ratio: 390/460;
    padding-bottom: 2rem;
    background-image: url(../img/top/feature-bg1-sp.webp);
  }

  .p-feature__detail {
    font-size: 1.5rem;
  }

  .p-feature:nth-of-type(2) .p-feature__content {
    background-image: url(../img/top/feature-bg2-sp.webp);
  }

  .p-flow {
    padding-top: 8rem;
  }

  .p-flow__content {
    margin-top: 6.4rem;
  }

  .p-flow__list {
    gap: 5.6rem;
  }

  .p-flow__item + .p-flow__item::before {
    top: -0.8rem;
    width: 4rem;
  }

  .p-flow__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }

  .p-flow__img {
    width: 100%;
  }

  .p-flow__body {
    position: static;
    padding: 0 1.6rem 2.4rem;
    gap: 1.6rem;
  }

  .p-flow__num {
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
    font-size: 3.6rem;
    right: 0;
  }

  .p-flow__title {
    padding: 0.6rem 1.6rem;
    font-size: 2rem;
  }

  .p-flow__detail {
    font-size: 1.5rem;
  }

  .p-footer {
    padding: 2rem 0 10rem;
  }

  .p-header {
    background-color: transparent;
    padding: 0;
    height: 0;
    pointer-events: none;
  }

  .p-header__inner {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .p-header__title {
    width: 7rem;
  }

  .p-header__title::before {
    height: 1.6rem;
  }

  .p-header__logo {
    padding: 1rem;
  }

  .p-merit__container {
    padding-top: 12rem;
    padding-bottom: 12rem;
    -webkit-clip-path: polygon(50% 100%, 100% 95%, 100% 0, 0 0, 0 95%);
            clip-path: polygon(50% 100%, 100% 95%, 100% 0, 0 0, 0 95%);
  }

  .p-merit__content {
    margin-top: 4rem;
  }

  .p-merit__content-title {
    gap: 1.6rem;
    font-size: 1.8rem;
  }

  .p-merit__content-title::before,
  .p-merit__content-title::after {
    width: 5.6rem;
  }

  .p-merit__list {
    margin-top: 3.2rem;
    place-items: center;
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .p-merit__item {
    width: 30rem;
    padding: 2.4rem 1.6rem;
    gap: 1.6rem;
    border: 1px solid #E8740B;
  }

  .p-merit__img {
    width: 6.4rem;
  }

  .p-merit__detail {
    font-size: 1.6rem;
  }

  .p-merit__detail .strong {
    font-size: 1.6rem;
  }

  .p-appeal {
    margin-top: -10rem;
    padding-bottom: 6.4rem;
  }

  .p-appeal__points {
    padding-top: 12rem;
    gap: 4rem;
  }

  .p-appeal__point {
    width: 16rem;
  }

  .p-appeal__point:not(:first-child)::before {
    width: 4rem;
    left: -0.2rem;
  }

  .p-appeal__point-text {
    font-size: 1.6rem;
  }

  .p-appeal__equal {
    margin-top: 0;
    margin-bottom: 0.8rem;
    width: 5.6rem;
  }

  .appeal__name-text {
    font-size: 4.2rem;
  }

  .p-appeal__main-catch {
    margin-top: 3.2rem;
    padding: 1.6rem 2.4rem;
    border-width: 1px;
  }

  .p-appeal__main-catch-text {
    font-size: 1.6rem;
  }

  .p-appeal__main-catch-text .strong {
    font-size: 1.6rem;
  }

  .p-appeal__main-catch-text .num {
    font-size: 2.4rem;
  }

  .p-appeal__main-catch-text .name {
    display: inline-block;
    padding-top: 0.8rem;
    font-size: 3.6rem;
  }

  .p-point {
    padding-bottom: 12rem;
  }

  .p-point__heading {
    font-size: 2rem;
  }

  .p-point__heading .strong-en {
    font-size: 2.8rem;
  }

  .p-point__heading .strong {
    font-size: 2.8rem;
  }

  .p-point__container {
    padding: 2rem 2rem;
  }

  .p-point__list {
    gap: 3.2rem;
  }

  .p-point__item {
    padding: 0;
  }

  .p-point__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }

  .p-point__img {
    width: 100%;
  }

  .p-point__body {
    padding: 0;
    gap: 1.6rem;
  }

  .p-point__title {
    margin-top: -3.2rem;
    position: static;
    width: 100%;
    padding: 0;
    background-color: transparent;
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.6rem;
  }

  .p-point__title .strong {
    font-size: 2rem;
  }

  .p-point__title .sp-block {
    display: block;
    padding: 0.4rem 0.8rem;
    background-color: #313690;
  }

  .p-point__detail {
    font-size: 1.5rem;
  }

  .p-point__item:nth-child(even) .p-point__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-point__item:nth-child(even) .p-point__title {
    background-color: transparent;
  }

  .p-point__item:nth-child(even) .p-point__title .sp-block {
    display: block;
    padding: 0.4rem 0.8rem;
    background-color: #E89F00;
  }

  .p-staff {
    padding-top: 12rem;
    padding-bottom: 6.4rem;
  }

  .p-staff__list {
    margin-top: 4rem;
    padding-bottom: 4.8rem;
    max-width: 32.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }

  .p-store {
    margin-top: 8rem;
    padding-bottom: 6.4rem;
  }

  .p-store__heading {
    padding-top: 16rem;
    padding-bottom: 10rem;
    font-size: 2.4rem;
  }

  .p-store__container {
    margin-top: -8rem;
    padding: 1.6rem;
  }

  .p-store__map {
    aspect-ratio: 3/2;
  }

  .p-store__info-list {
    margin-top: 2.4rem;
  }

  .p-store__info-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .p-store__info-item dt {
    width: 100%;
  }

  .p-top-mv {
    aspect-ratio: 390/752;
  }

  .p-top-mv__bg {
    aspect-ratio: 390/654;
  }

  .p-top-mv__body {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    top: 47.1794871795vw;
  }

  .p-top-mv__medal {
    top: -11.5384615385vw;
    right: -1.2820512821vw;
  }

  .p-mv-medal {
    width: 17.4358974359vw;
    gap: 0;
  }

  .p-mv-medal__flame-text {
    padding: 0.5128205128vw 2.0512820513vw;
    font-size: 2.5641025641vw;
  }

  .p-mv-medal__main-text,
  .p-mv-medal__sub-text {
    font-size: 2.5641025641vw;
  }

  .p-mv-medal__main-text .strong {
    font-size: 5.1282051282vw;
  }

  .p-top-mv__catch {
    gap: 2.0512820513vw;
  }

  .p-top-mv__catch-1st {
    font-size: 4.1025641026vw;
  }

  .p-top-mv__catch-1st .frame {
    font-size: 5.1282051282vw;
  }

  .p-top-mv__catch-2nd {
    font-size: 5.1282051282vw;
  }

  .p-top-mv__title {
    margin-top: 2.0512820513vw;
    font-size: 11.7948717949vw;
  }

  .p-top-mv__points {
    margin-top: 6.1538461538vw;
    padding: 2.0512820513vw;
    border-width: 1px;
    border-color: #F8CE00;
  }

  .p-top-mv__point {
    padding: 2.0512820513vw 3.0769230769vw;
    font-size: 2.5641025641vw;
  }

  .p-top-mv__point .small {
    font-size: 3.0769230769vw;
  }

  .p-top-mv__point .strong {
    font-size: 4.1025641026vw;
  }

  .p-top-mv__point + .p-top-mv__point {
    border-width: 1px;
    border-color: #F8CE00;
  }

  .p-top-mv__button {
    margin-top: 64.6153846154vw;
    margin-top: 53.6153846154vw;
  }

  .p-top-mv__campaign {
    top: 0;
    bottom: auto;
  }

  .p-mv-campaign {
    padding: 2.6rem 1.2rem 1.2rem;
  }

  .p-mv-campaign::before {
    height: 1.6rem;
  }

  .p-mv-campaign__deco {
    font-size: 1rem;
  }

  .p-mv-campaign__title {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }

  .p-mv-campaign__body {
    margin-top: 1rem;
    gap: 1rem;
  }

  .p-mv-campaign__before::after {
    bottom: 0.2rem;
    right: -0.2rem;
    width: 0.6rem;
    height: 1.2rem;
  }

  .p-mv-campaign__price-title {
    padding: 0.2rem 0.8rem;
    border-width: 0.6px;
    font-size: 1rem;
  }

  .p-mv-campaign__before-price {
    margin-top: 0.2rem;
    font-size: 1.6rem;
  }

  .p-mv-campaign__before-price .small {
    font-size: 1rem;
  }

  .p-mv-campaign__after-price {
    font-size: 3.6rem;
  }

  .p-mv-campaign__after-price .small {
    font-size: 1.4rem;
  }

  .p-trouble {
    background-image: url(../img/top/trouble-bg-sp.webp);
    -webkit-clip-path: polygon(50% 100%, 100% 80%, 100% 0, 0 0, 0 80%);
            clip-path: polygon(50% 100%, 100% 80%, 100% 0, 0 0, 0 80%);
  }

  .p-trouble__container {
    padding-top: 4.8rem;
    padding-bottom: 8rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.4rem;
  }

  .p-trouble__img {
    display: none;
  }

  .p-trouble__body {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-trouble__heading-wrap .fukidashi {
    height: 0.6rem;
  }

  .p-trouble__heading-wrap .fukidashi .fukidashi-left {
    height: 1.6px;
  }

  .p-trouble__heading-wrap .fukidashi .fukidashi-right {
    height: 1.6px;
  }

  .p-trouble__heading-wrap .fukidashi .fukidashi-right::before {
    left: 1.6px;
    width: 1rem;
    height: 1.6px;
  }

  .p-trouble__heading {
    font-size: 2.2rem;
  }

  .p-trouble__heading .strong {
    font-size: 2.8rem;
  }

  .p-trouble__list {
    margin-top: 3.2rem;
  }

  .p-trouble__item {
    padding-left: 3.6rem;
    font-size: 1.8rem;
  }

  .p-trouble__item::before {
    width: 2.4rem;
  }

  .p-voice {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }

  .p-voice__splide {
    margin-top: 4rem;
    padding-bottom: 4rem;
  }

  .p-voice__splide .splide__track {
    max-width: 32.4rem;
  }

  .p-voice__splide .splide__arrow.button {
    width: 3.2rem;
    height: 3.2rem;
  }

  .p-voice__splide .button::before {
    width: 3.2rem;
    height: 3.2rem;
  }

  .c-voice-item {
    max-width: 32rem;
    padding: 1.6rem;
  }

  .c-voice-item__person {
    gap: 0.8rem;
  }

  .c-voice-item__img {
    width: 6.4rem;
  }

  .c-voice-item__name,
  .c-voice-item__history {
    padding: 0.4rem 0.8rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

@media screen and (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}
/*# sourceMappingURL=style.css.map */