@charset "UTF-8";

:root {
  --ThemeColor-Sumi: #141414;
  --ThemeColor-Sosyoku: #eeebea;
  --ThemeColor-Tokiwa: #086936;
  --ThemeColor-Asagi: #25a8be;
  --ThemeColor-Moegi: #8eb73b;
  --ThemeColor-Usuki: #fffcd3;
  --ThemeColor-Kiiro: #fbcf21;
  --Gray-500: #808080;
  --Gray-200: #c7c7c7;
  --Gray-50: #dfdfdf;
  --BrandColor-LINE: #06c755;
  --BrandColor-Youtube: #cd201f;
  --PageColor-SummerGreen: #007b43;
  --PageColor-EmeraldGreen: #00a258;
  --PageColor-Matsuba: #385226;
  --PageColor-Ecru: #eae2d5;
  --PageColor-OysterWhite: #f0ede2;
  --PageColor-PearlWhite: #f7f5ef;
  --PageColor-LightGreen: #fafcf8;
  --PageColor-Haikimidori: #e1e4e0;

  --inner-width: 1000px;
  --inner-wide-width: 1220px;
  --inner-padding-pc: 3.0769%;
  --inner-padding-sp: 5.625%;

  --font-base: "Zen Kaku Gothic New", serif;
  --font-mincho: "Shippori Mincho", serif;
  --font-base-en: "Oswald", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 740px) {
  html {
    scroll-padding-top: calc(60 / 320 * 100vw);
  }
}

/* ==========================================================================
   鍼灸学科について - メインコンテナ
   ========================================================================== */

/* 鍼灸学科について - メインコンテナ */
.sh-about {
  font-family: var(--font-base);
  font-weight: 500;
  color: var(--ThemeColor-Sumi);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sh-about p {
  letter-spacing: 0;
}
.sh-about *,
.sh-about *:before,
.sh-about *:after {
  box-sizing: border-box;
}

/* 共通インナー */
.sh-about__inner {
  max-width: calc(var(--inner-width) + var(--inner-padding-pc) * 2);
  margin-inline: auto;
  padding-inline: var(--inner-padding-pc);
}
@media (max-width: 740px) {
  .sh-about__inner {
    padding-inline: var(--inner-padding-sp);
  }
}
:where(.sh-about a) {
  text-decoration: none;
}

/* ==========================================================================
   共通コンポーネント
   ========================================================================== */

.sh-hidden-sp {
  display: block;
}
.sh-hidden-pc {
  display: none;
}
@media (max-width: 740px) {
  .sh-hidden-sp {
    display: none;
  }
  .sh-hidden-pc {
    display: block;
  }
}

/* タブコンポーネント */
.sh-tab {
  display: flex;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* タブコンテンツ */
.sh-tab-content {
  display: none;
}
.sh-tab-content.active {
  display: block;
}

/* SP版タブ */
@media (max-width: 740px) {
  .sh-tab--sp {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .sh-tab--sp .sh-tab__item {
    padding: 12px 16px;
    font-size: 1.4rem;
    font-weight: 600;
    background-color: transparent;
    color: white;
  }
  .sh-tab--sp .sh-tab__item.active {
    background-color: white;
    color: var(--ThemeColor-Moegi);
  }
}

/* ボタンコンポーネント */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border: none;
  border-radius: 28px;
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* ボタンバリエーション */
.sh-btn--primary {
  background-color: white;
  border: 2px solid var(--PageColor-SummerGreen);
  color: var(--PageColor-SummerGreen);
}
.sh-btn--primary:hover {
  background-color: var(--PageColor-SummerGreen);
  color: white;
}
.sh-btn--outline {
  background-color: white;
  border: 2px solid var(--PageColor-Matsuba);
  color: var(--PageColor-Matsuba);
}
.sh-btn--outline:hover {
  background-color: var(--PageColor-Matsuba);
  color: white;
}
.sh-btn--link:hover {
  opacity: 0.8;
}

/* ボタンアイコン */
.sh-btn--with-icon {
  gap: 10px;
}
.sh-btn--with-lines {
  gap: 10px;
}
.sh-btn--with-lines::before,
.sh-btn--with-lines::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: currentColor;
  background-image: repeating-linear-gradient(to right, currentColor, currentColor 4px, transparent 4px, transparent 8px);
}

/* バッジコンポーネント */
.sh-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.sh-badge--pickup {
  width: 58px;
  height: 58px;
  background-color: var(--ThemeColor-Kiiro);
  border-radius: 50%;
  color: var(--PageColor-Matsuba);
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 740px) {
  .sh-badge--pickup {
    width: calc(58 / 320 * 100vw);
    height: calc(58 / 320 * 100vw);
    font-size: calc(14 / 320 * 100vw);
  }
}

/* カードコンポーネント */
.sh-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.sh-card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.sh-card__content {
  padding: 24px;
}
.sh-card__title {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sh-card__text {
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--ThemeColor-Sumi);
}

/* ==========================================================================
   メインビジュアル（MV）セクション
   ========================================================================== */

.sh-mv {
  position: relative;
  width: 100%;
  height: 32rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 740px) {
  .sh-mv {
    height: calc(240 / 320 * 100vw);
  }
}
.sh-mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sh-mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-mv-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 24px;
}
@media (max-width: 740px) {
  .sh-mv-content {
    max-width: calc(280 / 320 * 100vw);
    margin-bottom: 0;
  }
}
.sh-mv-copy {
  position: relative;
  margin-top: 14px;
  width: 100%;
  z-index: 0;
  text-align: center;
}
.sh-mv-copy::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(142, 183, 59, 0) 0%, rgba(142, 183, 59, 1) 50%, rgba(142, 183, 59, 0) 100%);
  z-index: -1;
}
@media (max-width: 740px) {
  .sh-mv-copy {
    margin-bottom: calc(16 / 320 * 100vw);
  }
}
.sh-mv-text {
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em !important;
  color: white;
  white-space: nowrap;
}
@media (max-width: 740px) {
  .sh-mv-text {
    font-size: calc(16 / 320 * 100vw);
  }
}
.sh-mv-title {
  font-family: var(--font-mincho);
  font-size: 7.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em !important;
  color: white;
  text-align: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  margin: 0;
}
@media (max-width: 740px) {
  .sh-mv-title {
    font-size: calc(40 / 320 * 100vw);
  }
}

/* 概要セクション */
.sh-overview {
  padding: 44px 0 0;
  background-color: white;
}
@media (max-width: 740px) {
  .sh-overview {
    padding: calc(40 / 320 * 100vw) 0 0;
  }
}
.sh-overview__title {
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ThemeColor-Moegi);
  text-align: center;
}
@media (max-width: 1200px) {
  .sh-overview__title {
    font-size: clamp(2.6rem, calc(36 / 1200 * 100vw), 3.6rem);
  }
}
@media (max-width: 740px) {
  .sh-overview__title {
    font-size: calc(22 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-overview__text {
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  color: var(--ThemeColor-Sumi);
  text-align: justify;
  max-width: 640px;
  margin-inline: auto;
  margin-top: 11px;
}
@media (max-width: 740px) {
  .sh-overview__text {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
    margin-top: calc(20 / 320 * 100vw);
  }
}

/* 資格セクション */
.sh-qualifications {
  padding: 68px 0 190px;
  overflow: hidden;
}
@media (max-width: 740px) {
  .sh-qualifications {
    padding: calc(32 / 320 * 100vw) 0 calc(113 / 320 * 100vw);
  }
}
.sh-qualifications__inner {
  position: relative;
}
@media (max-width: 740px) {
  .sh-qualifications__inner {
    padding: 0 calc(18 / 320 * 100vw);
    gap: calc(20 / 320 * 100vw);
  }
}
.sh-qualifications__content {
  background-color: var(--PageColor-LightGreen);
  border: 8px solid var(--PageColor-SummerGreen);
  max-width: 80rem;
  margin-inline: auto;
  position: relative;
  padding-block: 30px 36px;
  padding-inline: 32px;
  display: grid;
  place-items: center;
}
@media (max-width: 1200px) {
  .sh-qualifications__content {
    gap: 2.8rem;
  }
}
@media (max-width: 740px) {
  .sh-qualifications__content {
    border-width: calc(8 / 320 * 100vw);
    gap: calc(12 / 320 * 100vw);
    padding-block: calc(21 / 320 * 100vw) calc(16 / 320 * 100vw);
    padding-inline: calc(4 / 320 * 100vw);
  }
}
.sh-qualifications__title {
  font-family: var(--font-mincho);
  color: var(--PageColor-SummerGreen);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1200px) {
  .sh-qualifications__title {
    font-size: clamp(2rem, 2.2vw, 2.4rem);
  }
}
@media (max-width: 740px) {
  .sh-qualifications__title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-qualifications__list {
  display: grid;
  gap: 8px;
  margin-top: 5px;
}
@media (max-width: 740px) {
  .sh-qualifications__list {
    margin-top: 0;
  }
}
.sh-qualifications__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 740px) {
  .sh-qualifications__item {
    gap: calc(8 / 320 * 100vw);
    align-items: start;
  }
}
.sh-qualifications__icon {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  background-image: url("../img/pages/department/shinkyu/menu_book.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 740px) {
  .sh-qualifications__icon {
    width: calc(18 / 320 * 100vw);
    height: calc(18 / 320 * 100vw);
    top: calc(6 / 320 * 100vw);
  }
}
.sh-qualifications__text {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
@media (max-width: 1200px) {
  .sh-qualifications__text {
    font-size: clamp(2rem, 2.2vw, 2.4rem);
  }
}
@media (max-width: 740px) {
  .sh-qualifications__text {
    font-size: calc(16 / 320 * 100vw);
    display: block;
  }
}
.sh-qualifications__note-mark {
  font-family: var(--font-mincho);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: super;
}
@media (max-width: 740px) {
  .sh-qualifications__note-mark {
    font-size: calc(8 / 320 * 100vw);
  }
}
.sh-qualifications__note {
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  text-align: justify;
  margin-top: 24px;
  position: relative;
  margin-left: 1em;
}
.sh-qualifications__note::before {
  position: absolute;
  content: "※";
  left: -1em;
}
@media (max-width: 1200px) {
  .sh-qualifications__note {
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  }
}
@media (max-width: 740px) {
  .sh-qualifications__note {
    font-size: calc(10 / 320 * 100vw);
    justify-self: start;
    margin-top: 0;
    line-height: 1.2;
  }
}
.sh-qualifications__image {
  width: auto;
  position: absolute;
}
.sh-qualifications__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-qualifications__image--1 {
  height: 320px;
  width: 213px;
  bottom: -120px;
  left: -50px;
}
.sh-qualifications__image--2 {
  height: 440px;
  width: 294px;
  bottom: -143px;
  right: -76px;
}
@media (max-width: 740px) {
  .sh-qualifications__image--1 {
    height: calc(167 / 320 * 100vw);
    width: calc(111 / 320 * 100vw);
    bottom: calc(-86 / 320 * 100vw);
    left: calc(104 / 320 * 100vw);
  }
  .sh-qualifications__image--2 {
    height: calc(220 / 320 * 100vw);
    width: calc(147 / 320 * 100vw);
    bottom: calc(-91 / 320 * 100vw);
    right: calc(-37 / 320 * 100vw);
  }
}

/* 内部リンクセクション */
.sh-links {
  background-color: white;
}
.sh-links__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 41px;
}
@media (max-width: 1200px) {
  .sh-links__row {
    gap: clamp(1.2rem, calc(20 / 1200 * 100vw), 2rem) clamp(2rem, calc(41 / 1200 * 100vw), 4.1rem);
  }
}
@media (max-width: 740px) {
  .sh-links__row {
    gap: calc(8 / 320 * 100vw);
    grid-template-columns: repeat(2, 1fr);
  }
}
.sh-links__button {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(273deg, #007b43 0%, #00a258 100%);
  color: white;
  border-radius: 8px;
  padding: 16px 24px;
  width: 100%;
  height: 6.4rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  text-align: center;
  place-content: center;
}
@media (max-width: 1200px) {
  .sh-links__button {
    font-size: clamp(1.6rem, 1.8vw, 2rem);
    height: clamp(5.6rem, 6vw, 6.4rem);
  }
}
@media (max-width: 740px) {
  .sh-links__button {
    font-size: calc(14 / 320 * 100vw);
    height: calc(40 / 320 * 100vw);
    padding: calc(12 / 320 * 100vw) calc(8 / 320 * 100vw);
    border-radius: calc(4 / 320 * 100vw);
  }
}
.sh-links__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 23px;
  height: 7px;
  background-image: url("../img/pages/department/shinkyu/icon-btn-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  .sh-links__button::after {
    width: clamp(1.8rem, 2vw, 2.2rem);
    height: clamp(0.4rem, 0.5vw, 0.5rem);
    right: clamp(1.6rem, 2.2vw, 2.4rem);
  }
}
@media (max-width: 740px) {
  .sh-links__button::after {
    width: calc(11 / 320 * 100vw);
    height: calc(3 / 320 * 100vw);
    right: calc(8 / 320 * 100vw);
  }
}

/* ==========================================================================
   .sh-features
   ========================================================================== */
.sh-features {
  padding: 62px 0 80px;
  background-color: white;
}
@media (max-width: 740px) {
  .sh-features {
    padding: calc(32 / 320 * 100vw) 0;
  }
}
.sh-features__title {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--PageColor-SummerGreen);
  text-align: center;
}
@media (max-width: 740px) {
  .sh-features__title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-features__list {
  display: grid;
  gap: 56px;
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .sh-features__list {
    gap: clamp(2rem, calc(56 / 1200 * 100vw), 5.6rem);
  }
}
@media (max-width: 740px) {
  .sh-features__list {
    gap: calc(26 / 320 * 100vw);
    margin-top: calc(10 / 320 * 100vw);
  }
}
.sh-features__item {
  display: grid;
  grid-template-columns: 510fr 450fr;
  grid-template-areas: "content image";
  gap: 40px;
  align-items: center;
}
.sh-features__item._reverse {
  grid-template-areas: "image content";
  grid-template-columns: 450fr 510fr;
}
@media (max-width: 1200px) {
  .sh-features__item,
  .sh-features__item._reverse {
    gap: clamp(2rem, calc(40 / 1200 * 100vw), 4rem);
  }
}
@media (max-width: 740px) {
  .sh-features__item,
  .sh-features__item._reverse {
    grid-template-columns: 1fr;
    gap: calc(11 / 320 * 100vw);
    grid-template-areas:
      "subtitle"
      "image"
      "text";
  }
}
.sh-features__image {
  grid-area: image;
  overflow: hidden;
  background-color: var(--Gray-200);
}
.sh-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-features__content {
  grid-area: content;
}
@media (max-width: 740px) {
  .sh-features__content {
    display: contents;
  }
}
.sh-features__subtitle {
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .sh-features__subtitle {
    font-size: clamp(1.9rem, calc(28 / 1200 * 100vw), 2.8rem);
  }
}
@media (max-width: 740px) {
  .sh-features__subtitle {
    font-size: calc(20 / 320 * 100vw);
    grid-area: subtitle;
    line-height: 1.3;
  }
}
.sh-features__text {
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  color: var(--ThemeColor-Sumi);
  text-align: justify;
  margin-top: 16px;
}
@media (max-width: 1200px) {
  .sh-features__text {
    font-size: clamp(1.3rem, calc(16 / 1200 * 100vw), 1.6rem);
  }
}
@media (max-width: 740px) {
  .sh-features__text {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
    text-align: left;
    grid-area: text;
    margin-top: calc(-4 / 320 * 100vw);
  }
}

/* ==========================================================================
    .sh-course
  ========================================================================== */
.sh-course {
  background-color: var(--PageColor-Ecru);
  position: relative;
  overflow: hidden;
}
.sh-course__overview {
  position: relative;
  padding: 64px 0 80px;
  z-index: 1;
}
@media (min-width: 1920px) {
  .sh-course__overview {
    aspect-ratio: 1920 / 800;
    display: grid;
    place-items: center;
  }
}
@media (max-width: 740px) {
  .sh-course__overview {
    padding: calc(24 / 320 * 100vw) 0 calc(38 / 320 * 100vw);
  }
}
.sh-course__overview-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  z-index: -1;
}
.sh-course__overview-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-course__overview-inner {
  z-index: 1;
  display: grid;
  grid-template-areas:
    "title title"
    "subtitle text"
    "image image";
  grid-template-columns: minmax(1fr, 460px) 1fr;
  gap: 15px 40px;
}
@media (max-width: 1200px) {
  .sh-course__overview-inner {
    grid-template-areas:
      "title title"
      "subtitle subtitle"
      "text text"
      "image image";
    text-align: center;
  }
}
@media (max-width: 740px) {
  .sh-course__overview-inner {
    grid-template-areas:
      "title"
      "text"
      "image";
    gap: calc(16 / 320 * 100vw);
  }
}
.sh-course__overview-title {
  text-align: center;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  grid-area: title;
  color: white;
}
@media (max-width: 740px) {
  .sh-course__overview-title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-course__overview-subtitle {
  font-family: var(--font-mincho);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.25;
  color: white;
  grid-area: subtitle;
}
@media (max-width: 740px) {
  .sh-course__overview-subtitle {
    display: none;
  }
}
.sh-course__overview-text {
  grid-area: text;
  color: white;
  text-align: justify;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  font-family: var(--font-base);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 1200px) {
  .sh-course__overview-text {
    text-align: center;
  }
}
@media (max-width: 740px) {
  .sh-course__overview-text {
    font-size: calc(12 / 320 * 100vw);
    line-height: 1.5;
    margin-top: calc(159 / 320 * 100vw);
    text-align: left;
  }
}
.sh-course__overview-image {
  grid-area: image;
}

/* コースリスト */
.sh-course__list {
  padding: 64px 0 105px;
  background-color: var(--PageColor-Haikimidori);
}
@media (max-width: 740px) {
  .sh-course__list {
    padding: 0 0 calc(28 / 320 * 100vw);
  }
}

/* PC版コースリスト */
.sh-course__list-pc {
  display: block;
}
@media (max-width: 740px) {
  .sh-course__list-pc {
    display: none;
  }
}
.sh-course__list-items {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* SP版コースリスト */
.sh-course__list-sp {
  display: none;
}
@media (max-width: 740px) {
  .sh-course__list-sp {
    display: block;
    padding: calc(12 / 320 * 100vw) 0;
  }
}
.sh-course__list-sp-title {
  color: var(--PageColor-SummerGreen);
  text-align: center;
  font-family: var(--font-mincho);
  font-size: calc(20 / 320 * 100vw);
  font-weight: 600;
  line-height: 1.3;
}

/* SP版タブナビゲーション */
.sh-course__tabs {
  display: none;
}
@media (max-width: 740px) {
  .sh-course__tabs {
    display: flex;
    background-color: white;
    box-shadow: 0 calc(4 / 320 * 100vw) calc(8 / 320 * 100vw) rgba(0, 0, 0, 0.25);
    border-radius: calc(infinity * 1px);
    position: relative;
    z-index: 10;
    margin-top: calc(16 / 320 * 100vw);
    position: sticky;
    top: calc(60 / 320 * 100vw);
  }
  .sh-course__tab {
    flex: 1;
    padding: calc(16 / 320 * 100vw) calc(8 / 320 * 100vw);
    font-family: var(--font-base);
    font-size: calc(14 / 320 * 100vw);
    font-weight: 700;
    color: var(--PageColor-SummerGreen);
    border-radius: calc(infinity * 1px);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
  }
  .sh-course__tab.active {
    background-color: var(--PageColor-SummerGreen);
    color: white;
  }
}

/* コースアイテム */
.sh-course__item {
  position: relative;
  margin-bottom: 0;
}
.sh-course__item + .sh-course__item {
  border-top: 2px solid var(--ThemeColor-Moegi);
  padding-top: 80px;
}
@media (max-width: 740px) {
  .sh-course__item {
    margin-inline: auto;
    display: none;
    margin-top: calc(22 / 320 * 100vw);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .sh-course__item.active {
    display: block;
    opacity: 1;
  }
  .sh-course__item + .sh-course__item {
    border-top: none;
    padding-top: 0;
  }
}
.sh-course__info {
  display: grid;
  grid-template-areas:
    "title time"
    "description description";
  grid-template-columns: auto 1fr;
  gap: 12px 80px;
  position: relative;
}
@media (max-width: 1200px) {
  .sh-course__info {
    gap: 12px 40px;
  }
}
@media (max-width: 740px) {
  .sh-course__info {
    grid-template-areas:
      "title"
      "time"
      "description";
    grid-template-columns: 1fr;
  }
}
.sh-course__subsidy {
  grid-area: subsidy;
  background: var(--PageColor-SummerGreen);
  color: white;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  padding-inline: 6px;
  width: fit-content;
}
@media (max-width: 740px) {
  .sh-course__subsidy {
    font-size: calc(14 / 320 * 100vw);
    padding: 0 calc(6 / 320 * 100vw);
  }
  .sh-course__subsidy + .sh-course__info {
    margin-top: calc(12 / 320 * 100vw);
  }
}
.sh-course__title {
  grid-area: title;
  font-family: var(--font-mincho);
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .sh-course__title {
    font-size: clamp(3.6rem, calc(68 / 1200 * 100vw), 6.8rem);
  }
}
@media (max-width: 740px) {
  .sh-course__title {
    font-size: calc(34 / 320 * 100vw);
  }
}
.sh-course__time {
  grid-area: time;
  text-align: justify;
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .sh-course__time {
    font-size: clamp(2rem, calc(28 / 1200 * 100vw), 2.8rem);
  }
}
@media (max-width: 740px) {
  .sh-course__time {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.25;
  }
}
.sh-course__description {
  grid-area: description;
  color: var(--ThemeColor-Moegi);
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .sh-course__description {
    font-size: clamp(2rem, calc(28 / 1200 * 100vw), 2.8rem);
  }
}
@media (max-width: 740px) {
  .sh-course__description {
    font-size: calc(18 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-course__image {
  margin-top: 12px;
}
.sh-course__graph {
  position: absolute;
  width: min(calc(460 / 1200 * 100vw), 460px);
  height: auto;
  top: -90px;
  right: -50px;
}
@media (max-width: 1200px) {
  .sh-course__graph {
    right: 0;
  }
}
@media (max-width: 740px) {
  .sh-course__graph {
    width: 100%;
    height: auto;
    position: static;
  }
}
.sh-course__banner {
  position: absolute;
  max-width: min(250px, calc(250 / 1200 * 100vw));
  height: auto;
  bottom: -50px;
  right: -50px;
}
@media (max-width: 1200px) {
  .sh-course__banner {
    right: 0;
  }
}
@media (max-width: 740px) {
  .sh-course__banner {
    right: 0;
    position: relative;
    max-width: 100%;
    width: 100%;
    display: block;
    bottom: 0;
  }
  .sh-course__banner img {
    width: 100%;
  }
}

/* コースコンテンツ */
.sh-course__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 740px) {
  .sh-course__content {
    padding: calc(22 / 320 * 100vw) 0 0;
  }
}

/* 学生データとグラフ */
.sh-course__details {
  display: flex;
  gap: 32px;
}
@media (max-width: 740px) {
  .sh-course__details {
    display: grid;
  }
}
.sh-course__interview {
  flex: 1;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  padding-top: 120px;
}
@media (max-width: 740px) {
  .sh-course__interview {
    /* アコーディオンアニメーション */
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    padding-top: 0;
    /* より安定したレンダリングのための設定 */
    will-change: height;
    transform: translateZ(0);
  }
  .sh-course__interview-inner {
    display: grid;
    grid-template-areas:
      "name text"
      "image text"
      "schedule schedule";
    gap: calc(8 / 320 * 100vw) calc(16 / 320 * 100vw);
    grid-template-rows: auto 1fr auto;
    grid-template-columns: calc(78 / 320 * 100vw) 1fr;
  }
}
.sh-course__student {
  width: 170px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 740px) {
  .sh-course__student {
    grid-area: image;
    width: calc(80 / 320 * 100vw);
    align-self: start;
  }
}
.sh-course__student-info {
  flex: 1;
}
@media (max-width: 740px) {
  .sh-course__student-info {
    display: contents;
  }
}
.sh-course__student-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 740px) {
  .sh-course__student-name {
    flex-direction: column;
    align-items: flex-start;
    grid-area: name;
  }
}
.sh-course__student-title {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
}
@media (max-width: 740px) {
  .sh-course__student-title {
    font-size: calc(14 / 320 * 100vw);
  }
}
.sh-course__student-subtitle {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
}
@media (max-width: 740px) {
  .sh-course__student-subtitle {
    font-size: calc(10 / 320 * 100vw);
    width: auto;
  }
}
.sh-course__student-text {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: -0.02em !important;
  color: var(--ThemeColor-Sumi);
  margin-top: 8px;
}
@media (max-width: 740px) {
  .sh-course__student-text {
    font-size: calc(12 / 320 * 100vw);
    line-height: 1.5;
    grid-area: text;
    margin-top: 0;
  }
}
.sh-course__schedule {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 740px) {
  .sh-course__schedule {
    grid-area: schedule;
    overflow-x: auto;
    margin-top: calc(24 / 320 * 100vw);
  }
  .sh-course__schedule img {
    width: calc(638 / 320 * 100vw);
    max-width: calc(638 / 320 * 100vw);
  }
}

/* 学生データボタン（コンポーネント化） */
.sh-toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
@media (max-width: 740px) {
  .sh-toggle-button {
    gap: calc(10 / 320 * 100vw);
    margin-top: calc(24 / 320 * 100vw);
  }
}

/* 学生データボタン（SPのみ表示） */
.sh-toggle-button--course {
  display: none;
}
@media (max-width: 740px) {
  .sh-toggle-button--course {
    display: flex;
  }
}

/* カリキュラムボタン（PC・SP両方表示） */
.sh-toggle-button--curriculum {
  display: flex;
}

/* 鍼灸学科コース紹介セクションでは非表示 */
.sh-course .sh-toggle-button--curriculum {
  display: none;
}
.sh-toggle-button__line {
  flex: 1;
  height: 2px;
  border-top: 2px dashed var(--PageColor-Matsuba);
}
@media (max-width: 740px) {
  .sh-toggle-button__line {
    height: calc(2 / 320 * 100vw);
    border-top: calc(2 / 320 * 100vw) dashed var(--PageColor-Matsuba);
  }
}
.sh-toggle-button__text {
  background-color: white;
  border: 2px solid var(--PageColor-Matsuba);
  color: var(--PageColor-Matsuba);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 12px 18px;
  max-width: fit-content;
  width: 100%;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 740px) {
  .sh-toggle-button__text {
    font-size: calc(14 / 320 * 100vw);
    padding: calc(12 / 320 * 100vw) calc(18 / 320 * 100vw);
    max-width: calc(180 / 320 * 100vw);
    gap: calc(4 / 320 * 100vw);
  }
}
.sh-toggle-button__text::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385226'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
@media (max-width: 740px) {
  .sh-toggle-button__text::before {
    width: calc(16 / 320 * 100vw);
    height: calc(16 / 320 * 100vw);
  }
}
.sh-toggle-button__text.expanded::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385226'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E");
}

/* 旧クラス名の継承（後方互換性） */
.sh-course__data-button {
  display: none;
}
@media (max-width: 740px) {
  .sh-course__data-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(10 / 320 * 100vw);
    margin-top: calc(24 / 320 * 100vw);
  }
}
.sh-course__data-line {
  flex: 1;
  height: calc(2 / 320 * 100vw);
  border-top: calc(2 / 320 * 100vw) dashed var(--PageColor-Matsuba);
}
.sh-course__data-text {
  background-color: white;
  border: 2px solid var(--PageColor-Matsuba);
  color: var(--PageColor-Matsuba);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: calc(14 / 320 * 100vw);
  line-height: 1;
  padding: calc(12 / 320 * 100vw) calc(18 / 320 * 100vw);
  max-width: calc(180 / 320 * 100vw);
  width: 100%;
  border-radius: calc(infinity * 1px);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 / 320 * 100vw);
}
.sh-course__data-text::before {
  content: "";
  width: calc(16 / 320 * 100vw);
  height: calc(16 / 320 * 100vw);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385226'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.sh-course__data-text.expanded::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2385226'%3E%3Cpath d='M19 13H5v-2h14v2z'/%3E%3C/svg%3E");
}
.sh-course__student-info {
  flex: 1;
}

/* ==========================================================================
   .sh-curriculum
========================================================================== */
.sh-curriculum {
  background-color: white;
  padding: 64px 0 80px;
  overflow: hidden;
}
@media (max-width: 740px) {
  .sh-curriculum {
    padding: calc(28 / 320 * 100vw) 0 calc(28 / 320 * 100vw);
  }
}
.sh-curriculum__title {
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--ThemeColor-Sumi);
}
@media (max-width: 740px) {
  .sh-curriculum__title {
    font-size: calc(26 / 320 * 100vw);
  }
}
.sh-curriculum__overview {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 550fr 450fr;
}
@media (max-width: 740px) {
  .sh-curriculum__overview {
    grid-template-columns: 1fr;
    margin-top: calc(16 / 320 * 100vw);
    gap: calc(30 / 320 * 100vw);
  }
}
.sh-curriculum__overview-text {
  display: grid;
  gap: 15px;
}
@media (max-width: 740px) {
  .sh-curriculum__overview-text {
    gap: calc(12 / 320 * 100vw);
  }
}
.sh-curriculum__overview-text01 {
  font-family: var(--font-mincho);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .sh-curriculum__overview-text01 {
    font-size: clamp(2.8rem, calc(40 / 1200 * 100vw), 4rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__overview-text01 {
    font-size: calc(22 / 320 * 100vw);
    line-height: 1.3;
    letter-spacing: calc(-1.1 / 22 * 1em) !important;
  }
}
.sh-curriculum__overview-text02 {
  color: var(--PageColor-SummerGreen);
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .sh-curriculum__overview-text02 {
    font-size: clamp(2.4rem, calc(36 / 1200 * 100vw), 3.2rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__overview-text02 {
    font-size: calc(20 / 320 * 100vw);
    line-height: 1.3;
  }
}
.sh-curriculum__overview-text03 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 1200px) {
  .sh-curriculum__overview-text03 {
    font-size: clamp(1.4rem, calc(18 / 1200 * 100vw), 1.6rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__overview-text03 {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
    margin-top: calc(-3 / 320 * 100vw);
  }
}

/* タブナビゲーション */
.sh-curriculum__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 50px;
}
@media (max-width: 740px) {
  .sh-curriculum__tabs {
    margin-top: calc(46 / 320 * 100vw);
    gap: calc(5 / 320 * 100vw);
  }
}
.sh-curriculum__tab {
  flex: 1;
  padding: 17px 0;
  border: none;
  font-family: var(--font-base);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  text-align: center;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 740px) {
  .sh-curriculum__tab {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1;
    border-radius: calc(8 / 320 * 100vw) calc(8 / 320 * 100vw) 0 0;
    padding-block: calc(11 / 320 * 100vw);
  }
}
.sh-curriculum__tab.active {
  opacity: 1;
}
.sh-curriculum__tab:hover {
  opacity: 0.8;
}
.sh-curriculum__tab:nth-child(1) {
  background-color: #8eb871;
}
.sh-curriculum__tab:nth-child(2) {
  background-color: #75ae43;
}
.sh-curriculum__tab:nth-child(3) {
  background-color: #439e37;
}
.sh-curriculum__tab-text {
  display: block;
}
.sh-curriculum__tab-text .sh-hidden-sp {
  display: inline-block;
}
@media (max-width: 740px) {
  .sh-curriculum__tab-text {
    font-size: calc(14 / 320 * 100vw);
  }
  .sh-curriculum__tab-text .sh-hidden-sp {
    display: none;
  }
}

/* タブコンテンツ */
.sh-curriculum__content {
  max-width: 1000px;
  margin-inline: auto;
}
.sh-curriculum__year {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.sh-curriculum__year.active {
  opacity: 1;
  visibility: visible;
  position: static;
  height: auto;
}
.sh-curriculum__year-content {
  background-color: #8eb871;
  padding: 44px 64px 64px 98px;
}
@media (max-width: 1000px) {
  .sh-curriculum__year-content {
    padding: 44px 32px 32px 32px;
  }
}
@media (max-width: 740px) {
  .sh-curriculum__year-content {
    padding: calc(24 / 320 * 100vw) calc(8 / 320 * 100vw) calc(24 / 320 * 100vw) calc(8 / 320 * 100vw);
  }
}
.sh-curriculum__year--2 .sh-curriculum__year-content {
  background-color: #75ae43;
}
.sh-curriculum__year--3 .sh-curriculum__year-content {
  background-color: #439e37;
}
.sh-curriculum__year-header {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 740px) {
  .sh-curriculum__year-header {
    grid-template-areas:
      "number info"
      "image info";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: calc(16 / 320 * 100vw) calc(8 / 320 * 100vw);
  }
}
.sh-curriculum__year-number {
  font-family: var(--font-base-en);
  font-size: 14.4rem;
  font-weight: 600;
  color: var(--ThemeColor-Matsuba);
  text-align: center;
  line-height: 0.9;
}
@media (max-width: 740px) {
  .sh-curriculum__year-number {
    grid-area: number;
    font-size: calc(70 / 320 * 100vw);
  }
}
.sh-curriculum__year-text {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--ThemeColor-Matsuba);
  text-align: center;
  display: block;
  margin-top: 18px;
}
@media (max-width: 740px) {
  .sh-curriculum__year-text {
    font-size: calc(18 / 320 * 100vw);
    margin-top: calc(8 / 320 * 100vw);
  }
}
.sh-curriculum__year-image img {
  width: 140px;
}
@media (max-width: 740px) {
  .sh-curriculum__year-image {
    grid-area: image;
    width: calc(68 / 320 * 100vw);
    height: calc(180 / 320 * 100vw);
  }
}
.sh-curriculum__year-info {
  flex: 1;
  padding-top: 19px;
}
@media (max-width: 740px) {
  .sh-curriculum__year-info {
    grid-area: info;
    padding-top: 0;
  }
}
.sh-curriculum__year-title {
  font-family: var(--font-mincho);
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
  color: white;
  margin-bottom: 0;
  display: inline;
}
@media (max-width: 740px) {
  .sh-curriculum__year-title {
    font-size: calc(36 / 320 * 100vw);
  }
}
.sh-curriculum__year-subtitle {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin-bottom: 28px;
  display: inline;
}
@media (max-width: 740px) {
  .sh-curriculum__year-subtitle {
    font-size: calc(14 / 320 * 100vw);
  }
}
.sh-curriculum__year-heading {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .sh-curriculum__year-heading {
    font-size: clamp(2.4rem, calc(32 / 1200 * 100vw), 3.2rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__year-heading {
    font-size: calc(18 / 320 * 100vw);
    margin-top: calc(12 / 320 * 100vw);
    letter-spacing: calc(-1 / 14 * 1em) !important;
  }
}
.sh-curriculum__year-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: white;
  text-align: justify;
  margin-top: 8px;
}
@media (max-width: 1200px) {
  .sh-curriculum__year-description {
    font-size: clamp(1.4rem, calc(16 / 1200 * 100vw), 1.6rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__year-description {
    font-size: calc(14 / 320 * 100vw);
    margin-top: calc(12 / 320 * 100vw);
    line-height: 1.5;
  }
}

/* PickUpセクション */
.sh-curriculum__pickups {
  display: grid;
  margin-top: 27px;
  gap: 32px;
}
@media (max-width: 740px) {
  .sh-curriculum__pickups {
    margin-top: calc(27 / 320 * 100vw);
    gap: calc(30 / 320 * 100vw);
  }
}
.sh-curriculum__pickup {
  position: relative;
  display: grid;
  grid-template-areas:
    "tag tag"
    "title image"
    "description image";
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 360fr 400fr;
  gap: 0 40px;
}
@media (max-width: 740px) {
  .sh-curriculum__pickup {
    grid-template-areas:
      "tag"
      "title"
      "description"
      "image";
    grid-template-columns: 1fr;
  }
}
.sh-curriculum__pickup-tag {
  grid-area: tag;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 36px;
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-tag {
    margin-bottom: calc(16 / 320 * 100vw);
    gap: calc(12 / 320 * 100vw);
  }
}
.sh-curriculum__pickup-tag span {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background-color: white;
  border: 1px solid var(--PageColor-Matsuba);
  border-radius: 4px;
  font-family: var(--font-mincho);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--PageColor-Matsuba);
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-tag span {
    font-size: calc(18 / 320 * 100vw);
    padding: calc(3 / 320 * 100vw) calc(8 / 320 * 100vw);
  }
}
.sh-curriculum__pickup-tag::after {
  content: "";
  width: calc(100% - 40px);
  height: 1px;
  background-color: var(--PageColor-Matsuba);
}
@media (max-width: 1000px) {
  .sh-curriculum__pickup-tag::after {
    width: 100%;
  }
}
.sh-curriculum__pickup-tag::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  rotate: 30deg;
  translate: -40px -50%;
  width: 10px;
  height: 1px;
  background-color: var(--PageColor-Matsuba);
}
@media (max-width: 1000px) {
  .sh-curriculum__pickup-tag::before {
    translate: 0 -50%;
  }
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-tag::before {
    top: calc(11 / 320 * 100vw);
  }
}
.sh-curriculum__pickup-badge {
  top: 0;
  left: 0;
  z-index: 2;
}
.sh-curriculum__pickup-title {
  grid-area: title;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1200px) {
  .sh-curriculum__pickup-title {
    font-size: clamp(1.8rem, calc(24 / 1200 * 100vw), 2.4rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-title {
    font-size: calc(24 / 320 * 100vw);
  }
}
.sh-curriculum__pickup-description {
  grid-area: description;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: white;
  text-align: justify;
  margin-top: 12px;
}
@media (max-width: 1200px) {
  .sh-curriculum__pickup-description {
    font-size: clamp(1.2rem, calc(16 / 1200 * 100vw), 1.6rem);
  }
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-description {
    margin-top: calc(14 / 320 * 100vw);
    font-size: calc(14 / 320 * 100vw);
  }
}
.sh-curriculum__pickup-image {
  grid-area: image;
  border-radius: 8px;
}
@media (max-width: 740px) {
  .sh-curriculum__pickup-image {
    margin-top: calc(16 / 320 * 100vw);
  }
}

/* 科目リスト */
.sh-curriculum__subjects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.sh-curriculum__subject-category._col2 {
  grid-column: span 2;
  gap: 0 16px;
}
.sh-curriculum__subject-category-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--PageColor-Matsuba);
}
.sh-curriculum__subject-list {
  display: grid;
  margin-top: 8px;
}
.sh-curriculum__subject-category._col2 .sh-curriculum__subject-list {
  grid-template-columns: repeat(2, 1fr);
}
.sh-curriculum__subject {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--PageColor-Matsuba);
  padding: 2px 0;
}
.sh-curriculum__subject::before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: var(--PageColor-Matsuba);
  border-radius: 11px;
  flex-shrink: 0;
  position: relative;
  top: 2px;
}
.sh-curriculum__subject-note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--PageColor-Matsuba);
  margin-top: 8px;
}
.sh-curriculum__subject-special {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--PageColor-Matsuba);
  text-align: left;
}
.sh-curriculum .sh-toggle-button__text {
  font-size: 2rem;
  font-weight: 500;
  padding: 16px 18px;
  min-width: 220px;
}

@media (max-width: 740px) {
  .sh-curriculum__subjects {
    grid-template-columns: 1fr;
    gap: calc(20 / 320 * 100vw) 0;
    margin-top: calc(24 / 320 * 100vw);
  }
  .sh-curriculum__subject-category._col2 {
    gap: 0;
  }
  .sh-curriculum__subject-category-title {
    font-size: calc(16 / 320 * 100vw);
  }
  .sh-curriculum__subject-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(4 / 320 * 100vw);
  }
  .sh-curriculum__subject {
    gap: calc(4 / 320 * 100vw);
    font-size: calc(12 / 320 * 100vw);
  }
  .sh-curriculum__subject::before {
    top: calc(2 / 320 * 100vw);
    width: calc(12 / 320 * 100vw);
    height: calc(12 / 320 * 100vw);
  }
  .sh-curriculum__subject-note {
    font-size: calc(10 / 320 * 100vw);
  }
  .sh-curriculum__subject-special {
    font-size: calc(12 / 320 * 100vw);
  }
  .sh-curriculum .sh-toggle-button__text {
    font-size: calc(14 / 320 * 100vw);
    padding: calc(12 / 320 * 100vw) calc(16 / 320 * 100vw);
    min-width: calc(180 / 320 * 100vw);
  }
}

/* ==========================================================================
   .sh-clinical
========================================================================== */
.sh-clinical__training {
  background-color: #91bb5f;
  position: relative;
  padding: 64px 0 80px;
  overflow: clip;
}
.sh-clinical__training-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 336px;
  height: 360px;
  background-image: url("../img/pages/department/shinkyu/shinkyu_bed.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.sh-clinical__training-inner {
  position: relative;
  z-index: 1;
}
.sh-clinical__training-title {
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* PC版コンテンツ */
.sh-clinical__training-pc {
  display: block;
  position: relative;
  z-index: 2;
}
.sh-clinical__training-sp {
  display: none;
}

/* 概要セクション */
.sh-clinical__training-overview {
  display: grid;
  gap: 67px;
  grid-template-columns: 130px auto;
  width: fit-content;
  margin-inline: auto;
  margin-top: 32px;
  padding-left: 20px;
}
.sh-clinical__training-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-clinical__training-content {
  flex: 1;
  max-width: 460px;
}
.sh-clinical__training-description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
.sh-clinical__training-schedule {
  border: 1px solid #141414;
  padding: 20px 32px;
  margin-top: 26px;
}
.sh-clinical__training-schedule-text {
  font-family: var(--font-mincho);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: -0.02em !important;
  text-align: justify;
}

/* 実践力を鍛えるセクション */
.sh-clinical__training-practice {
  margin-top: 50px;
}
.sh-clinical__training-practice-title {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}
.sh-clinical__training-practice-subtitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
}
.sh-clinical__training-practice-content {
  gap: 40px;
  margin-top: 25px;
  display: grid;
  grid-template-columns: calc(450 / 1000 * 100%) 1fr;
}
.sh-clinical__training-practice-image img {
  width: 100%;
  object-fit: cover;
}
.sh-clinical__training-practice-info {
  flex: 1;
  max-width: 510px;
}
.sh-clinical__training-practice-header {
  display: grid;
  margin-top: -12px;
}
.sh-clinical__training-practice-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin-bottom: 0;
  display: inline;
}
.sh-clinical__training-practice-year {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em !important;
  color: white;
}
.sh-clinical__training-practice-sub-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
.sh-clinical__training-practice-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: -0.02em !important;
  text-align: justify;
  margin-top: 25px;
}

/* 実習ステップ */
.sh-clinical__training-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 20px;
}
.sh-clinical__training-step {
  flex: 1;
}
.sh-clinical__training-step-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
}
.sh-clinical__training-step-image {
  width: 100%;
  background-color: #999999;
  margin-top: 10px;
}
.sh-clinical__training-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-clinical__training-step-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
  margin-top: 8px;
}

/* 実習先紹介 */
.sh-clinical__training-facilities {
  margin-top: 40px;
}
.sh-clinical__training-facilities-title {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}
.sh-clinical__training-facilities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 14px;
}
.sh-clinical__training-facility {
  flex: 1;
  max-width: 480px;
}
.sh-clinical__training-facility-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.sh-clinical__training-facility-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 25px;
}
.sh-clinical__training-facility-images._large {
  gap: 0 12px;
}
.sh-clinical__training-facility-images img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.sh-clinical__training-facility-images img:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.sh-clinical__training-facility-images._large img:first-child {
  grid-row: 1 / 2;
}

@media (max-width: 1200px) {
  .sh-clinical__training-practice-sub-title {
    font-size: clamp(3.2rem, calc(40 / 1200 * 100vw), 4rem);
  }
  .sh-clinical__training-facility-name {
    font-size: clamp(2rem, calc(24 / 1200 * 100vw), 2.4rem);
  }
}

/* SP版対応 */
@media (max-width: 740px) {
  .sh-clinical__training {
    padding: calc(31 / 320 * 100vw) 0 calc(36 / 320 * 100vw);
  }
  .sh-clinical__training-bg {
    width: calc(120 / 320 * 100vw);
    height: calc(128 / 320 * 100vw);
    top: calc(64 / 320 * 100vw);
  }
  .sh-clinical__training-title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
  .sh-clinical__training-pc {
    display: none;
  }
  .sh-clinical__training-sp {
    display: block;
  }
  .sh-clinical__training-overview {
    grid-template-columns: 1fr;
    gap: calc(24 / 320 * 100vw);
    margin-top: calc(24 / 320 * 100vw);
    padding-left: 0;
  }
  .sh-clinical__training-tab-content {
    display: none;
  }
  .sh-clinical__training-tab-content.active {
    display: block;
    margin-top: 26px;
  }
  .sh-clinical__training-image {
    max-width: calc(66 / 320 * 100vw);
    justify-self: center;
  }
  .sh-clinical__training-content {
    max-width: 100%;
  }
  .sh-clinical__training-description {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
    letter-spacing: -0.01em !important;
  }
  .sh-clinical__training-schedule {
    padding: calc(9 / 320 * 100vw) calc(16 / 320 * 100vw);
    margin-top: calc(25 / 320 * 100vw);
  }
  .sh-clinical__training-schedule-text {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.5;
  }
  /* タブボタン */
  .sh-clinical__training-tabs {
    margin-top: calc(32 / 320 * 100vw);
    height: calc(48 / 320 * 100vw);
    position: sticky;
    top: calc(60 / 320 * 100vw);
    box-shadow: 0 calc(4 / 320 * 100vw) calc(8 / 320 * 100vw) 0 rgba(0, 0, 0, 0.25);
    border-radius: calc(24 / 320 * 100vw);
    background-color: white;
    overflow: hidden;
    z-index: 1;
  }
  .sh-clinical__training-tabs .sh-tab__item {
    width: calc(140 / 320 * 100vw);
    height: calc(48 / 320 * 100vw);
    border: none;
    background: transparent;
    color: var(--PageColor-SummerGreen);
    font-size: calc(14 / 320 * 100vw);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    border-radius: calc(24 / 320 * 100vw);
    transition: all 0.3s ease;
  }
  .sh-clinical__training-tabs .sh-tab__item:first-child {
    left: 0;
  }
  .sh-clinical__training-tabs .sh-tab__item:last-child {
    right: 0;
  }
  .sh-clinical__training-tabs .sh-tab__item.active {
    background-color: var(--PageColor-SummerGreen);
    color: white;
    z-index: 2;
  }
  /* タブコンテンツ */
  .sh-clinical__training-practice {
    width: 100%;
    margin-top: calc(26 / 320 * 100vw);
  }
  .sh-clinical__training-practice-title {
    font-family: var(--font-mincho);
    font-size: calc(18 / 320 * 100vw);
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-align: left;
  }
  .sh-clinical__training-practice-subtitle {
    font-size: calc(14 / 320 * 100vw);
    font-weight: 500;
    line-height: 1.8;
    color: #141414;
    text-align: left;
    margin-top: calc(10 / 320 * 100vw);
  }
  .sh-clinical__training-practice-content {
    margin-top: calc(14 / 320 * 100vw);
    gap: calc(8 / 320 * 100vw);
  }
  .sh-clinical__training-practice-image {
    width: calc(124 / 320 * 100vw);
    height: calc(87 / 320 * 100vw);
    background-color: #808080;
  }
  .sh-clinical__training-practice-image-sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sh-clinical__training-practice-info {
    flex: 1;
  }
  .sh-clinical__training-practice-header {
    margin-top: 0;
  }
  .sh-clinical__training-practice-main-title {
    font-size: calc(14 / 320 * 100vw);
    font-weight: 700;
    line-height: 1;
  }
  .sh-clinical__training-practice-year {
    font-size: calc(14 / 320 * 100vw);
    font-weight: 700;
    line-height: 1;
  }
  .sh-clinical__training-practice-sub-title {
    font-size: calc(20 / 320 * 100vw);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.09em;
    margin: 0;
    display: block;
  }
  .sh-clinical__training-practice-text {
    font-size: calc(14 / 320 * 100vw);
    font-weight: 500;
    line-height: 1.8;
    color: #141414;
    text-align: justify;
    margin-top: calc(25 / 320 * 100vw);
  }
  /* 実習ステップ SP版 */
  .sh-clinical__training-steps {
    display: flex;
    flex-direction: column;
    gap: calc(12 / 320 * 100vw);
    margin-top: calc(12 / 320 * 100vw);
  }
  .sh-clinical__training-step {
    width: 100%;
  }
  .sh-clinical__training-step-title {
    font-size: calc(16 / 320 * 100vw);
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .sh-clinical__training-step-content {
    display: flex;
    gap: calc(8 / 320 * 100vw);
    align-items: flex-start;
  }
  .sh-clinical__training-step-image {
    width: calc(140 / 320 * 100vw);
    height: calc(99 / 320 * 100vw);
    margin-top: 0;
  }
  .sh-clinical__training-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .sh-clinical__training-step-text {
    font-size: calc(12 / 320 * 100vw);
    font-weight: 500;
    line-height: 1.5;
    text-align: justify;
    flex: 1;
    margin-top: -7px;
  }
  /* 実習先紹介 SP版 */
  .sh-clinical__training-facilities-title {
    font-family: var(--font-mincho);
    font-size: calc(18 / 320 * 100vw);
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-align: left;
  }
  .sh-clinical__training-facilities-list {
    display: flex;
    flex-direction: column;
    gap: calc(26 / 320 * 100vw);
  }
  .sh-clinical__training-facility {
    width: 100%;
  }
  .sh-clinical__training-facility-name {
    font-size: calc(16 / 320 * 100vw);
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
  }
  .sh-clinical__training-facility-images {
    display: grid;
    gap: calc(7 / 320 * 100vw);
    margin-top: calc(2 / 320 * 100vw);
  }
  .sh-clinical__training-facility-images._large {
    gap: calc(7 / 320 * 100vw);
  }
  .sh-clinical__training-facility-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ==========================================================================
   .sh-exam
========================================================================== */
.sh-exam {
  background-color: #57a234;
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.sh-exam__bg {
  position: absolute;
  top: 81px;
  left: 0;
  width: 363px;
  height: 206px;
  background-image: url("../img/pages/department/shinkyu/shiken_book.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.sh-exam__inner {
  position: relative;
  z-index: 1;
}
.sh-exam__title {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 1px #57a234);
}

/* PC版コンテンツ */
.sh-exam__pc {
  display: block;
  position: relative;
  z-index: 2;
}
.sh-exam__sp {
  display: none;
}
@media (max-width: 740px) {
  .sh-exam__pc {
    display: none;
  }
  .sh-exam__sp {
    display: block;
  }
}

/* 概要セクション */
.sh-exam__overview {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-inline: auto;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.sh-exam__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.sh-exam__content {
  flex: 1;
  max-width: 450px;
}
.sh-exam__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: var(--ThemeColor-Sumi);
  text-align: justify;
}

/* 合格率セクション */
.sh-exam__results {
  background-color: white;
  border-radius: 8px;
  padding: 18px 76px;
  text-align: center;
  position: relative;
  margin-top: 15px;
}
.sh-exam__results-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--PageColor-SummerGreen);
  text-align: center;
}
.sh-exam__results-charts {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

/* 指導方法セクション */
.sh-exam__guidance {
  margin-top: 45px;
  border: 1px solid white;
  padding: 25px 25px 50px;
}
.sh-exam__guidance-title {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: white;
}
.sh-exam__guidance-subtitle {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
}
.sh-exam__guidance-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 42px;
}
.sh-exam__guidance-image {
  padding-inline: calc(33 / 450 * 100%);
}
.sh-exam__guidance-image img {
  width: 100%;
  border-radius: 8px;
}
.sh-exam__guidance-text p {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2;
  color: white;
  margin: 0;
}

/* 対策方法セクション */
.sh-exam__methods {
  margin-top: 31px;
}
.sh-exam__methods-row {
  display: flex;
  gap: 40px;
}
.sh-exam__methods-row:last-child {
  margin-top: 28px;
}
.sh-exam__method {
  flex: 1;
  max-width: 480px;
}
.sh-exam__methods-row:last-child .sh-exam__method {
  max-width: 312px;
}
.sh-exam__method-header {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.sh-exam__method-icon {
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
  position: relative;
  top: 2px;
}
.sh-exam__methods-row:last-child .sh-exam__method-icon {
  width: 18px;
  height: 18px;
}
.sh-exam__method-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: white;
  margin: 0;
}
.sh-exam__methods-row:last-child .sh-exam__method-title {
  font-size: 2rem;
}
.sh-exam__method-image {
  width: 100%;
  margin-top: 10px;
}
.sh-exam__method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-exam__method-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.04em !important;
  text-align: justify;
  margin-top: 6px;
}

/* SP版対応 */
@media (max-width: 1200px) {
  .sh-exam__guidance-text p {
    font-size: clamp(2rem, calc(28 / 1200 * 100vw), 2.8rem);
  }
  .sh-exam__method-icon {
    width: clamp(18px, calc(18 / 1200 * 100vw), 22px);
    height: clamp(18px, calc(18 / 1200 * 100vw), 22px);
    top: clamp(2px, calc(2 / 1200 * 100vw), 4px);
  }
  .sh-exam__method-title {
    font-size: clamp(1.6rem, calc(24 / 1200 * 100vw), 2.4rem);
  }
  .sh-exam__methods-row:last-child .sh-exam__method-icon {
    width: clamp(14px, calc(14 / 1200 * 100vw), 18px);
    height: clamp(14px, calc(14 / 1200 * 100vw), 18px);
  }
  .sh-exam__methods-row:last-child .sh-exam__method-title {
    font-size: clamp(1.4rem, calc(20 / 1200 * 100vw), 2rem);
  }
}
@media (max-width: 740px) {
  .sh-exam {
    padding-block: calc(30 / 320 * 100vw) 0;
  }
  .sh-exam__bg {
    top: calc(91 / 320 * 100vw);
    width: calc(143 / 320 * 100vw);
    height: calc(96 / 320 * 100vw);
    background-size: contain;
  }
  .sh-exam__title {
    font-size: calc(26 / 320 * 100vw);
  }
  .sh-exam__content {
    max-width: 100%;
  }
  .sh-exam__overview {
    grid-template-columns: 1fr;
    margin-top: calc(20 / 320 * 100vw);
    gap: calc(24 / 320 * 100vw);
  }
  .sh-exam__image {
    max-width: calc(87 / 320 * 100vw);
    justify-self: center;
    margin-left: calc(70 / 320 * 100vw);
  }
  .sh-exam__description {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
  }
  .sh-exam__results {
    padding: calc(18 / 320 * 100vw);
    margin-top: calc(25 / 320 * 100vw);
  }
  .sh-exam__results-title {
    font-size: calc(16 / 320 * 100vw);
  }
  .sh-exam__results-charts {
    margin-top: calc(16 / 320 * 100vw);
  }

  /* 指導方法セクション SP版 */
  .sh-exam__guidance {
    padding: calc(24 / 320 * 100vw) calc(16 / 320 * 100vw);
  }
  .sh-exam__guidance-title {
    font-size: calc(18 / 320 * 100vw);
    letter-spacing: -0.08em;
  }
  .sh-exam__guidance-subtitle {
    font-size: calc(14 / 320 * 100vw);
  }
  .sh-exam__guidance-content {
    grid-template-columns: 1fr;
    margin-top: calc(22 / 320 * 100vw);
    gap: calc(16 / 320 * 100vw);
  }
  .sh-exam__guidance-image {
    width: 100%;
    padding-inline: calc(10 / 320 * 100vw);
  }
  .sh-exam__guidance-image img {
    width: 100%;
    height: auto;
    border-radius: calc(8 / 320 * 100vw);
  }
  .sh-exam__guidance-text p {
    font-size: calc(16 / 320 * 100vw);
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.08em !important;
  }
  /* 対策方法スライダー SP版 */
  .sh-exam__methods-sp {
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    padding-left: var(--inner-padding-sp);
  }
  .sh-exam__slider {
    padding-bottom: calc(40 / 320 * 100vw);
  }
  .sh-exam__method {
    margin-top: calc(20 / 320 * 100vw);
  }
  .sh-exam__method-header {
    gap: 3px;
  }
  .sh-exam__method-icon {
    width: calc(14 / 320 * 100vw);
    height: calc(14 / 320 * 100vw);
    background-color: white;
    border-radius: calc(7 / 320 * 100vw);
    flex-shrink: 0;
  }
  .sh-exam__method-title {
    font-size: calc(16 / 320 * 100vw);
    font-weight: 700;
    color: white;
    margin: 0;
  }
  .sh-exam__method-image {
    width: 100%;
    margin-top: calc(5 / 320 * 100vw);
  }
  .sh-exam__method-text {
    font-size: calc(12 / 320 * 100vw);
    line-height: 1.5;
    text-align: justify;
    margin: 0;
  }
  /* Splideのカスタマイズ */
  .sh-exam__slider .splide__pagination {
    bottom: 0;
  }
  .sh-exam__slider .splide__pagination__page {
    background-color: rgba(255, 255, 255, 0.3);
    width: calc(8 / 320 * 100vw);
    height: calc(8 / 320 * 100vw);
    margin: 0 calc(4 / 320 * 100vw);
  }
  .sh-exam__slider .splide__pagination__page.is-active {
    background-color: white;
  }
  .sh-exam__slider .splide__arrow {
    background-color: rgba(62, 58, 57, 0.8);
    width: calc(28 / 320 * 100vw);
    height: calc(28 / 320 * 100vw);
    opacity: 1;
    border-radius: 0;
    top: calc(170 / 320 * 100vw);
  }
  .sh-exam__slider .splide__arrow svg {
    fill: white;
  }
  .sh-exam__slider .splide__arrow--prev {
    left: calc(-10 / 320 * 100vw);
  }
}

/* ==========================================================================
   .sh-seminar
========================================================================== */
.sh-seminar {
  padding: 64px 0 75px;
  background-color: #e1e4e0;
}
.sh-seminar__title {
  font-family: var(--font-mincho);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--PageColor-SummerGreen);
  text-align: center;
  margin: 0;
}
.sh-seminar__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 41px;
}
.sh-seminar__subtitle {
  font-family: var(--font-mincho);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: #141414;
  text-align: left;
  margin: 0;
}
.sh-seminar__stats {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  justify-content: flex-start;
}
.sh-seminar__stats-number {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: var(--PageColor-SummerGreen);
}
.sh-seminar__stats-unit,
.sh-seminar__stats-label {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--PageColor-SummerGreen);
}
.sh-seminar__description {
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  color: #141414;
  text-align: justify;
  margin: 0;
}
.sh-seminar__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 99px 32px;
  width: 100%;
  margin-top: 46px;
}
.sh-seminar__card {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sh-seminar__card-title {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--PageColor-SummerGreen);
  margin: 0;
}
.sh-seminar__card-image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-color: #999999;
}
.sh-seminar__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-seminar__card-text {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #141414;
  text-align: justify;
  margin: 0;
  flex: 1;
}

/* 学生の声カード（特別デザイン） */
.sh-seminar__card--voice {
  position: relative;
}
.sh-seminar__voice {
  position: relative;
  width: 100%;
  height: 100%;
}
.sh-seminar__voice-image {
  position: absolute;
  top: 53px;
  right: 98px;
  max-width: 213px;
  border-radius: 4px;
  overflow: hidden;
}
.sh-seminar__voice-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* SP版スライダー */
.sh-seminar__slider {
  overflow: hidden;
}
.sh-seminar__slider .sh-seminar-card {
  margin-inline: auto;
}
.sh-seminar__slider .splide__arrow {
  background-color: rgba(62, 58, 57, 1);
  width: calc(28 / 320 * 100vw);
  height: calc(28 / 320 * 100vw);
  border-radius: calc(4 / 320 * 100vw);
  opacity: 1;
  top: calc(50% - calc(30 / 320 * 100vw));
}
.sh-seminar__slider .splide__arrow svg {
  fill: white;
  width: calc(13 / 320 * 100vw);
  height: calc(13 / 320 * 100vw);
}
.sh-seminar__slider .splide__arrow--prev {
  left: calc(10 / 320 * 100vw);
}
.sh-seminar__slider .splide__arrow--next {
  right: calc(10 / 320 * 100vw);
}
.sh-seminar__slider .splide__pagination {
  bottom: 0;
}

/* ゼミセクション SP版デザイン（740px以下） */
@media (max-width: 740px) {
  .sh-seminar {
    padding: calc(25 / 320 * 100vw) 0 calc(46 / 320 * 100vw);
  }
  .sh-seminar__inner {
    overflow: hidden;
  }
  .sh-seminar__title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
  .sh-seminar__content {
    width: 100%;
    margin-top: calc(20 / 320 * 100vw);
  }
  .sh-seminar__subtitle {
    font-size: calc(20 / 320 * 100vw);
    line-height: 1.3;
  }
  .sh-seminar__stats {
    flex-direction: column;
    display: grid;
    grid-template-areas:
      "label label"
      "number unit";
    gap: 0 8px;
    align-items: stretch;
  }
  .sh-seminar__stats-label {
    grid-area: label;
    font-size: calc(32 / 320 * 100vw);
    width: auto;
  }
  .sh-seminar__stats-number {
    grid-area: number;
    font-size: calc(80 / 320 * 100vw);
    text-align: center;
    line-height: 0.8;
  }
  .sh-seminar__stats-unit {
    grid-area: unit;
    font-size: calc(32 / 320 * 100vw);
    width: auto;
    text-align: center;
    align-self: end;
  }
  .sh-seminar__description {
    font-size: calc(14 / 320 * 100vw);
    line-height: 1.8;
    margin-top: calc(10 / 320 * 100vw);
  }

  /* PC版カードを非表示 */
  .sh-seminar__cards {
    display: none;
  }

  /* SP版スライダー表示 */
  .sh-seminar__slider-container {
    display: block;
    width: 100vw;
    position: relative;
    margin-top: calc(20 / 320 * 100vw);
    margin-inline: calc(50% - 50vw);
  }
  .sh-seminar__slider {
    padding-left: var(--inner-padding-sp);
  }
  .sh-seminar__slide-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .sh-seminar__slide-card img {
    width: 100%;
  }
  .sh-seminar__slide-card-title {
    font-family: var(--font-base);
    font-size: calc(16 / 320 * 100vw);
    font-weight: 700;
    line-height: 1.5;
    color: var(--PageColor-SummerGreen);
    margin: 0;
  }
  .sh-seminar__slide-card-text {
    font-family: var(--font-base);
    font-size: calc(12 / 320 * 100vw);
    font-weight: 500;
    line-height: 1.5;
    color: #141414;
    text-align: justify;
    margin: 0;
  }

  /* SP版学生の声 */
  .sh-seminar__voice-sp {
    position: relative;
    margin: calc(29 / 320 * 100vw) auto 0;
  }
  .sh-seminar__voice-sp .sh-seminar__voice-image {
    margin-inline: auto;
    max-width: 73%;
    position: relative;
    inset: unset;
  }
}

/* PC版でSP要素を非表示 */
@media (min-width: 741px) {
  .sh-seminar__slider-container {
    display: none;
  }
  .sh-seminar__voice-sp {
    display: none;
  }
}

/* ==========================================================================
   .sh-instructor
========================================================================== */
.sh-instructor {
  padding-block: 64px 80px;
}
.sh-instructor__title {
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  text-align: center;
}
.sh-instructor__subtitle {
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--PageColor-SummerGreen);
  margin-top: 38px;
}
.sh-instructor__description {
  font-family: var(--font-base);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--ThemeColor-Sumi);
  margin-top: 11px;
}
.sh-instructor__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 53px;
}
.sh-instructor__card {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 480 / 320;
}
.sh-instructor__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: clip;
}
.sh-instructor__card-image img {
  width: 100%;
  object-fit: cover;
}
.sh-instructor__card-content {
  inset: 10% 0 auto auto;
  width: 45%;
  height: inherit;
  margin-left: auto;
  padding: 34px 8px 24px 0;
  display: grid;
  grid-template-rows: auto 1fr;
}
.sh-instructor__card-subjects {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 2;
  align-self: end;
}
.sh-instructor__card-subject {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.sh-instructor__card-subject::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--PageColor-SummerGreen);
  border-radius: 50%;
  flex-shrink: 0;
}
.sh-instructor__card-info {
  z-index: 2;
}
.sh-instructor__card-name {
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: white;
  margin-bottom: 1.2rem;
}
.sh-instructor__card-qualification {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 2px;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--PageColor-SummerGreen);
}
.sh-instructor__card-qualification-text {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
.sh-instructor__card-description {
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: white;
}
.sh-instructor__button {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.sh-instructor__button-link {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  max-width: 50rem;
  width: 100%;
  height: 8.8rem;
  margin: 0 auto;
  background: linear-gradient(305deg, #007b43 0%, #00a258 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
}
.sh-instructor__button-text {
  font-family: var(--font-base);
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
}
.sh-instructor__button-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .sh-instructor__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }
}
@media (max-width: 740px) {
  .sh-instructor {
    padding-block: calc(21 / 320 * 100vw) calc(32 / 320 * 100vw);
  }
  .sh-instructor__card {
    aspect-ratio: 280 / 210;
  }
  .sh-instructor__title {
    font-size: calc(26 / 320 * 100vw);
  }
  .sh-instructor__subtitle {
    line-height: 1.4;
    font-size: calc(20 / 320 * 100vw);
    margin-top: calc(16 / 320 * 100vw);
  }
  .sh-instructor__description {
    font-size: calc(14 / 320 * 100vw);
    margin-top: calc(18 / 320 * 100vw);
    line-height: 1.8;
  }
  .sh-instructor__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: calc(8 / 320 * 100vw);
    margin-top: calc(20 / 320 * 100vw);
  }
  .sh-instructor__card-content {
    width: 46%;
    padding: calc(20 / 320 * 100vw) calc(4 / 320 * 100vw) calc(12 / 320 * 100vw) 0;
    text-align: justify;
  }
  .sh-instructor__card-subject {
    gap: calc(2 / 320 * 100vw);
    font-size: calc(10 / 320 * 100vw);
  }
  .sh-instructor__card-subject::before {
    width: calc(8 / 320 * 100vw);
    height: calc(8 / 320 * 100vw);
  }
  .sh-instructor__card-name {
    font-size: calc(24 / 320 * 100vw);
    margin-bottom: calc(3 / 320 * 100vw);
  }
  .sh-instructor__card-qualification {
    gap: calc(2 / 320 * 100vw);
    padding: calc(2 / 320 * 100vw);
    margin-bottom: calc(8 / 320 * 100vw);
    border-left: calc(3 / 320 * 100vw) solid var(--PageColor-SummerGreen);
  }
  .sh-instructor__card-qualification-text {
    font-size: calc(8 / 320 * 100vw);
  }
  .sh-instructor__card-description {
    font-size: calc(7.5 / 320 * 100vw);
    letter-spacing: -3%;
  }
  .sh-instructor__card-subjects {
    gap: calc(4 / 320 * 100vw);
  }
  .sh-instructor__button {
    margin-top: 32px;
  }
  .sh-instructor__button-link {
    gap: calc(10 / 320 * 100vw);
    max-width: 100%;
    width: 100%;
    height: calc(40 / 320 * 100vw);
    box-shadow: 0 calc(4 / 320 * 100vw) calc(16 / 320 * 100vw) rgba(0, 0, 0, 0.2);
    border-radius: calc(4 / 320 * 100vw);
  }
  .sh-instructor__button-text {
    font-size: calc(14 / 320 * 100vw);
  }
  .sh-instructor__button-arrow {
    right: calc(12 / 320 * 100vw);
  }
  .sh-instructor__button-arrow svg {
    width: calc(15 / 320 * 100vw);
    height: calc(15 / 320 * 100vw);
  }
}

/* ==========================================================================
   .sh-support
========================================================================== */
.sh-support {
  padding: 64px 0 80px;
  background-color: #e1e4e0;
  overflow: clip;
}
.sh-support__title {
  font-family: var(--font-mincho);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  text-align: center;
}

/* PC版サポートカード */
.sh-support__cards-pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 100rem;
  margin-top: 84px;
}
@media (max-width: 740px) {
  .sh-support__cards-pc {
    display: none;
  }
}

/* サポートカード */
.sh-support__card {
  position: relative;
  border: 2px solid var(--ThemeColor-Moegi);
  padding: 45px 24px 19px;
  text-align: center;
}
.sh-support__card-icon svg {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 6.4rem;
  height: 6.4rem;
}
.sh-support__card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
}
.sh-support__card-category {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  margin: 0;
}
.sh-support__card-divider {
  width: 18.1rem;
  height: 1px;
  background-image: repeating-linear-gradient(to right, var(--ThemeColor-Moegi) 0, var(--ThemeColor-Moegi) 4px, transparent 4px, transparent 8px);
  margin-inline: auto;
}
.sh-support__card-title {
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ThemeColor-Sumi);
  margin: 0;
}
.sh-support__card-note {
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ThemeColor-Moegi);
  margin: 0;
}

/* 就職サポートカードの統計情報 */
.sh-support__card-stats-label {
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ThemeColor-Moegi);
  margin: 0;
}
.sh-support__card-stats-number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-top: 12px;
}
.sh-support__card-stats-value {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ThemeColor-Sumi);
}
.sh-support__card-stats-unit {
  font-family: var(--font-base);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ThemeColor-Sumi);
  margin-left: 0;
}
.sh-support__card-stats-note {
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  margin: 0;
}

/* リンクボタン */
.sh-support__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 58px;
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
}
.sh-support__link {
  gap: 0.4rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-decoration: none !important;
  border-bottom: 1px solid var(--ThemeColor-Sumi);
  position: relative;
  padding-bottom: 2px;
  letter-spacing: -0.05em;
}
.sh-support__link:hover {
  opacity: 0.8;
}
.sh-support__link:after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: var(--ThemeColor-Sumi);
  transform: rotate(30deg);
}
.sh-support__link-text {
  font-family: var(--font-base);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ThemeColor-Sumi);
  text-align: left;
}

/* SP版サポートスライダー */
.sh-support__cards-sp {
  display: none;
  margin-inline: calc(50% - 50vw);
  margin-top: calc(30 / 320 * 100vw);
}
.sh-support__slider {
  overflow: hidden;
  padding-left: var(--inner-padding-sp);
}
.sh-support__slider .splide__slide {
  margin-top: calc(30 / 320 * 100vw);
}
.sh-support__slider .splide__arrow {
  background-color: rgba(62, 58, 57, 0.8);
  width: calc(28 / 320 * 100vw);
  height: calc(28 / 320 * 100vw);
  border-radius: 0;
  opacity: 1;
}
.sh-support__slider .splide__arrow svg {
  fill: white;
  width: calc(13 / 320 * 100vw);
  height: calc(13 / 320 * 100vw);
}
.sh-support__slider .splide__arrow--prev {
  left: calc(10 / 320 * 100vw);
}
.sh-support__slider .splide__arrow--next {
  right: calc(10 / 320 * 100vw);
}

@media (max-width: 1200px) {
  .sh-support__cards-pc {
    gap: clamp(24px, calc(32 / 1200 * 100vw), 32px);
  }
  .sh-support__card {
    padding: clamp(32px, calc(45 / 1200 * 100vw), 45px) clamp(16px, calc(24 / 1200 * 100vw), 24px) clamp(16px, calc(19 / 1200 * 100vw), 19px);
  }
  .sh-support__card-icon svg {
    width: clamp(48px, calc(64 / 1200 * 100vw), 64px);
    height: clamp(48px, calc(64 / 1200 * 100vw), 64px);
    top: clamp(-24px, calc(-32 / 1200 * 100vw), -32px);
  }
  .sh-support__card-category {
    font-size: clamp(17px, calc(24 / 1200 * 100vw), 24px);
  }
  .sh-support__card-title {
    font-size: clamp(18px, calc(22 / 1200 * 100vw), 22px);
  }
  .sh-support__card-note {
    font-size: clamp(14px, calc(16 / 1200 * 100vw), 16px);
  }
  .sh-support__card-stats-value {
    font-size: clamp(40px, calc(60 / 1200 * 100vw), 60px);
  }
  .sh-support__card-stats-unit {
    font-size: clamp(24px, calc(32 / 1200 * 100vw), 32px);
  }
}
@media (max-width: 740px) {
  .sh-support {
    padding-block: calc(23 / 320 * 100vw) calc(31 / 320 * 100vw);
  }
  .sh-support__cards-sp {
    display: block;
  }
  .sh-support__title {
    font-size: calc(26 / 320 * 100vw);
    line-height: 1.3;
  }
  .sh-support__card {
    padding: calc(27 / 320 * 100vw) calc(20 / 320 * 100vw) calc(26 / 320 * 100vw);
    height: 100%;
  }
  .sh-support__card-icon svg {
    width: calc(54 / 320 * 100vw);
    height: calc(54 / 320 * 100vw);
    top: calc(-27 / 320 * 100vw);
  }
  .sh-support__card-content {
    gap: calc(12 / 320 * 100vw);
  }
  .sh-support__card-category {
    font-size: calc(18 / 320 * 100vw);
    letter-spacing: -0.03em;
  }
  .sh-support__card-title {
    font-size: calc(22 / 320 * 100vw);
    line-height: 1.3;
    letter-spacing: -0.05em;
  }
  .sh-support__card-note {
    font-size: calc(16 / 320 * 100vw);
    margin-inline: calc(-12 / 320 * 100vw);
    letter-spacing: -0.02em;
  }
  .sh-support__card-stats-value {
    font-size: calc(60 / 320 * 100vw);
  }
  .sh-support__card-stats-unit {
    font-size: calc(30 / 320 * 100vw);
  }
  .sh-support__card-stats-note {
    font-size: calc(14 / 320 * 100vw);
  }
  .sh-support__card-stats {
    gap: calc(16 / 320 * 100vw);
  }
  .sh-support__card-stats-label {
    font-size: calc(16 / 320 * 100vw);
  }
  .sh-support__links {
    grid-template-columns: 1fr;
    align-items: center;
    gap: calc(20 / 320 * 100vw);
    margin-top: calc(26 / 320 * 100vw);
    max-width: calc(162 / 320 * 100vw);
    margin-inline: auto;
  }
  .sh-support__link-text {
    font-size: calc(14 / 320 * 100vw);
  }
}

/* ==========================================================================
   .sh-w-school
========================================================================== */
.sh-w-school {
  position: relative;
  width: 100%;
  height: 32rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-w-school__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.sh-w-school__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-w-school__w-text {
  position: absolute;
  top: -5.1rem;
  left: -2.1rem;
  font-family: var(--font-mincho);
  font-size: 39.6rem;
  font-weight: 600;
  line-height: 1;
  color: white;
  opacity: 0.5;
  z-index: 4;
  pointer-events: none;
}

/* PC版ボタン */
.sh-w-school__buttons {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 100%;
}
.sh-w-school__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.9rem 1.6rem 1.9rem 3.4rem;
  border-radius: 0.8rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity 0.3s ease;
  gap: 24px;
}
.sh-w-school__button:hover {
  opacity: 0.9;
}

/* ライセンスボタン（緑グラデーション） */
.sh-w-school__button--license {
  background: linear-gradient(-135deg, var(--PageColor-SummerGreen) 0%, var(--PageColor-EmeraldGreen) 100%);
  height: 8.8rem;
}

/* トレーナーボタン（青グラデーション） */
.sh-w-school__button--trainer {
  background: linear-gradient(-135deg, #107dbc 0%, var(--ThemeColor-Asagi) 100%);
  height: 12rem;
}
.sh-w-school__button-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sh-w-school__button-title {
  font-family: var(--font-base);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  margin: 0;
}
.sh-w-school__button-subtitle {
  font-family: var(--font-base);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  margin: 0;
  letter-spacing: 0;
}

/* トレーナーボタンのサブタイトル幅調整 */
.sh-w-school__button--trainer .sh-w-school__button-subtitle {
  max-width: 44.8rem;
}
.sh-w-school__button-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-w-school__button-arrow svg {
  display: block;
}

@media (max-width: 740px) {
  .sh-w-school {
    height: calc(213 / 320 * 100vw);
    align-items: flex-end;
    padding-bottom: calc(16 / 320 * 100vw);
  }
  .sh-w-school__w-text {
    top: calc(-42 / 320 * 100vw);
    left: calc(-38 / 320 * 100vw);
    font-size: calc(269 / 320 * 100vw);
  }
  .sh-w-school__buttons {
    gap: calc(8 / 320 * 100vw);
  }
  .sh-w-school__button {
    padding: calc(9.5 / 320 * 100vw) calc(8 / 320 * 100vw) calc(9.5 / 320 * 100vw) calc(14 / 320 * 100vw);
    border-radius: calc(4 / 320 * 100vw);
    gap: calc(8 / 320 * 100vw);
  }
  .sh-w-school__button--license {
    height: calc(40 / 320 * 100vw);
  }
  .sh-w-school__button--trainer {
    height: calc(56 / 320 * 100vw);
  }
  .sh-w-school__button-content {
    gap: 0;
  }
  .sh-w-school__button-title {
    font-size: calc(12 / 320 * 100vw);
  }
  .sh-w-school__button-subtitle {
    font-size: calc(16 / 320 * 100vw);
  }
  .sh-w-school__button--trainer .sh-w-school__button-subtitle {
    max-width: none;
  }
  .sh-w-school__button-title {
    font-size: calc(12 / 320 * 100vw);
  }
  .sh-w-school__button-arrow svg {
    width: calc(16 / 320 * 100vw);
    height: calc(16 / 320 * 100vw);
  }
}

/* トレーナーボタンのサブタイトル幅調整 */
.sh-w-school__button--trainer .sh-w-school__button-subtitle {
  max-width: 44.8rem;
}
@media (max-width: 740px) {
  .sh-w-school__button--trainer .sh-w-school__button-subtitle {
    max-width: none;
  }
}
.sh-w-school__button-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-w-school__button-arrow svg {
  display: block;
}

/* ==========================================================================
   カリキュラム詳細のアコーディオンアニメーション
   ========================================================================= */

.sh-curriculum__details {
  transition: grid-template-rows 0.5s ease-out;
  display: grid;
  grid-template-rows: 0fr;
}
.sh-curriculum__details.expanded {
  grid-template-rows: 1fr;
}
.sh-curriculum__details-inner {
  overflow: hidden;
}
