:root {
  /* Color styles */
  --color-theme: #a89774;
  --color-sub-theme: #93814f;
  --color-accent: #0e663a;
  --color-base: #f7f4ee;
  --color-sub-base: #e5e0d4;
  --color-font: #1e1e1e;
  --color-sub-font: #8a8a8a;
  --color-black: #000;
  --color-blue: #a7deec;
  --color-orange: #ff4e00;
  --color-white: #ffffff;
  --color-gray: #b1b1b1;
  --color-lightgray: #d0d0d0;

  /* Text-size styles */
  font-size: 62.5%;

  /* Font Families */
  --font-family-yu-gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  --font-family-yu-mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-family-yu-mincho-demibold: "Yu Mincho Demibold", "YuMincho Demibold", sans-serif;
  --font-family-Cormorant-infant: "Cormorant Infant", serif;
}

body {
  font-family: var(--font-family-yu-mincho-demibold);
  color: var(--color-font);
  background-color: var(--color-base);
  line-height: 1.7;
  font-size: clamp(1.4rem, 1.2544rem + 0.3883vw, 2rem);
  /* font-weight: bold; */
  margin: 0;
  /* letter-spacing: 0.025em; */
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: var(--color-black);
  cursor: pointer;
}

ul,
ol,
dl,
dt,
dd {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* main */
.main {
  position: relative;
}

/* inner */
.large-inner {
  max-width: 1720px;
  width: 92%;
  margin-inline: auto;
}

.medium-inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}

/* section-title */
.section-title__text--en {
  font-family: var(--font-family-Cormorant-infant);
  font-size: clamp(4rem, 3.0291rem + 2.589vw, 8rem);
  font-weight: 200;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-theme);
}

.section-title__text--jp {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.4058rem + 0.5178vw, 2.4rem);
  margin-top: max(15px, 1vw);
}

@media screen and (max-width: 767px) {
  .section-title {
    gap: 10px;
  }

  .section-title__text--jp {
    margin-top: 5px;
  }
}

/* ------------------------------------
ヘッダー
------------------------------------ */
.header {
  width: 100%;
  height: 120px;
  position: fixed;
  z-index: 3;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 94%;
  max-width: 1820px;
  margin-inline: auto;
  height: 100%;
}

.header__logo {
  width: clamp(180px, 17.6%, 338px);
  align-self: center;
}

/* グローバルナビゲーション */
.header-nav {
  display: flex;
  align-items: center;
  align-self: center;
  display: none;
}

.global-nav[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.global-nav__list {
  display: flex;
  margin-top: 12px;
}

.global-nav__link {
  padding: 1.6vw;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}

.global-nav__link:hover {
  opacity: 0.6;
}

.global-nav__text--ja {
  font-size: clamp(1.4rem, 1.3029rem + 0.2589vw, 1.8rem);
}

.global-nav__text--en {
  font-family: var(--font-family-poppins);
  font-size: clamp(1.2rem, 1.1029rem + 0.2589vw, 1.6rem);
  line-height: 1.5;
  font-weight: 600;
}

.global-nav__link:hover > .global-nav__text--en,
.dropdown__heading:hover > .global-nav__text--en {
  color: var(--color-theme);
}

.hamburger-button {
  display: none;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
}

/* スクリーンリーダー テキスト */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .header {
    height: 65px;
  }

  /* グローバルナビゲーション */
  .global-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    height: 100%;
    background-color: var(--color-base);
    text-align: center;
    transform: translateX(110%);
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
  }

  .global-nav__list {
    display: block;
  }

  .global-nav__text--en {
    color: var(--color-theme);
  }

  .global-nav__link {
    padding: 10px;
  }

  /* ハンバーガーボタン */
  .hamburger-button {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: 0;
    z-index: 5;
    cursor: pointer;
    border: none;
  }

  .hamburger-button::before,
  .hamburger-button::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-theme);
    transition: transform 0.3s ease-out, background-color 0.3s ease-out;
  }

  .hamburger-button::before {
    transform: translateY(-10px);
  }

  .hamburger-button::after {
    transform: translateY(10px);
  }

  .hamburger-button[aria-expanded="true"]::before {
    transform: rotate(-45deg);
  }

  .hamburger-button[aria-expanded="true"]::after {
    transform: rotate(45deg);
  }

  .hamburger-button[aria-expanded="true"] > .hamburger-button-bar {
    opacity: 0;
  }

  .hamburger-button-bar {
    position: absolute;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-theme);
    transition: opacity 0.3s ease-out;
  }

  .hamburger-button[aria-expanded="true"] + .overlay {
    display: block;
  }
}

/* ------------------------------------
mainvisual
------------------------------------ */

.mainvisual {
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: end;
  position: relative;
  overflow: hidden;
}

.mainvisual:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_mainvisual.jpg);
  /* transform: scale(1.1); */
  background-size: cover;
  background-position: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  animation: large-move 2s 0.4s ease-out forwards;
}

.mainvisual-copy {
  height: fit-content;
  width: 100%;
  align-self: center;
  margin-top: 60px;
}

.maivisual-copy__text--jp {
  width: max(320px, 58vw);
  margin-left: 0;
  margin-right: auto;
}

.maivisual-copy__text--en {
  width: max(260px, 46vw);
  margin-left: auto;
  margin-right: 15.8vw;
}

@media screen and (max-width: 1599px) {
  .mainvisual-copy {
    align-self: end;
    margin-bottom: 120px;
  }

  .maivisual-copy__text--jp {
  }
}

@media screen and (max-width: 767px) {
  .mainvisual {
    height: calc(100svh / 1.2);
  }

  .mainvisual:after {
    background-position: 65%;
  }

  .mainvisual-copy {
    align-self: center;
    margin-bottom: 0;
    margin-top: 170px;
  }

  .maivisual-copy__text--en {
    margin-right: 5%;
  }
}

/* ------------------------------------
worry
------------------------------------ */

.worry {
  background-image: url(../images/bg_worry02.png);
  background-size: contain;
  padding-top: max(45px, 7vw);
  padding-bottom: max(50px, 5.2vw);
  position: relative;
  z-index: 1;
}

.worry__inner {
  position: relative;
  z-index: 2;
}

.worry:before {
  content: "";
  display: block;
  width: 67%;
  height: 88%;
  background-image: url(../images/bg_worry01.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.worry__title {
  text-align: center;
  font-size: clamp(2rem, 1.0291rem + 2.589vw, 6rem);
}

.worry__description {
  font-size: clamp(2rem, 1.2718rem + 1.9417vw, 5rem);
  font-family: var(--font-family-yu-mincho);
  font-weight: 400;
  text-align: center;
  margin-top: 6vw;
}

.worry__arrow {
  width: max(100px, 11.5vw);
  margin-top: max(10px, 3.1vw);
  margin-inline: auto;
}

.anxiety__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  margin-top: max(20px, 4vw);
}

.anxiety {
  background-color: var(--color-white);
  width: 46%;
  padding: 45px 80px;
}

.anxiety__title {
  font-size: clamp(1.6rem, 1.1146rem + 1.2945vw, 3.6rem);
  text-align: center;
}

.anxiety-list {
  width: fit-content;
  margin: 2vw auto 0;
}

.anxiety-list__item {
  font-size: clamp(1.4rem, 1.1087rem + 0.7767vw, 2.6rem);
  display: flex;
}

.anxiety-list__item + .anxiety-list__item {
  margin-top: 25px;
}

.anxiety-list__item:before {
  content: "";
  display: block;
  width: max(1.8rem, 1.6vw);
  height: max(1.8rem, 1.6vw);
  background-image: url(../images/icon_check01.png);
  background-size: contain;
  margin-right: 7px;
  margin-top: 6px;
}

.anxiety__image {
  position: absolute;
  width: 19vw;
  right: -12.5vw;
  bottom: -11vw;
  right: -12.5vw;
}

@media screen and (max-width: 1559px) {
  .anxiety__wrap {
    width: 90%;
    margin-inline: auto;
  }

  .anxiety {
    width: 48%;
    padding: 45px 7%;
  }

  .anxiety__image {
    position: absolute;
    min-width: 120px;
  }
}

@media screen and (max-width: 1279px) {
  .anxiety__image {
    right: -6%;
    bottom: -70px;
    width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .worry:before {
    width: 75%;
    height: 90%;
  }

  .worry__description span {
    display: block;
  }

  .anxiety__wrap {
    justify-content: center;
  }

  .anxiety {
    width: 100%;
    max-width: 500px;
    padding: 25px 7% 30px;
  }

  .anxiety + .anxiety {
    margin-top: 20px;
  }

  .anxiety-list {
    margin: 2vw 0 0;
  }

  .anxiety-list__item:before {
    margin-top: 4px;
  }

  .anxiety-list__item + .anxiety-list__item {
    margin-top: 10px;
  }
}

@media screen and (max-width: 599px) {
  .anxiety__image {
    width: 80px;
    bottom: -40px;
  }
}

/* ------------------------------------
comparison
------------------------------------ */
.table__wrap {
  margin-top: max(20px, 1.88vw);
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 30px;
}

.table__wrap:-webkit-scrollbar {
  display: none;
}

.table {
  text-align: center;
  width: 100%;
  border: 1px solid var(--color-lightgray);
  width: 100%;
  min-width: 1000px;
}

.table__header {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 25px;
}

.table__row:nth-child(1) .table__header,
.table__row:nth-child(2) .table__header,
.table__row:nth-child(3) .table__header,
.table__row:nth-child(4) .table__header,
.table__row:nth-child(5) .table__header {
  border-bottom: 1px solid var(--color-white);
}

.table__data {
  border: 1px solid var(--color-lightgray);
  font-size: clamp(1.6rem, 1.4544rem + 0.3883vw, 2.2rem);
  color: var(--color-sub-font);
  background-color: var(--color-white);
}

.table__data span {
  display: block;
  font-size: clamp(1.3rem, 1.2515rem + 0.1294vw, 1.5rem);
}

.table__school {
  background-color: var(--color-gray);
  color: var(--color-white);
  font-size: clamp(1.6rem, 1.5029rem + 0.2589vw, 2rem);
}

.table__school:nth-child(3),
.table__school:nth-child(4) {
  border-right: 1px solid var(--color-white);
}

.table__yui {
  border-right: 3px solid var(--color-sub-theme);
  border-left: 3px solid var(--color-sub-theme);
  color: var(--color-theme);
}

.table__row:nth-child(1) .table__yui {
  background-color: var(--color-sub-theme);
  position: relative;
  margin-bottom: 3px;
  color: var(--color-sub-theme);
}

.table__row:nth-child(1) .table__yui:before {
  content: "";
  display: block;
  background-color: var(--color-sub-theme);
  height: 30px;
  position: absolute;
  top: -30px;
  left: -3px;
  right: -3px;
  border: 3px solid var(--color-sub-theme);
  border-radius: 7px 7px 0 0;
}

.table__row:nth-child(1) .table__yui:after {
  content: "YUI";
  display: block;
  color: var(--color-white);
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1.8rem, 1.5087rem + 0.7767vw, 3rem);
  letter-spacing: 0.075em;
}

.table__row:nth-child(6) .table__yui {
  position: relative;
  border-bottom: 3px solid var(--color-sub-theme);
}

@media screen and (max-width: 1079px) {
  .table__wrap {
    overflow-x: scroll;
  }
}

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

/* ------------------------------------
courses
------------------------------------ */
.courses {
  margin-top: max(60px, 6.6vw);
  padding-bottom: max(60px, 5.2vw);
}

.courses__inner {
  background-color: var(--color-white);
  padding: 50px;
  margin-top: max(20px, 1.8vw);
}

.courses-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: max(40px, 3.6vw);
}

.courses-heading__item {
  width: 28%;
  background-color: var(--color-base);
  text-align: center;
  padding: 28px;
  display: flex;
  justify-content: center;
}

.courses-heading__inner {
  align-self: center;
}

.courses-heading__title {
  font-size: clamp(2.2rem, 1.035rem + 3.1068vw, 7rem);
  font-family: var(--font-family-Cormorant-infant);
  font-weight: 100;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 5px;
}

.courses-heading__description {
  font-size: clamp(1.8rem, 1.5087rem + 0.7767vw, 3rem);
  line-height: 1.2;
}

.courses-heading__caution {
  line-height: 1.3;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

.course-heading__cross {
  width: 9%;
  display: flex;
  justify-content: center;
}

.course-heading__cross img {
  width: 50%;
  align-self: center;
}

.courses__item {
}

.courses__item + .courses__item {
  margin-top: max(25px, 2.6vw);
}

.courses__title {
  display: flex;
}

.courses__title--en {
  color: var(--color-accent);
  font-family: var(--font-family-Cormorant-infant);
  font-weight: 100;
  font-size: clamp(3rem, 1.7864rem + 3.2362vw, 8rem);
  margin-right: max(10px, 1.6vw);
  align-self: flex-end;
  line-height: 0.9;
}

.courses__title--jp {
  font-size: clamp(1.8rem, 1.266rem + 1.4239vw, 4rem);
  color: var(--color-theme);
  align-self: flex-end;
  margin-right: 20px;
  line-height: 1.3;
}

.courses__title--caution {
  align-self: flex-end;
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
}

.courses__description--main {
  font-size: clamp(1.6rem, 1.2602rem + 0.9061vw, 3rem);
  margin-top: 10px;
}

.courses__description--sub {
  margin-top: 10px;
}

.options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: max(25px, 2.1vw);
}

.options__item {
  width: 48%;
  border-bottom: 1px solid var(--color-theme);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.options-title {
  display: flex;
  font-size: clamp(1.6rem, 1.3573rem + 0.6472vw, 2.6rem);
  color: var(--color-theme);
  line-height: 1.3;
}

.options-title:before {
  content: "";
  display: block;
  background-color: var(--color-accent);
  width: 12px;
  height: 12px;
  align-self: center;
  margin-right: max(10px, 1vw);
}

.options-title__text {
  align-self: center;
}

.options-title span {
  font-size: clamp(1.3rem, 1.033rem + 0.712vw, 2.4rem);
  color: var(--color-orange);
}

.options__item:nth-child(1) .options-fee {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.options-fee {
  font-size: clamp(1.6rem, 1.3573rem + 0.6472vw, 2.6rem);
  align-self: center;
}

.options-fee__strikethrough {
  position: relative;
}

.options-fee__strikethrough:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-font);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.options-fee__excluding-tax {
  font-size: clamp(1.3rem, 1.1301rem + 0.4531vw, 2rem);
}

.options-fee__including-tax {
  font-size: clamp(1.2rem, 1.1029rem + 0.2589vw, 1.6rem);
}

.fees {
  background-color: var(--color-base);
  display: flex;
  justify-content: center;
  gap: min(15px, 2%);
  padding: 20px;
  margin-top: max(25px, 2.1vw);
}

.fees__title {
  font-size: clamp(1.6rem, 1.2602rem + 0.9061vw, 3rem);
  align-self: center;
}

.fees__title span {
  font-size: clamp(2rem, 1.6845rem + 0.8414vw, 3.3rem);
  color: var(--color-theme);
}

.fees-discount {
  display: flex;
  line-height: 1;
}

.fees-discount__arrow {
  width: max(20px, 2.2vw);
  max-width: 42px;
  align-self: center;
}

.fees-discount__before {
  font-style: italic;
  align-self: center;
  margin-right: 10px;
}

.fees-discount__before span:nth-child(1) {
  font-size: clamp(2rem, 1.2718rem + 1.9417vw, 5rem);
}

.fees-discount__before span:nth-child(2) {
  font-size: clamp(1.7rem, 1.1903rem + 1.3592vw, 3.8rem);
}

.fees-discount__before span:nth-child(3) {
}

.fees-discount__after {
  font-style: italic;
  color: var(--color-accent);
  align-self: center;
  margin-left: 5px;
}

.fees-discount__after span:nth-child(1) {
  font-size: clamp(1.8rem, 1.5573rem + 0.6472vw, 2.8rem);
}

.fees-discount__after span:nth-child(2) {
  font-size: clamp(2.3rem, 1.2078rem + 2.9126vw, 6.8rem);
}

.fees-discount__after span:nth-child(3) {
  font-size: clamp(1.7rem, 1.1417rem + 1.4887vw, 4rem);
}
.courses__btn_area {
  margin-top: max(45px, 4.7vw);
}
.courses__btn_area .btn_caption {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
}
.courses__btn_area .btn_caption p {
  position: relative;
  display: inline-block;
  padding: 0 45px;
}
.courses__btn_area .btn_caption p:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #1e1e1e;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.courses__btn_area .btn_caption p:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #1e1e1e;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.courses__btn_area .btn_caption p:before {
  left: 0;
}
.courses__btn_area .btn_caption p:after {
  right: 0;
}
.courses__btn_area .btn_caption p span {
  color: #93814f;
  font-size: clamp(2rem, 5vw, 4rem);
}

.courses .button {
  /* margin-top: max(45px, 4.7vw); */
  margin-top: max(12px, 1vw);
}

.button {
  width: fit-content;
  background-color: var(--color-accent);
  margin-inline: auto;
  border-radius: 100px;
  position: relative;
  width: 90%;
  /* max-width: 470px; */
  max-width: 600px;
  text-align: center;
  padding: 50px 0;
  transition: background-color 0.1s ease-in;
}

.button:hover {
  background-color: var(--color-sub-theme);
}

.button__link {
  display: block;
  width: 100%;
  height: 100%;
  font-family: var(--font-family-yu-mincho);
  font-weight: 100;
  /* font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem); */
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  color: var(--color-white);
  letter-spacing: 0;
}

.button:after {
  content: "";
  display: block;
  width: max(14px, 1.1vw);
  height: max(14px, 1.1vw);
  background-image: url(../images/icon_link.png);
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}

@media screen and (max-width: 1079px) {
  .options__item {
    flex-direction: column;
  }

  .options-fee {
    margin-top: 5px;
    align-self: flex-start;
  }

  .options__item:nth-child(1) .options-fee {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .options-fee__before {
    width: 100%;
  }

  .fees {
    flex-direction: column;
  }

  .fees-discount {
    align-self: center;
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  .button {
    max-width: 400px;
  }

  .courses-heading {
    flex-direction: column;
    gap: 15px;
  }

  .courses-heading__item {
    width: 100%;
    padding: 20px;
  }

  .course-heading__cross {
    align-self: center;
    width: max(30px, 6%);
  }

  .courses__inner {
    padding: 5%;
  }

  .courses__title {
    flex-wrap: wrap;
  }

  .courses__title--jp {
    margin-right: 15px;
  }

  .courses__description--main {
    margin-top: 8px;
  }

  .courses__description--sub {
    margin-top: 5px;
  }

  .courses__title--caution {
    width: 100%;
  }

  .options__item {
    width: 100%;
    margin-top: 5px;
  }

  .options-title:before {
    width: 10px;
    height: 10px;
  }

  .options-fee__before {
    width: auto;
  }
}

@media screen and (max-width: 599px) {
  .fees__title span {
    display: block;
    line-height: 1;
  }

  .fees-discount {
    margin-top: 10px;
  }

  .fees-discount__after span:nth-child(4) {
    display: block;
    margin-top: 5px;
  }

  .button {
    padding: 25px 0;
  }

  .button:after {
    right: 10%;
  }
}

/* ------------------------------------
merits
------------------------------------ */
.merit {
  position: relative;
  padding-top: max(50px, 4.7vw);
  padding-bottom: calc(11vw + 30px);
}

.merit:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_merit.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.merit-title {
  text-align: center;
}

.merit-title__image {
  width: max(180px, 19.8vw);
  margin-inline: auto;
}

.merit-title__text {
  margin-top: 15px;
  font-family: var(--font-family-yu-mincho);
  font-weight: 100;
  font-size: clamp(2rem, 1.2718rem + 1.9417vw, 5rem);
  line-height: 1.3;
}

.merit-title__text span {
  font-size: clamp(3rem, 1.7864rem + 3.2362vw, 8rem);
  color: var(--color-theme);
  padding: 0 5px;
}

.merit-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: max(40px, 3.9vw);
}

.merit-list__item {
  width: calc((100% - 120px) / 3);
  background-color: var(--color-white);
  border-radius: 7px;
  padding: 30px;
  line-height: 1.3;
}

.merit-list__image {
  height: max(55px, 5.2vw);
  width: fit-content;
  margin: 20px auto;
}

.merit-list__image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.merit-list__number {
  width: max(50px, 5.2vw);
  margin-top: min(-45px, -2.9vw);
}

.merit-list__title {
  color: var(--color-theme);
  text-align: center;
}

.merit-list__description {
  margin-top: 5px;
  font-size: clamp(1.4rem, 1.3029rem + 0.2589vw, 1.8rem);
}

@media screen and (max-width: 1279px) {
  .merit-list {
    gap: 40px;
  }

  .merit-list__item {
    width: calc((100% - 80px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .merit-list {
    gap: 40px;
  }

  .merit-list__item {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 599px) {
  .merit-list {
    gap: 30px;
  }

  .merit-list__item {
    width: 100%;
    max-width: 400px;
    padding: 30px 25px;
  }
}

/* ------------------------------------
interview
------------------------------------ */
.interview {
  background-color: var(--color-blue);
  position: relative;
}

.interview-bg__image {
  width: max(180px, 48vw);
  position: absolute;
  left: 0;
  top: -5vw;
}

.interview-bg__image img {
  width: 100%;
}

.interview:before {
  content: "";
  display: block;
  width: 100%;
  height: 11vw;
  background-image: url(../images/bg_top-wave.png);
  background-size: cover;
  position: absolute;
  right: 0;
  top: -11vw;
}

.interview:after {
  content: "";
  display: block;
  width: 100%;
  height: 11vw;
  background-image: url(../images/bg_bottom-wave.png);
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: -11vw;
}

.interview-title {
  width: fit-content;
  margin-inline: auto;
}

.interview-title__image {
  width: max(90px, 14.6vw);
  margin-left: -7.5vw;
  margin-bottom: -1.8vw;
}

.interview-title__text {
  font-size: clamp(2rem, 1.2718rem + 1.9417vw, 5rem);
  font-family: var(--font-family-yu-mincho);
}

.interview__inner {
  position: relative;
  z-index: 2;
}

.interview-list {
  margin-top: max(20px, 2.3vw);
}

.interview-list__item {
  border-radius: 10px;
}

.interview-list__item + .interview-list__item {
  margin-top: max(25px, 2.1vw);
}

.interview-list__header {
  display: flex;
  padding-left: 30px;
  position: relative;
}

.interview-list__header:before {
  content: "";
  width: 100%;
  height: 55%;
  background-color: var(--color-base);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px 10px 0 0;
}

.interview-list__header .interview-title {
  width: fit-content;
  margin-inline: auto;
}

.interview-list__image {
  width: max(100px, 10.4vw);
  position: relative;
  margin-bottom: -10px;
}

.interview-list__title {
  align-self: flex-end;
  margin-left: 10px;
  margin-bottom: 1%;
  position: relative;
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
}

.interview-list__title span {
  font-size: clamp(1.8rem, 1.5087rem + 0.7767vw, 3rem);
  color: var(--color-theme);
  margin-left: 10px;
}

.interview-list__description {
  background-color: var(--color-base);
  padding: 10px 30px 30px;
  border-radius: 0 0 10px 10px;
}

.interview-list__description p {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 10px;
}

@media screen and (max-width: 1559px) {
  .interview-bg__image {
    right: 0;
    left: auto;
    transform: scale(-1, 1);
  }
}

@media screen and (max-width: 1279px) {
  .interview {
    padding: 2% 0 9%;
  }
}

@media screen and (max-width: 767px) {
  .interview-list__header {
    padding-left: 5%;
  }

  .interview-list__title span {
    margin-left: 5px;
  }

  .interview-list__description {
    padding: 10px 5% 5%;
  }

  .interview-list__description p {
    padding: 5%;
  }
}

/* ------------------------------------
feature
------------------------------------ */
.feature {
  margin-bottom: max(60px, 6.8vw);
  margin-top: 11vw;
  padding-top: max(40px, 5.2vw);
}

.feature-list__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: max(25px, 3.6vw);
}

.feature-list {
  width: 49%;
}

.feature-list__item {
  display: flex;
  font-size: clamp(1.6rem, 1.2602rem + 0.9061vw, 3rem);
}

.feature-list__item + .feature-list__item {
  margin-top: max(20px, 1.6vw);
}

.feature-list__text {
  width: fit-content;
  line-height: 1.5;
}

.feature-list__text span {
  display: block;
  font-size: clamp(1.3rem, 1.1301rem + 0.4531vw, 2rem);
}

.feature-list__item:before {
  content: "";
  display: block;
  width: max(14px, 1.5vw);
  height: max(11px, 1.2vw);
  background-image: url(../images/icon_check02.png);
  background-size: contain;
  margin-top: max(5px, 0.5vw);
  margin-right: max(10px, 1vw);
}

@media screen and (max-width: 767px) {
  .feature-list {
    width: 47%;
  }
}

@media screen and (max-width: 599px) {
  .feature-list__wrap {
    flex-wrap: wrap;
  }

  .feature-list {
    width: 100%;
  }

  .feature-list + .feature-list {
    margin-top: 20px;
  }
}

/* ------------------------------------
faq
------------------------------------ */
.faq {
  position: relative;
  padding-top: max(45px, 4.7vw);
  padding-bottom: max(60px, 5.7vw);
}

.faq:before {
  content: "";
  display: block;
  width: 67%;
  height: 100%;
  background-color: var(--color-sub-base);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.faq:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_faq.png);
  background-size: contain;
  position: absolute;
  right: 0;
  top: min(-300px, -32vw);
  z-index: -1;
}

.faq__inner {
  position: relative;
}

.faq-list {
  margin-top: max(25px, 2.1vw);
  line-height: 1.4;
}

.faq-list__item {
  background-color: var(--color-white);
}

.faq-list__item + .faq-list__item {
  margin-top: max(15px, 1.6vw);
}

.faq-list__title {
  padding: 20px 30px;
  color: var(--color-theme);
  position: relative;
  font-size: clamp(1.6rem, 1.4058rem + 0.5178vw, 2.4rem);
}

.faq-list__title:after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--color-theme);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.faq-list__description {
  padding: 20px 30px;
}

@media screen and (max-width: 767px) {
  .faq-list__title {
    padding: 20px;
  }

  .faq-list__description {
    padding: 20px;
  }
}

/* ------------------------------------
footer
------------------------------------ */
.footer {
  position: relative;
}

.footer__inner {
  display: flex;
  gap: max(15px, 3.1vw);
  padding-top: max(60px, 8.9vw);
  /* margin-bottom: max(50px, 13vw); */
  margin-bottom: max(40px, 7vw);
  position: relative;
}
.footer__btn_area .button {
  margin: 0 0 max(100px, 8.9vw);
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .footer__btn_area .button {
    max-width: 400px;
    padding: 40px 0;
  }
}
@media screen and (max-width: 599px) {
  .footer__btn_area .button {
    max-width: min(75%, 300px);
    padding: 30px 0;
  }
}
.footer-bg {
  position: relative;
}

.footer-bg__image {
  width: max(200px, 37.5vw);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer__logo {
  width: max(180px, 17vw);
}

.footer-info {
  font-size: clamp(1.4rem, 1.2544rem + 0.3883vw, 2rem);
  padding-left: max(45px, 4vw);
  margin-left: max(50px, 5.2vw);
  border-left: 1px solid var(--color-sub-theme);
}

.footer-info__tel {
  position: relative;
  display: flex;
  font-size: clamp(2.6rem, 2.1388rem + 1.2298vw, 4.5rem);
  font-family: var(--font-family-Cormorant-infant);
  font-weight: 100;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-top: max(20px, 1.8vw);
}

.footer-info__tel:before {
  content: "";
  display: block;
  width: max(18px, 1.7vw);
  height: max(18px, 1.7vw);
  background-image: url(../images/icon_tel.png);
  background-size: contain;
  margin-right: max(10px, 0.8vw);
  align-self: center;
}

.footer-info__direction {
  margin-top: max(20px, 1.8vw);
}

.footer-info__direction span {
  margin-right: max(5px, 1.6vw);
}

.footer__copyright {
  background-color: var(--color-sub-theme);
  color: var(--color-white);
  text-align: center;
  font-size: clamp(1rem, 0.9515rem + 0.1294vw, 1.2rem);
  font-family: var(--font-family-yu-gothic);
  line-height: 1;
  height: max(40px, 4.2vw);
  display: flex;
  justify-content: center;
}

.footer__copyright span {
  align-self: center;
}

@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
  }

  .footer-info {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
  }

  .footer-bg__image {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .footer-info__direction span:nth-child(3) {
    display: block;
  }
}

/* ------------------------------------
pagetop
------------------------------------ */
.pagetop {
  position: relative;
  display: flex;
  justify-content: end;
}

.pagetop__link {
  display: block;
  width: fit-content;
}

.pagetop__image {
  position: fixed;
  z-index: 2;
  bottom: 80px;
  width: max(44px, 4.7vw);
  margin-right: 0;
}

/* ------------------------------------
seminar
------------------------------------ */
.roadmap {
  background-image: url(../images/bg_worry02.png);
  background-size: contain;
  padding-top: 160px;
  padding-bottom: max(60px, 6.4vw);
  position: relative;
  z-index: 1;
}

.roadmap__intro {
  text-align: center;
}

.roadmap-title__text {
  font-size: clamp(1.8rem, 1.3631rem + 1.165vw, 3.6rem);
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(transparent calc(100% - 1.5px), var(--color-theme) 1.5px);
  display: inline-block;
  line-height: 2;
}

.roadmap-title__text + .roadmap-title__text {
  display: block;
  margin-top: 5px;
}

.roadmap__description {
  margin-top: max(20px, 2.4vw);
  line-height: 1.9;
  font-family: var(--font-family-yu-mincho);
  font-weight: 100;
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
}

.roadmap__intro span {
  font-size: clamp(1.6rem, 1.4544rem + 0.3883vw, 2.2rem);
  padding: 0 2px;
  font-family: var(--font-family-yu-mincho-demibold);
}

.roadmap__arrow {
  width: max(90px, 10vw);
  margin-top: max(10px, 3.1vw);
  margin-inline: auto;
}

.conclusion {
  margin-top: max(30px, 2vw);
}

.conclusion__textbox {
  text-align: center;
  font-size: clamp(1.6rem, 1.4058rem + 0.5178vw, 2.4rem);
  line-height: 1.9;
}
.conclusion__line {
}
.conclusion__line__txt {
  text-align: center;
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
  margin-top: max(30px, 3.4vw);
}
.conclusion__line__caution {
  margin: max(15px, 1.4vw) auto 0;
  width: 88%;
}
.conclusion__line__caution p {
  font-size: clamp(1.3rem, 1.2272rem + 0.1942vw, 1.6rem);
  display: inline-block;
  color: var(--color-sub-theme);
}
.conclusion__line__caution p:nth-of-type(n + 2) {
  margin-top: 10px;
}
.conclusion__description:nth-child(2) {
  color: var(--color-sub-theme);
  font-size: clamp(1.7rem, 1.433rem + 0.712vw, 2.8rem);
}

.conclusion span {
}

.conclusion-list__wrap {
  padding: 40px 40px 70px;
  background-color: var(--color-white);
  border-radius: 7px;
  margin: 40px auto 0px;
  display: flex;
  justify-content: space-between;
  width: fit-content;
  flex-wrap: wrap;
}

.conclusion-list {
  width: 48%;
}

.conclusion-list__item {
  font-size: clamp(1.6rem, 1.5029rem + 0.2589vw, 2rem);
  display: flex;
}

.conclusion-list__item:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../images/icon_check02.png);
  background-size: contain;
  margin-top: 8px;
  margin-right: max(10px, 1vw);
}

.conclusion-list__item p {
  width: calc(100% - 20px);
  line-height: 1.4;
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
}

.conclusion-list__item + .conclusion-list__item {
  margin-top: 15px;
}

.mail-button {
  width: fit-content;
  background-color: var(--color-sub-theme);
  margin-inline: auto;
  border-radius: 10px;
  position: relative;
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 30px 40px;
  transition: background-color 0.1s ease-in;
  margin-top: -40px;
}

.conclusion__caution {
  text-align: left;
  width: fit-content;
  margin: 35px auto 0;
  font-size: clamp(1.3rem, 1.2272rem + 0.1942vw, 1.6rem);
  line-height: 1.4;
}

@media screen and (max-width: 1079px) {
  .roadmap {
    padding-top: 130px;
  }
}

@media screen and (max-width: 767px) {
  .roadmap {
    padding-top: 100px;
  }

  .conclusion-list__wrap {
    padding: 30px 30px 70px;
    margin: 30px auto 0px;
  }
}

@media screen and (max-width: 599px) {
  .roadmap {
    padding-top: 90px;
  }

  .roadmap__description {
    margin-top: 15px;
  }

  .roadmap__intro {
    text-align: left;
  }

  .roadmap-title__text {
    display: inline;
    line-height: 1.7;
  }

  .roadmap-title__text + .roadmap-title__text {
    display: inline;
    margin-left: -5px;
  }

  .conclusion__textbox {
    line-height: 1.8;
  }

  .mail-button span {
    display: block;
    line-height: 1.3;
  }
}

/* ------------------------------------
アドレス入力フォーム
------------------------------------ */
/* ▽CF7 */
input.wpcf7-form-control.wpcf7-submit {
  all: unset; /* デフォルトのボタンスタイルをすべてリセット */
  display: inline-block;
  background-color: #000; /* 好みの色に変更 */
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: none !important; /* 不要な影を完全に除去 */
}

input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: #444; /* ホバー時の色 */
}
.wpcf7-spinner {
  display: block;
  margin: auto;
}
.wpcf7 form .wpcf7-response-output {
  color: #fff;
  margin: 1em 0.5em 1em;
}
.wpcf7-not-valid-tip {
  color: #ffb900;
}
/* ↑CF7 */

.mail-button__form {
}
.mail-button__form form p {
  text-align-last: left;
}
.mail-button__form form p:nth-of-type(2) {
  margin-top: 20px;
}
.mail-button__form form p:nth-of-type(3) {
  text-align: center;
  text-align-last: center !important;
  margin-top: 30px;
}
.mail-button__form label {
  color: #ffffff;
}
.mail-button__form input {
  width: 100%;
}
.mail-button__form input.school-email {
}
.mail-button__form input.school-name {
}
.mail-button__form input[type="email"],
.mail-button__form input[type="text"] {
  height: 2em;
}
.mail-button__form input[type="submit"] {
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
  background-color: var(--color-accent);
  color: #fff;
  font-family: var(--font-family-yu-mincho);
  border-radius: 100px;
  padding: 1em 3em !important;
  width: auto !important;
  position: relative;
  transition: background-color 0.1s ease-in;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .mail-button {
    padding: 30px 30px 10px;
  }
}

/* ------------------------------------
thanks
------------------------------------ */
.seminar {
  padding-top: max(55px, 6.4vw);
  padding-bottom: max(10px, 2vw);
  position: relative;
}

.seminar:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg_merit.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 7px 7px 0;
  z-index: -2;
}

.seminar:after {
  content: "";
  display: block;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, transparent 0%, #f7f6f3 50%, var(--color-base) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0 7px 7px 0;
  z-index: -1;
}
.seminar-thanks {
  text-align: center;
  padding-top: max(55px, 6.4vw);
}

.thanks__title__text {
  font-size: clamp(1.8rem, 1.3631rem + 1.165vw, 3.6rem);
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(transparent calc(100% - 1.5px), var(--color-theme) 1.5px);
  display: inline-block;
  line-height: 2;
}
.seminar-thanks__txt {
  margin-top: 30px;
}
.seminar-intro {
  position: relative;
  margin-top: max(30px, 2vw);
}

.seminar-intro__title {
  font-size: clamp(1.8rem, 1.3631rem + 1.165vw, 3.6rem);
  text-align: center;
}

.seminar-intro__description {
  margin-top: 30px;
  text-align: center;
  line-height: 2.7;
}

.registration {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.registration__inner {
  display: flex;
  background-color: var(--color-white);
  position: relative;
  width: fit-content;
  margin-top: 50px;
  margin-inline: auto;
}

.registration-title {
  text-align: center;
  background-color: var(--color-theme);
  color: var(--color-white);
  padding: 30px 35px;
  display: flex;
  line-height: 1.6;
  font-size: clamp(1.6rem, 1.5029rem + 0.2589vw, 2rem);
}

.registration-title__inner {
  align-self: center;
}

.registration-title__text span {
  padding: 0 5px;
  display: inline;
}

.registration-list {
  padding: 35px 40px;
}

.registration-list__item {
  font-size: clamp(1.4rem, 1.3029rem + 0.2589vw, 1.8rem);
  display: flex;
}

.registration-list__item p {
  width: calc(100% - 18px);
  line-height: 1.5;
}

.registration-list__item:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/icon_check01.png);
  background-size: contain;
  margin-right: 7px;
  margin-top: 5px;
}

.registration-list__item + .registration-list__item {
  margin-top: 15px;
}

.registration-button {
  margin-top: 50px;
}
.registration-img {
  margin-top: 40px;
  text-align: center;
}
.registration-img a {
  display: inline-block;
}

.registration-img img {
  max-width: 200px;
}
.registration__caution {
  font-size: clamp(1.3rem, 1.2272rem + 0.1942vw, 1.6rem);
  line-height: 1.4;
  text-align: left;
  width: fit-content;
  margin: 35px auto 0;
}

.registration__caution p + p {
  margin-top: 5px;
}

@media screen and (max-width: 1079px) {
  .registration__inner {
    margin-top: 40px;
  }

  .registration-button {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .conclusion-list {
    width: 100%;
  }
  .conclusion-list + .conclusion-list {
    margin-top: 15px;
  }
  .seminar-intro__description {
    margin-top: 20px;
    line-height: 2.3;
  }

  .registration {
    width: 100%;
  }

  .registration__inner {
    flex-direction: column;
    width: 100%;
    margin-top: 30px;
  }

  .registration-list__item:before {
    width: 15px;
    height: 15px;
  }

  .registration-title {
    justify-content: center;
    padding: 15px;
  }

  .registration-title__inner {
    display: flex;
    gap: 1px;
  }

  .registration-title__text {
    align-self: baseline;
  }

  .registration-button {
    margin-top: 35px;
  }
  .registration-img {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .seminar-intro__description {
    text-align: left;
    line-height: 2;
  }

  .registration-list {
    padding: 25px;
  }
}

/* ------------------------------------
unsubscribe
------------------------------------ */

.unsubscribe {
  background-image: url(../images/bg_worry02.png);
  background-size: contain;
  padding-top: 160px;
  padding-bottom: max(60px, 6.4vw);
  position: relative;
  z-index: 1;
}

.unsubscribe__intro {
  text-align: center;
}

.unsubscribe__description {
  margin-top: max(20px, 2.4vw);
  line-height: 1.9;
  font-family: var(--font-family-yu-mincho);
  font-weight: 100;
  font-size: clamp(1.4rem, 1.1573rem + 0.6472vw, 2.4rem);
}

.unsubscribe__form {
  width: fit-content;
  background-color: var(--color-sub-theme);
  margin-inline: auto;
  border-radius: 10px;
  position: relative;
  width: 90%;
  max-width: 600px;
  text-align: center;
  padding: 30px 40px;
  transition: background-color 0.1s ease-in;
  margin-top: 40px;
}
/*============================
    responsive
============================*/

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 1040px) {
  .inner {
    padding: 0 3%;
  }
  .inner__large {
    padding: 0 3%;
  }
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .pcbr {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: auto;
  }
  .flex {
    display: block;
  }
  .spbr {
    display: block;
  }
  .pcbr {
    display: none;
  }
  .inner {
    padding: 0 5%;
  }
  .inner__large {
    padding: 0 5%;
  }
  .sponly {
    display: block;
  }
  .spnone {
    display: none;
  }
}
