/* 国際ビジネス科 LP */

:root {
  --color-bg: #f9f8f5;
  --color-teal: #00AC97;
  --color-green: #52b56e;
  --color-pink: #eb6b91;
  --color-white: #fff;
}

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

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

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

.contents {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  background: var(--color-bg);
}

.contents ruby {
  ruby-position: over;
  ruby-align: center;
}

.contents rt {
  font-size: 0.5em;
  font-weight: normal;
}

/* First View */
.fv {
  background: var(--color-bg);
}

.fv__head {
  background: var(--color-teal);
  padding: 0 0 20px;
}

.fv__visual {
  position: relative;
  padding: 20px;
}

.fv__visual img {
  display: block;
  width: 100%;
}

.fv__tag {
  position: absolute;
  left: 126px;
  bottom: 30px;
  margin: 0;
  padding: 6px 14px;
  background: var(--color-white);
  color: var(--color-teal);
  font-size: 32px;
  line-height: 1.4;
  white-space: nowrap;
  background: #ECF4F3;
  border-radius: 20px;
}

.fv__title-box {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 420px;
  margin: -36px auto 0;
  padding: 8px 24px;
  background: var(--color-white);
  border-radius: 20px;
  text-align: center;
  background: #ECF4F3
}

.fv__title {
  margin: 0;
  color: var(--color-teal);
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.fv__lead {
  margin: 16px 0 0;
  padding: 0 20px;
  color: var(--color-white);
  font-size: 30px;
  text-align: center;
  line-height: 1.6;
}

.fv__cta {
  display: flex;
  gap: 10px;
  padding: 20px 56px 28px;
  background: #ECF4F3;
}

.fv__btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 60px;
  padding: 12px 18px 12px 30px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1.3;
}

.fv__btn--oc {
  background: var(--color-green);
}

.fv__btn--doc {
  background: var(--color-pink);
}

.fv__btn-icon {
  flex-shrink: 0;
  width: 28px;
  height: auto;
}

.fv__btn-label {
  flex: 1;
  text-align: center;
}

.fv__btn-arrow {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
}

/* Anchor navigation */
.anchor {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.anchor__title {
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
}

.anchor__title-sub {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 18px;
  border: 2px solid var(--color-teal);
  border-radius: 999px;
  color: var(--color-teal);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.anchor__title-main {
  display: block;
  color: var(--color-teal);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.anchor__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  background: #ECF4F3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.anchor__item{
  position: relative;
}

.anchor__item.line::before,
.anchor__item.line::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 1px;
  height: 40px;
  background: #00AC97;
  opacity: 25%;
}
.anchor__item.line::before{
  left: 0;
}
.anchor__item.line::after{
  right: 0;
  left: auto;
}

.anchor__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 68px;
  padding: 12px 6px 22px;
  border: none;
  color: #555;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.anchor__item a::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(45deg);
}

/* 5つのポイント */
.point {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.point__title {
  margin: 0 0 20px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.point__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.point__item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #d8d8d8;
  border-radius: 4px;
}

.point__head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 14px 23px 14px 18px;
  cursor: pointer;
  list-style: none;
}

.point__head::-webkit-details-marker {
  display: none;
}

.point__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border-radius: 4px;
}

.point__badge-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2px 4px 4px;
}

.point__badge-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 45px;
  height: 45px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  border-radius: 0 0 15px 0;
}

.point__badge-label {
  position: relative;
  z-index: 1;
  color: var(--color-teal);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}

.point__badge-num {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  color: var(--color-teal);
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
}

.point__label {
  flex: 1;
  color: #6F6F6F;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-left: 20px;
}

.point__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border-right: 2px solid var(--color-teal);
  border-bottom: 2px solid var(--color-teal);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.point__item[open] .point__chevron {
  margin-top: 4px;
  transform: rotate(-135deg);
}

.point__body {
  padding: 16px;
}

.point__body--with-media {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point__media {
  flex-shrink: 0;
  width: 360px;
  height: 222px;
}

.point__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point__text {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.8;
}

/* 学べる内容・時間割 */
.timetable {
  padding: 36px 20px 44px;
}

.timetable__title {
  margin: 0 0 30px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}

.timetable__subtitle {
  margin: 0 0 20px;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

.timetable__table img {
  display: block;
  width: 100%;
}

.timetable__note {
  margin: 12px 0 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: right;
}

/* 1日のスケジュール */
.daily {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.daily__title {
  margin: 0 0 20px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.daily__box {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  background: #fcf9f4;
  border-radius: 12px;
}

.daily__item {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.daily__media {
  width: 110px;
  margin: 0 auto 12px;
}

.daily__media img {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.daily__time {
  margin: 0 0 4px;
  color: #D2966E;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.daily__label {
  margin: 0 0 10px;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}

.daily__text {
  margin: 0;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: left;
}

/* 目指せる仕事 */
.job {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.job__title {
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}

.job__title-sub {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 18px;
  border: 2px solid var(--color-teal);
  border-radius: 999px;
  color: var(--color-teal);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.job__title-main {
  display: block;
  color: var(--color-teal);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.job__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.job__item {
  display: flex;
  align-items: stretch;
}

.job__category {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 250px;
  padding: 22px 8px;
  background: #D2966E;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.job__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}

.job__category-label {
  margin: 0;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.job__detail {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 12px 16px;
  background: #F7F1E9;
  border-radius: 10px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* 目指せる資格（例） */
.sikaku {
  padding: 36px 20px 44px;
  background: #fdf9f4;
}

.sikaku__title {
  margin: 0 0 24px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.sikaku__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sikaku__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sikaku__media {
  flex-shrink: 0;
  width: 350px;
}

.sikaku__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sikaku__body {
  flex: 1;
  min-width: 0;
}

.sikaku__category {
  margin: 0 0 10px;
  padding: 8px 14px;
  background: var(--color-teal);
  border-radius: 6px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}

.sikaku__quals {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.sikaku__quals li {
  position: relative;
  padding-left: 1.2em;
  color: #D2966E;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
}

.sikaku__quals li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #D2966E;
}

.sikaku__desc {
  margin: 0 0 6px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.7;
}

.sikaku__class {
  margin: 0;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.7;
}

.sikaku__desc, .sikaku__class {
  font-size: 1.3rem;
}

/* 入試方法 */
.admission {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.admission__title {
  margin: 0 0 24px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.admission__block + .admission__block {
  margin-top: 32px;
}

.admission__head {
  margin: 0 0 12px;
  padding: 12px 18px;
  background: var(--color-teal);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 14px;
}

.admission__lead {
  margin: 0 0 14px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.admission__box {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid #e7c8b4;
  border-radius: 8px;
}

.admission__box-title {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6;
}

.admission__box-title--accent {
  color: #D2966E;
}

.admission__box-lead {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.admission__box-list {
  margin: 0;
  padding-left: 1.4em;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.admission__box-list li + li {
  margin-top: 4px;
}

.admission__box-text {
  margin: 0;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.admission__info {
  margin: 0;
}

.admission__info-item + .admission__info-item {
  margin-top: 14px;
}

.admission__info-label {
  margin: 0 0 4px;
  color: #D2966E;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.admission__info-text {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.8;
}

.admission__box-lead, .admission__box-list, .admission__box-text {
  font-size: 1.3rem;
}

/* 各種サポート */
.support {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.support__title {
  margin: 0 0 20px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.support__panel {
  overflow: hidden;
  border-radius: 8px;
}

.support__head {
  margin: 0;
  padding: 12px 18px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.support__body {
  display: flex;
  gap: 20px;
  padding: 20px 18px;
}

.support__info {
  flex: 1;
  min-width: 0;
}

.support__subhead {
  margin: 0 0 10px;
  color: #D2966E;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.support__text {
  margin: 0 0 10px;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.8;
}

.support__note {
  margin: 0;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.7;
}

.support__note + .support__note {
  margin-top: 4px;
}

.support__table {
  flex-shrink: 0;
  width: 52%;
  max-width: 360px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support__table-row {
  display: flex;
  align-items: stretch;
  margin-bottom: 5px;
}

.support__table-row:last-child {
  border-bottom: none;
}

.support__table-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 96px;
  padding: 10px 8px;
  background: #D2966E;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.support__table-value {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  background: var(--color-white);
  color: #333;
  font-size: 1.3rem;
  line-height: 1.5;
}

/* SS特待生 学費内訳 */
.support__example {
  margin-top: 24px;
  padding: 24px 20px;
  background: #f9f6f0;
  border-radius: 8px;
}

.support__example-title {
  margin: 0 0 16px;
  color: var(--color-teal);
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.support__flow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.support__card {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
}

.support__card-head {
  margin: 0;
  padding: 12px 10px;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.support__card-head--teal {
  background: var(--color-teal);
}

.support__card-head--pink {
  background: var(--color-pink);
}

.support__card-body {
  padding: 16px 10px;
  text-align: center;
}

.support__card-body--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
}

.support__card-sub {
  margin: 0 0 6px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.5;
}

.support__card-total {
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
}

.support__card-total--teal {
  color: var(--color-teal);
}

.support__card-total--pink {
  color: var(--color-pink);
}

.support__card-num {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
}

.support__card-box {
  width: 100%;
  margin: 0;
  padding: 8px 6px;
  background: #eff6f5;
  border-radius: 6px;
  color: var(--color-teal);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.support__card-box .support__card-num {
  font-size: 2.2rem;
}

.support__card-plus {
  color: #D2966E;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

.support__flow-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: #D2966E;
  position: relative;
}

.support__flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-top: 2px solid #D2966E;
  border-right: 2px solid #D2966E;
  transform: rotate(45deg);
}

/* JLPT合格奨励金制度 */
.support__jlpt {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 20px;
  background: #fcfaf4;
  border-radius: 8px;
}

.support__jlpt-info {
  flex: 1;
  min-width: 0;
}

.support__jlpt-title {
  margin: 0 0 10px;
  color: #d29a72;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}

.support__jlpt-text {
  margin: 0 0 12px;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.support__jlpt-note {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.7;
}

.support__jlpt-note + .support__jlpt-note {
  margin-top: 2px;
}

.support__jlpt-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  width: 46%;
  min-height: 96px;
  padding: 16px 18px;
  background: #ed88a3;
  border-radius: 10px;
  color: var(--color-white);
}

.support__jlpt-cta-icon {
  flex-shrink: 0;
  width: 30px;
  height: auto;
  object-fit: contain;
}

.support__jlpt-cta-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.support__jlpt-cta-sub {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
}

.support__jlpt-cta-main {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

/* 住居サポート */
.support__panel--housing {
  margin-top: 24px;
}

.support__housing {
  padding: 20px 18px;
}

.support__housing-lead {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.7;
}

.support__housing-lead + .support__housing-lead {
  margin-bottom: 20px;
}

.support__housing-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support__housing-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-white);
}

.support__housing-type {
  margin: 0;
  padding: 12px 10px;
  background: #D2966E;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.support__housing-body {
  padding: 18px 12px 16px;
  text-align: center;
}

.support__housing-name {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
}

.support__housing-tel {
  margin: 0 0 14px;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.5;
}

.support__housing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
  padding: 8px 16px;
  border: 2px solid var(--color-teal);
  border-radius: 999px;
  color: var(--color-teal);
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
}

.support__housing-btn-icon {
  flex-shrink: 0;
  width: 10px;
  height: auto;
  object-fit: contain;
}

/* 学費 */
.fee {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.fee__title {
  margin: 0 0 16px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.fee__head {
  margin: 0 0 24px;
  padding: 12px 18px;
  background: var(--color-teal);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 28px;
}

.fee__block + .fee__block {
  margin-top: 28px;
}

.fee__block-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.fee__block-title {
  margin: 0;
  color: #D2966E;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

.fee__block-desc {
  margin: 0 0 10px;
  color: #D2966E;
  font-size: 1.3rem;
  line-height: 1.7;
}

.fee__unit {
  flex-shrink: 0;
  margin: 0;
  color: #888;
  font-size: 1.1rem;
  line-height: 1.4;
}

.fee__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fee__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 1.3rem;
  line-height: 1.5;
}

.fee__table--simple {
  min-width: 0;
}

.fee__table th,
.fee__table td {
  padding: 10px 8px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  color: #333;
}

.fee__table thead th {
  background: #cce8e6;
  font-weight: bold;
}

.fee__table tbody th {
  background: #f5f5f5;
  font-weight: bold;
}

.fee__cell-note {
  display: block;
  margin-top: 2px;
  color: #888;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
}

/* 学校に相談 */
.contact {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.contact__title {
  margin: 0 0 20px;
  color: var(--color-teal);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.contact__body {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.contact__cta {
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  width: 48%;
  max-width: 360px;
}

.contact__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 15px 25px;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contact__btn--line {
  background: var(--color-green);
}

.contact__btn--doc {
  background: var(--color-pink);
}

.contact__btn-icon {
  flex-shrink: 0;
  width: 26px;
  height: auto;
  object-fit: contain;
}

.contact__btn-label {
  flex: 1;
  text-align: center;
}

.contact__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.contact__box {
  flex: 1;
  min-width: 0;
  padding: 20px 22px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.contact__box-title {
  margin: 0 0 10px;
  color: #3BBA6E;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}

.contact__box-text {
  margin: 0 0 12px;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact__box-list {
  margin: 0;
  padding-left: 1.2em;
  color: #333;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact__box-list li + li {
  margin-top: 2px;
}

.contact__box-text, .contact__box-list {
  font-size: 1.3rem;
}

/* アクセス */
.access {
  padding: 36px 20px 44px;
  background: var(--color-bg);
}

.access__head {
  margin: 0 0 12px;
  padding: 12px 18px;
  background: var(--color-teal);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 14px;
}

.access__subhead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 10px 16px;
  background: #F7F1E9;
  border-radius: 6px;
  color: #333;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}

.access__subhead-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-pink);
}

.access__address {
  margin: 0 0 10px;
  color: #888;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.access__map img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.access__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
  padding: 16px 24px;
  background: #cd9673;
  border-radius: 999px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 20px;
}

.access__btn-label {
  flex: 1;
  text-align: center;
}

.access__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-left: auto;
}

.access__route {
  margin-top: 28px;
  padding: 20px 0;
  border-radius: 8px;
}

.access__route .access__subhead {
  margin-bottom: 12px;
}

.access__route-map img {
  display: block;
  width: 100%;
}

/* フッター */
.footer {
  padding: 0 20px 40px;
  background: var(--color-bg);
}

.footer__card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 24px 20px;
  background: var(--color-white);
}

.footer__photo {
  flex-shrink: 0;
  width: 38%;
  max-width: 280px;
}

.footer__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.footer__gakuen {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 8px;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.4;
}

.footer__gakuen-icon {
  width: 100px;
  height: auto;
  object-fit: contain;
  text-align: left;
}

.footer__school {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
}

.footer__school-icon {
  flex-shrink: 0;
  width: 380px;
  height: auto;
  object-fit: contain;
}

.footer__school-name {
  color: #333;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}

.footer__address {
  margin: 0 0 14px;
  color: #666;
  font-size: 1.3rem;
  line-height: 1.6;
}

.footer__tel img {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.footer__tel-note {
  margin: 8px 0 0;
  color: #888;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer__copy {
  margin: 16px 0 0;
  color: #aaa;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 20px;
}

.section-line{
  position: relative;
}

.section-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 96%;
  height: 6px;
  border: 1px solid #D2966E;
  border-radius: 999px;
  box-sizing: border-box;
}

/* SP */
@media screen and (max-width: 640px) {

  body {
    font-size: 1.5rem;
  }
  .fv__tag {
    left: 10px;
    bottom: 24px;
    padding: 5px 10px;
    font-size: 1.8rem;
  }

  .fv__title-box {
    width: calc(100% - 24px);
    margin-top: -28px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .fv__title {
    font-size: 2.8rem;
  }

  .fv__lead {
    font-size: 1.5rem;
    padding: 0 12px;
  }

  .fv__cta {
    flex-direction: column;
    gap: 12px;
    padding: 16px 12px 24px;
  }

  .fv__btn {
    min-height: 52px;
    font-size: 1.6rem;
  }

  .fv__btn-label {
    text-align: center;
  }

  .anchor {
    padding: 28px 12px 32px;
  }

  .anchor__title-sub {
    font-size: 1.4rem;
    padding: 3px 14px;
  }

  .anchor__title-main {
    font-size: 2.8rem;
  }

  .anchor__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .anchor__item a {
    min-height: 56px;
    font-size: 1.4rem;
    padding: 10px 4px 20px;
  }

  .point {
    padding: 28px 12px 32px;
  }

  .point__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }

  .point__list {
    gap: 8px;
  }

  .point__head {
    gap: 10px;
    min-height: 52px;
    padding: 10px 12px;
  }

  .point__badge {
    width: 46px;
    height: 46px;
  }

  .point__badge-label {
    font-size: 1.4rem;
  }

  .point__badge-num {
    font-size: 2.4rem;
  }

  .point__badge-inner::after {
    bottom: -5px;
    width: 40px;
    height: 35px;
  }

  .point__label {
    font-size: 1.5rem;
  }

  .point__item[open] .point__body--with-media {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .point__text {
    font-size: 1.5rem;
    width: 100%;
  }

  .timetable {
    padding: 28px 12px 32px;
  }

  .timetable__title {
    font-size: 2.4rem;
  }

  .timetable__subtitle {
    margin-bottom: 16px;
    font-size: 1.5rem;
  }

  .timetable__note {
    font-size: 1.4rem;
  }

  .daily {
    padding: 28px 12px 32px;
  }

  .daily__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }

  .daily__box {
    flex-direction: column;
    gap: 24px;
    padding: 20px 14px;
  }

  .daily__media {
    width: 88px;
  }

  .daily__media img {
    width: 88px;
    height: 88px;
  }

  .daily__time {
    font-size: 1.5rem;
  }

  .daily__label {
    font-size: 1.8rem;
  }

  .daily__text {
    font-size: 1.4rem;
    text-align: center;
  }

  .job {
    padding: 28px 12px 32px;
  }

  .job__title-sub {
    padding: 3px 12px;
    font-size: 1.4rem;
  }

  .job__title-main {
    font-size: 2.8rem;
  }

  .job__list {
    gap: 6px;
  }

  .job__item {
    gap: 4px;
    display: block;
  }

  .job__category {
    padding: 8px 4px;
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .job__icon {
    width: 18px;
    height: 18px;
    margin: 0 4px 0 0;
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit
  }

  .job__category-label {
    font-size: 1.4rem;
  }

  .job__detail {
    padding: 15px;
    font-size: 1.4rem;
    border-radius: 0 0 8px 8px;
  }

  .sikaku {
    padding: 28px 12px 32px;
  }

  .sikaku__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .sikaku__list {
    gap: 24px;
  }

  .sikaku__item {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .sikaku__media {
    width: 120px;
  }

  .sikaku__media img {
    width: 120px;
    height: 86px;
  }

  .sikaku__body {
    width: 100%;
  }

  .sikaku__category {
    margin-bottom: 8px;
    padding: 5px 10px;
    font-size: 1.4rem;
  }

  .sikaku__quals li {
    font-size: 1.4rem;
  }

  .sikaku__desc, .sikaku__class {
    font-size: 1.4rem;
  }

  .admission {
    padding: 28px 12px 32px;
  }

  .admission__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .admission__block + .admission__block {
    margin-top: 24px;
  }

  .admission__head {
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 1.5rem;
  }

  .admission__lead {
    margin-bottom: 12px;
    font-size: 1.4rem;
  }

  .admission__box {
    margin-bottom: 14px;
    padding: 12px 14px;
  }

  .admission__box-title {
    font-size: 1.4rem;
  }

  .admission__box-lead, .admission__box-list, .admission__box-text {
    font-size: 1.4rem;
  }

  .admission__info-label {
    font-size: 1.4rem;
  }

  .admission__info-text {
    font-size: 1.4rem;
  }

  .support {
    padding: 28px 12px 32px;
  }

  .support__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }

  .support__head {
    padding: 8px 12px;
    font-size: 1.5rem;
  }

  .support__body {
    flex-direction: column;
    gap: 16px;
    padding: 14px 12px;
  }

  .support__subhead {
    font-size: 1.5rem;
  }

  .support__text {
    font-size: 1.4rem;
  }

  .support__note {
    font-size: 1.4rem;
  }

  .support__table {
    width: 100%;
    max-width: none;
  }

  .support__table-label {
    width: 76px;
    font-size: 1.4rem;
  }

  .support__table-value {
    font-size: 1.4rem;
  }

  .support__example {
    margin-top: 16px;
    padding: 16px 12px;
  }

  .support__example-title {
    margin-bottom: 14px;
    font-size: 1.5rem;
  }

  .support__flow {
    flex-direction: column;
    gap: 8px;
  }

  .support__card {
    width: 100%;
  }

  .support__flow-arrow {
    width: 2px;
    height: 16px;
  }

  .support__flow-arrow::after {
    right: 50%;
    top: auto;
    bottom: -1px;
    margin-top: 0;
    margin-right: -3px;
    transform: rotate(135deg);
  }

  .support__card-head {
    font-size: 1.4rem;
  }

  .support__card-sub {
    font-size: 1.4rem;
  }

  .support__card-total {
    font-size: 1.4rem;
  }

  .support__card-num {
    font-size: 2.4rem;
  }

  .support__card-box {
    font-size: 1.4rem;
  }

  .support__card-box .support__card-num {
    font-size: 2rem;
  }

  .support__jlpt {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-top: 16px;
    padding: 16px 12px;
  }

  .support__jlpt-title {
    font-size: 1.5rem;
  }

  .support__jlpt-text, .support__jlpt-note {
    font-size: 1.4rem;
  }

  .support__jlpt-cta {
    width: 100%;
    max-width: none;
    min-height: 80px;
    padding: 12px 14px;
  }

  .support__jlpt-cta-icon {
    width: 32px;
  }

  .support__jlpt-cta-sub {
    font-size: 1.4rem;
  }

  .support__jlpt-cta-main {
    font-size: 1.5rem;
  }

  .support__panel--housing {
    margin-top: 16px;
  }

  .support__housing {
    padding: 14px 12px;
  }

  .support__housing-lead {
    font-size: 1.4rem;
  }

  .support__housing-lead + .support__housing-lead {
    margin-bottom: 14px;
  }

  .support__housing-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support__housing-type {
    font-size: 1.4rem;
  }

  .support__housing-name {
    font-size: 1.4rem;
  }

  .support__housing-tel {
    font-size: 1.4rem;
  }

  .support__housing-btn {
    min-width: 130px;
    font-size: 1.4rem;
  }

  .fee {
    padding: 28px 12px 32px;
  }

  .fee__title {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }

  .fee__head {
    margin-bottom: 20px;
    padding: 8px 12px;
    font-size: 1.5rem;
  }

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

  .fee__block-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .fee__block-title {
    font-size: 1.4rem;
  }

  .fee__block-desc {
    font-size: 1.4rem;
  }

  .fee__unit {
    font-size: 1.4rem;
  }

  .fee__table {
    font-size: 1.4rem;
  }

  .fee__cell-note {
    font-size: 1.4rem;
  }

  .contact {
    padding: 28px 12px 32px;
  }

  .contact__title {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }

  .contact__body {
    flex-direction: column;
    gap: 16px;
  }

  .contact__cta {
    width: 100%;
    max-width: none;
  }

  .contact__btn {
    min-height: 64px;
    font-size: 1.6rem;
  }

  .contact__btn-icon {
    width: 28px;
  }

  .contact__btn-arrow {
    width: 26px;
    height: 26px;
    font-size: 1.5rem;
  }

  .contact__box {
    padding: 14px 16px;
  }

  .contact__box-title {
    font-size: 1.5rem;
  }

  .contact__box-text, .contact__box-list {
    font-size: 1.4rem;
  }

  .access {
    padding: 28px 12px 32px;
  }

  .access__head {
    padding: 8px 12px;
    font-size: 1.5rem;
  }

  .access__subhead {
    padding: 6px 12px;
    font-size: 1.4rem;
  }

  .access__address {
    font-size: 1.4rem;
  }

  .access__btn {
    margin-top: 14px;
    padding: 12px 16px;
    font-size: 1.5rem;
  }

  .access__route {
    margin-top: 20px;
    padding: 12px;
  }

  .footer {
    padding: 0 12px 28px;
  }

  .footer__card {
    flex-direction: column;
    gap: 16px;
    padding: 16px 14px;
  }

  .footer__photo {
    width: 100%;
    max-width: none;
  }

  .footer__school{
    max-width: 100%;
  }

  .footer__school-name {
    font-size: 1.5rem;
  }

  .footer__address {
    font-size: 1.4rem;
  }

  .footer__tel img {
    max-width: 240px;
  }

  .footer__tel-note {
    font-size: 1.4rem;
  }

  .footer__copy {
    font-size: 1.4rem;
  }

  .point__media{
    width: inherit;
    height: inherit;
  }

  .sikaku__desc {
    font-size: 1.4rem;
  }

  .sikaku__class {
    font-size: 1.4rem;
  }

  .admission__box-lead {
    font-size: 1.4rem;
  }

  .admission__box-list {
    font-size: 1.4rem;
  }

  .admission__box-text {
    font-size: 1.4rem;
  }

  .support__jlpt-text {
    font-size: 1.4rem;
  }

  .support__jlpt-note {
    font-size: 1.4rem;
  }

  .contact__box-text {
    font-size: 1.4rem;
  }

  .contact__box-list {
    font-size: 1.4rem;
  }

  .footer__gakuen {
    font-size: 1.4rem;
  }
}
