@charset "UTF-8";

:root {
  --Color-White: #ffffff;
  --Color-Black: #000000;
  /* ページカラー */
  --Color-Yellow: #ffeb0a;
  --Color-Green: #059641;
  --Color-Himawari: #ffcc25;
  /* グレー */
  --Color-Gray-900: #1f1f1f;
  --Color-Gray-500: #808080;
  --Color-Gray-200: #e0e0e0;

  /* テーマカラー */
  --Color-Tokiwa: #086936;
  --Color-Konpeki: #107dbc;
  --Color-Aka: #ff5656;
  --Color-Aka-Dark: #d13234;
  --Color-Mikan: #ea893b;
  --Color-Fuji: #9d6bb5;
  --Color-Sora: #47bec8;
  --Color-Wakatake: #3fb874;
  --Color-Tanpopo: #fcd347;
  /* ブランドカラー */
  --Color-LINE: #06c755;
  /* レイアウト */
  --inner-width: 1440px;
  --inner-padding-pc: 3.333%;
  --inner-padding-sp: 3%;
  /* フォント */
  --Font-NotoSansJP: "Noto Sans JP", sans-serif;
  --Font-Barlow: "Barlow", sans-serif;
  --Font-YuGothic: "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Osaka-mono", "MS Gothic", "sans-serif";
  --Font-Bangers: "Bangers", sans-serif;

  scroll-behavior: smooth;
  scroll-padding-top: 102px;
  @media (max-width: 740px) {
    scroll-padding-top: calc(63 / 390 * 100vw);
  }
}

/* 共通アニメーション */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fade-up {
  opacity: 0;
}
.js-fade-up.-is-visible {
  animation: fadeUp 0.3s ease-out forwards;
}
/* カード番号ポップアニメーション */
@keyframes numberPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.15);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.js-fade-up .ab-perks__card-number {
  opacity: 0;
}
.js-fade-up.-is-visible .ab-perks__card-number {
  animation: numberPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s;
}

/* common */
.ab-main {
  overflow: clip;
  letter-spacing: 0;
  color: var(--Color-Gray-900);
  font-family: var(--Font-NotoSansJP);
  a {
    text-decoration: none;
  }
  @media (any-hover: hover) {
    a:hover {
      opacity: 1 !important;
    }
  }
  img {
    width: 100%;
  }
}
.ab-main *,
.ab-main *:before,
.ab-main *:after {
  box-sizing: border-box;
}

/* 共通ボタン */
.ab-com-button {
  max-width: 480px;
  width: 100%;
  padding: 32px 68px 32px 33px;
  border: 3px solid var(--Color-Gray-900);
  border-radius: 100vmax;
  text-decoration: none;
  box-shadow:
    0 9px 14px 7px rgba(0, 0, 0, 0.15),
    0 5px 5px 0 rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  margin: auto;
  position: relative;
  display: block;
  text-align: center;
  @media (max-width: 740px) {
    max-width: calc(277 / 390 * 100vw);
    padding: calc(22 / 390 * 100vw) calc(40 / 390 * 100vw) calc(22 / 390 * 100vw) calc(16 / 390 * 100vw);
    border-width: calc(2 / 390 * 100vw);
    border-radius: calc(32 / 390 * 100vw);
  }
}
.ab-com-button.-yellow {
  background-color: var(--Color-Yellow);
}
.ab-com-button.-line {
  background-color: var(--Color-LINE);
}
.ab-com-button.-green-outline {
  background-color: var(--Color-White);
  border-color: var(--Color-Green);
}
.ab-com-button.-green-outline .ab-com-button__text {
  color: var(--Color-Green);
}
@media (any-hover: hover) {
  .ab-com-button.-green-outline:hover {
    background-color: var(--Color-Green);
  }
  .ab-com-button.-green-outline:hover .ab-com-button__text {
    color: var(--Color-White);
  }
  .ab-com-button:hover {
    background-color: var(--Color-White);
  }
}
.ab-com-button__text {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-com-button__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: absolute;
  inset: 50% 18px auto auto;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(18 / 390 * 100vw);
    height: calc(18 / 390 * 100vw);
    inset: 50% calc(13 / 390 * 100vw) auto auto;
  }
}
.ab-com-button__arrow svg,
.ab-com-button__arrow img {
  @media (max-width: 740px) {
    width: 100%;
    height: 100%;
  }
}
.ab-com-button__arrow svg circle,
.ab-com-button__arrow svg path {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}
.ab-com-button__arrow svg path {
  stroke: var(--Color-White);
}

/* 共通タイトル */
.ab-com-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab-com-title__en {
  max-width: 800px;
  @media (max-width: 740px) {
    max-width: calc(390 / 390 * 100vw);
    margin-inline: calc(50% - 50vw);
  }
}
.ab-com-title__text {
  margin-top: 8px;
  padding: 1px 5px 5px;
  background-color: var(--Color-White);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(18 / 390 * 100vw);
    margin-top: calc(4 / 390 * 100vw);
    padding: calc(2 / 390 * 100vw) calc(4 / 390 * 100vw) calc(4 / 390 * 100vw);
  }
}
.ab-com-title__text.-green {
  background-color: var(--Color-Green);
  color: var(--Color-White);
}

/* 表示・非表示 */
.ab-hidden-md {
  display: block;
  @media (max-width: 740px) {
    display: none;
  }
}
.ab-visible-md {
  display: none;
  @media (max-width: 740px) {
    display: block;
  }
}

/* MV */
.ab-mv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 1440 / 700;
  @media (max-width: 740px) {
    aspect-ratio: 390 / 390;
  }
}
.ab-mv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ab-mv__comment {
  position: absolute;
  z-index: 3;
}
.ab-mv__comment.-left {
  inset: calc(54 / 1440 * 100vw) auto auto calc(54 / 1440 * 100vw);
  width: calc(324 / 1440 * 100vw);
  @media (max-width: 740px) {
    inset: calc(121 / 390 * 100vw) auto auto 50%;
    translate: -50% 0;
    width: calc(215 / 390 * 100vw);
  }
}
.ab-mv__comment.-right {
  left: auto;
  right: calc(56 / 1440 * 100vw);
  top: calc(28 / 1440 * 100vw);
  width: calc(230 / 1440 * 100vw);
  @media (max-width: 740px) {
    display: none;
  }
}
.ab-mv__content {
  position: absolute;
  inset: auto auto calc(90 / 1440 * 100%) 50%;
  translate: -50% 0;
  width: 100%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: calc(20 / 1440 * 100vw);
  @media (max-width: 740px) {
    inset: calc(24 / 390 * 100vw) auto auto 50%;
    gap: calc(8 / 390 * 100vw);
  }
}
.ab-mv__label {
  width: calc(459 / 1440 * 100vw);
  @media (max-width: 740px) {
    width: calc(152 / 390 * 100vw);
  }
}
.ab-mv__oc {
  width: calc(996 / 1440 * 100vw);
  z-index: 2;
  @media (max-width: 740px) {
    width: calc(304 / 390 * 100vw);
  }
}
.ab-mv__button {
  position: absolute;
  inset: auto auto calc(140 / 1440 * 100vw) calc(40 / 1440 * 100vw);
  width: calc(180 / 1440 * 100vw);
  height: calc(180 / 1440 * 100vw);
  z-index: 4;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 4px rgba(0, 0, 0, 0.3));
  @media (max-width: 740px) {
    inset: auto auto calc(12 / 390 * 100vw) calc(16 / 390 * 100vw);
    width: calc(84 / 390 * 100vw);
    height: calc(84 / 390 * 100vw);
  }
}
.ab-mv__button-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--Color-Yellow);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  padding-top: calc(20 / 1440 * 100vw);
  @media (max-width: 740px) {
    padding-top: calc(8 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-mv__button-link:hover {
    transform: scale(1.05);
    opacity: 1;
  }
}
.ab-mv__button-text {
  font-weight: 900;
  font-size: calc(28 / 1440 * 100vw);
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  letter-spacing: calc(-1.4 / 28 * 1em);
  @media (max-width: 740px) {
    font-size: calc(13 / 390 * 100vw);
  }
}
.ab-mv__button-more {
  font-weight: 700;
  font-size: calc(18 / 1440 * 100vw);
  line-height: 1;
  color: var(--Color-Green);
  text-align: center;
  letter-spacing: -0.05em;
  margin-top: calc(13 / 1440 * 100vw);
  @media (max-width: 740px) {
    font-size: calc(8 / 390 * 100vw);
    margin-top: calc(6 / 390 * 100vw);
  }
}
.ab-mv__button-arrow {
  width: calc(20 / 1440 * 100vw);
  height: calc(10 / 1440 * 100vw);
  margin-top: calc(8 / 1440 * 100vw);
  @media (max-width: 740px) {
    width: calc(10 / 390 * 100vw);
    height: calc(5 / 390 * 100vw);
    margin-top: calc(4 / 390 * 100vw);
  }
}
.ab-mv__button-arrow svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* MV Animation */
@keyframes mvFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mvPopUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  60% {
    transform: translateY(-10px) scale(1.03);
  }
  80% {
    transform: translateY(5px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.ab-mv .ab-mv__comment,
.ab-mv .ab-mv__label,
.ab-mv .ab-mv__oc {
  opacity: 0;
}
.ab-mv.-is-loaded .ab-mv__comment.-left {
  animation: mvFadeIn 0.5s ease-out forwards;
  animation-delay: 0.2s;
}
.ab-mv.-is-loaded .ab-mv__comment.-right {
  animation: mvFadeIn 0.5s ease-out forwards;
  animation-delay: 0.5s;
}
.ab-mv.-is-loaded .ab-mv__label {
  animation: mvPopUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.8s;
}
.ab-mv.-is-loaded .ab-mv__oc {
  animation: mvPopUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1s;
}

/* EVENT */
.ab-event {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
  @media (max-width: 740px) {
    padding-bottom: calc(60 / 390 * 100vw);
  }
}
.ab-event__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ab-event__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-event__inner {
  position: relative;
  width: 100%;
  max-width: calc(892px + var(--inner-padding-pc) * 2);
  margin: auto;
  z-index: 1;
  padding-inline: var(--inner-padding-pc);
  @media (max-width: 740px) {
    max-width: 80%;
    padding-inline: var(--inner-padding-sp);
  }
}
.ab-event__breadcrumb {
  margin-top: 16px;
  margin-left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  position: relative;
  @media (max-width: 740px) {
    margin-top: calc(12 / 390 * 100vw);
    margin-left: calc(16 / 390 * 100vw);
    font-size: calc(10 / 390 * 100vw);
    gap: calc(4 / 390 * 100vw);
  }
}
.ab-event__en-title {
  margin-top: 35px;
  @media (max-width: 740px) {
    margin-top: calc(32 / 390 * 100vw);
  }
}
.ab-event__slider {
  margin-top: 24px;
  @media (max-width: 740px) {
    margin-top: calc(16 / 390 * 100vw);
  }
}
.ab-event__slider .slick-slide {
  margin-left: 12px;
  margin-right: 12px;
  @media (max-width: 740px) {
    margin-left: calc(6 / 390 * 100vw);
    margin-right: calc(6 / 390 * 100vw);
  }
}
.ab-event__slider .slick-list {
  margin-left: -12px;
  margin-right: -12px;
  padding-bottom: 4px;
  @media (max-width: 740px) {
    margin-left: calc(-6 / 390 * 100vw);
    margin-right: calc(-6 / 390 * 100vw);
  }
}
.ab-event__slider .event-card {
  font-family: var(--Font-YuGothic);
  border-radius: 12px;
  border: 2px solid var(--Color-Gray-900);
  box-shadow: 4px 4px 0 0 var(--Color-Gray-900);
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    border-radius: calc(8 / 390 * 100vw);
    box-shadow: calc(3 / 390 * 100vw) calc(3 / 390 * 100vw) 0 0 var(--Color-Gray-900);
  }
}
.ab-event__slider .event-card-genre {
  @media (max-width: 740px) {
    max-width: calc(1１0 / 390 * 100vw);
  }
}
.ab-event__slider .slick-prev.slick-arrow {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 33px;
  height: 33px;
  background-color: transparent;
  background-image: url("../../r4-renewal/img/common/carousel_arrow_left.svg");
  background-size: 100% auto;
  text-indent: -9999px;
  border: none;
  -webkit-appearance: none;
  box-shadow: none;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  @media (max-width: 740px) {
    width: 9vw;
    height: 9vw;
  }
}
.ab-event__slider .slick-next.slick-arrow {
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 33px;
  height: 33px;
  background-size: 100% auto;
  background-color: transparent;
  background-image: url("../../r4-renewal/img/common/carousel_arrow_right.svg");
  text-indent: -9999px;
  border: none;
  -webkit-appearance: none;
  box-shadow: none;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s linear;
  @media (max-width: 740px) {
    width: 9vw;
    height: 9vw;
  }
}
.ab-event__button {
  margin-top: 20px;
  @media (max-width: 740px) {
    margin-top: calc(16 / 390 * 100vw);
  }
}
.ab-event__button-link {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px 56px 20px 24px;
  background-color: var(--Color-Green);
  border: 3px solid var(--Color-Green);
  border-radius: 35px;
  text-decoration: none;
  box-shadow:
    0 8px 12px 6px rgba(0, 0, 0, 0.15),
    0 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  margin-inline: auto;
  position: relative;
  max-width: 384px;
  width: 100%;
  @media (max-width: 740px) {
    gap: calc(20 / 390 * 100vw);
    padding: calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) calc(20 / 390 * 100vw) calc(0 / 390 * 100vw);
    border-radius: calc(32 / 390 * 100vw);
    border-width: calc(2 / 390 * 100vw);
    max-width: calc(255 / 390 * 100vw);
  }
}
.ab-event__button-link:hover {
  background-color: var(--Color-White);
}
.ab-event__button-text {
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  transition: color 0.3s ease;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-event__button-link:hover .ab-event__button-text {
  color: var(--Color-Green);
}
.ab-event__button-arrow {
  width: 28px;
  height: 28px;
  position: absolute;
  inset: 50% 14px auto auto;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(18 / 390 * 100vw);
    height: calc(18 / 390 * 100vw);
    inset: 50% calc(14 / 390 * 100vw) auto auto;
  }
}
.ab-event__button-arrow svg {
  @media (max-width: 740px) {
    width: 100%;
    height: 100%;
  }
}
.ab-event__button-arrow svg circle,
.ab-event__button-arrow svg path {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}
.ab-event__button-link:hover .ab-event__button-arrow svg circle {
  fill: var(--Color-Green);
}
.ab-event__button-link:hover .ab-event__button-arrow svg path {
  stroke: var(--Color-White);
}
.ab-event__deco {
  position: absolute;
  z-index: 3;
}
.ab-event__deco.-student-left {
  inset: 170px auto auto calc(50% - 592px);
  width: 167px;
  @media (max-width: 740px) {
    inset: calc(45 / 390 * 100vw) auto auto calc(17.5 / 390 * 100vw);
    width: calc(75 / 390 * 100vw);
  }
}
.ab-event__deco.-student-right {
  inset: 179px auto auto calc(50% + 431px);
  width: 143px;
  @media (max-width: 740px) {
    inset: calc(197 / 390 * 100vw) auto auto calc(318.5 / 390 * 100vw);
    width: calc(65 / 390 * 100vw);
  }
}
.ab-event__deco.-pop1 {
  inset: 107px auto auto calc(50% - (720px - 66px));
  width: 176px;
  @media (max-width: 740px) {
    inset: calc(18 / 390 * 100vw) auto auto calc(17 / 390 * 100vw);
    width: calc(81 / 390 * 100vw);
  }
}
.ab-event__deco.-pop2 {
  inset: 260px auto auto calc(50% - (720px - 49px));
  width: 86px;
  @media (max-width: 740px) {
    inset: calc(80 / 390 * 100vw) auto auto calc(4 / 390 * 100vw);
    width: calc(43 / 390 * 100vw);
  }
}
.ab-event__deco.-pop3 {
  inset: 105px auto auto calc(50% - (720px - 1165px));
  width: 219px;
  @media (max-width: 740px) {
    inset: calc(155 / 390 * 100vw) 0 auto auto;
    width: calc(75 / 390 * 100vw);
  }
}
.ab-event__deco.-pop4 {
  inset: 97px auto auto calc(50% - (720px - 1122px));
  width: 68px;
  @media (max-width: 740px) {
    inset: calc(282 / 390 * 100vw) auto auto calc(341 / 390 * 100vw);
    width: calc(41 / 390 * 100vw);
  }
}
.ab-event__deco-group {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Event Deco Animation */
@keyframes eventDecoScale {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.08);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.js-event-deco-animate .ab-event__deco {
  opacity: 0;
}
.js-event-deco-animate.-is-visible .ab-event__deco {
  animation: eventDecoScale 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
/* 左グループ */
.ab-event__deco-group.-left.-is-visible .ab-event__deco.-pop1 {
  animation-delay: 0s;
}
.ab-event__deco-group.-left.-is-visible .ab-event__deco.-pop2 {
  animation-delay: 0.1s;
}
.ab-event__deco-group.-left.-is-visible .ab-event__deco.-student-left {
  animation-delay: 0.2s;
}
/* 右グループ */
.ab-event__deco-group.-right.-is-visible .ab-event__deco.-pop3 {
  animation-delay: 0.4s;
}
.ab-event__deco-group.-right.-is-visible .ab-event__deco.-pop4 {
  animation-delay: 0.5s;
}
.ab-event__deco-group.-right.-is-visible .ab-event__deco.-student-right {
  animation-delay: 0.6s;
}

/* BANNER */
.ab-banner {
  position: relative;
  width: 100%;
  padding-block: 128px 96px;
  overflow: hidden;
  background-image: url("../../common/img/admission/briefing/2026/banner_bg@2x.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  @media (max-width: 740px) {
    padding-block: calc(96 / 390 * 100vw) calc(90 / 390 * 100vw);
    background-image: url("../../common/img/admission/briefing/2026/banner_bg_sp@2x.webp");
  }
}
.ab-banner__inner {
  position: relative;
  width: 100%;
  max-width: calc(1200px + var(--inner-padding-pc) * 2);
  height: 100%;
  margin: auto;
  padding-inline: var(--inner-padding-pc);
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: calc(32 / 390 * 100vw);
  }
}
.ab-banner__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 128px 64px;
  z-index: 5;
  @media (max-width: 740px) {
    flex-direction: column;
    gap: calc(76 / 390 * 100vw);
  }
}
.ab-banner__item {
  position: relative;
}
.ab-banner__item-content {
  position: relative;
  width: 568px;
  height: 256px;
  border: 3px solid var(--Color-Gray-900);
  border-radius: 20px;
  box-shadow: 6px 6px 0 0 var(--Color-Gray-900);
  z-index: 1;
  padding: 43px 30px;
  @media (max-width: 740px) {
    width: 100%;
    height: calc(140 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw);
    box-shadow: calc(4 / 390 * 100vw) calc(4 / 390 * 100vw) 0 0 var(--Color-Gray-900);
    padding: calc(20 / 390 * 100vw) calc(16 / 390 * 100vw);
  }
}
.ab-banner__item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  border-radius: 18px;
  @media (max-width: 740px) {
    border-radius: calc(18 / 390 * 100vw);
  }
}
.ab-banner__item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-banner__item-title {
  font-weight: 900;
  color: var(--Color-White);
  text-shadow:
    2px 2px 0 var(--Color-Gray-900),
    -2px -2px 0 var(--Color-Gray-900),
    -2px 2px 0 var(--Color-Gray-900),
    2px -2px 0 var(--Color-Gray-900),
    0px 2px 0 var(--Color-Gray-900),
    0-2px 0 var(--Color-Gray-900),
    -2px 0 0 var(--Color-Gray-900),
    2px 0 0 var(--Color-Gray-900);
}
.ab-banner__item-title.-oc .title-sub {
  font-size: 6rem;
  line-height: 1.1;
  display: block;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
  }
}
.ab-banner__item-title.-oc .title-main {
  font-size: 4.4rem;
  line-height: 1.1;
  display: block;
  @media (max-width: 740px) {
    font-size: calc(24 / 390 * 100vw);
  }
}
.ab-banner__item-title.-ao {
  font-size: 5.2rem;
  line-height: 1.1;
  margin-top: 36px;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
    margin-top: calc(12 / 390 * 100vw);
  }
}
.ab-banner__item-button {
  position: absolute;
  inset: auto auto 30px 33px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  background-color: var(--Color-Yellow);
  border: 2px solid var(--Color-Gray-900);
  border-radius: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  @media (max-width: 740px) {
    inset: auto auto calc(16 / 390 * 100vw) calc(17 / 390 * 100vw);
    gap: calc(8 / 390 * 100vw);
    padding: calc(8 / 390 * 100vw) calc(8 / 390 * 100vw) calc(8 / 390 * 100vw) calc(12 / 390 * 100vw);
    border-radius: calc(20 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-banner__item-button:hover {
    background-color: var(--Color-White);
  }
}
.ab-banner__item-button-text {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--Color-Green);
  text-align: center;
  transition: color 0.3s ease;
  width: 200px;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    width: calc(120 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-banner__item-button:hover .ab-banner__item-button-text {
    color: var(--Color-Green);
  }
}
.ab-banner__item-button-arrow {
  width: 18px;
  height: 18px;
  @media (max-width: 740px) {
    width: calc(12 / 390 * 100vw);
    height: calc(12 / 390 * 100vw);
  }
}
.ab-banner__item-button-arrow svg {
  @media (max-width: 740px) {
    width: 100%;
    height: 100%;
  }
}
.ab-banner__item-button-arrow svg circle,
.ab-banner__item-button-arrow svg path {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}
@media (any-hover: hover) {
  .ab-banner__item-button:hover .ab-banner__item-button-arrow svg circle {
    fill: var(--Color-Green);
  }
  .ab-banner__item-button:hover .ab-banner__item-button-arrow svg path {
    stroke: var(--Color-White);
  }
}
.ab-banner__comment {
  position: absolute;
  z-index: 5;
}
.ab-banner__comment.-left {
  inset: -79px -40px auto auto;
  width: 280px;
  height: 218px;
  @media (max-width: 740px) {
    inset: calc(-60 / 390 * 100vw) calc(-2 / 390 * 100vw) auto auto;
    width: calc(160 / 390 * 100vw);
    height: calc(96 / 390 * 100vw);
  }
}
.ab-banner__comment.-right {
  inset: -79px 90px auto auto;
  width: 238px;
  height: 142px;
  @media (max-width: 740px) {
    inset: calc(-54 / 390 * 100vw) calc(54 / 390 * 100vw) auto auto;
    width: calc(142 / 390 * 100vw);
    height: calc(85 / 390 * 100vw);
  }
}
.ab-banner__comment-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ab-banner__comment-text {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  font-weight: 900;
  color: var(--Color-Gray-900);
  text-align: center;
  line-height: 1.2;
  width: 100%;
}
.ab-banner__comment.-left .ab-banner__comment-text {
  font-size: 2.6rem;
  top: 42%;
  @media (max-width: 740px) {
    font-size: calc(14.4 / 390 * 100vw);
    top: 50%;
  }
}
.ab-banner__comment.-left .ab-banner__comment-text .small {
  font-size: 1.8rem;
  @media (max-width: 740px) {
    font-size: calc(10 / 390 * 100vw);
  }
}
.ab-banner__comment.-right .ab-banner__comment-text {
  font-size: 1.6rem;
  @media (max-width: 740px) {
    font-size: calc(9.6 / 390 * 100vw);
  }
}
.ab-banner__comment.-right .ab-banner__comment-text .large {
  font-size: 2.2rem;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-banner__deco {
  position: absolute;
  z-index: 8;
}
.ab-banner__deco.-student-left {
  right: -30px;
  top: 40px;
  width: 149px;
  height: 268px;
  @media (max-width: 740px) {
    right: auto;
    left: calc(236 / 390 * 100vw);
    top: calc(10 / 390 * 100vw);
    width: calc(82 / 390 * 100vw);
    height: calc(147 / 390 * 100vw);
  }
}
.ab-banner__deco.-student-right {
  right: 8px;
  top: 35px;
  width: 83px;
  height: 271px;
  @media (max-width: 740px) {
    right: auto;
    left: calc(267 / 390 * 100vw);
    top: calc(20 / 390 * 100vw);
    width: calc(50 / 390 * 100vw);
    height: calc(162 / 390 * 100vw);
  }
}
.ab-banner__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Banner Animation */
@keyframes bannerPopUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  60% {
    transform: translateY(-8px) scale(1.02);
  }
  80% {
    transform: translateY(4px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.js-banner-animate .ab-banner__item-content,
.js-banner-animate .ab-banner__comment,
.js-banner-animate .ab-banner__deco {
  opacity: 0;
}
.js-banner-animate.-is-visible .ab-banner__item-content {
  animation: bannerPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0s;
}
.js-banner-animate.-is-visible .ab-banner__comment {
  animation: bannerPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.15s;
}
.js-banner-animate.-is-visible .ab-banner__deco {
  animation: bannerPopUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}
/* 2つ目のバナー（右）は時差をつける */
.ab-banner__item:nth-child(2).js-banner-animate.-is-visible .ab-banner__item-content {
  animation-delay: 0.5s;
}
.ab-banner__item:nth-child(2).js-banner-animate.-is-visible .ab-banner__comment {
  animation-delay: 0.65s;
}
.ab-banner__item:nth-child(2).js-banner-animate.-is-visible .ab-banner__deco {
  animation-delay: 0.8s;
}

/* JOIN US */
.ab-joinus {
  position: relative;
  width: 100%;
  padding: 64px 0;
  overflow: hidden;
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0;
  }
}
.ab-joinus__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ab-joinus__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-joinus__inner {
  position: relative;
  width: 100%;
  max-width: calc(1100px + var(--inner-padding-pc) * 2);
  padding-inline: var(--inner-padding-pc);
  margin: auto;
  z-index: 5;
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: var(--inner-padding-sp);
  }
}
.ab-joinus__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
  @media (max-width: 740px) {
    gap: calc(16 / 390 * 100vw);
    margin-top: calc(16 / 390 * 100vw);
  }
}
.ab-joinus__panel {
  position: relative;
  display: grid;
  grid-template-columns: 348fr 590fr;
  gap: 24px 56px;
  width: 100%;
  background-color: var(--Color-White);
  border: 3px solid var(--Color-Gray-900);
  border-radius: 20px;
  box-shadow: 4px 4px 0 0 var(--Color-Gray-900);
  overflow: hidden;
  padding: 40px 50px;
  @media (max-width: 1100px) {
    gap: 24px;
    padding: 24px;
  }
  @media (max-width: 740px) {
    display: block;
    padding: calc(16 / 390 * 100vw);
    border-radius: calc(16 / 390 * 100vw);
    box-shadow: calc(3 / 390 * 100vw) calc(3 / 390 * 100vw) 0 0 var(--Color-Gray-900);
  }
}
.ab-joinus__panel-image {
  position: relative;
  max-width: 348px;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  @media (max-width: 740px) {
    width: calc(160 / 390 * 100vw);
    border-radius: calc(8 / 390 * 100vw);
    float: left;
    margin-right: calc(12 / 390 * 100vw);
    margin-top: calc(4 / 390 * 100vw);
  }
}
.ab-joinus__panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-joinus__panel-content {
  @media (max-width: 740px) {
    display: contents;
  }
}
.ab-joinus__panel-target {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 40px;
  background-color: var(--Color-White);
  border: 2px solid var(--Color-Tokiwa);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 2.4rem);
  line-height: 1;
  color: var(--Color-Tokiwa);
  letter-spacing: 0;
  @media (max-width: 740px) {
    height: calc(22 / 390 * 100vw);
    padding: 0 calc(10 / 390 * 100vw);
    border-radius: calc(4 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-joinus__panel-date {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  @media (max-width: 740px) {
    gap: calc(4 / 390 * 100vw);
    flex-wrap: wrap;
    margin-top: calc(10 / 390 * 100vw);
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.ab-joinus__panel-date-num {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: clamp(4.7rem, calc(92 / 1440 * 100vw), 9.2rem);
  line-height: 0.9;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    font-size: calc(48 / 390 * 100vw);
  }
}
.ab-joinus__panel-date-day {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(24px, calc(48 / 1440 * 100vw), 48px);
  height: clamp(23px, calc(46 / 1440 * 100vw), 46px);
  padding: 6px 8px 8px;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(1.6rem, calc(32 / 1440 * 100vw), 3.2rem);
  line-height: 1;
  color: var(--Color-White);
  letter-spacing: 0;
  @media (max-width: 740px) {
    min-width: calc(20 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    padding: calc(2 / 390 * 100vw) calc(3 / 390 * 100vw) calc(4 / 390 * 100vw);
    border-radius: calc(4 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    width: fit-content;
  }
}
.ab-joinus__panel-date-day.-weekday {
  background-color: var(--Color-White);
  border: 2px solid var(--Color-Gray-900);
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    border-width: calc(1 / 390 * 100vw);
  }
}
.ab-joinus__panel-date-day.-saturday {
  background-color: var(--Color-Konpeki);
}
.ab-joinus__panel-date-day.-sunday {
  background-color: var(--Color-Aka);
}
.ab-joinus__panel-date-day.-holiday {
  background-color: var(--Color-Aka);
}
.ab-joinus__panel-date-time {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: clamp(2rem, calc(40 / 1440 * 100vw), 4rem);
  line-height: 1;
  color: var(--Color-Gray-900);
  margin-left: 8px;
  position: relative;
  top: -9px;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(26 / 390 * 100vw);
    margin-left: calc(4 / 390 * 100vw);
    margin-top: calc(4 / 390 * 100vw);
    top: 0;
    grid-column: 1 / -1;
  }
}
.ab-joinus__panel-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
  font-weight: 900;
  font-size: clamp(1.6rem, calc(24 / 1440 * 100vw), 2.4rem);
  line-height: 1;
  color: var(--Color-White);
  padding: 9px;
  @media (max-width: 740px) {
    margin-top: calc(8 / 390 * 100vw);
    border-radius: calc(8 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
    padding: calc(6 / 390 * 100vw);
    max-width: calc(144 / 390 * 100vw);
    height: calc(50 / 390 * 100vw);
  }
}
.ab-joinus__panel-category.-opencampus {
  background-color: var(--Color-Aka-Dark);
}
.ab-joinus__panel-category.-ao {
  background-color: var(--Color-Mikan);
}
.ab-joinus__panel-desc {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--Color-Gray-900);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0;
  @media (max-width: 740px) {
    margin-top: calc(12 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
    -webkit-line-clamp: 9;
    line-clamp: 9;
    clear: both;
  }
}
.ab-joinus__panel-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  grid-column: 1 / -1;
  @media (max-width: 740px) {
    gap: calc(12 / 390 * 100vw);
    margin-top: calc(10 / 390 * 100vw);
    clear: both;
  }
}
.ab-joinus__panel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 69px 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  position: relative;
  @media (max-width: 740px) {
    padding: calc(8 / 390 * 100vw) calc(36 / 390 * 100vw) calc(8 / 390 * 100vw) calc(14 / 390 * 100vw);
    border-radius: calc(12 / 390 * 100vw);
  }
}
.ab-joinus__panel-button.-detail {
  background-color: var(--Color-White);
  border: 3px solid var(--Color-Green);
  @media (max-width: 740px) {
    border-width: calc(2 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-joinus__panel-button.-detail:hover {
    background-color: var(--Color-Green);
  }
}
.ab-joinus__panel-button.-apply {
  background-color: var(--Color-Green);
  border: 3.5px solid var(--Color-Green);
  @media (max-width: 740px) {
    border-width: calc(2 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-joinus__panel-button.-apply:hover {
    background-color: var(--Color-White);
  }
}
.ab-joinus__panel-button-text {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  text-align: center;
  transition: color 0.3s ease;
  @media (max-width: 1100px) {
    font-size: calc(26 / 1100 * 100vw);
  }
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
    line-height: 1.1;
  }
}
.ab-joinus__panel-button.-detail .ab-joinus__panel-button-text {
  color: var(--Color-Green);
}
@media (any-hover: hover) {
  .ab-joinus__panel-button.-detail:hover .ab-joinus__panel-button-text {
    color: var(--Color-White);
  }
}
.ab-joinus__panel-button.-apply .ab-joinus__panel-button-text {
  color: var(--Color-White);
}
@media (any-hover: hover) {
  .ab-joinus__panel-button.-apply:hover .ab-joinus__panel-button-text {
    color: var(--Color-Green);
  }
}
.ab-joinus__panel-button-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  inset: 50% 18px auto auto;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
    inset: 50% calc(9 / 390 * 100vw) auto auto;
  }
}
.ab-joinus__panel-button-arrow svg {
  @media (max-width: 740px) {
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
  }
}
.ab-joinus__panel-button-arrow svg circle,
.ab-joinus__panel-button-arrow svg path {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}
@media (any-hover: hover) {
  .ab-joinus__panel-button.-detail:hover .ab-joinus__panel-button-arrow svg circle {
    fill: var(--Color-White);
  }
  .ab-joinus__panel-button.-detail:hover .ab-joinus__panel-button-arrow svg path {
    stroke: var(--Color-Green);
  }
  .ab-joinus__panel-button.-apply:hover .ab-joinus__panel-button-arrow svg circle {
    fill: var(--Color-Green);
  }
  .ab-joinus__panel-button.-apply:hover .ab-joinus__panel-button-arrow svg path {
    stroke: var(--Color-White);
  }
}
.ab-joinus__more {
  margin-top: 40px;
  @media (max-width: 740px) {
    margin-top: calc(20 / 390 * 100vw);
  }
}
.ab-joinus__more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 68px;
  padding: 15px 15px 15px 25px;
  background-color: var(--Color-Yellow);
  border: 3px solid var(--Color-Yellow);
  border-radius: 40px;
  text-decoration: none;
  box-shadow:
    0 9px 14px 7px rgba(0, 0, 0, 0.15),
    0 5px 5px 0 rgba(0, 0, 0, 0.3);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  @media (max-width: 740px) {
    height: calc(64 / 390 * 100vw);
    padding: calc(12 / 390 * 100vw) calc(40 / 390 * 100vw) calc(12 / 390 * 100vw) calc(16 / 390 * 100vw);
    border-radius: calc(32 / 390 * 100vw);
    border-width: calc(2 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-joinus__more-link:hover {
    background-color: var(--Color-White);
    border-color: var(--Color-Green);
  }
}
.ab-joinus__more-text {
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--Color-Green);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-joinus__more-link:hover .ab-joinus__more-text {
    color: var(--Color-Green);
  }
}
.ab-joinus__more-arrow {
  width: 32px;
  height: 32px;
  position: absolute;
  inset: 50% 18px auto auto;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(18 / 390 * 100vw);
    height: calc(18 / 390 * 100vw);
    inset: 50% calc(13 / 390 * 100vw) auto auto;
  }
}
.ab-joinus__more-arrow svg {
  @media (max-width: 740px) {
    width: 100%;
    height: 100%;
  }
}
.ab-joinus__more-arrow svg circle,
.ab-joinus__more-arrow svg path {
  transition:
    fill 0.3s ease,
    stroke 0.3s ease;
}
@media (any-hover: hover) {
  .ab-joinus__more-link:hover .ab-joinus__more-arrow svg circle {
    fill: var(--Color-Green);
  }
  .ab-joinus__more-link:hover .ab-joinus__more-arrow svg path {
    stroke: var(--Color-White);
  }
}
/* もっとみる：パネル表示制御 */
.ab-joinus__panel.-hidden {
  display: none;
}
.ab-joinus__panel.-reveal {
  display: grid;
  animation: joinusPanelReveal 0.4s ease forwards;
  @media (max-width: 740px) {
    display: block;
  }
}
@keyframes joinusPanelReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ab-joinus__more.-hidden {
  display: none;
}

/* MERIT */
.ab-merit {
  position: relative;
  width: 100%;
  padding: 64px 0;
  background-color: var(--Color-Himawari);
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0;
  }
}
.ab-merit__inner {
  position: relative;
  width: 100%;
  max-width: calc(1000px + var(--inner-padding-pc) * 2);
  padding-inline: var(--inner-padding-pc);
  margin: auto;
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: var(--inner-padding-sp);
  }
}
.ab-merit__title {
  margin-top: 6px;
}
.ab-merit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  margin-top: 40px;
  @media (max-width: 740px) {
    grid-template-columns: 1fr;
    gap: calc(16 / 390 * 100vw);
    margin-top: calc(20 / 390 * 100vw);
  }
}
.ab-merit__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media (max-width: 740px) {
    flex-direction: row;
    align-items: flex-start;
    gap: calc(12 / 390 * 100vw);
  }
}
.ab-merit__item-image {
  width: 100%;
  aspect-ratio: 480 / 400;
  border-radius: 16px;
  overflow: hidden;
  @media (max-width: 740px) {
    width: calc(120 / 390 * 100vw);
    aspect-ratio: 120 / 100;
    border-radius: calc(8 / 390 * 100vw);
    flex-shrink: 0;
  }
}
.ab-merit__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-merit__item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  @media (max-width: 740px) {
    flex-direction: column;
    gap: calc(5 / 390 * 100vw);
    margin-top: 0;
  }
}
.ab-merit__item-num {
  width: 80px;
  height: 64px;
  flex-shrink: 0;
  @media (max-width: 740px) {
    width: calc(40 / 390 * 100vw);
    height: calc(32 / 390 * 100vw);
    align-self: start;
  }
}
.ab-merit__item-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ab-merit__item-text {
  font-weight: 600;
  font-size: clamp(1.6rem, calc(30 / 1440 * 100vw), 3rem);
  line-height: 1.3;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}

/* REVIEWS */
.ab-reviews {
  position: relative;
  width: 100%;
  padding: 64px 0;
  overflow: hidden;
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0;
  }
}
.ab-reviews__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ab-reviews__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-reviews__inner {
  position: relative;
  width: 100%;
  max-width: calc(1100px + var(--inner-padding-pc) * 2);
  padding-inline: var(--inner-padding-pc);
  margin: auto;
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: calc(19 / 390 * 100vw);
  }
}
.ab-reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 36px;
  margin-top: 40px;
  @media (max-width: 740px) {
    gap: calc(12 / 390 * 100vw);
    margin-top: calc(20 / 390 * 100vw);
    grid-template-columns: repeat(2, 1fr);
  }
}
.ab-reviews__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px 22px 32px;
  background-color: var(--Color-White);
  border: 3px solid var(--Color-Gray-900);
  border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--Color-Gray-900);
  @media (max-width: 740px) {
    flex-direction: column;
    gap: calc(12 / 390 * 100vw);
    padding: calc(16 / 390 * 100vw) calc(16 / 390 * 100vw) calc(24 / 390 * 100vw);
    border-radius: calc(10 / 390 * 100vw);
    box-shadow: calc(3 / 390 * 100vw) calc(3 / 390 * 100vw) 0 0 var(--Color-Gray-900);
  }
}
.ab-reviews__card-text {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    order: 1;
  }
}
.ab-reviews__card-icon {
  position: relative;
  width: 148px;
  flex-shrink: 0;
  @media (max-width: 740px) {
    width: calc(100 / 390 * 100vw);
    order: 2;
  }
}
.ab-reviews__card-icon-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.ab-reviews__card-icon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-reviews__card-role {
  position: absolute;
  inset: auto auto -8px 50%;
  translate: -50% 0;
  padding: 8px 5px;
  background-color: var(--Color-Green);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  width: max-content;
  @media (max-width: 740px) {
    inset: auto auto calc(-4 / 390 * 100vw) 50%;
    padding: calc(4 / 390 * 100vw) calc(2 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-reviews__button {
  margin-top: 40px;
  @media (max-width: 740px) {
    margin-top: calc(20 / 390 * 100vw);
  }
}

/* ===========================================
   EVENT PERKS Section
   =========================================== */
.ab-perks {
  position: relative;
  width: 100%;
  background-color: var(--Color-Himawari);
  padding: 64px 0;
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0;
    overflow: hidden;
  }
}
.ab-perks__inner {
  max-width: calc(1000px + var(--inner-padding-pc) * 2);
  padding-inline: var(--inner-padding-pc);
  margin: auto;
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: var(--inner-padding-sp);
    overflow: hidden;
  }
}
.ab-perks__content {
  margin-top: 40px;
  width: 100%;
  display: grid;
  gap: 24px;
  align-items: center;
  @media (max-width: 740px) {
    margin-top: calc(50 / 390 * 100vw);
    gap: calc(40 / 390 * 100vw);
  }
}
/* Card共通 - flexbox版 */
.ab-perks__card {
  width: 100%;
  background-color: var(--Color-White);
  border: 3px solid var(--Color-Gray-900);
  border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--Color-Gray-900);
  @media (max-width: 740px) {
    border-radius: calc(8 / 390 * 100vw);
    box-shadow: calc(3 / 390 * 100vw) calc(3 / 390 * 100vw) 0 0 var(--Color-Gray-900);
    max-width: 100%;
    position: relative;
  }
}
.ab-perks__card.-card01,
.ab-perks__card.-card02 {
  display: flex;
  align-items: center;
  padding: 30px 36px 26px 24px;
  @media (max-width: 1100px) {
    padding: 24px 24px 24px 16px;
  }
  @media (max-width: 740px) {
    flex-direction: column;
    padding: calc(30 / 390 * 100vw) calc(16 / 390 * 100vw) calc(20 / 390 * 100vw);
  }
}
.ab-perks__card.-card02 {
  padding: 10px 36px 14px 24px;
  @media (max-width: 1100px) {
    padding: 24px 24px 24px 16px;
  }
  @media (max-width: 740px) {
    padding: calc(27 / 390 * 100vw) calc(16 / 390 * 100vw) calc(18 / 390 * 100vw);
  }
}
.ab-perks__card.-card03 {
  display: flex;
  flex-direction: column;
  padding: 29px 24px 38px;
  @media (max-width: 1100px) {
    padding: 24px 24px 24px 16px;
  }
  @media (max-width: 740px) {
    padding: calc(20 / 390 * 100vw) calc(16 / 390 * 100vw) calc(26 / 390 * 100vw);
  }
}
.ab-perks__card-number {
  width: 150px;
  height: 88px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  @media (max-width: 1100px) {
    width: calc(100 / 1100 * 100vw);
    height: calc(60 / 1100 * 100vw);
  }
  @media (max-width: 740px) {
    width: calc(102 / 390 * 100vw);
    height: calc(60 / 390 * 100vw);
    margin-inline: auto;
    position: absolute;
    inset: 0 auto auto 50%;
    translate: -50% -50%;
  }
}
.ab-perks__card-number-bg {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
}
.ab-perks__card-number-text {
  grid-area: 1 / 1;
  width: 63px;
  height: 52px;
  margin-top: 8px;
  @media (max-width: 1100px) {
    width: calc(42 / 1100 * 100vw);
    height: calc(34 / 1100 * 100vw);
    margin-top: calc(6 / 1100 * 100vw);
  }
  @media (max-width: 740px) {
    width: calc(44 / 390 * 100vw);
    height: calc(36 / 390 * 100vw);
    margin-top: calc(6 / 390 * 100vw);
  }
}
/* Card 01 specific */
.ab-perks__card01-main {
  margin-left: 6px;
  @media (max-width: 740px) {
    margin-left: 0;
    text-align: center;
    display: contents;
  }
}
.ab-perks__card01-title {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  @media (max-width: 740px) {
    justify-content: center;
    align-items: center;
    gap: calc(8 / 390 * 100vw);
    order: 1;
  }
}
.ab-perks__card01-label {
  font-weight: 700;
  font-size: clamp(2rem, calc(28 / 1440 * 100vw), 2.8rem);
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(20 / 390 * 100vw);
  }
}
.ab-perks__card01-value {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
}
.ab-perks__card01-value-text {
  font-weight: 700;
  font-size: clamp(2rem, calc(28 / 1440 * 100vw), 2.8rem);
  @media (max-width: 740px) {
    font-size: calc(20 / 390 * 100vw);
  }
}
.ab-perks__card01-value-num {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: clamp(3.6rem, calc(48 / 1440 * 100vw), 4.8rem);
  line-height: 0.65;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
  }
}
.ab-perks__card01-desc {
  margin-top: 12px;
  font-weight: 600;
  font-size: clamp(1.6rem, calc(18 / 1440 * 100vw), 1.8rem);
  line-height: 1.3;
  color: var(--Color-Gray-900);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    margin-top: calc(8 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    order: 3;
  }
}
.ab-perks__card01-right {
  margin: auto;
  display: flex;
  gap: 36px;
  @media (max-width: 1100px) {
    gap: 16px;
  }
  @media (max-width: 740px) {
    gap: calc(24 / 390 * 100vw);
    order: 2;
    margin-top: calc(16 / 390 * 100vw);
  }
}
.ab-perks__card01-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  @media (max-width: 740px) {
    gap: calc(4 / 390 * 100vw);
  }
}
.ab-perks__card01-badge {
  padding: 3px 8px;
  min-width: 120px;
  background-color: var(--Color-Green);
  border-radius: 100vmax;
  @media (max-width: 740px) {
    min-width: calc(80 / 390 * 100vw);
    padding: calc(6 / 390 * 100vw) calc(8 / 390 * 100vw);
    border-radius: calc(12 / 390 * 100vw);
  }
}
.ab-perks__card01-badge-text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
    line-height: 0.8;
  }
}
.ab-perks__card01-result {
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(24 / 390 * 100vw);
  }
}
/* Card 02 specific */
.ab-perks__card02-content {
  margin-left: 6px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-weight: 700;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    margin-left: 0;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.ab-perks__card02-text {
  font-size: clamp(2.4rem, calc(28 / 1440 * 100vw), 2.8rem);
  @media (max-width: 740px) {
    font-size: calc(20 / 390 * 100vw);
  }
}
.ab-perks__card02-text:last-child {
  @media (max-width: 740px) {
    margin-top: calc(10 / 390 * 100vw);
  }
}
.ab-perks__card02-text.-small {
  font-size: clamp(2rem, calc(24 / 1440 * 100vw), 2.4rem);
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
/* Card 03 specific */
.ab-perks__card03-top {
  display: flex;
  align-items: flex-start;
  @media (max-width: 740px) {
    flex-direction: column;
    align-items: center;
  }
}
.ab-perks__card03-header {
  margin-left: 26px;
  margin-top: 8px;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    margin-left: 0;
    margin-top: calc(8 / 390 * 100vw);
    text-align: center;
  }
}
.ab-perks__card03-subtitle {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-perks__card03-title {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  @media (max-width: 740px) {
    margin-top: calc(8 / 390 * 100vw);
    justify-content: center;
    gap: calc(8 / 390 * 100vw);
    flex-direction: column;
  }
}
.ab-perks__card03-title-text {
  font-weight: 700;
  font-size: clamp(2rem, calc(28 / 1440 * 100vw), 2.8rem);
  line-height: 1;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(20 / 390 * 100vw);
  }
}
.ab-perks__card03-title-value {
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.ab-perks__card03-title-num {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: clamp(3.6rem, calc(48 / 1440 * 100vw), 4.8rem);
  line-height: 0.65;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
  }
}
.ab-perks__card03-title-unit {
  font-weight: 700;
  font-size: clamp(2rem, calc(28 / 1440 * 100vw), 2.8rem);
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(20 / 390 * 100vw);
  }
}
.ab-perks__card03-body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  @media (max-width: 740px) {
    margin-top: calc(16 / 390 * 100vw);
  }
}
.ab-perks__card03-support {
  position: relative;
  margin-top: 5px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-perks__card03-support::before {
  content: "";
  background: radial-gradient(circle farthest-side, var(--Color-Green), var(--Color-Green) 20%, transparent 20%, transparent);
  background-size: 18px 4px;
  position: absolute;
  inset: -3px auto auto 71px;
  height: 4px;
  width: 70px;
  @media (max-width: 740px) {
    height: calc(3 / 390 * 100vw);
    width: calc(52 / 390 * 100vw);
    inset: calc(15 / 390 * 100vw) auto auto calc(2 / 390 * 100vw);
    background-size: calc(14 / 390 * 100vw) calc(3 / 390 * 100vw);
  }
}
.ab-perks__card03-areas {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  justify-content: center;
  @media (max-width: 740px) {
    margin-top: calc(16 / 390 * 100vw);
    gap: 20px calc(26 / 390 * 100vw);
    grid-template-columns: repeat(2, 1fr);
  }
}
.ab-perks__card03-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media (max-width: 740px) {
    &:nth-child(3) {
      grid-column: 1 / -1;
      justify-self: center;
    }
  }
}
.ab-perks__card03-area-badge {
  min-width: 180px;
  padding: 4px 12px;
  background-color: var(--Color-Green);
  border-radius: 100vmax;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  @media (max-width: 740px) {
    min-width: calc(128 / 390 * 100vw);
    padding: calc(6 / 390 * 100vw) calc(8 / 390 * 100vw);
    border-radius: calc(12 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    line-height: 0.8;
  }
}
.ab-perks__card03-area-value {
  margin-top: 11px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    margin-top: calc(8 / 390 * 100vw);
  }
}
.ab-perks__card03-area-num {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 0.65;
  @media (max-width: 740px) {
    font-size: calc(24 / 390 * 100vw);
  }
}
.ab-perks__card03-area-unit {
  font-weight: 900;
  font-size: 1.8rem;
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-perks__card03-note {
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--Color-Gray-900);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    margin-top: calc(24 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
    text-align: left;
    line-height: 1.3;
  }
}
.ab-perks__card03-note span {
  position: relative;
  text-indent: -1em;
  display: inline-block;
  &::before {
    content: "※";
  }
  @media (max-width: 740px) {
  }
}
.ab-perks__card03-button {
  font-family: var(--Font-NotoSansJP);
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 277px;
  height: 56px;
  padding: 8px 16px 8px 0;
  background-color: var(--Color-Yellow);
  border: 2px solid var(--Color-Gray-900);
  border-radius: 32px;
  box-shadow:
    0 5px 8px 4px rgba(0, 0, 0, 0.15),
    0 3px 3px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  position: relative;
  @media (max-width: 740px) {
    margin-top: calc(24 / 390 * 100vw);
    width: calc(277 / 390 * 100vw);
    height: calc(56 / 390 * 100vw);
    border-radius: calc(32 / 390 * 100vw);
  }
}
@media (any-hover: hover) {
  .ab-perks__card03-button:hover {
    transform: scale(1.02);
    opacity: 0.9;
  }
}
.ab-perks__card03-button-text {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-perks__card03-button-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  position: absolute;
  inset: 50% 14px auto auto;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(20 / 390 * 100vw);
    height: calc(20 / 390 * 100vw);
    inset: 50% calc(12 / 390 * 100vw) auto auto;
  }
}
.ab-perks__card03-button-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
/* アコーディオン */
.ab-perks__card03-accordion {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--Color-Gray-500);
  position: relative;
  @media (max-width: 740px) {
    margin-top: calc(16 / 390 * 100vw);
    padding-top: calc(16 / 390 * 100vw);
  }
  &::before {
    content: "";
    background: radial-gradient(circle farthest-side, var(--Color-Gray-500), var(--Color-Gray-500) 40%, transparent 40%, transparent);
    background-size: 7px 2px;
    @media (max-width: 740px) {
      background-size: calc(8 / 390 * 100vw) calc(2 / 390 * 100vw);
    }
  }
}
.ab-perks__card03-accordion-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background-color: var(--Color-Green);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  @media (max-width: 740px) {
    padding: calc(4 / 390 * 100vw) calc(6 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-perks__card03-accordion-list {
  margin-top: 24px;
  padding-left: 27px;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    margin-top: calc(12 / 390 * 100vw);
    padding-left: calc(20 / 390 * 100vw);
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-perks__card03-accordion-list li {
  margin-top: 12px;
  @media (max-width: 740px) {
    margin-top: calc(8 / 390 * 100vw);
  }
}
.ab-perks__card03-accordion-list li:first-child {
  margin-top: 0;
}
.ab-perks__card03-button.-open .ab-perks__card03-button-icon img {
  display: none;
}
.ab-perks__card03-button.-open .ab-perks__card03-button-icon::after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: var(--Color-Gray-900);
  position: absolute;
  inset: 50% 0 auto 0;
  translate: 0 -50%;
  @media (max-width: 740px) {
    width: calc(12 / 390 * 100vw);
    height: calc(2 / 390 * 100vw);
  }
}
/* LINE section */
.ab-perks__line {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  align-items: center;
  @media (max-width: 740px) {
    margin-top: 0;
    gap: calc(8 / 390 * 100vw);
  }
}
.ab-perks__line-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.ab-perks__line-bracket {
  width: 18px;
  @media (max-width: 740px) {
    width: calc(14 / 390 * 100vw);
  }
}
.ab-perks__line-bracket.-right {
  transform: scaleX(-1);
}
.ab-perks__line-header-text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  text-align: center;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
/* Accommodation section */
.ab-perks__accommodation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  @media (max-width: 740px) {
    align-items: start;
    margin-top: calc(-12 / 390 * 100vw);
  }
}
.ab-perks__accommodation-student {
  width: 120px;
  position: relative;
  @media (max-width: 740px) {
    width: calc(54 / 390 * 100vw);
  }
}
.ab-perks__accommodation-student._left {
  inset: 8px auto auto -16px;
  @media (max-width: 740px) {
    inset: auto auto auto 0;
  }
}
.ab-perks__accommodation-student._right {
  @media (max-width: 740px) {
    inset: auto auto auto calc(-20 / 390 * 100vw);
  }
}
.ab-perks__accommodation-main {
  display: grid;
  place-items: start;
  position: relative;
  margin-top: 35px;
  @media (max-width: 740px) {
    margin-top: calc(4 / 390 * 100vw);
  }
}
.ab-perks__accommodation-badge {
  width: 107px;
  height: 100px;
  position: absolute;
  display: grid;
  place-items: center;
  inset: -29px auto auto -29px;
  z-index: 1;
  @media (max-width: 740px) {
    width: calc(48 / 390 * 100vw);
    height: calc(44 / 390 * 100vw);
    inset: calc(3 / 390 * 100vw) auto auto calc(-29 / 390 * 100vw);
  }
}
.ab-perks__accommodation-badge-bg {
  position: absolute;
  inset: 0;
}
.ab-perks__accommodation-badge-text {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--Color-White);
  text-align: center;
  z-index: 1;
  rotate: -10deg;
  @media (max-width: 740px) {
    font-size: calc(8 / 390 * 100vw);
  }
}
.ab-perks__accommodation-label {
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  padding-left: 50px;
  margin: auto;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    padding-left: calc(24 / 390 * 100vw);
  }
}
.ab-perks__accommodation-card {
  max-width: 480px;
  width: 100%;
  padding: 16px 24px;
  background-color: var(--Color-White);
  border: 3px solid var(--Color-Gray-900);
  border-radius: 16px;
  box-shadow: 4px 4px 0 0 var(--Color-Gray-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  @media (max-width: 740px) {
    max-width: calc(200 / 390 * 100vw);
    padding: calc(7 / 390 * 100vw) calc(8 / 390 * 100vw);
    border-radius: calc(12 / 390 * 100vw);
    box-shadow: calc(2 / 390 * 100vw) calc(2 / 390 * 100vw) 0 0 var(--Color-Gray-900);
    margin-top: calc(5 / 390 * 100vw);
  }
}
.ab-perks__accommodation-card-text {
  font-weight: 700;
  color: var(--Color-Gray-900);
  text-align: center;
}
.ab-perks__accommodation-card-line1 {
  font-size: 3.6rem;
  line-height: 1.1;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-perks__accommodation-card-line1-small {
  font-size: 2.8rem;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-perks__accommodation-card-line2 {
  font-size: 3.6rem;
  line-height: 1.1;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-perks__accommodation-card-line2-green {
  color: var(--Color-Green);
}
.ab-perks__accommodation-card-line2-small {
  font-size: 2.8rem;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-perks__accommodation-footer {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    margin-top: calc(6 / 390 * 100vw);
  }
}
.ab-perks__accommodation-note {
  font-size: 1rem;
  @media (max-width: 740px) {
    font-size: calc(8 / 390 * 100vw);
  }
}
.ab-perks__accommodation-contact {
  font-size: 1.8rem;
  margin-top: 3px;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    margin-top: calc(1 / 390 * 100vw);
    line-height: 1;
  }
}
/* Accommodation Animation */
@keyframes accommodationPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes accommodationFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-accommodation-animate .ab-perks__accommodation-badge,
.js-accommodation-animate .ab-perks__accommodation-label,
.js-accommodation-animate .ab-perks__accommodation-card,
.js-accommodation-animate .ab-perks__accommodation-footer,
.js-accommodation-animate .ab-perks__accommodation-student {
  opacity: 0;
}
/* Step 1: badge-text → label ポップアップ */
.js-accommodation-animate.-is-visible .ab-perks__accommodation-badge {
  animation: accommodationPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0s;
}
.js-accommodation-animate.-is-visible .ab-perks__accommodation-label {
  animation: accommodationPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.15s;
}
/* Step 2: card-text, footer 下から上に同時 */
.js-accommodation-animate.-is-visible .ab-perks__accommodation-card {
  animation: accommodationFadeUp 0.5s ease-out forwards;
  animation-delay: 0.35s;
}
.js-accommodation-animate.-is-visible .ab-perks__accommodation-footer {
  animation: accommodationFadeUp 0.5s ease-out forwards;
  animation-delay: 0.35s;
}
/* Step 3: student 左右ポップ */
.js-accommodation-animate.-is-visible .ab-perks__accommodation-student._left {
  animation: accommodationPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.7s;
}
.js-accommodation-animate.-is-visible .ab-perks__accommodation-student._right {
  animation: accommodationPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.85s;
}

/* ===========================================
   EVENT CALENDAR Section
   =========================================== */
.ab-calendar {
  position: relative;
  width: 100%;
  padding: 64px 0 58px;
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0 0;
  }
}
.ab-calendar__inner {
  max-width: calc(1100px + var(--inner-padding-pc) * 2);
  margin: auto;
  padding-inline: var(--inner-padding-pc);
  @media (max-width: 740px) {
    max-width: 100%;
    padding-inline: var(--inner-padding-sp);
  }
}
.r4-top-calendar__content {
  width: 100%;
  margin-bottom: 0;
}
.ab-calendar__en-title {
  width: 100%;
  aspect-ratio: 1600 / 128;
  @media (max-width: 740px) {
    aspect-ratio: 358 / 32;
  }
}
.ab-calendar__en-title img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-calendar__title {
  margin-top: -2px;
  @media (max-width: 740px) {
    margin-top: 0;
  }
}
/* Calendar Navigation Override */
.ab-calendar .r4-cmn-calendar-head {
  font-family: var(--Font-NotoSansJP);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  @media (max-width: 740px) {
    margin-top: calc(18 / 390 * 100vw);
    margin-bottom: 0;
    gap: calc(4 / 390 * 100vw);
  }
}
.ab-calendar .r4-cmn-calendar-head__month {
  font-family: var(--Font-NotoSansJP);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.1;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    gap: calc(4 / 390 * 100vw);
  }
}
.ab-calendar .r4-cmn-calendar-head__month .year {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
  @media (max-width: 740px) {
    font-size: calc(16 / 390 * 100vw);
  }
}
.ab-calendar .r4-cmn-calendar-head__month .month {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: 8rem;
  line-height: 0.7;
  @media (max-width: 740px) {
    font-size: calc(26 / 390 * 100vw);
  }
}
.ab-calendar .r4-cmn-calendar-head__prev,
.ab-calendar .r4-cmn-calendar-head__next {
  position: absolute;
  top: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  @media (max-width: 740px) {
    top: calc(4 / 390 * 100vw);
    width: calc(16 / 390 * 100vw);
    height: calc(16 / 390 * 100vw);
  }
}
.ab-calendar .r4-cmn-calendar-head__prev {
  left: 0;
  rotate: 180deg;
}
.ab-calendar .r4-cmn-calendar-head__next {
  right: 0;
}
.ab-calendar .r4-cmn-calendar-head__prev img,
.ab-calendar .r4-cmn-calendar-head__next img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Calendar Content Override */
.ab-calendar .r4-cmn-calendar-content {
  margin-top: 20px;
  width: 100%;
  @media (max-width: 740px) {
    margin-top: calc(6 / 390 * 100vw);
  }
}
.ab-calendar .mcallendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--Color-Gray-900);
  background-color: var(--Color-White);
}

.ab-calendar .mcallendar .days {
  background-color: var(--Color-White);
  border-top: 1px solid var(--Color-Gray-200);
  border-right: 1px solid var(--Color-Gray-200);
  padding: 8px 24px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: 128px;
  height: 100%;
  @media (max-width: 740px) {
    padding: 0 calc(8 / 390 * 100vw) calc(4 / 390 * 100vw);
    min-height: calc(56 / 390 * 100vw);
  }
}
.ab-calendar .mcallendar .days:nth-child(7n) {
  border-right: none;
}
.ab-calendar .mcallendar .week {
  background-color: var(--Color-Green);
  color: var(--Color-White);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
  padding: 8px 22px;
  width: 100%;
  justify-content: center;
  min-height: 40px;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
    padding: calc(1 / 390 * 100vw) calc(4 / 390 * 100vw);
    min-height: calc(24 / 390 * 100vw);
  }
}
.ab-calendar .mcallendar .days .daytext {
  font-family: var(--Font-Barlow);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  width: 100%;
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-calendar .mcallendar .days:nth-child(7n + 1) .daytext {
  color: var(--Color-Aka);
}
.ab-calendar .mcallendar .days:nth-child(7n) .daytext {
  color: var(--Color-Konpeki);
}
.ab-calendar .mcallendar .days .details {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0;
  margin: 4px 3px;
  cursor: pointer;
  @media (max-width: 740px) {
    width: calc(8 / 390 * 100vw);
    height: calc(8 / 390 * 100vw);
    margin: calc(1 / 390 * 100vw) calc(2 / 390 * 100vw);
  }
}
.ab-calendar .mcallendar .days .details.red_cal {
  background-color: var(--Color-Aka-Dark);
}
.ab-calendar .mcallendar .days .details.purple_cal {
  background-color: var(--Color-Fuji);
}
.ab-calendar .mcallendar .days .details.blue_cal {
  background-color: var(--Color-Sora);
}
.ab-calendar .mcallendar .days .details.green_cal {
  background-color: var(--Color-Wakatake);
}
.ab-calendar .mcallendar .days .details.orange_cal {
  background-color: var(--Color-Mikan);
}
.ab-calendar .mcallendar .days .details.yellow_cal {
  background-color: var(--Color-Tanpopo);
}
.ab-calendar .mcallendar .days_space {
  min-height: 0;
}
/* Calendar Legend */
.ab-calendar__legend {
  margin-top: 24px;
  @media (max-width: 740px) {
    margin-top: calc(4 / 390 * 100vw);
  }
}
.ab-calendar__legend-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px calc(60 / 1440 * 100vw);
  align-items: center;
  max-width: fit-content;
  @media (max-width: 740px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(5 / 390 * 100vw) calc(12 / 390 * 100vw);
  }
}
.ab-calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  @media (max-width: 740px) {
    gap: calc(3 / 390 * 100vw);
  }
}
.ab-calendar__legend-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  @media (max-width: 740px) {
    width: calc(8 / 390 * 100vw);
    height: calc(8 / 390 * 100vw);
  }
}
.ab-calendar__legend-dot.-opencampus {
  background-color: var(--Color-Aka-Dark);
}
.ab-calendar__legend-dot.-lesson {
  background-color: var(--Color-Fuji);
}
.ab-calendar__legend-dot.-briefing {
  background-color: var(--Color-Sora);
}
.ab-calendar__legend-dot.-consultation {
  background-color: var(--Color-Wakatake);
}
.ab-calendar__legend-dot.-ao {
  background-color: var(--Color-Mikan);
}
.ab-calendar__legend-dot.-special {
  background-color: var(--Color-Tanpopo);
}
.ab-calendar__legend-text {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-calendar__button {
  margin-top: 40px;
  @media (max-width: 740px) {
    margin-top: calc(20 / 390 * 100vw);
  }
}

/* ===========================================
   ACCESS Section
   =========================================== */
.ab-access {
  position: relative;
  width: 100%;
  padding: 64px 0;
  @media (max-width: 740px) {
    padding: calc(56 / 390 * 100vw) 0;
  }
}
.ab-access__inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  @media (max-width: 740px) {
    max-width: 100%;
    gap: calc(20 / 390 * 100vw);
    padding-inline: var(--inner-padding-sp);
  }
}
.ab-access__header {
  width: 800px;
  @media (max-width: 740px) {
    width: 100%;
  }
}
.ab-access__map {
  position: relative;
  width: 100%;
}
.ab-access__map-iframe {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  @media (max-width: 740px) {
    border-radius: calc(8 / 390 * 100vw);
  }
}
.ab-access__map-iframe iframe {
  aspect-ratio: 1100 / 445;
  width: 100%;
  @media (max-width: 740px) {
    aspect-ratio: 358 / 160;
  }
}
.ab-access__map-address {
  margin-top: 8px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.3;
  color: var(--Color-Gray-900);
  text-align: center;
  @media (max-width: 740px) {
    margin-top: calc(4 / 390 * 100vw);
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-access__stations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
  @media (max-width: 740px) {
    flex-direction: column;
    gap: calc(6 / 390 * 100vw);
  }
}
.ab-access__station {
  display: flex;
  align-items: center;
  gap: 12px;
  @media (max-width: 740px) {
    gap: calc(8 / 390 * 100vw);
  }
}
.ab-access__station-label {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  @media (max-width: 740px) {
    width: calc(64 / 390 * 100vw);
    height: calc(64 / 390 * 100vw);
  }
}
.ab-access__station-label-bg {
  position: absolute;
  inset: 0;
}
.ab-access__station-label-bg img {
  width: 100%;
  height: 100%;
  display: block;
}
.ab-access__station-label-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--Color-Gray-900);
  text-align: center;
  width: 100%;
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(12 / 390 * 100vw);
  }
}
.ab-access__station-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: -13px;
  @media (max-width: 740px) {
    gap: calc(2 / 390 * 100vw);
    margin-top: 0;
  }
}
.ab-access__station:last-child .ab-access__station-list,
.ab-access__station:last-child .ab-access__station-item {
  @media (max-width: 740px) {
    display: inline;
  }
}
.ab-access__station-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--Color-Gray-900);
  letter-spacing: 0;
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
  }
}
.ab-access__station-item-divider {
  display: none;
  @media (max-width: 740px) {
    font-size: calc(14 / 390 * 100vw);
    display: inline;
  }
}
/* ===========================================
   CTA Section
   =========================================== */
.ab-cta {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(120 / 1440 * 100vw);
  aspect-ratio: 1440 / 600;
  @media (max-width: 1100px) {
    aspect-ratio: unset;
    height: 600px;
    padding-bottom: 0;
  }
  @media (max-width: 740px) {
    aspect-ratio: 390 / 390;
    padding-bottom: calc(40 / 390 * 100vw);
    height: auto;
  }
}
.ab-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ab-cta__bg img {
  @media (max-width: 1100px) {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ab-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  mix-blend-mode: multiply;
}
.ab-cta__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  z-index: 5;
  @media (max-width: 740px) {
    gap: calc(22 / 390 * 100vw);
  }
}
.ab-cta__title {
  font-weight: 700;
  color: var(--Color-White);
  text-align: center;
  line-height: 1.1;
}
.ab-cta__title p {
  line-height: 1.1;
}
.ab-cta__title-line1 {
  font-size: 4.6rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
  }
}
.ab-cta__title-line1-small {
  font-size: 3.6rem;

  @media (max-width: 740px) {
    font-size: calc(26 / 390 * 100vw);
  }
}
.ab-cta__title-line2 {
  font-size: 4.6rem;
  @media (max-width: 740px) {
    font-size: calc(32 / 390 * 100vw);
  }
}
.ab-cta__title-line2-small {
  font-size: 3.6rem;
  @media (max-width: 740px) {
    font-size: calc(26 / 390 * 100vw);
  }
}
.ab-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  @media (max-width: 1100px) {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (max-width: 740px) {
    gap: calc(16 / 390 * 100vw);
  }
}
