/* =========================================
   入試情報ページ - ラッパー（2カラム）
   ========================================= */

@media (min-width: 940px) {
  .exam-wrap {
    display: block;
  }

  .exam-content {
    display: block;
  }
}

/* =========================================
   入試情報ページ - ページタイトル
   ========================================= */

.exam-hero {
  padding: 40px 20px 32px;
  text-align: center;
}

.exam-hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #2c364b;
  margin-bottom: 14px;
}

.exam-hero-line {
  display: block;
  width: 120px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    #86C695 0%, #86C695 16.6%,
    #E5A83F 16.6%, #E5A83F 33.3%,
    #84BAE5 33.3%, #84BAE5 50%,
    #f092b5 50%, #f092b5 66.6%,
    #c75661 66.6%, #c75661 83.3%,
    #d18b94 83.3%, #d18b94 100%
  );
  border-radius: 2px;
}

@media (min-width: 940px) {
  .exam-hero {
    padding: 60px 30px 48px;
  }

  .exam-hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
  }

  .exam-hero-line {
    width: 300px;
    height: 4px;
  }
}

/* =========================================
   入試情報ページ - OCバナー
   ========================================= */

.exam-oc {
  padding: 0 20px 40px;
}

.exam-oc-inner {
  max-width: 1500px;
  margin: 0 auto;
}

.exam-oc-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.exam-oc-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s;
}

.exam-oc-link:hover img {
  opacity: 0.9;
}

@media (min-width: 940px) {
  .exam-oc {
    padding: 0 30px 56px;
  }
}

/* =========================================
   入試情報ページ - アドミッションポリシー
   ========================================= */

.exam-policy {
  padding: 48px 20px 56px;
}

/* 見出し */

.exam-policy-heading {
  text-align: center;
  margin-bottom: 32px;
}

.exam-policy-heading-main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2c364b;
  margin-bottom: 8px;
}

.exam-policy-heading-sub {
  font-size: 1.3rem;
  color: #6a7a9c;
  letter-spacing: 0.05em;
}

/* 2カラム（SP: 縦積み） */

.exam-policy-cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* カード */

.exam-policy-col {
  overflow: hidden;
}

.exam-policy-col--health {
  background-color: rgba(194, 214, 225, 0.2);
}

.exam-policy-col--child {
  background-color: rgba(233, 184, 205, 0.2);
}

/* 学科アコーディオン（トリガー／納付金アコーディオンと同様の下向き矢印） */

.exam-policy-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 40px 14px 20px;
  cursor: pointer;
  position: relative;
  text-align: center;
  line-height: 1.5;
  font: inherit;
}

.exam-policy-accordion-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: calc(100% - 28px);
}

.exam-policy-accordion-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s;
}

.exam-policy-accordion-btn[aria-expanded="true"]::after {
  transform: translateY(-35%) rotate(-135deg);
}

.exam-policy-col-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exam-policy-col-icon img {
  width: 100%;
  height: auto;
}

.exam-policy-col-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2c364b;
  text-align: left;
}

/* アコーディオン本文 */

.exam-policy-accordion-body {
  font-size: 1.3rem;
  color: #2c364b;
  line-height: 1.7;
}

/* カード本文 */

.exam-policy-col-lead {
  padding: 14px 0;
  margin: 0 16px;
  font-size: 1.3rem;
  line-height: 1.75;
  color: #2c364b;
  border-top: 1px solid #A6ABBA;
  border-bottom: 1px solid #A6ABBA;
}

/* 番号リスト */

.exam-policy-col-list {
  list-style: none;
  padding: 10px 20px 20px;
  counter-reset: policy-num;
}

.exam-policy-col-list-item {
  counter-increment: policy-num;
  font-size: 1.3rem;
  line-height: 1.65;
  color: #2c364b;
  padding: 8px 0 8px 20px;
  position: relative;
}

.exam-policy-col-list-item::before {
  content: counter(policy-num) ".";
  position: absolute;
  left: 0;
  top: 8px;
  font-weight: 700;
  color: #7a8fad;
  font-size: 1.2rem;
}

@media (min-width: 940px) {
  .exam-policy {
    padding: 64px 30px 72px;
  }

  .exam-policy-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .exam-policy-heading {
    margin-bottom: 40px;
  }

  .exam-policy-heading-main {
    font-size: 4.0rem;
    margin-bottom: 12px;
  }

  .exam-policy-heading-sub {
    font-size: 1.5rem;
  }

  /* PC: 横2カラム（開閉で高さが異なるとき、片方の背景が相手に引き伸ばされないようにする） */

  .exam-policy-cols {
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
  }

  .exam-policy-col {
    flex: 1;
    min-width: 0;
  }

  .exam-policy-col-lead {
    font-size: 1.4rem;
    margin: 0 32px;
    padding: 18px 0 14px;
  }

  .exam-policy-col-list {
    padding: 12px 32px 24px;
  }

  .exam-policy-col-list-item {
    font-size: 1.4rem;
  }

  .exam-policy-accordion-btn {
    padding: 14px 44px 14px 32px;
  }

  .exam-policy-accordion-body {
    font-size: 1.4rem;
  }
}

/* =========================================
   入試情報ページ - 変更点ボックス
   ========================================= */

.admission-changes {
  margin-top: 20px;
  margin-bottom: 32px;
  overflow: visible;
}

/* ヘッダー（C75661） */

.admission-changes-header {
  background-color: #C75661;
  position: relative;
  padding: 9px 20px 9px 56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission-changes-badge {
  position: absolute;
  top: -14px;
  left: 10px;
  width: 60px;
  height: auto;
}

.admission-changes-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
}

/* ボディ（E9B8CD） */

.admission-changes-body {
  background-color: rgba(233, 184, 205, 0.2);
  padding: 16px 16px 14px;
}

/* リスト（SP: 縦積み） */

.admission-changes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-bottom: 12px;
}

/* 各カード */

.admission-changes-item {
  background-color: #ffffff;
  border-radius: 8px;
  position: relative;
  padding: 48px 16px 48px 16px;
  min-height: 100px;
}

.admission-changes-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: auto;
}

.admission-changes-text {
  font-size: 1.4rem;
  line-height: 1.65;
  color: #2c364b;
}

.admission-changes-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: auto;
}

.admission-changes-note {
  font-size: 1.1rem;
  color: #5a3040;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 940px) {
  .admission-changes {
    margin-bottom: 48px;
  }

  .admission-changes-header {
    padding: 9px 30px 9px 70px;
  }

  .admission-changes-badge {
    top: -24px;
    left: 14px;
    width: auto;
  }

  .admission-changes-title {
    font-size: 2.0rem;
  }

  .admission-changes-body {
    padding: 20px 20px 16px;
  }

  /* PC: 3カラム横並び */

  .admission-changes-list {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 14px;
  }

  .admission-changes-item {
    flex: 1;
    padding: 52px 16px 52px 16px;
  }

  .admission-changes-num {
    width: 50px;
  }

  .admission-changes-text {
    font-size: 1.4rem;
  }

  .admission-changes-icon {
    width: 50px;
  }

  .admission-changes-note {
    font-size: 1.2rem;
  }
}

/* ============================================================
   2027年度募集定員 (exam-quota)
   ============================================================ */

.exam-quota {
  background-color: #F4F7F9;
  padding: 60px 20px;
}

.exam-quota-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.exam-quota-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.exam-quota-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.exam-quota-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

/* テーブル */
.exam-quota-table-wrap {
  border-radius: 8px;
}

.exam-quota-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  table-layout: fixed;
}

.exam-quota-th {
  background-color: #5EBC88;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #efefef;
  white-space: nowrap;
}

.exam-quota-th--dept {
  width: 30%;
}

.exam-quota-th--ao,
.exam-quota-th--suisen,
.exam-quota-th--ippan,
.exam-quota-th--other,
.exam-quota-th--total {
  width: 14%;
}

.exam-quota-dept {
  font-weight: 600;
  padding: 14px 12px;
  text-align: left;
  border: none;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #2c364b;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.exam-quota-dept img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}

.exam-quota-dept--health {
  border-left: none;
}

.exam-quota-dept--child {
  border-left: none;
}

.exam-quota-table tbody td {
  text-align: center;
  padding: 14px 8px;
  border: none;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #2c364b;
}

.exam-quota-total {
  background-color: #ffffff;
  color: #4a7abf;
}

/* SP */
@media screen and (max-width: 939px) {
  .exam-quota {
    padding: 40px 16px;
  }

  .exam-quota-heading-main {
    font-size: 2rem;
  }

  /* テーブル */
  .exam-quota-table-wrap {
    overflow: scroll;
  }
  .exam-quota-table {
    min-width: 1000px;
  }  
}

/* PC */
@media screen and (min-width: 940px) {
  .exam-quota {
    padding: 80px 40px;
  }

  .exam-quota-heading-main {
    font-size: 3.2rem;
  }

  /* テーブル */
  .exam-quota-table-wrap {
    border-radius: 16px;
    overflow: hidden;
  }
}


/* ============================================================
   入試カレンダー (exam-cal)
   ============================================================ */

.exam-cal {
  padding: 60px 20px;
}

.exam-cal-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.exam-cal-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.exam-cal-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.exam-cal-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

/* テーブルラッパー（PC の thead sticky のため overflow:hidden にしない） */

.exam-cal-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}

@media screen and (min-width: 940px) {
  .exam-cal-table-outer--a {
    border-radius: 8px 0 0 8px;
  }

  .exam-cal-table-outer--b {
    border-radius: 0 8px 8px 0;
  }
}

.exam-cal-table-outer {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* テーブル共通 */
.exam-cal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  table-layout: fixed;
}

/* ヘッダー行 */
.exam-cal-th {
  background-color: #5EBC88;
  color: #ffffff;
  font-weight: 600;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #ffffff;
  vertical-align: middle;
}

.exam-cal-th small {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  margin-top: 2px;
}

.exam-cal-th--month {
  width: 14%;
}

.exam-cal-th--interactive {
  padding: 0;
  vertical-align: middle;
}

.exam-cal-th-trigger {
  display: block;
  width: 100%;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: inherit;
  text-align: center;
  padding: 10px 8px;
  line-height: inherit;
  vertical-align: middle;
}

.exam-cal-th-trigger:hover {
  opacity: 0.92;
}

.exam-cal-th-trigger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -2px;
}

.exam-cal-th-trigger small {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  margin-top: 2px;
}

/* 月セル */

.exam-cal-month {
  background-color: #ffffff;
  color: #333;
  font-weight: 700;
  text-align: center;
  padding: 8px 4px;
  border: 1px solid #c8d8e8;
  vertical-align: middle;
  white-space: nowrap;
}

/* 年切り替わり月 */
.exam-cal-month--newyear {
  vertical-align: middle;
}

.exam-cal-month-year {
  display: block;
  font-size: 0.75em;
  font-weight: 400;
  color: #888;
  margin-bottom: 2px;
}

/* データセル */
.exam-cal-cell {
  border: 1px solid #c8d8e8;
  padding: 8px;
  vertical-align: middle;
  text-align: center;
  background-color: #ffffff;
}

/* tbody 内で数えた奇数行のストライプ（#f4f7f9 40%） */
.exam-cal-table tbody tr:nth-child(odd) .exam-cal-month,
.exam-cal-table tbody tr:nth-child(odd) .exam-cal-cell {
  background-color: rgba(244, 247, 249, 0.4);
}

/* tbody: 1列目（月）以外のセルを上寄せ */
.exam-cal-table tbody td.exam-cal-cell {
  vertical-align: top;
}

/* テーブルA: 指定列を前月方向へ少し重ねる（td 直下の全要素を relative + 負の top） */
.exam-cal-table-outer--a .exam-cal-table tbody tr:nth-child(5) td.exam-cal-cell--ao {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--a .exam-cal-table tbody tr:nth-child(5) td.exam-cal-cell--ao > * {
  position: relative;
  top: -5rem;
}

.exam-cal-table-outer--a .exam-cal-table tbody tr:nth-child(n + 6):nth-child(-n + 10) td.exam-cal-cell--jiko {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--a .exam-cal-table tbody tr:nth-child(n + 6):nth-child(-n + 10) td.exam-cal-cell--jiko > * {
  position: relative;
  top: -5rem;
}

/* テーブルB: 指定校（11月--shitei / 12・1月--kobo）・一般（1〜3月）・社会人（12月・1〜3月）を前月方向へ重ねる */
.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(6) td.exam-cal-cell--shitei {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(6) td.exam-cal-cell--shitei > * {
  position: relative;
  top: -5rem;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(7) td.exam-cal-cell--kobo,
.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(8) td.exam-cal-cell--kobo {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(7) td.exam-cal-cell--kobo > *,
.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(8) td.exam-cal-cell--kobo > * {
  position: relative;
  top: -5rem;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(n + 8):nth-child(-n + 10) td.exam-cal-cell--ippan {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(n + 8):nth-child(-n + 10) td.exam-cal-cell--ippan > * {
  position: relative;
  top: -5rem;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(7) td.exam-cal-cell--shakai,
.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(n + 8):nth-child(-n + 10) td.exam-cal-cell--shakai {
  position: relative;
  z-index: 1;
}

.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(7) td.exam-cal-cell--shakai > *,
.exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(n + 8):nth-child(-n + 10) td.exam-cal-cell--shakai > * {
  position: relative;
  top: -5rem;
}

/* カレンダーアイテム */
.exam-cal-item {
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 6px;
  font-size: 1.25rem;
  line-height: 1.5;
  background-color: #f4f7f9;
  text-align: center;
}

.exam-cal-item:last-child {
  margin-bottom: 0;
}

/* アイテム名（タイトル）部分 */
.exam-cal-item-name {
  font-weight: 700;
  padding: 4px 8px;
  color: #ffffff;
  margin-bottom: 0;
}

/* アイテム本文 */
.exam-cal-item-line {
  padding: 2px 8px;
  margin-bottom: 0;
  background-color: transparent;
}

.exam-cal-item-line--mt {
  margin-top: 4px;
}

/* 各選抜ごとのアイテムカラー */
.exam-cal-item--ao {
  border: 1px solid #61a682;
}
.exam-cal-item--ao .exam-cal-item-name {
  background-color: #61a682;
}

.exam-cal-item--jiko {
  border: 1px solid #7b79ae;
}
.exam-cal-item--jiko .exam-cal-item-name {
  background-color: #7b79ae;
}

.exam-cal-item--kobo {
  border: 1px solid #cc7f46;
}
.exam-cal-item--kobo .exam-cal-item-name {
  background-color: #cc7f46;
}

.exam-cal-item--shitei {
  border: 1px solid #68a5d9;
}
.exam-cal-item--shitei .exam-cal-item-name {
  background-color: #68a5d9;
}

.exam-cal-item--ippan {
  border: 1px solid #eda0b1;
}
.exam-cal-item--ippan .exam-cal-item-name {
  background-color: #eda0b1;
}

.exam-cal-item--shakai {
  border: 1px solid #f4c05e;
}
.exam-cal-item--shakai .exam-cal-item-name {
  background-color: #f4c05e;
}

/* SP: 2テーブルを縦積み、上のテーブルの下罫線を非表示で繋げる */
@media screen and (max-width: 939px) {
  .exam-cal-table-outer--a {
    border-radius: 8px 8px 0 0;
  }

  .exam-cal-table-outer--b {
    border-radius: 0 0 8px 8px;
  }

  .exam-cal {
    padding: 40px 0;
  }

  .exam-cal-inner {
    padding: 0 16px;
  }

  .exam-cal-table-outer--a .exam-cal-table {
    border-bottom: none;
  }

  .exam-cal-table-outer--a .exam-cal-table tbody tr:last-child td,
  .exam-cal-table-outer--a .exam-cal-table tbody tr:last-child th {
    border-bottom: none;
  }

  /* テーブル共通 */
  .exam-cal-table {
    min-width: 600px;
  }

  /* テーブルB（指定校推薦・一般・社会人）: 空の 6月～10月行を非表示 */
  .exam-cal-table-outer--b .exam-cal-table tbody tr:nth-child(-n + 5) {
    display: none;
  }

  /* SP: 1行目をビューポートに張り付かせない（横スクロール仕様との兼ね合いで sticky は PC のみ） */
  .exam-cal-table thead th {
    position: static;
    top: auto;
    z-index: auto;
    box-shadow: none;
  }
}

/* PC: 2テーブルを横並びに見せる */
@media screen and (min-width: 940px) {
  .exam-cal {
    padding: 80px 40px;
  }

  .exam-cal-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .exam-cal-table-outer {
    overflow-x: visible;
    overflow-y: visible;
  }

  .exam-cal-table-outer--a {
    flex: 0 0 55%;
  }

  .exam-cal-table-outer--b {
    flex: 0 0 45%;
  }

  /* 隣接するテーブルの境界を共有させる */
  .exam-cal-table-outer--b .exam-cal-table {
    margin-left: -1px;
  }

  /* PC では月列ヘッダーをテーブルBで非表示にして、テーブルAの月と揃える */
  .exam-cal-table-outer--b .exam-cal-th--month,
  .exam-cal-table-outer--b .exam-cal-month,
  .exam-cal-table-outer--b .exam-cal-year-row {
    display: none;
  }

  .exam-cal-heading-main {
    font-size: 3.2rem;
  }

  /* スクロール時もヘッダー行を表示（PC のみ／SP は横スクロール用ラッパーと両立しないため通常表示） */

  .exam-cal-table thead th {
    position: -webkit-sticky;
    position: sticky;
    z-index: 25;
    top: 61px;
    box-shadow: 0 1px 2px rgba(44, 54, 75, 0.12);
  }
}

/* =========================================
   インターネット出願
   ========================================= */

.internet-apply {
  background-color: #f4f7f9;
  padding: 50px 20px;
}

.internet-apply-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.internet-apply-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.internet-apply-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.internet-apply-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

@media (min-width: 940px) {
  .internet-apply-heading-main {
    font-size: 3.2rem;
  }
}

/* バナー */
.internet-apply-banners {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.internet-apply-banner {
  flex: 1;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  transition: opacity 0.2s;
}

.internet-apply-banner:hover {
  opacity: 0.85;
}

.internet-apply-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 940px) {
  .internet-apply-banners {
    gap: 24px;
    margin-bottom: 48px;
  }
}

/* Step全体 */
.internet-apply-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Step カード */
.internet-apply-step {
  position: relative;
  width: 100%;
}

.internet-apply-step-num {
  position: absolute;
  top: -10px;
  left: -5px;
  width: 68px;
  z-index: 1;
}

.internet-apply-step-num img {
  width: auto;
  height: auto;
  display: block;
}

.internet-apply-step-body {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 20px 18px 72px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  color: #2c364b;
}

@media (min-width: 940px) {
  .internet-apply-step-num {
    width: 84px;
    top: -12px;
    left: -5px;
  }

  .internet-apply-step-body {
    padding: 24px 28px 22px 88px;
  }
}

/* Step 見出し */
.internet-apply-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3a9e88;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media (min-width: 940px) {
  .internet-apply-step-title {
    font-size: 1.8rem;
  }
}

/* Step 期限ラベル */
.internet-apply-step-deadline {
  font-size: 0.85em;
  font-weight: 700;
  color: #C75661;
}

/* Step テキスト */
.internet-apply-step-text {
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
  margin-bottom: 8px;
}

.internet-apply-step-text:last-child {
  margin-bottom: 0;
}

/* Step 番号付きリスト */
.internet-apply-step-list {
  list-style: decimal;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
  padding-left: 1.4em;
  margin-bottom: 8px;
}

.internet-apply-step-list:last-child {
  margin-bottom: 0;
}

.internet-apply-step-list li {
  margin-bottom: 4px;
}

/* Step 注記（ピンク系） */
.internet-apply-step-note {
  font-size: 1.3rem;
  color: #C75661;
  line-height: 1.6;
  margin-top: 8px;
}

/* Step 日付ラベル */
.internet-apply-step-label-text {
  font-size: 1.4rem;
  color: #2c364b;
  margin-bottom: 6px;
}

/* Step 送り先住所 */
.internet-apply-step-address {
  font-size: 1.3rem;
  color: #C75661;
  margin-top: 6px;
  line-height: 1.6;
}

/* Step 間の矢印 */
.internet-apply-arrow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 16px;
  position: relative;
}

.internet-apply-arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-right: 3px solid #2c364b;
  border-bottom: 3px solid #2c364b;
  transform: rotate(45deg) translateY(-4px);
}

@media (min-width: 940px) {
  .internet-apply-arrow::after {
    width: 24px;
    height: 24px;
  }
}

/* =========================================
   出願書類ダウンロード
   ========================================= */

.dl-docs {
  background-color: #fff;
  padding: 50px 20px;
}

.dl-docs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.dl-docs-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.dl-docs-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.dl-docs-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

@media (min-width: 940px) {
  .dl-docs-heading-main {
    font-size: 3.2rem;
  }
}

/* カードグリッド */
.dl-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 940px) {
  .dl-docs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* カード */
.dl-docs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 36px 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  min-height: 90px;
}

.dl-docs-card:hover {
  opacity: 0.85;
}

.dl-docs-card--shitei { background-color: #68a5d9; }
.dl-docs-card--kobo   { background-color: #cc7f46; }
.dl-docs-card--ao     { background-color: #61a682; }
.dl-docs-card--sogo   { background-color: #7b79ae; }
.dl-docs-card--ippan  { background-color: #eda0b1; }
.dl-docs-card--shakai { background-color: #f4c05e; }

.dl-docs-card-badge {
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #444;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
}

.dl-docs-card-badges {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: max-content;
}

.dl-docs-card-badges .dl-docs-card-badge {
  position: static;
  transform: none;
}

.dl-docs-card--ao {
  padding-top: 80px;
}

@media (min-width: 940px) {
  .dl-docs-card-badges {
    flex-direction: row;
    gap: 6px;
    top: 10px;
  }

  .dl-docs-card-badge {
    top: 10px;
  }

  .dl-docs-card--ao {
    padding-top: 48px;
  }
}

.dl-docs-card-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.dl-docs-card-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 4px;
}

@media (min-width: 940px) {
  .dl-docs-card {
    padding: 40px 18px 28px;
    min-height: 100px;
  }

  .dl-docs-card-title {
    font-size: 1.5rem;
  }
}

/* 注記エリア */
.dl-docs-note {
  border-top: 1px solid #e0e0e0;
  padding-top: 18px;
}

.dl-docs-note-text {
  font-size: 1.4rem;
  color: #2c364b;
  margin-bottom: 8px;
}

.dl-docs-note-list {
  list-style: disc;
  padding-left: 1.4em;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.8;
}

.dl-docs-note-list a {
  text-decoration: underline;
}
.dl-docs-note-list a:hover {
  text-decoration: none;
}

/* =========================================
   納付金/奨学金
   ========================================= */

.tuition {
  background-color: #f4f7f9;
  padding: 50px 20px;
}

.tuition-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.tuition-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.tuition-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.tuition-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

@media (min-width: 940px) {
  .tuition-heading-main {
    font-size: 3.2rem;
  }
}

/* アコーディオン共通 */
.tuition-accordion-list {
  list-style: none;
  border-top: 1px solid #d0d8e0;
}

.tuition-accordion-item {
  border-bottom: 1px solid #d0d8e0;
}

.tuition-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 40px 16px 4px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c364b;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.tuition-accordion-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s;
}

.tuition-accordion-btn[aria-expanded="true"]::after {
  transform: translateY(-35%) rotate(-135deg);
}

.tuition-accordion-body {
  padding: 0 4px 16px;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
}

@media (min-width: 940px) {
  .tuition-accordion-btn {
    font-size: 1.6rem;
    padding: 18px 44px 18px 8px;
  }

  .tuition-accordion-body {
    padding: 0 8px 20px;
  }
}

/* 本学独自奨学金: 続く表見出しの上余白（受験生表の直後の「在学生対象〜」） */

.tuition-accordion-body .tuition-table-scroll + .tuition-table-subtitle {
  margin-top: 1.75rem;
}

@media (min-width: 940px) {
  .tuition-accordion-body .tuition-table-scroll + .tuition-table-subtitle {
    margin-top: 2.25rem;
  }
}

/* =========================================
   その他の履修制度
   ========================================= */

.other-courses {
  background-color: #fff;
  padding: 50px 20px;
}

.other-courses-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.other-courses-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.other-courses-heading-line {
  flex: 1;
  height: 2px;
  background-color: #2C364B;
}

.other-courses-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
  color: #2c364b;
}

@media (min-width: 940px) {
  .other-courses-heading-main {
    font-size: 3.2rem;
  }
}

/* アコーディオン */
.other-courses-accordion-list {
  list-style: none;
  border-top: 1px solid #d0d8e0;
}

.other-courses-accordion-item {
  border-bottom: 1px solid #d0d8e0;
}

.other-courses-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 40px 16px 4px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2c364b;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.other-courses-accordion-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s;
}

.other-courses-accordion-btn[aria-expanded="true"]::after {
  transform: translateY(-35%) rotate(-135deg);
}

.other-courses-accordion-body {
  padding: 0 4px 16px;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
}

@media (min-width: 940px) {
  .other-courses-accordion-btn {
    font-size: 1.6rem;
    padding: 18px 44px 18px 8px;
  }

  .other-courses-accordion-body {
    padding: 0 8px 20px;
  }
}

/* =========================================
   入学者出身高校
   ========================================= */

.nyugaku {
  background-color: #fff;
  padding: 50px 20px;
}

.nyugaku-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し */
.nyugaku-heading {
  text-align: center;
  margin-bottom: 32px;
}

.nyugaku-heading-main {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c364b;
  margin-bottom: 8px;
}

.nyugaku-heading-sub {
  font-size: 1.4rem;
  color: #6a7a9c;
}

@media (min-width: 940px) {
  .nyugaku-heading-main {
    font-size: 3.2rem;
  }
}

/* 地図＋リスト レイアウト */
.nyugaku-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 940px) {
  .nyugaku-body {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

/* 地図 */
.nyugaku-map {
  flex-shrink: 0;
}

.nyugaku-map img,
.nyugaku-map .nyugaku-map-object {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 0;
}

@media (min-width: 940px) {
  .nyugaku-map {
    flex: 1;
    flex-shrink: 1;
  }

  .nyugaku-map img,
  .nyugaku-map .nyugaku-map-object {
    width: 100%;
    margin: 0;
  }
}

/* アコーディオン */
/* nyugaku アコーディオン */
.nyugaku-accordion-list {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nyugaku-accordion-item {
  border-radius: 6px;
}

.nyugaku-accordion-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #a6abba;
  border-radius: 6px;
  text-align: left;
  padding: 12px 14px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c364b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.5;
  transition: background 0.15s;
}

.nyugaku-accordion-btn:hover {
  background: #f8f8f8;
}

/* ボタン左側：●＋地域名 */
.nyugaku-btn-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ボタン右側：「詳細」＋chevron */
.nyugaku-btn-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nyugaku-btn-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #666;
}

/* chevron */
.nyugaku-btn-right::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.nyugaku-accordion-btn[aria-expanded="true"] .nyugaku-btn-right::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* 地域名テキスト */
.nyugaku-region-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c364b;
}

/* 色付き●ドット（ボタン内） */
.nyugaku-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* アコーディオン本体（枠外表示） */
.nyugaku-accordion-body {
  padding: 4px 1em 8px;
  border-top: none;
  background: transparent;
}

/* 学校リスト */
.nyugaku-school-list {
  list-style: none;
}

.nyugaku-school-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #a6abba;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.6;
}

.nyugaku-school-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 都道府県名ラベル（●の代わり） */
.nyugaku-school-pref {
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 4.5em;
  flex-shrink: 0;
  line-height: 1.6;
}

.nyugaku-school-names {
  flex: 1;
}

@media (min-width: 940px) {
  .nyugaku-accordion-list {
    flex: 1;
  }

  .nyugaku-accordion-btn {
    padding: 14px 18px;
  }

  .nyugaku-region-name {
    font-size: 1.4rem;
  }

  .nyugaku-accordion-body {
    padding: 4px 1em 16px;
  }

  .nyugaku-school-item {
    font-size: 1.4rem;
  }
}

/* =========================================
   tuition アコーディオン内コンテンツ
   ========================================= */

.tuition-cell--wrap {
  white-space: normal;
  min-width: 160px;
}

.tuition-cell--center {
  text-align: center;
}


/* 日本学生支援機構 info エリア */
.tuition-jasso-info {
  margin-top: 24px;
  padding-top: 20px;
}

.tuition-jasso-info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c4801e;
}

.tuition-jasso-info-badge {
  display: inline;
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.tuition-jasso-info-plus {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.tuition-jasso-desc {
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tuition-jasso-desc p + p {
  margin-top: 4px;
}

.tuition-jasso-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tuition-jasso-images img {
  width: 100%;
  height: auto;
  display: block;
}

.tuition-jasso-divider {
  display: none;
}

@media (min-width: 940px) {
  .tuition-jasso-images {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .tuition-jasso-images img {
    width: auto;
  }

  .tuition-jasso-divider {
    display: block;
    width: 1px;
    border-left: 1px dashed #a6abba;
    align-self: stretch;
    margin: 0 20px;
  }
}

/* ローン テキスト系 */
.tuition-loan-text {
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
  margin-bottom: 10px;
}

.tuition-loan-box {
  background-color: #fff;
  padding: 20px 24px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.tuition-loan-list {
  list-style: disc;
  padding-left: 1.4em;
  font-size: 1.4rem;
  color: #5ebc88;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 10px;
}

.tuition-loan-link {
  color: #5ebc88;
}

/* 提携ローン ブロック */
.tuition-partner-loan-block {
  background-color: #fff;
  padding: 20px 24px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.tuition-partner-loan-block:last-of-type {
  margin-bottom: 0;
}

.tuition-partner-loan-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tuition-partner-loan-title a {
  color: #5ebc88;
  text-decoration: none;
}

.tuition-partner-loan-title a::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 5px;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3Csvg xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' viewBox%3D'0 0 24 24'%3E%3Cpath fill%3D'%235ebc88' d%3D'M19 19H5V5h7V3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

.tuition-partner-loan-text {
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.7;
  margin-bottom: 6px;
}

.tuition-partner-loan-link {
  color: #2c364b;
  text-decoration: underline;
}

.tuition-partner-loan-link:hover {
  text-decoration: none;
}

/* 提携ローン ボタン群 */
.tuition-partner-loan-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.tuition-partner-loan-btn {
  display: block;
  background-color: #5ebc88;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.tuition-partner-loan-btn:hover {
  opacity: 0.85;
}

@media (min-width: 940px) {
  .tuition-loan-list {
    font-size: 1.6rem;
  }

  .tuition-partner-loan-title a {
    font-size: 1.8rem;
  }
    
  .tuition-partner-loan-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .tuition-partner-loan-btn {
    flex: none;
    width: 280px;
  }
}

/* =========================================
   その他の履修制度 アコーディオン内コンテンツ
   ========================================= */

/* 共通テキスト */
.oc-text {
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* 共通見出し */
.oc-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #5ebc88;
  margin: 18px 0 8px;
}

/* 共通リスト */
.oc-list {
  list-style: disc;
  padding-left: 1.4em;
  font-size: 1.4rem;
  color: #2c364b;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* 共通注記 */
.oc-note {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
  margin-top: 6px;
}

/* テーブルタイトル */
.oc-table-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c364b;
  background-color: #e8f7ed;
  margin: 20px 0 15px;
  padding: 10px 16px;
  text-align: center;
}

.oc-table-title--red {
  color: #2c364b;
  background-color: #f4e9eb;
}

/* テーブル色バリエーション */

/* green: thead #5ebc88 / tbody #f7fcf9（tuition-tableのデフォルトと同じ） */
.oc-table--green thead tr {
  background-color: #5ebc88;
}

.oc-table--green tbody tr {
  background-color: #f7fcf9;
}

/* green: 1行目1列目 白背景・左上罫線なし */
.oc-table--green thead tr th:first-child {
  background-color: #fff;
  border-left: none;
  border-top: none;
}

/* green: 最終行最終列 */
.oc-table--green tbody tr:last-child td:last-child {
  background-color: #d3efde;
}

/* red: thead #c75661 / tbody #ffffff */
.oc-table--red thead tr {
  background-color: #c75661;
}

.oc-table--red tbody tr {
  background-color: #fff;
}

/* red: 1行目1列目 白背景・左上罫線なし */
.oc-table--red thead tr th:first-child {
  background-color: #fff;
  border-left: none;
  border-top: none;
}

/* red: 最終行最終列 */
.oc-table--red tbody tr:last-child td:last-child {
  background-color: #f4e9eb;
}

/* 3列目もgreen（tbody td:nth-child(3)） */
.oc-table--col3green tbody td:last-child {
  background-color: #5ebc88;
  color: #fff;
}

/* 白tbody・上寄せ */
.oc-table--white-top tbody tr {
  background-color: #fff;
}

.oc-table--white-top tbody td {
  vertical-align: top;
}

/* テーブルを引っ付ける */
.oc-table-group .tuition-table-scroll {
  margin-bottom: 0;
}

.oc-table-group .tuition-table-scroll + .tuition-table-scroll thead tr th {
  border-top: none;
}

/* 科目等履修生：3列等幅 */
.oc-table--fixed-3col {
  table-layout: fixed;
  width: 100%;
}

.oc-table--fixed-3col thead th {
  width: 33.33%;
}

/* 聴講生：1列目幅揃え */
.oc-table--fixed-col1 {
  table-layout: fixed;
  width: 100%;
}

.oc-table--fixed-col1 thead th:first-child {
  width: 25%;
}

/* 科目等履修生・聴講生：SP で表幅を確保し横スクロール */
@media screen and (max-width: 939px) {
  .oc-table-group--kamoku .tuition-table-scroll,
  .oc-table-group--chokou .tuition-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .oc-table-group--kamoku .tuition-table.oc-table--fixed-3col,
  .oc-table-group--chokou .tuition-table.oc-table--fixed-col1 {
    width: 100%;
    min-width: 600px;
  }
}

/* tbody内のth（行ラベル）スタイル */

.oc-table--red tbody th[scope="row"] {
  background-color: #f9f7f8;
}

/* 長期履修制度 上部レイアウト（テキスト + 画像） */
.oc-longterm-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 940px) {
  .oc-longterm-top {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }
  .oc-table--fixed-col1 thead th:first-child {
    width: 33%;
  }
}

.oc-longterm-text {
  flex: 1;
}

.oc-longterm-img {
  flex-shrink: 0;
}

.oc-longterm-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (min-width: 940px) {
  .oc-longterm-img {
    width: 42%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .oc-longterm-img img {
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

/* 長期履修制度 テーブル間の下向き矢印 */
.oc-longterm-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.oc-longterm-arrow::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-right: 3px solid #888;
  border-bottom: 3px solid #888;
  transform: rotate(45deg) translateY(-4px);
}

