* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-orange: #F87300;
  --color-orange-alt: #ff7a00;
  --color-blue: #1f7de8;
  --color-yellow: #FFDD4E;
  --color-text: #333;
  --color-gray: #999;
  --color-white: #fff;

  /* 見出し用フォント */
  --font-heading:
    "Zen Maru Gothic",
    "Hiragino Sans",
    "ヒラギノ角ゴ ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  background: var(--color-white);
  padding-bottom: 72px;
  font-family:
    "Hiragino Sans",
    "ヒラギノ角ゴ ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
}

/* -------------------- 見出し共通 -------------------- */
h1,
h2,
h3,
h4,
.program-number {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .04em;
}

/* 大見出し（セクションタイトル）は太さを一段上げる */
.intro h2,
.campus-heading h2,
.program-heading h2,
.voice-heading h2,
.comic-heading h2,
.course-heading h2,
.faq-heading h2 {
  font-weight: 900;
}

.sp-br {
  display: block;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .sp-br {
    display: none;
  }
}

/* =====================================================
   FV
===================================================== */
.fv {
  position: relative;
  width: 100%;
  background: url("../img/hero-bg-sp.webp") no-repeat center top;
  background-size: cover;
  aspect-ratio: 750 / 900;
  overflow: hidden;
}

@media (min-width: 768px) {
  .fv {
    height: clamp(520px, 40vw, 700px);
    aspect-ratio: auto;
    background: url("../img/hero-bg-pc.webp") no-repeat right center;
    background-size: cover;
  }
}

/* -------------------- LOGO -------------------- */
.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  z-index: 20;
  background: var(--color-white);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}

@media (min-width: 768px) {
  .logo {
    width: 24vw;
    max-width: 360px;
    min-width: 200px;
    padding: 1vw 1.8vw;
  }
}

/* -------------------- TITLE + BUTTON -------------------- */
.fv-content {
  position: absolute;
  top: 60px;
  left: 6%;
  right: 6%;
  bottom: 5%;
  z-index: 20;
}

@media (min-width: 768px) {
  .fv-content {
    top: 90px;
    left: 8%;
    width: clamp(360px, 28vw, 520px);
    bottom: auto;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .fv-content {
    left: 5%;
    width: 360px;
  }
}

.fv-title {
  width: 72%;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .fv-title {
    width: 100%;
    margin: 0;
    position: relative;
    top: clamp(20px, 2vw, 50px);
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .fv-title {
    top: 20px;
  }
}

.fv-title img {
  width: 100%;
}

/* -------------------- PERSON -------------------- */
.fv-person {
  position: absolute;
  z-index: 5;
  width: 100%;
  right: 46%;
  bottom: 22%;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  .fv-person {
    width: clamp(600px, 58vw, 1100px);
    right: 2%;
    bottom: 0;
    transform: none;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .fv-person {
    width: 64%;
    right: -3%;
  }
}

.fv-person img {
  width: 92%;
}

@media (min-width: 768px) {
  .fv-person img {
    width: 95%;
  }
}

/* -------------------- BUTTON -------------------- */
.fv-btns {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  margin-top: 200px;
  gap: 10px;
}

@media (min-width: 768px) {
  .fv-btns {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 70px;
  }
}

.btn {
  width: 100%;
}

.btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 14px 24px;
  margin-inline: auto;
  font-size: 15px;
  border-radius: 16px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 0.8;
}

@media (min-width: 768px) {
  .btn a {
    max-width: clamp(320px, 22vw, 420px);
    padding: 22px 34px;
    font-size: clamp(16px, 1vw, 18px);
  }
}

.btn a:hover .arrow {
  transform: translateY(-50%) translateX(6px);
}

.btn:nth-of-type(1) a {
  background: var(--color-orange);
}

.btn:nth-of-type(2) a {
  background: var(--color-blue);
}

.btn a>span:first-child {
  display: block;
  font-size: 12px;
}

/* -------------------- ARROW -------------------- */
.arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.arrow img {
  width: 40px;
}

/* -------------------- INTRO -------------------- */
.intro {
  padding: 30px 20px 0;
}

@media (min-width: 768px) {
  .intro {
    padding: 50px 20px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  color: #f57c00;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .intro h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.inner p:first-of-type {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .inner p:first-of-type {
    margin-bottom: 15px;
  }
}

.inner p:last-of-type {
  font-size: 10px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .inner p:last-of-type {
    font-size: 14px;
  }
}

/* -------------------- NAV -------------------- */
.nav {
  max-width: 1000px;
  margin: 40px auto 0;
}

@media (min-width: 768px) {
  .nav {
    margin-top: 60px;
  }
}

.nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .nav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.nav li {
  width: 100%;
}

.nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 12px 38px 12px 12px;
  background: var(--color-yellow);
  border-radius: 12px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: .3s;
}

@media (min-width: 768px) {
  .nav a {
    min-height: 100px;
    padding: 16px 54px 16px 20px;
    font-size: 18px;
  }
}

.nav a:hover {
  opacity: .8;
}

.nav-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-orange);
}

@media (min-width: 768px) {
  .nav-arrow {
    right: 20px;
    width: 24px;
    height: 24px;
  }
}

.nav-arrow::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 4px;
  height: 4px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .nav-arrow::before {
    top: 7px;
    left: 8px;
    width: 6px;
    height: 6px;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
  }
}

/* =====================================================
   SP MENU
===================================================== */
.sp-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
}

.sp-menu ul {
  display: flex;
  background: var(--color-white);
  box-shadow: 0 -3px 12px rgba(0, 0, 0, .12);
}

.sp-menu li {
  flex: 1;
}

.cta-nowrap {
  white-space: nowrap;
}

/* SP固定メニューの資料請求サブ表記（資料請求より少し小さく） */
.sp-menu__sub {
  display: inline-block;
  font-size: 8px;
  line-height: 1.3;
}

.sp-menu a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 72px;
  text-decoration: none;
  color: var(--color-orange);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}

.sp-menu img {
  width: 28px;
  margin-bottom: 6px;
}

/* オレンジ */
.sp-menu li.active a {
  background: var(--color-orange);
  color: var(--color-white);
}

.sp-menu li.active img {
  filter: brightness(0) invert(1);
}

@media (min-width: 768px) {
  .sp-menu {
    display: none;
  }
}

/* =====================================================
   CAMPUS
===================================================== */
.campus {
  padding: 60px 20px;
  background: var(--color-white);
}

.campus-inner {
  max-width: 1000px;
  margin: 0 auto;
}

#campus {
  scroll-margin-top: 100px;
}

.campus-card {
  scroll-margin-top: 100px;
}

/* -------------------- TITLE -------------------- */
.campus-heading {
  margin: 0 0 50px;
  text-align: center;
}

.campus-ribbon {
  display: block;
  width: 235px;
  margin: 0 auto 20px;
}

.campus-heading h2 {
  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
}

/* -------------------- VISUAL -------------------- */
.campus-visual {
  position: relative;
}

.campus-visual img {
  width: 100%;
}

/* -------------------- COUNT -------------------- */
.campus-count {
  position: absolute;
  top: -40px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 95px;
  height: 95px;
  background: var(--color-orange-alt);
  border-radius: 50%;
  color: var(--color-white);
  text-align: center;
}

.campus-count span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.campus-count strong {
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 768px) {
  .campus-count span {
    font-size: 21px;
  }

  .campus-count strong {
    font-size: 44px;
  }

  .campus-count {
    position: absolute;
    top: -80px;
    left: 0;
    width: 170px;
    height: 170px;
  }
}

/* -------------------- INTRO -------------------- */

.campus-intro {
  margin-top: 30px;
}

.campus-intro p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.campus-intro p+p {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .campus-intro {
    margin-bottom: 60px;
  }
}


/* -------------------- DETAIL -------------------- */

.campus-text h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;

  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;
}

.campus-text dl div {
  margin: 15px 0 10px;
}

.campus-text dt {
  display: inline-block;
  min-width: 76px;
  padding: 4px 0;

  background: var(--color-gray);
  border-radius: 4px;

  color: var(--color-white);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.campus-text dd {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.map {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;

  background: var(--color-orange);
  border-radius: 999px;

  color: var(--color-white);
  font-size: 13px;
  line-height: 1;
  vertical-align: middle;
}

.campus-link {
  line-height: 1;
}

.campus-link a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =====================================================
   AREA
===================================================== */

.area {
  margin-top: 30px;
}

.area+.area {
  margin-top: 30px;
}

/* -------------------- BUTTON -------------------- */

.area-btn {
  width: 100%;
  padding: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #2f7de1;
  border: none;
  border-radius: 12px;

  color: var(--color-white);
  cursor: pointer;
}

.area-btn span {
  font-size: 22px;
  font-weight: 700;
}

.area-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}

.area-icon::before,
.area-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background: var(--color-white);
  transition: .3s;
}

.area-icon::before {
  transform: translate(-50%, -50%);
}

.area-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.area-btn.active .area-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.area-btn.active .area-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



@media (min-width: 768px) {
  .area-btn {
    padding: 32px 40px;
    border-radius: 18px;
  }

  .area-icon {
    font-size: 46px;
  }
}

/* -------------------- CONTENT -------------------- */

.area-content {
  display: none;
  padding-top: 30px;
}

.area-content.open {
  display: block;
}

@media (min-width: 768px) {
  .area-content {
    padding-top: 40px;
  }
}

/* -------------------- PREF -------------------- */

.pref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  padding-bottom: 30px;
}

.pref-list li {
  width: 33.333%;
}

.pref-list a {
  position: relative;
  display: block;
  padding-left: 30px;

  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;

}

.pref-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: var(--color-orange);
  border-radius: 50%;
}

.pref-list a::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-right: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: rotate(45deg);
}

@media (min-width: 768px) {

  .pref-list {
    display: flex;
    align-items: center;
    gap: 20px 32px;
    padding-bottom: 30px;
  }

  .pref-list li {
    width: auto;
    flex: 0 0 auto;
  }

  .pref-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .pref-list a::before {
    position: static;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .pref-list a::after {
    left: 5px;
    top: 5px;
    width: 6px;
    height: 6px;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
  }
}

/* -------------------- INFO -------------------- */

.campus-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-top: 1px solid #898989;
}

@media (min-width: 768px) {
  .campus-info {
    flex-direction: row;
    padding-top: 30px;
    gap: 115px;
  }
}

/* -------------------- LEFT -------------------- */

.campus-detail {
  flex: 1;
}

.campus-detail h3 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 25px 0;
  padding-top: 20px;
}

.campus-detail dt {
  display: inline-block;
  min-width: 76px;
  padding: 4px 0;

  background: var(--color-gray);
  color: var(--color-white);
  border-radius: 4px;

  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.campus-detail dl div {
  margin-top: 15px;
  margin-bottom: 10px;
}

.campus-detail dd {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
}

@media (min-width: 768px) {

  .campus-detail dl div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .campus-detail dt {
    width: 76px;
    flex-shrink: 0;
  }

  .campus-detail dd {
    margin-left: 16px;
    margin-top: 0;
  }

}

.campus-map {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;

  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 20px;

  font-size: 13px;
}

.info-row {
  display: flex;
  margin-bottom: 18px;
}

.info-label {
  width: 70px;
  padding: 4px 0;

  background: var(--color-gray);
  color: var(--color-white);
  border-radius: 4px;

  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.info-text {
  margin-left: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.tel {
  font-size: 28px;
}

.page-link {
  display: inline-block;
  margin-top: 10px;

  color: var(--color-text);
  font-weight: 700;
  border-bottom: 2px solid var(--color-text);
}

/* --------------------PHOTO-------------------- */

.area-photo {
  flex: 1;
}

.area-photo:empty {
  display: none;
}

.area-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* --------------------EVENT-------------------- */

.event-card {
  padding: 20px 10px;
  background: #fff8df;
  border-radius: 16px;
  margin-top: 20px;
}

.event-card+.event-card {
  margin-top: 20px;
  margin-bottom: 30px;
}

.event-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.status {
  display: inline-block;
  padding: 4px 12px;

  background: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: 6px;

  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
}

.event-date {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
}

.event-time {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
}

.event-top {
  display: flex;
  flex-direction: column;
}

.event-info {
  flex: 1;
}

.event-btn {
  order: 2;
  margin-top: 24px;
}

.event-btn a {
  display: block;
  width: 100%;
  padding: 18px;

  background: linear-gradient(#ff9a3c, var(--color-orange-alt));
  border-radius: 999px;
  box-shadow: 0 4px 0 #c85a00, 0 6px 12px rgba(0, 0, 0, .18);

  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  text-align: center;

  transition: .2s;
}

.event-btn a:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #c85a00, 0 3px 8px rgba(0, 0, 0, .18);
  opacity: 1;
}

.event-text {
  order: 3;
  margin-top: 20px;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .event-card {
    display: grid;
    grid-template-columns: 1fr 280px;
    align-items: center;
    gap: 12px 30px;
    padding: 24px 30px;
  }

  .event-top {
    grid-column: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .event-info {
    flex: 1;
    min-width: 0;

    /* ステータス・日付・時間を横一列に並べて余白のムダをなくす */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
  }

  /* 横並びになるため下マージンは不要 */
  .event-head {
    margin-bottom: 0;
  }

  /* 開催日時を大きく見せる */
  .event-date {
    font-size: 26px;
  }

  .event-time {
    font-size: 20px;
  }

  .event-btn {
    /* 1行目の右カラム。日時と備考の両方にまたがって縦中央 */
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    margin-top: 0;
  }

  /* 備考が無いカードはボタンを1行目のみに */
  .event-top:last-child+.event-btn,
  .event-btn:last-child {
    grid-row: 1;
  }

  /* 備考は日時ブロックの真下・同じ幅に収める */
  .event-text {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
}

/* --------------------COURSE-------------------- */

/* コース一覧が続く場合は、イベントカード側の余白をリセット */
.event-list:has(+ .campus-course-list) .event-card+.event-card {
  margin-bottom: 0;
}

.campus-course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 60px;
  padding-top: 20px;
  border-top: 1px dashed #d5d5d5;
}

.campus-course-list:empty {
  display: none;
}

.campus-course-list__item a,
.campus-course-list__item .no-link {
  display: inline-block;
  padding: 6px 14px;

  background: var(--color-white);
  border: 1px solid #d5d5d5;
  border-radius: 20px;

  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.campus-course-list__item a {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transition: .3s;
}

.campus-course-list__item a:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.campus-course-list__item .no-link {
  background: #f5f5f5;
  color: #666;
}

.campus-caution {
  margin-top: 10px;

  color: var(--color-gray);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

@media (min-width: 768px) {
  .campus-course-list {
    gap: 10px;
    padding-top: 25px;
  }

  .campus-course-list__item a,
  .campus-course-list__item .no-link {
    padding: 8px 18px;
    font-size: 14px;
  }

  .campus-caution {
    text-align: right;
  }
}

/* =====================================================
  PROGRAM
===================================================== */

.program {
  padding: 70px 0;
  background: url("../img/program_bg_sp.webp") no-repeat center top;
  background-size: cover;
}

@media (min-width: 768px) {
  .program {
    background: url("../img/program_bg_pc.webp") no-repeat center top;
    background-size: cover;
  }
}

@media (min-width: 1200px) {
  .program {
    background: url("../img/program_bg_pc.webp") no-repeat center top;
    background-size: cover;
  }
}

.program-inner {
  width: 90%;
  margin: 0 auto;
}

.program-heading {
  text-align: center;
}

.program-heading img {
  width: 235px;
  margin: 0 auto 30px;
}

.program-heading p {
  font-weight: 700;
}

.program-heading h2 {
  margin-top: 15px;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .program-heading h2 {

    font-size: 40px;
  }
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .program-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (min-width: 1200px) {
  .program-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* -------------------- PROGRAM CARD -------------------- */
.program-card {
  position: relative;
}

@media (min-width: 768px) {
  .program-card {
    flex: 1;
  }
}

.program-img {
  position: relative;
}

.program-img img {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.program-number {
  position: absolute;
  top: -20px;
  left: -10px;

  width: 60px;
  height: 60px;

  border: 3px solid var(--color-white);
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .18);

  color: var(--color-white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 2;
}

.program-card h3 {
  padding: 20px;

  background: var(--color-orange);
  border-radius: 0 0 30px 30px;

  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.program-card p {
  margin-top: 20px;

  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.program-card:last-child p {
  margin-bottom: 0;
}

/* =====================================================
  PEER
===================================================== */


.peer {
  padding: 50px 0;
  background: url("../img/peersupporter_bg_sp.webp") no-repeat center top;
  background-size: cover;
}

@media (min-width: 768px) {
  .peer {
    padding: 100px 0;
    background: url("../img/peersupporter_bg_pc.webp") no-repeat center;
    background-size: cover;
  }
}

.peer-inner {
  width: 90%;
  margin: 0 auto;
}

/* ---------------- HEADING ---------------- */

.peer-heading {
  text-align: center;
}

.peer-en {
  color: var(--color-orange-alt);
  font-size: 59px;
  font-family: "Caveat", cursive;
  font-weight: 700;
}

@media (min-width: 768px) {
  .peer-en {
    font-size: 68px;
  }

  .peer-text {
    margin-top: 20px;
    color: var(--color-orange-alt);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
  }
}

.peer-title {
  display: block;
  margin: 30px auto 0;
}

.peer-title img {
  width: 100%;
  border-radius: 20px;
}

.peer-copy-area {
  position: relative;
  margin-top: 30px;
}

.peer-copy {
  color: var(--color-orange-alt);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .03em;
  text-align: center;
}

@media (min-width: 768px) {
  .peer-copy {
    font-size: 20px;
  }
}

.peer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.peer-nav .swiper-button-prev,
.peer-nav .swiper-button-next {
  position: static;
  width: 48px;
  height: 48px;
  margin: 0;
  background: var(--color-orange);
  border-radius: 50%;
  color: var(--color-white);
}

.peer-nav .swiper-button-prev::after,
.peer-nav .swiper-button-next::after {
  font-size: 18px;
}

.peer-nav .swiper-button-disabled {
  display: none;
}

.peer-swiper {
  margin: 30px -16px 0;
  overflow: hidden;
}

.peer-swiper .swiper-slide {
  padding: 0 8px;
  height: auto;
}

@media (min-width: 768px) {
  .peer-swiper {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .peer-swiper .swiper-slide {
    padding: 0;
  }
}

/* ---------------- CARD ---------------- */

.peer-card {
  position: relative;
  margin-top: 65px;
  padding: 85px 24px 30px;
  background: var(--color-white);
  border-radius: 24px;
  text-align: center;
}

.peer-face {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}

.peer-face img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
}

.peer-card h3 {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
}

.peer-text-body {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;

  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.peer-text-body.open {
  display: block !important;
  -webkit-box-orient: initial;
  -webkit-line-clamp: initial;
  overflow: visible;
}

/* 本文中の強調（アンダーライン）
   ※親が display:-webkit-box（行数省略）のため background / box-shadow は
     描画されないことがある。border-bottom は確実に表示される */
.peer-text-body .marker {
  font-weight: 700;
  border-bottom: 6px solid #ffe08a;
  padding-bottom: 1px;
}



.peer-more {
  display: inline-block;
  width: 180px;
  padding: 14px;
  background: var(--color-yellow);
  border-radius: 10px;
  color: var(--color-text);
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {

  .peer-card {

    display: flex;
    flex-direction: column;

    margin-top: 65px;
    padding: 105px 32px 40px;
  }

  .peer-text-body {

    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* .peer-face {
    top: -65px;
  } */

  .peer-face img {
    width: 150px;
    height: 150px;
  }

  .peer-card h3 {

    font-size: 28px;
  }

  .peer-more {

    width: 220px;
    margin: 0 auto;
  }

}

@media (min-width: 768px) and (max-width: 1199px) {

  .peer-card {
    padding: 90px 20px 32px;
  }

  .peer-face img {
    width: 120px;
    height: 120px;
  }

  .peer-card h3 {
    font-size: 22px;
  }

  .peer-text-body {
    font-size: 14px;
    -webkit-line-clamp: 7;
  }

  .peer-more {
    width: 180px;
  }

}

/* =====================================================
   VOICE
===================================================== */


.voice {
  padding: 60px 0 60px;
  background: var(--color-white);
}

.voice-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .voice {
    padding: 80px 0 80px;
  }

  .voice-inner {
    max-width: 920px;
  }
}

/* ---------- Heading ---------- */

.voice-heading {
  text-align: center;
}

.voice-heading img {
  display: block;
  width: 170px;
  margin: 0 auto;
}

.voice-heading h2 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 700;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .voice-heading img {
    width: 235px;
  }

  .voice-heading h2 {
    margin-top: 20px;
    font-size: 40px;
  }
}

/* ---------- Image ---------- */

.voice-image {
  margin-top: 40px;
}

.voice-image img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .voice-image {
    margin-top: 50px;
  }
}

/* ---------- Group ---------- */

.voice-group {
  margin-top: 30px;
}

.voice-group-title {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;

  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.voice-group-title span {
  width: 8px;
  height: 48px;
  background: var(--color-orange);
}


@media (min-width: 768px) {
  .voice-group {
    margin-top: 60px;
  }

  .voice-group-title {
    margin-bottom: 30px;
    font-size: 30px;
  }

  .voice-group-title span {
    height: 40px;
  }
}

/* ---------- List ---------- */

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .voice-list {
    gap: 30px;
  }
}

/* ---------- 親子で参加だけ ---------- */
.voice-family .voice-list {
  gap: 24px;
}

@media (min-width: 768px) {
  .voice-family .voice-list {
    gap: 32px;
  }
}

/* ---------- Card（吹き出し形式） ---------- */

.voice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* 生徒は右寄せ（左右で会話に見せる） */
.voice-card--student {
  flex-direction: row-reverse;
}

/* --- アイコン --- */

.voice-avatar {
  width: 60px;
  flex-shrink: 0;
  text-align: center;
}

.voice-avatar img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  background: var(--color-white);
}

.voice-avatar__name {
  display: block;
  margin-top: 4px;

  color: var(--color-text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

/* --- 吹き出し --- */

.voice-balloon {
  position: relative;
  flex: 1;
  min-width: 0;

  padding: 20px 22px;
  background: #fff7de;
  border-radius: 20px;
}

/* 吹き出しのしっぽ */
.voice-balloon::before {
  content: "";
  position: absolute;
  top: 22px;

  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #fff7de transparent transparent;
}

.voice-card--parent .voice-balloon::before {
  left: -11px;
}

.voice-card--student .voice-balloon::before {
  right: -11px;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff7de;
}

.voice-balloon p {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

@media (min-width: 768px) {
  .voice-card {
    gap: 20px;
  }

  .voice-avatar {
    width: 80px;
  }

  .voice-avatar__name {
    margin-top: 6px;
    font-size: 13px;
  }

  .voice-balloon {
    padding: 24px 28px;
  }

  .voice-balloon::before {
    top: 26px;
  }

  .voice-balloon p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =====================================================
   CTA
===================================================== */

.cta {
  padding: 60px 0;
  background: url("../img/future_bg_sp.webp") no-repeat center top;
  background-size: cover;
}

.cta-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .cta {
    padding: 100px 0;
    background: url("../img/future_bg_pc.webp") no-repeat center;
    background-size: cover;
  }

  .cta-inner {
    max-width: 1100px;
  }
}

/* ---------- Title ---------- */

.cta-title {
  margin-bottom: 30px;

  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 1200px) {
  .cta-title {
    font-size: 40px;
  }
}

/* ---------- List ---------- */

.cta-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1000px) {
  .cta-list {
    flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .cta-list {
    gap: 28px;
  }
}

/* =====================================================
   COMIC
===================================================== */

.comic {
  padding: 50px 0 80px;
  background: var(--color-white);
}

.comic-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comic {
    padding: 80px 0;
  }

  .comic-inner {
    max-width: 1100px;
  }
}

/* ---------- Heading ---------- */

.comic-heading {
  text-align: center;
}

.comic-heading img {
  display: block;
  width: 235px;
  margin: 0 auto;
}

.comic-heading h2 {
  margin-top: 16px;
  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .comic-heading h2 {
    margin-top: 10px;
    font-size: 40px;
  }
}

/* ---------- Group ---------- */

.comic-group {
  margin-top: 30px;
}

.comic-title {
  position: relative;
  z-index: 2;

  width: 280px;
  margin: 0 auto -30px;
  padding: 14px;

  background: var(--color-orange);
  border-radius: 0 20px 0 20px;

  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.comic-box {
  padding: 50px 20px 30px;
  background: url("../img/comic_bg_sp.webp") center / cover no-repeat;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .comic-title {
    width: 320px;
    padding: 15px;
    font-size: 20px;
  }

  .comic-box {
    padding: 50px 80px;
    background: url("../img/comic_bg_pc.webp") center / cover no-repeat;
  }
}

/* ---------- List ---------- */

.comic-list {
  display: grid;
  gap: 32px;
}

.comic-card a {
  display: block;
  text-decoration: none;
}

/* ---------- Label ---------- */

.comic-label {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 40px;

  background: var(--color-white);
  border: 2px solid var(--color-text);

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
}

.comic-image {
  margin-top: 10px;
}

.comic-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Link ---------- */

.comic-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-top: 18px;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
}

.comic-arrow {
  position: relative;

  width: 24px;
  height: 24px;

  background: var(--color-orange);
  border-radius: 50%;
}

.comic-arrow::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);

  transform: translate(-60%, -50%) rotate(45deg);
}

/* ---------- More Button ---------- */

.comic-more {
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;

  width: 315px;
  height: 70px;

  margin: 40px auto 0;

  background: var(--color-yellow);
  border-radius: 12px;

  color: var(--color-text);
  text-decoration: none;
}

.comic-more-text {
  font-size: 15px;
  font-weight: 700;
}

.comic-more-icon {
  position: absolute;
  right: 28px;

  width: 26px;
  height: 26px;

  transition: transform .3s;
}

.comic-more-icon::before,
.comic-more-icon::after {
  content: "";
  position: absolute;

  top: 50%;
  left: 50%;

  background: var(--color-text);

  transform: translate(-50%, -50%);
}

.comic-more-icon::before {
  width: 26px;
  height: 3px;
}

.comic-more-icon::after {
  width: 3px;
  height: 26px;
}

.comic-more.active .comic-more-icon {
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .comic-more {
    width: 320px;
    height: 80px;
    margin-top: 30px;
  }

  .comic-more-text {
    font-size: 24px;
  }
}

/* ---------- Hidden ---------- */

.comic-hidden {
  display: none;
}

.comic-hidden.show {
  display: block;
}

/* ---------- COMIC MODAL ---------- */

.comic-modal {
  display: none;

  position: fixed;
  inset: 0;

  padding: 40px 20px;

  background: rgba(0, 0, 0, 0.8);

  z-index: 9999;
  overflow: auto;
}

.comic-modal.active {
  display: block;
}

.comic-modal-inner {
  position: relative;

  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .comic-modal-inner {
    max-width: 400px;
    margin: 0 auto;
  }
}

.comic-close {
  position: sticky;
  top: 20px;

  display: block;

  margin: 0 0 20px auto;
  padding: 12px 24px;

  border: none;
  border-radius: 10px;

  background: var(--color-orange);

  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;

  cursor: pointer;
}

.comic-view img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--color-white);
}

@media (min-width: 768px) {

  /* ---------- Open School ---------- */

  .comic-group:first-of-type .comic-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* ---------- School Life ---------- */

  .comic-group:last-of-type .comic-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* ---------- Card ---------- */

  .comic-card {
    transition: transform .3s;
  }

  .comic-card:hover {
    transform: translateY(-4px);
  }

  .comic-label {
    height: 46px;
    font-size: 20px;
  }

  .comic-image {
    margin-top: 6px;
  }

  .comic-link {
    margin-top: 18px;
    font-size: 22px;
    transition: color .3s;
  }

  .comic-card:hover .comic-link {
    color: var(--color-orange-alt);
  }

  .comic-arrow {
    transition: transform .3s;
  }

  .comic-card:hover .comic-arrow {
    transform: translateX(6px);
  }
}

@media (min-width: 1000px) {

  .comic-group:first-of-type .comic-list,
  .comic-group:last-of-type .comic-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================================================
   COURSE
===================================================== */

.course {
  padding: 50px 0 80px;
  background: #fff8e6;
}

.course-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .course {
    padding: 80px 0;
  }

  .course-inner {
    max-width: 1100px;
  }

}

/* --------- Heading ---------*/

.course-heading {
  text-align: center;
}

.course-heading img {
  display: block;
  width: 235px;
  margin: 0 auto;
}

.course-heading h2 {
  margin-top: 20px;

  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
}

.course-heading p {
  margin: 30px 0 20px;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

@media (min-width: 768px) {

  .course-heading h2 {
    font-size: 40px;
  }

  .course-heading p {
    margin: 30px 0 35px;
  }

}

/* --------- Block --------- */

.course-block {
  margin-top: 30px;
}

.course-block:first-of-type {
  margin-top: 20px;
}

.course-block__title {
  padding: 30px;

  background: var(--color-orange);
  border-radius: 10px;

  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
}

@media (min-width: 768px) {

  .course-block {
    margin-top: 60px;
  }

  .course-block__title {
    padding: 25px 30px;
    font-size: 30px;
  }

}

/* ---------List --------- */

.course-list {
  margin-top: 24px;
}

@media (min-width: 768px) {

  .course-list {
    margin-top: 40px;
  }

}

/* --------- Item --------- */

.course-item {
  display: flex;
  flex-direction: column;

  padding-bottom: 30px;

  border-bottom: 1px solid #898989;
}

.course-item--managara {
  margin-top: 30px;
}

.course-item--border {
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 0;
  border-top: 2px solid #d8d8d8;
  border-bottom: none;
}

@media (min-width: 768px) {

  .course-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }

  .course-item--border {
    margin-top: 40px;
  }

}

/* --------- Image ---------*/

.course-item__image {
  width: 80%;
  margin: 0 auto;
  flex-shrink: 0;
}

.course-item__image img {
  display: block;
  width: 100%;
}

@media (min-width: 768px) {

  .course-item__image {
    width: 155px;
    margin: 0;
  }

}

/* --------- Body ----------*/

.course-item__body {
  flex: 1;
  margin-top: 20px;
}

@media (min-width: 768px) {

  .course-item__body {
    margin-top: 0;
  }

}

.course-premium {
  margin-top: 20px;
}

/* --------- Heading ---------- */

.course-item__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.course-item__heading+.course-item__heading {
  margin-top: 16px;
}

.course-item__heading::before {
  content: "";

  width: 8px;
  height: 40px;

  background: var(--color-orange);

  flex-shrink: 0;
}

.course-item__heading h4 {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.course-item__heading span {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.course-item__title {
  display: flex;
  flex-direction: column;
}

.course-item__sub {
  display: block;

  margin-top: 2px;

  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.course-item__body p {
  margin-top: 12px;

  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

@media (min-width: 768px) {

  .course-item__heading h4 {
    font-size: 30px;
  }

  .course-item__heading span,
  .course-item__sub {
    font-size: 18px;
  }

  .course-item__body p,
  .course-note {
    font-size: 18px;
    font-weight: 500;
  }

}

/* ---------- Major ---------- */

.course-major {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin: 24px 0 30px;
}

.course-major__item {
  display: flex;
  align-items: center;
  gap: 16px;

  transition: .3s;
}

.course-major__item>img {
  display: block;

  width: 110px;
  flex-shrink: 0;
}

.course-major__item span {
  flex: 1;

  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .04em;
}

/* 対象エリア表記は従来のフォント・通常太さで表示 */
.course-major__item .course-major__area {
  font-family:
    "Hiragino Sans",
    "ヒラギノ角ゴ ProN",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
}

/* --------- 提携先ロゴ --------- */

.course-major__logo {
  display: block;
  margin-top: 8px;
}

.course-major__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 26px;
}

/* KONAMI eスポーツ学院のロゴは絵柄が詰まっており大きく見えるため小さめに */
.course-major__logo--esports img {
  max-height: 20px;
}

@media (min-width: 768px) {
  .course-major__logo {
    margin-top: 10px;
  }

  .course-major__logo img {
    max-height: 32px;
  }

  .course-major__logo--esports img {
    max-height: 24px;
  }
}

@media (min-width: 768px) {

  .course-major {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 40px;

    margin: 30px 0 40px;
  }

  .course-major__item>img {
    width: 95px;
  }

  .course-major__item span {
    font-size: 20px;
  }

}


/* ---------- Simple Course ----------*/

.course-block--simple .course-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;

  margin-top: 30px;
  padding-bottom: 0;

  border-bottom: none;
}

.course-block--simple .course-item__image {
  width: 110px;
  margin: 0;

  flex-shrink: 0;
}

.course-block--simple .course-item__image img {
  display: block;
  width: 100%;
}

.course-block--simple .course-item__body {
  flex: 1;
  margin-top: 0;
}

.course-block--simple .course-item__body h4 {
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.course-note {
  margin-top: 8px;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

@media (min-width: 768px) {

  .course-block--simple .course-item {
    gap: 30px;
    margin-top: 40px;
  }

  .course-block--simple .course-item__image {
    width: 155px;
  }

  .course-block--simple .course-item__body h4 {
    font-size: 30px;
  }

  .course-note {
    font-size: 18px;
  }

}

/* ---------- Hover ---------- */

@media (min-width: 1200px) {

  .course-item__image img,
  .course-major__item {
    transition: .3s;
  }

  .course-item:hover .course-item__image img {
    opacity: .9;
  }

}

/* =====================================================
   FAQ
===================================================== */

.faq {
  padding: 50px 0 60px;
  background: var(--color-white);
}

.faq-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {

  .faq {
    padding: 80px 0;
  }

  .faq-inner {
    max-width: 1100px;
  }

}

/* ---------- Heading ---------- */

.faq-heading {
  text-align: center;
}

.faq-heading img {
  display: block;
  width: 235px;
  margin: 0 auto;
}

.faq-heading h2 {
  margin-top: 20px;

  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
}

@media (min-width: 768px) {

  .faq-heading h2 {
    font-size: 40px;
  }

}

/* ---------- List ---------- */

.faq-list {
  margin-top: 30px;
}

/* ---------- Item ---------- */

.faq-item+.faq-item {
  margin-top: 24px;
}

/* ---------- Question ---------- */

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;

  width: 100%;
  padding: 30px;

  background: var(--color-yellow);
  border: none;
  border-radius: 12px;

  cursor: pointer;
}

.faq-question__label {
  flex-shrink: 0;

  color: var(--color-text);
  font-size: 36px;
  font-weight: 700;
}

.faq-question__text {
  flex: 1;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-question__icon {
  position: relative;

  width: 24px;
  height: 24px;

  flex-shrink: 0;

  transition: transform .3s;
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
}

/* ---------- Answer ---------- */

.faq-answer {
  display: flex;
  gap: 20px;

  padding: 20px 0 0 0;
  display: none;
}

.faq-item.active .faq-answer {
  display: flex;
}

.faq-answer__label {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 42px;
  height: 42px;

  background: var(--color-yellow);
  border-radius: 50%;

  color: var(--color-text);
  font-size: 24px;
  font-weight: 700;

  flex-shrink: 0;
}

.faq-answer__text {
  flex: 1;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 2px;

  background: var(--color-text);

  transition: .3s;
}

.faq-question__icon::before {
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


@media (min-width: 768px) {
  .faq-question__label {
    font-size: 42px;
  }

  .faq-question__text {
    font-size: 24px;
  }

  .faq-answer {
    padding: 28px 0;
  }

  .faq-answer__label {
    width: 52px;
    height: 52px;

    font-size: 30px;
  }

  .faq-answer__text {
    font-size: 18px;
  }

}

/* =====================================================
   CONTACT
===================================================== */

.contact {
  padding: 60px 0 50px 0;
  background: url(../img/contact_bg_SP.webp) center / cover no-repeat;
  border-radius: 50px 50px 0 0;
}

.contact-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 950px) {

  .contact {
    padding: 90px 0 30px 0;
    background: url(../img/contact_bg_pc.webp) center / cover no-repeat;
  }

  .contact-inner {
    max-width: 1000px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
  }
}

/* ---------- Info ---------- */

.contact-info {
  text-align: center;
}

.contact-title {
  color: var(--color-text);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-text {
  margin-top: 30px;

  color: var(--color-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.contact-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  margin-top: 30px;
}

.contact-tel img {
  width: 44px;
}

.contact-tel a {
  color: var(--color-text);
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
}

.contact-free {
  width: 290px;

  margin: 15px auto 0;
  padding: 8px 0;

  background: var(--color-orange);
  border-radius: 8px;

  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 950px) {

  .contact-info {
    flex: 1;
    text-align: left;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-text {
    font-size: 18px;
  }

  .contact-tel {
    justify-content: flex-start;
  }

  .contact-tel img {
    width: 56px;
  }

  .contact-tel a {
    font-size: 34px;
  }

  .contact-free {
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;

  }

}

/* ---------- CTA Common ---------- */

.cta-card {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 35px 25px;
  min-height: 150px;

  border-radius: 20px;
  text-decoration: none;

  transition: .3s;
}

@media (min-width: 1000px) {
  .cta-card {
    flex: 1;
  }
}

.cta-icon {
  flex-shrink: 0;
}

.cta-icon img {
  display: block;
  width: 60px;
}

.cta-body {
  flex: 1;
}

.cta-lead {
  margin-bottom: 6px;

  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.cta-text {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.cta-arrow {
  flex-shrink: 0;
  transition: transform .3s ease;
}

.cta-card:hover .cta-arrow {
  transform: translateX(8px);
}

.cta-arrow img {
  display: block;
  width: 44px;
}

.cta-card--orange {
  background: var(--color-orange);
}

.cta-card--blue {
  background: var(--color-blue);
}

.cta-card--light {
  background: #f99b24;
}

@media (min-width: 950px) {

  .cta-card {
    gap: 24px;
    padding: 32px;
    min-height: 170px;
  }

  .cta-icon img {
    width: 72px;
  }

  .cta-lead {
    font-size: 15px;
  }

  .cta-text {
    font-size: 20px;
  }

  .cta-arrow img {
    width: 52px;
  }

}

/* ---------- CTA ---------- */

.contact-menu {
  margin-top: 40px;
}

.contact-menu .cta-card+.cta-card {
  margin-top: 18px;
}

.contact-menu .cta-card {
  border-radius: 10px;
}

@media (min-width: 950px) {

  .contact-menu {
    width: 440px;
    margin-top: 0;
  }

}

/* ---------- Logo ---------- */

.contact-logo {
  margin-top: 80px;
  text-align: center;
}

.contact-logo img {
  display: block;
  width: 270px;
  margin: 0 auto;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
  padding: 20px 0;

  background: #777;
}

.footer-copy {
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}