/* ===== リセット & 基本 ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #1A3A6B;
  --blue-dark: #0f2550;
  --red: #E5573E;
  --green: #5cb85c;
  --white: #ffffff;
  --gray: #f5f5f5;
  --font-jp: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en: 'Arial', 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-jp);
  color: #333;
  overflow-x: hidden;
}

/* ===== ヒーローセクション ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 80px;
}

.hero__sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
}

.hero__sidebar-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(0deg);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #555;
  font-family: var(--font-en);
  white-space: nowrap;
}

.hero__sidebar-line {
  width: 1px;
  height: 60px;
  background: #aaa;
  margin-top: 16px;
  flex-shrink: 0;
}

.hero__accent-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 90px;
  background: var(--blue);
  z-index: 11;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 80px;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0.05) 100%
  );
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}

.hero__video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero__video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__video-mask {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.hero__bg[data-mode="video"] .hero__image { display: none; }
.hero__bg[data-mode="video"] .hero__video { display: block; }

.hero__content {
  position: relative;
  z-index: 20;
  margin-left: 160px;
  align-self: center;
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
}

.hero__title {
  font-size: clamp(64px, 10vw, 120px);
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__catchcopy {
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.hero__btn {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-align: center;
  transition: color 0.3s;
  z-index: 0;
}

.hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.hero__btn:hover {
  color: #333;
}

.hero__btn:hover::before {
  transform: translateX(0);
}

.hero__opencampus {
  position: absolute;
  bottom: -60px;
  right: 0;
  z-index: 60;
  background: var(--blue);
  color: var(--white);
  padding: 28px 36px;
  min-width: 260px;
  border-top: 16px solid #fff;
  border-left: 16px solid #fff;
}

.hero__opencampus-label {
  font-size: 13px;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.9;
}

.hero__opencampus-date {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.hero__opencampus-link {
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  text-decoration: none;
  padding-bottom: 3px;
  background-image:
    linear-gradient(var(--red), var(--red)),
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, left bottom;
  background-size: 0% 1px, 100% 1px;
  transition: color 0.4s ease, background-size 0.4s ease;
}

.hero__opencampus-link:hover {
  color: var(--red);
  background-size: 100% 1px, 100% 1px;
}

/* ===== ページ下部アクセント ===== */
.page-accent-bottom {
  width: 80px;
  height: 80px;
  background: var(--blue);
}

/* ===== ヒーローラッパー ===== */
.hero-wrap {
  position: relative;       /* ティッカーの基準点 */
  margin-top: 182px;        /* header-2の合計高さ（84+48+50px）分下げる */
  margin-bottom: 80px;      /* 元のheroのmargin-bottom */
}

.hero-wrap .hero {
  margin-bottom: 0;         /* ラッパー側で余白を管理 */
  height: calc(100vh - 182px); /* ヘッダー分を引いて画面いっぱいに */
}

/* ===== ニューステッカーバー ===== */
.news-ticker {
  position: absolute;
  bottom: 0;
  left: 80px;               /* サイドバー幅分 */
  right: 260px;             /* オープンキャンパスボックス幅分 */
  z-index: 50;
  display: flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  height: 52px;
  padding: 0 40px 0 0;
  overflow: hidden;
}

.news-ticker__label {
  flex-shrink: 0;
  background: #A0CDDB;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.news-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.news-ticker__track {
  list-style: none;
  height: 100%;
  position: relative;
}

.news-ticker__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.news-ticker__item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.news-ticker__link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  width: 100%;
  padding: 0 20px;
}

.news-ticker__link:hover .news-ticker__title {
  text-decoration: underline;
}

.news-ticker__date {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

.news-ticker__title {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-ticker__more {
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.news-ticker__more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.news-ticker__more:hover {
  color: var(--red);
}

.news-ticker__more:hover::after {
  width: 100%;
}

.news-ticker__arrow {
  font-size: 13px;
}

@media (max-width: 768px) {
  .news-ticker {
    left: 0;
    right: 0;
    height: 44px;
    padding: 0 12px 0 0;
  }
  .news-ticker__label {
    font-size: 11px;
    padding: 0 12px;
    margin-right: 12px;
  }
  .news-ticker__title {
    font-size: 12px;
  }
  .news-ticker__more {
    font-size: 9px;
    margin-left: 12px;
  }
  .news-ticker__arrow {
    font-size: 10px;
  }
}

/* ===== NEWSセクション ===== */
.news {
  padding: 80px 0 60px;
  background: #A0CDDB;
  margin-left: 80px;
}

.news__accent-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--blue);
  z-index: 1;
}

.news__inner {
  max-width: 1200px;
  padding-left: 80px;
  padding-right: 20px;
}

.news__header {
  margin-bottom: 32px;
}

.news__title {
  font-size: 56px;
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1;
  color: #111;
  letter-spacing: 0.02em;
}

.news__category {
  display: inline-block;
  font-size: 13px;
  color: #555;
  margin-top: 12px;
}

.news__slider-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0;
}

.news__slider-wrap::-webkit-scrollbar {
  display: none;
}

.news__slider {
  display: flex;
  gap: 24px;
  width: max-content;
}

.news-card {
  position: relative;
  width: 280px;
  background: #fff;
  flex-shrink: 0;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-top: 15px solid var(--blue);
  border-right: 15px solid var(--blue);
  z-index: 2;
}

.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-bottom: 15px solid var(--blue);
  border-left: 15px solid var(--blue);
  z-index: 2;
}

.news-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d0d0d0;
  overflow: hidden;
}

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

.news-card__body {
  padding: 14px 16px 16px;
}

.news-card__date {
  font-size: 11px;
  color: #888;
  margin-bottom: 6px;
  font-family: var(--font-en);
}

.news-card__heading {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card__text {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
}

.news-card__more {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

.news-card__more:hover {
  color: var(--blue);
}

.news__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  padding-right: 0;
}

.news__more-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  gap: 2px;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}

.news__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.news__more-sub {
  font-size: 11px;
  font-family: var(--font-en);
  color: #888;
  font-weight: normal;
}

.news__more-arrow {
  font-size: 14px;
}

.news__more-link:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ===== 学科紹介セクション（PT・OT共通） ===== */
.dept {
  padding: 80px 0 60px;
  background: #fff;
}

.dept__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 0 220px;
}

.dept__photo-row {
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.dept__main-img {
  position: relative;
  flex: 0 0 46%;
  min-height: 650px;
}

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

.dept__main-img::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 0px;
  width: 60px;
  height: 60px;
  border-bottom: 30px solid var(--blue);
  border-left: 30px solid var(--blue);
  z-index: 10;
  pointer-events: none;
}

.dept__label {
  position: absolute;
  top: -16px;
  left: -195px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dept__label-en-wrap {
  position: relative;
}

.dept__label-bg {
  position: absolute;
  inset: -8px;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  border-radius: 0px;
}

.dept__label-en {
  font-size: 200px;
  font-weight: 600;
  color: #f5a800;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 4px;
}

/* スマホ専用：PTバッジ下の縦書き英字（PC表示では非表示） */
.dept__label-vertical-sp {
  display: none;
}

.dept__label-vertical-wrap {
  position: absolute;
  left: -195px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.dept__label-vertical {
  display: block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 80px;
  font-weight: 600;
  color: #f5a800;
  font-family: var(--font-en);
  letter-spacing: 4px;
  line-height: 1;
  background: rgba(255, 255, 255, 1);
  padding: 16px 8px;
  border-radius: 0px;
}

.dept__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.dept__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  height: 100%;
}

.dept__photos::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-top: 30px solid var(--blue);
  border-right: 30px solid var(--blue);
  z-index: 2;
}

.dept__photo {
  overflow: hidden;
  flex: 1;
  width: 100%;
}

.dept__photo--top {}
.dept__photo--bottom {}

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

.dept__left::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 120px;
  width: 28px;
  height: 28px;
  border-bottom: 8px solid var(--blue);
  border-left: 8px solid var(--blue);
}

.dept__bottom {
  display: flex;
  align-items: flex-end;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.dept__body {
  margin-left: 0px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 1);
}

.dept__text {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
}

.dept__more {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  transition: color .3s ease;
}

.dept__more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.dept__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dept__more-sub {
  display: block;
  width: 100%;
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
  font-weight: normal;
  transition: color .3s ease;
}

.dept__more:hover {
  color: var(--red);
}

.dept__more:hover::after {
  width: 100%;
}

.dept__more:hover .dept__more-sub {
  color: inherit;
}

/* ===== 学科紹介セクション（OT固有） ===== */
.dept--ot .dept__inner {
  padding: 0 220px 0 40px;
}

.dept--ot .dept__photo-row {
  flex-direction: row;
}

.dept__main-img--ot img {
  object-position: 60% center;
}

.dept__main-img--ot::after {
  content: '';
  position: absolute;
  bottom: 80px;
  right: 0;
  left: auto;
  width: 60px;
  height: 60px;
  border-bottom: 30px solid var(--blue);
  border-right: 30px solid var(--blue);
  border-left: none;
  z-index: 10;
  pointer-events: none;
}

.dept__label--ot {
  top: -16px;
  left: auto;
  right: -180px;
  align-items: flex-end;
}

.dept__label-en--ot {
  color: var(--green);
  font-size: 200px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: -4px;
  display: block;
  text-align: right;
}

.dept__photos--ot::before {
  top: 0;
  left: 0;
  right: auto;
  width: 60px;
  height: 60px;
  border-top: 30px solid var(--blue);
  border-left: 30px solid var(--blue);
  border-right: none;
  z-index: 2;
}

.dept__bottom--ot {
  flex-direction: row-reverse;
}

.dept__label-vertical-wrap--ot {
  position: absolute;
  left: auto;
  right: -195px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 0px;
}

.dept__label-vertical--ot {
  color: var(--green);
  transform: none;
  background: #fff;
  padding: 16px 8px;
}

/* ===== 魅力セクション ===== */
.appeal {
  padding: 100px 0 60px;
  background: #fff;
}

.appeal__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.appeal__photo {
  margin-left: 25%;
}

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

.appeal__text {
  margin-top: -80px;
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #fff;
  padding: 40px 48px;
}

.appeal__title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.appeal__subtitle {
  font-size: 12px;
  color: #f5a800;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.appeal__body {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 24px;
}

.appeal__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}

.appeal__more {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-top: 1px solid #333;
  padding-top: 8px;
  margin-bottom: 6px;
  transition: color .3s ease;
}

.appeal__more::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.appeal__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.appeal__more-arrow {
  font-size: 14px;
}

.appeal__more-sub {
  display: block;
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
  font-weight: normal;
  transition: color .3s ease;
}

.appeal__more:hover {
  color: var(--red);
}

.appeal__more:hover::before {
  width: 100%;
}

.appeal__more:hover .appeal__more-sub {
  color: inherit;
}

/* ===== キャンパスライフセクション ===== */
.campus {
  padding: 80px 0 60px;
  background: #fff;
}

.campus__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.campus__photos {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  height: 680px;
}

.campus__bar {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 350px;
  background: var(--blue);
  z-index: 1;
  top: 50%;
}

.campus__photo {
  position: relative;
  z-index: 2;
}

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

.campus__text {
  margin-top: -140px;
  position: relative;
  z-index: 3;
  display: inline-block;
  background: #fff;
  padding: 40px 48px;
  max-width: 480px;
}

.campus__title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.campus__subtitle {
  font-size: 12px;
  color: var(--blue);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.campus__lead {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.campus__body {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.campus__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 16px;
}

.campus__more {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-top: 1px solid #333;
  padding-top: 8px;
  margin-bottom: 4px;
  transition: color .3s ease;
}

.campus__more::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.campus__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.campus__more-arrow {
  font-size: 14px;
}

.campus__more-sub {
  display: block;
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
  font-weight: normal;
  transition: color .3s ease;
}

.campus__more:hover {
  color: var(--red);
}

.campus__more:hover::before {
  width: 100%;
}

.campus__more:hover .campus__more-sub {
  color: inherit;
}

/* ===== オープンキャンパスセクション ===== */
.opencampus {
  padding: 100px 0 60px;
  background: #fff;
}

.opencampus__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.opencampus__photo {
  margin-right: 25%;
}

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

.opencampus__text-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: -80px;
  position: relative;
  z-index: 2;
}

.opencampus__text {
  background: #fff;
  padding: 40px 48px;
  max-width: 420px;
}

.opencampus__title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.opencampus__subtitle {
  font-size: 12px;
  color: #f5a800;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.opencampus__body {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 20px;
}

.opencampus__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 16px;
}

.opencampus__more {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-top: 1px solid #333;
  padding-top: 8px;
  margin-bottom: 4px;
  transition: color .3s ease;
}

.opencampus__more::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.opencampus__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.opencampus__more-arrow {
  font-size: 14px;
}

.opencampus__more-sub {
  display: block;
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
  font-weight: normal;
  transition: color .3s ease;
}

.opencampus__more:hover {
  color: var(--red);
}

.opencampus__more:hover::before {
  width: 100%;
}

.opencampus__more:hover .opencampus__more-sub {
  color: inherit;
}

/* ===== BLOGセクション ===== */
.blog {
  padding: 80px 0 60px;
  background: var(--gray);
  margin-left: 80px;
}

.blog__inner {
  max-width: 1100px;
  margin: 0 auto 0 80px;
  padding: 0 40px;
}

.blog__header {
  margin-bottom: 40px;
}

.blog__title {
  font-size: 64px;
  font-weight: 900;
  font-family: var(--font-en);
  color: #222;
  line-height: 1;
  margin-bottom: 8px;
}

.blog__category {
  font-size: 13px;
  color: #555;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-top: 15px solid var(--blue);
  border-right: 15px solid var(--blue);
  z-index: 2;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-bottom: 15px solid var(--blue);
  border-left: 15px solid var(--blue);
  z-index: 2;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d0d0d0;
}

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

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 0;
}

.blog-card__tag {
  font-size: 11px;
  background: #888;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
}

.blog-card__tag--pt {
  background: var(--blue);
}

.blog-card__date {
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
}

.blog-card__heading {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  padding: 8px 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-card__text {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  padding: 0 16px 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.blog__more-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  transition: color .3s ease;
}

.blog__more-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.blog__more-main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.blog__more-sub {
  font-size: 11px;
  color: #888;
  font-family: var(--font-en);
  font-weight: normal;
  transition: color .3s ease;
}

.blog__more-link:hover {
  color: var(--red);
}

.blog__more-link:hover::after {
  width: 100%;
}

.blog__more-link:hover .blog__more-sub {
  color: inherit;
}

/* ===== お問い合わせセクション ===== */
.contact {
  position: relative;
}

.contact__bg {
  width: 100%;
  height: 480px;
}

.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.contact__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.contact__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  padding: 100px 0 0;
}

.contact__catch {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.contact__box {
  align-self: center;
  background: var(--blue);
  color: #fff;
  padding: 0;
  width: 1300px;
  margin-bottom: -80px;
}

/* contact__box を2分割 */
.contact__box {
  display: flex;
  align-items: stretch;
}

.contact__box-item {
  flex: 1;
  padding: 36px 48px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: color 0.3s;
}

.contact__box-item:hover {
  color: var(--red);
}

/* 採用情報 */
.contact__box-item--recruit {
  background: #A0CDDB;
}

.contact__box-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 18px;
  font-weight: bold;
}

.contact__box-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.contact__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
}

.contact__subtitle {
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 16px;
}

.contact__body {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.9;
}

/* ===== フッター ===== */
.footer {
  background: #fff !important;
  margin-top: 130px;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

footer.footer .footer__inner {
  display: grid !important;
  grid-template-columns: 1fr 0.5fr 1fr !important;
  width: 100% !important;
}

footer.footer .footer__col--info,
footer.footer .footer__col--sitemap,
footer.footer .footer__col--audience {
  min-width: 0 !important;
  box-sizing: border-box !important;
  float: none !important;
}

.footer__col--info {
  flex: 1 1 0;
  min-width: 0;
  background: #f5f5f5;
  padding: 40px 60px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

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

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.footer__logo-sub {
  font-size: 10px;
  color: #777;
}

.footer__logo-main {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.footer__address,
.footer__tel {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}

.footer__btns {
  /* display: flex; */
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;      /* 学校名と同じサイズ */
  color: #333;
  text-decoration: none;
  border: 1px solid #333;  /* 細い枠線・#333 */
  padding: 6px 12px;
  background: #fff;
}

.footer__btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.footer__nav a {
  font-size: 12px;
  color: #555;
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--blue);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__social-icon:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #f0f4fa;
}

.footer__col--sitemap,
.footer__col--audience {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  padding: 40px 40px;
}

.footer__section {
  margin-bottom: 12px;
}

.footer__section-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.footer__section ul {
  list-style: none;
}

.footer__section ul li {
  margin-bottom: 1px;
}

.footer__section ul li a {
  font-size: 11px;
  color: #666;
  text-decoration: none;
  line-height: 1.6;
}

.footer__section ul li a:hover {
  color: var(--blue);
}

.footer__copy {
  background: var(--blue);
  text-align: center;
  padding: 16px;
}

.footer__copy p {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-en);
}

/* ===== NEWS・BLOG カード中央寄せ ===== */
.news__inner {
  margin-left: auto;
  margin-right: auto;
}

.news__slider {
  justify-content: center;
}

.blog__inner {
  margin-left: auto;
  margin-right: auto;
}

.blog__grid {
  justify-content: center;
  justify-items: center;
}

/* ===== 下層ページ共通 ===== */
.sub-page body,
body.sub-page {
  background: #f0f0f0;
}

/* ヒーローサイドバーをグレーに */
body.sub-page .hero__sidebar {
  background: #f0f0f0;
}

/* ===== サブヒーロー ===== */
.is-root-container:has(.sub-hero) {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.sub-hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-top: 90px;
}

.sub-hero__bg {
  position: absolute;
  top: 0;
  left: 80px;
  right: 0;
  bottom: 0;
}

.sub-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.10) 100%
  );
}

.sub-hero__en-title {
  position: absolute;
  bottom: 24px;
  left: 160px;
  z-index: 10;
}

.sub-hero__white-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
  height: 20%;
  background: #fff;
  z-index: 5;
}

.sub-hero__en-title span {
  font-size: clamp(48px, 7vw, 90px);
  font-family: var(--font-en);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: none;
}

/* ===== パンくず ===== */
.breadcrumb {
  background: #4a5878 !important;
  border-bottom: none !important;
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 40px 4px 120px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb__inner a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.breadcrumb__inner a:hover {
  color: #fff;
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.5);
}

/* ===== メインコンテンツ共通 ===== */
.sub-main {
  margin-left: 80px;
  padding-top: 0 !important;
}

:not(#news-layout) .block-editor-contents p:empty {
  display: none;
}

.sub-hero + p {
  display: none;
}

/* セクション見出し共通 */
.section-head {
  margin-bottom: 48px;
}

.section-head__en {
  font-size: 56px;
  font-family: var(--font-en);
  font-weight: 900;
  color: #111;
  line-height: 1;
  letter-spacing: 0.02em;
}

.section-head__ja {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}

/* ===== 学科概要セクション ===== */
.dept-intro {
  background: #fff;
  padding: 72px 0 80px;
  margin-bottom: 40px;
}

.dept-intro__inner {
  max-width: 1200px;
  margin: 0;
  padding: 0 60px 0 80px;
  border-left: 4px solid #f5a800;
}

.dept-intro__head {
  display: flex;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 40px;
}

.dept-intro__title {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  line-height: 1.4;
  white-space: nowrap;
}

.dept-intro__info {
  font-size: 14px;
  font-weight: normal;
  color: #555;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.dept-intro__body-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.dept-intro__body {
  margin-bottom: 48px;
}

.dept-intro__lead {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.dept-intro__accent {
  color: #f5a800;
  font-weight: bold;
}

.dept-intro__text {
  font-size: 14px;
  line-height: 2;
  color: #444;
}

.dept-intro__photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  height: 420px;
}

.dept-intro__photo {
  overflow: hidden;
  position: relative;
}

.dept-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dept-intro__photo:hover img {
  transform: scale(1.03);
}

/* ===== 主な就職先・目指す資格 ===== */
.info-rows {
  background: #fff;
  border-top: none;
  padding: 0 0 80px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.info-rows__inner {
  max-width: 1500px;
  margin: 0;
  padding: 80px 80px;
}

.info-row {
  display: flex !important;
  align-items: flex-start;
  gap: 100px;
  padding: 40px 0;
  /* border-bottom: 1px solid #e8e8e8; */
}

.info-row__head {
  flex: 0 0 auto;
  width: 100px;
}

.info-row__title {
  font-size: 14px;
  font-weight: bold;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.4;
}

.info-row__en {
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-en);
}

.info-row__body {
  flex: 1;
}

.info-row__text {
  font-size: 14px;
  line-height: 2;
  color: #444;
}

.info-row__more {
  position: relative;
  flex-shrink: 0 !important;
  display: flex;
  flex-direction: column;
  /* align-items: flex-end; */
  gap: 0px;
  text-decoration: none;
  color: #333;
  align-self: center;
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  line-height: 1;
  transition: color .3s ease;
}

.info-row__more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.info-row__more-label {
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
}

.info-row__more-arrow {
  font-size: 14px;
}

.info-row__more-sub {
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-en);
  font-weight: normal;
  line-height: 1;
  transition: color .3s ease;
}

.info-row__more:hover {
  color: var(--red);
}

.info-row__more:hover::after {
  width: 100%;
}

.info-row__more:hover .info-row__more-sub {
  color: inherit;
}

/* ===== カリキュラム行（info-row内） ===== */
.info-row--curriculum {
  display: grid !important;
  grid-template-columns: 100px 1fr 330px;
  gap: 40px;
  align-items: start;
  padding-bottom: 0;
  border-bottom: none;
}

.info-row__curriculum-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.info-row__field {
  flex: 0 0 60px;
  font-size: 13px;
  color: #555;
  /*padding-top: 4px;*/
  white-space: nowrap;
}

.info-row__curriculum-photo {
  flex: 0 0 330px;
  position: relative;
  align-self: stretch;
  min-height: 300px;
}

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

/* ===== 写真2枚 ===== */
.info-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-left: auto;
  margin-right: 0;
  max-width: 1100px;
  padding-top: 20px;
}

.info-photos__item {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

/* ===== 医技専の設備 ===== */
.facility {
  position: relative;
  height: 520px;
  margin-left: -80px;
  margin-top: -80px;
  margin-bottom: -80px;
  overflow: hidden;
  z-index: 1;
}

.facility__bg {
  position: absolute;
  inset: 0;
}

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

.facility__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.facility__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  z-index: 2;
}

.facility__title-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 4px solid #f5a800;
  padding-left: 16px;
  padding: 0 80px;
}

.facility__border {
  display: none;
}

.facility__title {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.facility__more {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
  line-height: 1;
  transition: color .3s ease;
}

.facility__more::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.facility__more-label {
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
}

.facility__more-arrow {
  font-size: 14px;
}

.facility__more-sub {
  font-size: 11px;
  opacity: 0.7;
  font-family: var(--font-en);
  line-height: 1;
}

.facility__more:hover {
  color: var(--red);
  opacity: 0.85;
}

.facility__more:hover::after {
  width: 100%;
}

/* ===== 教員紹介 ===== */
.teacher-intro {
  background: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.teacher-intro__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0;
  padding: 120px 80px 80px;
  box-sizing: border-box;
}

.teacher-intro__head {
  border-left: 4px solid #f5a800;
  padding-left: 80px;
  margin-left: -80px;
  margin-bottom: 48px;
}

.teacher-intro__heading {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin-bottom: 4px;
}

.teacher-intro__en {
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-en);
}

.teacher-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 48px 40px;
}

.teacher-grid > p {
  display: none;
}

.teacher-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 12px 20px;
}

.teacher-card__photo {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.teacher-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.teacher-card__body {
  grid-column: 2;
  grid-row: 1;
}

.teacher-card__comment {
  grid-column: 1 / -1;
  grid-row: 2;
}

.teacher-card__name {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
}

.teacher-card__role {
  font-size: 13px;
  font-weight: normal;
  color: #666;
  margin-left: 4px;
}

.teacher-card__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  margin-bottom: 16px;
}

.teacher-card__info dt {
  font-size: 12px;
  color: var(--blue);
  font-weight: bold;
  white-space: nowrap;
}

.teacher-card__info dd {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
}

.teacher-card__comment {
  border-top: 1px solid #e8e8e8;
  padding-top: 12px;
}

.teacher-card__comment-label {
  font-size: 12px;
  color: var(--blue);
  font-weight: bold;
  margin-bottom: 6px;
}

.teacher-card__comment-text {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
}

/* ===== 在校生インタビュー ===== */
.student-interview {
  border-top: none;
  background: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  margin-bottom: 40px;
}

.student-interview__inner {
  max-width: 1400px;
  margin: 0;
  padding: 80px 80px 80px;
}

.student-interview__head {
  border-left: 4px solid #f5a800;
  padding-left: 80px;
  margin-left: -80px;
  margin-bottom: 48px;
}

.student-interview__heading {
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

.student-interview__card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.student-interview__photo {
  flex: 0 0 420px;
  position: relative;
}

.student-interview__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.student-interview__body {
  flex: 1;
  padding-top: 8px;
}

.student-interview__name {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
}

.student-interview__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}

.student-interview__text {
  font-size: 14px;
  line-height: 2;
  color: #444;
}

/* ===== カリキュラムセクション（PT用） ===== */
.pt-curriculum {
  background: #fff;
}

.pt-curriculum__inner {
  max-width: 1400px;
  margin: 0;
  padding: 0 0 0 80px;
  display: grid;
  grid-template-columns: 100px 100px 450px 400px;
  align-items: start;
  gap: 80px;
}

/* 列1: カリキュラム */
.pt-curriculum__col-title {
  padding-right: 16px;
  padding-bottom: 60px;
  padding-top: 4px;
}

.pt-curriculum__title {
  font-size: 14px;
  font-weight: bold;
  color: #111;
  margin-bottom: 4px;
  line-height: 1.4;
}

.pt-curriculum__en {
  font-size: 11px;
  color: #aaa;
  font-family: var(--font-en);
}

/* 列2: 分野 */
.pt-curriculum__col-field {
  padding-right: 16px;
  padding-bottom: 60px;
}

.pt-curriculum__field-name {
  font-size: 13px;
  color: #555;
  padding-top: 4px;
  margin-bottom: 80px;
}

.pt-curriculum__field-name--2 {
  margin-bottom: 0;
}

/* 列3: 内容 */
.pt-curriculum__col-content {
  padding-right: 24px;
  padding-bottom: 60px;
}

.pt-curriculum__subjects {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 16px;
  margin-bottom: 48px;

  width: 100%;
}

.pt-curriculum__subjects--2 {
  margin-bottom: 60px;
}

.pt-curriculum__subjects li {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  padding-left: 12px;
  position: relative;
}

.pt-curriculum__subjects li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: #f5a800;
}

/* 列4: 写真 */
.pt-curriculum__col-photo {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: auto;
}

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

.pt-curriculum__photo-accent {
  position: absolute;
  width: 50px;
  height: 50px;
}

.pt-curriculum__photo-accent--tr {
  top: 0;
  right: 0;
  border-top: 24px solid var(--blue);
  border-right: 24px solid var(--blue);
}

.pt-curriculum__photo-accent--bl {
  bottom: 0;
  left: 0;
  border-bottom: 24px solid var(--blue);
  border-left: 24px solid var(--blue);
}

/* ===== 資格セクション ===== */
.license {
  background: #f0f0f0;
  padding: 72px 0;
}

.license__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.license__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.license__item {
  background: #fff;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
  position: relative;
}

.license__item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 6px solid var(--blue);
  border-right: 6px solid var(--blue);
}

.license__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-bottom: 6px solid var(--blue);
  border-left: 6px solid var(--blue);
}

.license__item--main {
  border-left: 4px solid #f5a800;
}

.license__badge {
  display: inline-block;
  font-size: 11px;
  background: #f5a800;
  color: #fff;
  padding: 2px 10px;
  font-family: var(--font-jp);
}

.license__badge--sub {
  background: var(--blue);
}

.license__name {
  font-size: 15px;
  font-weight: bold;
  color: #222;
}

/* ===== ポイントセクション ===== */
.points {
  background: #fff;
  padding: 72px 0;
}

.points__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.point-card {
  background: #f9f9f9;
  position: relative;
}

.point-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-top: 6px solid var(--blue);
  border-right: 6px solid var(--blue);
  z-index: 2;
}

.point-card__num {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 36px;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(245, 168, 0, 0.25);
  line-height: 1;
  z-index: 2;
}

.point-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.point-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.point-card:hover .point-card__img img {
  transform: scale(1.04);
}

.point-card__body {
  padding: 20px 20px 24px;
}

.point-card__title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.point-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}

/* ===== カリキュラムセクション ===== */
.curriculum {
  background: #f0f0f0;
  padding: 72px 0;
}

.curriculum__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.curriculum__year {
  background: #fff;
}

.curriculum__year:not(:last-child) {
  border-right: 1px solid #e8e8e8;
}

.curriculum__year-head {
  background: var(--blue);
  color: #fff;
  padding: 20px 28px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.curriculum__year-head--2 {
  background: #2a5298;
}

.curriculum__year-head--3 {
  background: #1a3a6b;
}

.curriculum__year-num {
  font-size: 48px;
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1;
}

.curriculum__year-label {
  font-size: 13px;
  opacity: 0.85;
}

.curriculum__year-body {
  padding: 24px 28px 32px;
}

.curriculum__year-title {
  font-size: 14px;
  font-weight: bold;
  color: #f5a800;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.curriculum__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.curriculum__list li {
  font-size: 13px;
  color: #444;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.curriculum__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #f5a800;
  border-radius: 50%;
}

/* ===== 進路セクション ===== */
.career {
  background: #fff;
  padding: 72px 0;
}

.career__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.career__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.career__item {
  background: #f9f9f9;
  padding: 28px 20px;
  text-align: center;
  border-top: 3px solid var(--blue);
}

.career__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.career__title {
  font-size: 14px;
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
}

.career__text {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
}

.career__data {
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 60px;
  gap: 0;
}

.career__data-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.career__data-num {
  font-size: 64px;
  font-weight: 900;
  font-family: var(--font-en);
  color: #fff;
  line-height: 1;
}

.career__data-num small {
  font-size: 28px;
  font-weight: normal;
}

.career__data-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.career__data-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ===== 教員メッセージセクション ===== */
.teacher {
  background: #f0f0f0;
  padding: 72px 0;
}

.teacher__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.teacher__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  background: #fff;
  padding: 48px;
}

.teacher__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.teacher__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.teacher__body {
  padding: 8px 0;
}

.teacher__quote {
  font-size: 20px;
  font-weight: bold;
  color: var(--blue);
  line-height: 1.6;
  padding-left: 16px;
  border-left: 4px solid #f5a800;
  margin-bottom: 28px;
  font-style: normal;
}

.teacher__text {
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin-bottom: 16px;
}

.teacher__name {
  font-size: 13px;
  color: #888;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

/* ===== CTAセクション ===== */
.sub-cta {
  background: var(--blue);
  padding: 0;
}

.sub-cta__inner {
  display: flex;
  align-items: stretch;
}

.sub-cta__item {
  flex: 1;
  padding: 60px 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.sub-cta__divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.sub-cta__label {
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-bottom: 8px;
}

.sub-cta__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.sub-cta__text {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 32px;
  flex: 1;
}

.sub-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f5a800;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s;
  align-self: flex-start;
  min-width: 200px;
}

.sub-cta__btn:hover {
  background: #d4920a;
}

.sub-cta__btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
}

.sub-cta__btn--outline:hover {
  background: rgba(255,255,255,0.1);
}

/* お問い合わせ：在校生インタビューに重ねる */
.pt-contact {
  margin-top: -80px;
  position: relative;
  z-index: 1;
}

/* ===== レスポンシブ ===== */

/* タブレット（〜1024px）：白い四角を縮小 */
@media (max-width: 1024px) {
  .sub-hero__white-box {
    width: 32%;
    height: 16%;
  }

  .points__grid,
  .curriculum__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career__data {
    padding: 40px 32px;
  }

  .career__data-divider {
    margin: 0 24px;
  }
}

/* タブレット縦（〜768px）：白い四角を非表示、サイドバー縮小 */
@media (max-width: 768px) {
  .sub-main {
    margin-left: 40px;
    padding-top: 0 !important;
  }

  article:has(.sub-hero) .hero__sidebar {
    width: 40px;
  }

  article:has(.sub-hero) {
    position: relative;
  }
  article:has(.sub-hero)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    background: #f0f0f0;
    z-index: 0;
    pointer-events: none;
  }

  .hero__sidebar-text {
    font-size: 7px;
  }

  .hero__sidebar-line {
    display: none;
  }

  .sub-hero {
    height: 320px;
    margin-top: 60px;
  }

  .sub-hero__bg {
    left: 40px;
  }

  .sub-hero__en-title {
    left: 56px;
    bottom: 16px;
  }

  .sub-hero__en-title span {
    font-size: clamp(32px, 8vw, 56px);
  }

  .sub-hero__white-box {
    display: none;
  }

  .dept-intro {
    padding: 48px 0 56px;
  }

  .dept-intro__inner {
    max-width: 1200px;
    margin: 0;
    padding: 0 60px 0 20px;
    border-left: 4px solid #f5a800;
  }

  .dept-intro__head {
    padding-left: 4px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .dept-intro__title {
    font-size: 22px;
  }

  .dept-intro__body-wrap {
    padding: 0 24px;
  }

  .license__inner,
  .points__inner,
  .curriculum__inner,
  .career__inner,
  .teacher__inner {
    padding: 0 24px;
  }

  .license,
  .points,
  .curriculum,
  .career,
  .teacher {
    padding: 48px 0;
  }

  .section-head__en {
    font-size: 40px;
  }

  .points__grid {
    grid-template-columns: 1fr;
  }

  .curriculum__grid {
    grid-template-columns: 1fr;
  }

  .career__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career__data {
    flex-direction: column;
    gap: 32px;
    padding: 40px 24px;
  }

  .career__data-divider {
    width: 80px;
    height: 1px;
    margin: 0;
  }

  .teacher__content {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .teacher__photo {
    aspect-ratio: 16 / 9;
    max-height: 260px;
  }

  .sub-cta__inner {
    flex-direction: column;
  }

  .sub-cta__divider {
    width: 100%;
    height: 1px;
  }

  .sub-cta__item {
    padding: 48px 32px;
  }

  /* ===== 主な就職先・目指す資格・カリキュラム（info-rows） ===== */
  .info-rows__inner {
    padding: 48px 24px;
  }

  .info-row {
    flex-direction: column;
    gap: 12px;
    padding: 24px 0;
  }

  /* .info-row__more を持つ行だけ、右下に絶対配置するための余白を確保 */
  .info-row:has(.info-row__more) {
    position: relative;
    padding-bottom: 80px;
  }

  .info-row__head {
    width: auto;
  }

  /* flex の align-self / auto margin が効かなかったため、
     position:absolute で確実に右寄せする */
  .info-row__more {
    position: absolute !important;
    top: auto !important;
    right: 0 !important;
    bottom: 24px !important;
    left: auto !important;
    margin: 0 !important;
    align-self: auto !important;
  }

  .info-row__more-label {
    font-size: 9px;
  }

  .info-row__more-arrow {
    font-size: 10px;
  }

  .info-row__more-sub {
    font-size: 8px;
  }

  .info-row--curriculum {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-row__curriculum-block {
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .info-row__curriculum-block:last-child {
    margin-bottom: 0;
  }

  .pt-curriculum__subjects {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-row__curriculum-photo {
    flex: none;
    width: 70%;
    margin: 0 auto;
    min-height: 300px;
  }

  .pt-curriculum__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }

  .info-photos {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
  }

  /* ===== 医技専の設備 ===== */
  .facility {
    height: 320px;
    margin-left: -40px;
    margin-top: -120px;
    margin-bottom: -56px;
  }

  .facility__inner {
    padding: 0 24px 0 40px;
  }

  .facility__title-wrap {
    max-width: 1200px;
    margin: 0;
    padding: 0 60px 0 20px;
    border-left: 4px solid #f5a800;
  }

  .facility__title {
    font-size: 20px;
  }

  .facility__more {
    flex-shrink: 0;
  }

  .facility__more-label {
    font-size: 10px;
  }

  .facility__more-arrow {
    font-size: 11px;
  }

  .facility__more-sub {
    font-size: 8px;
  }

  /* ===== 教員紹介 ===== */
  .teacher-intro__inner {
    padding: 56px 24px 48px;
  }

  .teacher-intro__head {
    border-left: 4px solid #f5a800;
    padding-left: 32px;
    margin-left: -24px;
    margin-bottom: 48px;
  }

  .teacher-intro__heading {
    font-size: 20px;
  }

  .teacher-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .teacher-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  .teacher-card__photo {
    grid-column: 1;
    grid-row: 1;
    width: 65%;
    margin: 0 auto;
  }

  .teacher-card__body {
    grid-column: 1;
    grid-row: 2;
  }

  .teacher-card__comment {
    grid-column: 1;
    grid-row: 3;
  }

  .teacher-card__name {
    font-size: 15px;
  }

  /* ===== 対談 ===== */
  .student-interview__inner {
    padding: 48px 24px;
  }

  .student-interview__head {
    /* margin-left: 0; */
    /* padding-left: 4px; */
    border-left: 4px solid #f5a800;
    padding-left: 32px;
    margin-left: -24px;
    margin-bottom: 48px;
  }

  .student-interview__heading {
    font-size: 20px;
  }

  /* 3714行目の .student-interview__card（align-items:center; gap:48px;）が
     ソース順で後に来て勝ってしまうため !important で上書き */
  .student-interview__card {
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px !important;
  }

  /* 後方の「card内の写真サイズを固定」ルール（flex:0 0 180px）が
     ソース順で後に来るため勝ってしまう。!importantで確実に上書き */
  .student-interview__card:not(.student-interview__card--full-image) .student-interview__photo {
    flex: none !important;
    max-width: 40% !important;
    margin: 0 auto !important;
  }

  /* 「テキスト｜画像」カード（本多先生の写真）はもう少し小さく */
  .student-interview__card--text-image .student-interview__photo {
    max-width: 40% !important;
  }

  .taidan-caption {
    gap: 8px !important;
    align-items: center !important;
  }

  .taidan-caption__line {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 20px 10px !important;
  }

  .taidan-caption__line:first-child {
    margin-top: -80px !important;
  }
}

/* スマートフォン（〜480px） */
@media (max-width: 480px) {
  .sub-hero {
    height: 240px;
  }

  .sub-hero__en-title span {
    font-size: clamp(28px, 9vw, 44px);
  }

  .dept-intro__title {
    font-size: 20px;
  }

  .career__grid {
    grid-template-columns: 1fr;
  }

  .career__data-num {
    font-size: 48px;
  }

  .license__list {
    flex-direction: column;
  }

  .teacher__quote {
    font-size: 16px;
  }
}

/* ===== フッターボタン上書き（実際のクラス名に合わせて） ===== */
.footer__btns .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #333 !important;
  text-decoration: none;
  border: 1px solid #333 !important;
  padding: 6px 12px;
  background: #fff !important;
  box-shadow: none !important;
  border-radius: 0;
  min-width: 0;
  height: auto;
  line-height: 1.4;
}

.footer__btns .wp-block-button__link:hover {
  color: var(--blue) !important;
  border-color: var(--blue) !important;
  background: #fff !important;
}

.footer__btns .wp-block-button__link.reverse {
  color: #333 !important;
  background: #fff !important;
  border: 1px solid #333 !important;
}

.footer__btns .wp-block-button__link.reverse:hover {
  color: var(--blue) !important;
  border-color: var(--blue) !important;
}

/* ===== フッターボタン（旧：footer .wp-block-button__link） ===== */
.footer-btn {
  min-width: 0;
  height: auto;
  margin-right: 5px;
  padding: 10px 15px;
  display: inline-block;
  line-height: 1;
  color: #fff;
  background-color: transparent;
  border-radius: 0;
  box-shadow: 0 0 0 1px #fff inset;
  text-decoration: none;
  cursor: pointer;
}

.footer-btn:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* ===== フッターボタン反転（旧：footer .wp-block-button__link.reverse） ===== */
.footer-btn--reverse {
  color: #333;
  background-color: #fff;
  box-shadow: 0 0 0 1px #fff inset;
}

.footer-btn--reverse:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* アイコン余白（旧：footer .wp-block-button__link i） */
.footer-btn i {
  margin-right: .3em;
}

/* ===== 学科ページ：旧テンプレートラッパー無効化 ===== */

/* 旧ヘッダーエリア・パンくずを非表示（.coruseページ、および.sub-heroを使う独自レイアウトのページ共通） */
article.coruse > header,
article:has(.sub-hero) > header,
#course-header {
  display: none !important;
}

/* 旧ラッパーの余白・幅・背景をリセット */
article.coruse {
  margin-bottom: 0 !important;
}

#coruse-contents {
  background: none;
}

#coruse-wrapper {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #f0f0f0 !important;
  float: none !important;
  overflow: visible !important;

  padding-bottom: 30px!important;
}

#coruse-contents .is-root-container,
.block-editor-contents.is-root-container {
  width: 100% !important;
  max-width: none !important;
  /*margin: 0 !important;*/
  /*padding: 0 !important;*/
  /*background: #f0f0f0;*/
}

/* lc.css の .is-root-container h2 を打ち消す */
.is-root-container .info-row__title {
  all: revert;
  font-size: 14px !important;
  font-weight: bold !important;
  color: #111 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  line-height: 1.4 !important;
  border: none !important;
}

.is-root-container .info-row__title::after {
  display: none !important;
}

/* sub-hero の margin-top を新ヘッダー（182px）に合わせる（.coruse以外の.sub-hero使用ページも同様に） */
article.coruse .sub-hero,
article:has(.sub-hero) .sub-hero {
  margin-top: 182px;
}

/* スマホ表示：ヘッダーが60pxに縮むのに合わせて余白も追従させる
   （.sub-hero 単体の上書きは article.coruse .sub-hero の方が詳細度が高く勝ってしまうため、
   同じセレクタで!importantを付けて確実に上書き） */
@media (max-width: 768px) {
  article.coruse .sub-hero,
  article:has(.sub-hero) .sub-hero {
    margin-top: 60px !important;
  }
}

/* ===== 対談セクション ===== */

/* 見出しを横並び（対談 ｜ 生徒 × 先生） */
.student-interview__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* カード間の余白 */
.student-interview__card {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 10px;
}
.student-interview__card:last-child {
  margin-bottom: 0;
}

/* テキスト ｜ 画像（テキスト左・写真右） */
.student-interview__card--text-image {
  flex-direction: row;
}

/* 画像全幅 */
.student-interview__card--full-image {
  display: block;
}
.student-interview__card--full-image .student-interview__photo {
  flex: none;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.student-interview__card--full-image .student-interview__photo img {
  width: 100% !important;
  height: 600px !important;
  max-width: 100%;
  object-fit: cover !important;
  object-position: center 60%;
}

/* 上記ルールが !important かつソース順で後にあるため、768px以下のスマホ用の
   高さ上書きはこの直後に置く（同じ!important同士はソース順で後が勝つ） */
@media (max-width: 768px) {
  .student-interview__card--full-image .student-interview__photo img {
    height: 420px !important;
  }
}

/* テキスト全幅 */
.student-interview__card--full-text {
  display: block;
}
.student-interview__card--full-text .student-interview__body {
  max-width: 720px;
}

@media (max-width: 768px) {
  .student-interview__card--text-image {
    flex-direction: column;
  }
}

/* ===== 対談：会話パート ===== */

/* card内でtaidan-convをflex子要素として伸ばす */
.student-interview__card > .taidan-conv {
  flex: 1;
  min-width: 0;
}

/* card内の写真サイズを固定 */
.student-interview__card:not(.student-interview__card--full-image) .student-interview__photo {
  flex: 0 0 180px;
  max-width: 180px;
}
.student-interview__card .student-interview__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  object-fit: unset;
}

.taidan-conv {
  margin-bottom: 0;
}
.taidan-conv__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
.taidan-conv__name {
  flex: 0 0 48px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  padding-top: 2px;
  white-space: nowrap;
}
.taidan-conv__name--student { color: #f5a800; }
.taidan-conv__name--teacher { color: #1A3A6B; }
.taidan-conv__text {
  flex: 1;
  font-size: 14px;
  line-height: 2;
  color: #444;
}

/* 対談：最後の画像のL字装飾 */
.student-interview__card--full-image .pt-curriculum__photo-accent {
  width: 60px;
  height: 60px;
}
.student-interview__card--full-image .pt-curriculum__photo-accent--tr {
  border-top: 30px solid var(--blue);
  border-right: 30px solid var(--blue);
}
.student-interview__card--full-image .pt-curriculum__photo-accent--bl {
  border-bottom: 30px solid var(--blue);
  border-left: 30px solid var(--blue);
}

/* 対談：全幅画像の縦書きキャプション */
.taidan-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row-reverse;
  gap: 24px;
  align-items: flex-end;
}
.taidan-caption__line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.2em;
  background: #fff;
  padding: 32px 16px;
}
.taidan-caption__line:first-child {
  align-self: flex-start;
  margin-top: -80px;
}
.tate-upright {
  text-orientation: upright;
}
.taidan-caption__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.taidan-caption__char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 追従オープンキャンパスBOXの位置を下げる */
.box_opencampus_wrap {
  bottom: 40px !important;
}

/* ============================================================
   ナビゲーション 3階層対応（header-2.php）
   ============================================================ */

/* ドロップダウンをナビバー全幅に */
.h2-nav__list {
  position: relative;
}

.h2-nav__item {
  position: static;
}

.h2-nav__dropdown {
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
}

/* L2ドロップダウン内アイテム */
.h2-nav__dropdown__item {
  position: relative;
}

.h2-nav__dropdown__item--has-child > a::after {
  content: '›';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #aaa;
  line-height: 1;
}

.h2-nav__dropdown__item--has-child > a {
  padding-right: 32px;
}

/* L3フライアウト（右展開） */
.h2-nav__dropdown2 {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  border-top: 3px solid #A0CDDB;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.h2-nav__dropdown__item--has-child:hover .h2-nav__dropdown2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.h2-nav__dropdown2 li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}

.h2-nav__dropdown2 li:last-child a {
  border-bottom: none;
}

.h2-nav__dropdown2 li a:hover {
  background: #f0f4fa;
  color: #1A3A6B;
  padding-left: 26px;
}

/* SPドロワー アコーディオン（3階層） */
.h2-drawer__l1 {
  border-bottom: 1px solid #e0e0e0;
}

.h2-drawer__l1-header {
  display: flex;
  align-items: stretch;
}

.h2-drawer__l1-link {
  flex: 1;
  display: block;
  padding: 14px 16px 14px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: color 0.18s;
}

.h2-drawer__l1-link:hover {
  color: #1A3A6B;
}

.h2-drawer__l1--direct .h2-drawer__l1-link {
  padding-right: 24px;
}

.h2-drawer__toggle {
  width: 48px;
  background: none;
  border: none;
  border-left: 1px solid #e0e0e0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.h2-drawer__toggle::before,
.h2-drawer__toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #333;
  transition: transform 0.2s, opacity 0.2s;
}

.h2-drawer__toggle::before { transform: translate(-50%, -50%); }
.h2-drawer__toggle::after  { transform: translate(-50%, -50%) rotate(90deg); }

.h2-drawer__l1.is-open > .h2-drawer__l1-header .h2-drawer__toggle::after,
.h2-drawer__l2.is-open > .h2-drawer__l2-header .h2-drawer__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.h2-drawer__toggle--sm {
  width: 40px;
}

.h2-drawer__l2-group {
  display: none;
  background: #f5f8ff;
  border-top: 1px solid #e0e0e0;
}

.h2-drawer__l2 {
  border-bottom: 1px solid #e0e0e0;
}

.h2-drawer__l2:last-child {
  border-bottom: none;
}

.h2-drawer__l2-header {
  display: flex;
  align-items: stretch;
}

.h2-drawer__l2-link {
  flex: 1;
  display: block;
  padding: 11px 12px 11px 36px;
  font-size: 13px;
  font-weight: bold;
  color: #1A3A6B;
  text-decoration: none;
}

.h2-drawer__l2-direct {
  display: block;
  padding: 11px 12px 11px 36px;
  font-size: 13px;
  font-weight: bold;
  color: #1A3A6B;
  text-decoration: none;
}

.h2-drawer__l3-list {
  display: none;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.h2-drawer__l3-list li a {
  display: block;
  padding: 10px 16px 10px 52px;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}

.h2-drawer__l3-list li:last-child a {
  border-bottom: none;
}

.h2-drawer__l3-list li a:hover {
  color: #1A3A6B;
  background: #f0f4fa;
}

/* ===== ページタイトル（#page-title）リスタイル ===== */
#page-title {
  height: auto !important;
  background: #f0f0f0 !important;
  overflow: visible !important;
  padding: 48px 0 0;
  display: flex;
  justify-content: center;
}

#page-title::after {
  display: none !important;
}

#page-title img {
  display: none !important;
}

#page-title h1 {
  position: static !important;
  transform: none !important;
  color: #333 !important;
  font-size: 24px !important;
  font-weight: bold;
  line-height: 1.4;
  width: 100% !important; /* lc.css の @media(max-width:980px) width:90% を確実に上書き */
  max-width: 1300px !important; /* コンテンツ（.block-editor-contents）と同幅に統一 */
  background: #fff;
  padding: 28px 48px 28px 44px;
  box-sizing: border-box;
  border-left: 4px solid #A0CDDB;
  text-align: left !important;
}

#page-title h1::before {
  display: none;
}

/* ===== 固定ページ共通：グレー背景＋白BOX ===== */
main article > header {
  margin-bottom: 0 !important;
}

/* 固定ページ（非学科ページ）のarticleにグレー背景 */
/* 左右の余白をここで持たせることで、タイトルとコンテンツの白BOXが同じ幅で揃い、
   グレー背景が両方を均等に囲む（PC/SP共通の仕組み） */
main article:not(.coruse):not(:has(.sub-hero)) {
  background: #f0f0f0;
  padding: 0 40px 80px;
  box-sizing: border-box;
}

main article:has(.teacher-intro) {
  background: transparent;
}

.teacher-card {
  background: #fff !important;
}

/* コンテンツエリアを白BOXとして#page-title h1と同幅に */
main article:not(.coruse):not(:has(.sub-hero)) .block-editor-contents,
main article:not(.coruse):not(:has(.sub-hero)) .block-editor-contents.is-root-container {
  background: #fff !important;
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
  padding: 40px 60px;
  box-sizing: border-box !important;
}

/* スマホ幅：グレー背景の余白とタイトル/コンテンツの内側パディングを縮小 */
@media (max-width: 768px) {
  main article:not(.coruse):not(:has(.sub-hero)) {
    padding: 0 16px 60px;
  }

  #page-title h1 {
    padding: 20px 20px 20px 16px;
  }

  main article:not(.coruse) .block-editor-contents,
  main article:not(.coruse) .block-editor-contents.is-root-container {
    padding: 24px 20px !important;
  }
}

/* ===== パンくずリスト（PC）：article の左右余白を打ち消して常に左右いっぱいに表示 ===== */
main article:not(.coruse) .breadcrumbs {
  margin-left: -40px;
  margin-right: -40px;
  background-color: #525252 !important;
}

main article:not(.coruse) .breadcrumbs > div > *,
main article:not(.coruse) .breadcrumbs > div > * a {
  color: #FFF !important;
}

/* スマホ表示ではパンくずメニューを非表示 */
@media (max-width: 768px) {
  main article:not(.coruse) .breadcrumbs {
    display: none;
  }
}

/* page-content-box（HTMLに書いてある場合の後方互換） */
.page-content-box {
  background: transparent;
  padding: 0;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

/* ===== 学校紹介ページ グリッドレイアウト ===== */
.school-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 48px;
  width: 100%;
  max-width: 900px;
  padding: 0 0 40px;
  box-sizing: border-box;
}

/* スマホ表示ではカードを縦並びに（本文中のインラインstyleを!importantで上書き） */
@media (max-width: 768px) {
  .school-grid {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
  }
}

.school-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

a.school-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
a.school-card__head::after {
  content: '→';
  color: transparent;
  font-size: 14px;
  transition: color 0.2s;
}
a.school-card__head:hover {
  background: #1A3A6B;
  color: #fff;
}
a.school-card__head:hover::after {
  color: #fff;
}
.school-card__head {
  background: #1A3A6B;
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: bold;
}

.school-card__body {
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
}

.school-card__link {
  display: block;
  padding: 11px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  border-left: 3px solid transparent;
  background: #f5f5f5;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.school-card__link:last-child {
  border-bottom: none;
}

.school-card__link:hover {
  background: #f5f5f5;
  border-left-color: #A0CDDB;
  color: #333;
}

.school-card__body--single {
  padding: 16px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  border-left: 3px solid transparent;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.school-card--link:hover .school-card__body--single {
  border-left-color: #A0CDDB;
}

.school-card--link .school-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.school-card--link .school-card__head::after {
  content: '→';
  color: transparent;
  font-size: 14px;
  transition: color 0.2s;
}
.school-card--link:hover .school-card__head {
  background: #1A3A6B;
  color: #fff;
}
.school-card--link:hover .school-card__head::after {
  color: #fff;
}

/* ===== 作業療法学科：アクセントカラーをグリーンに上書き ===== */
.page-ot > p {
  display: none;
}

.page-ot .taidan-conv__name--student {
  color: #6AC35F;
}

.page-ot .sub-hero__white-box {
  width: 32%;
}

.page-ot .dept-intro__inner {
  border-left-color: #6AC35F;
}

.page-og_ob .dept-intro__inner {
  border-left-color: #A0CDDB;
}

.page-og_ob .sub-hero__white-box {
  width: 30%;
}

.page-student_voice .dept-intro__inner {
  border-left-color: #A0CDDB;
}

.page-student_voice .dept-intro {
  padding-bottom: 0;
}

.page-student_voice .sub-hero__white-box {
  width: 25%;
}

.page-ot .dept-intro__accent {
  color: #6AC35F;
}

/* ===== ≫ テキストリンクリスト ===== */
.text-link-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.text-link-list a {
  color: #1D4A9E !important;
  text-decoration: none !important;
  font-size: 14px;
}

.text-link-list a::before {
  content: '≫ \0020';
}

.text-link-list a:hover {
  text-decoration: underline !important;
}

.page-ot .facility__title-wrap {
  border-left-color: #6AC35F;
}

.page-ot .teacher-intro__head {
  border-left-color: #6AC35F;
}

.page-ot .student-interview__head {
  border-left-color: #6AC35F;
}

.page-ot .pt-curriculum__subjects li::before {
  color: #6AC35F;
}

@media (max-width: 768px) {
  .page-ot .dept-intro__head {
    border-left-color: #6AC35F;
  }
}

/* ===== OB・OGの声（dept-intro内に配置） ===== */
.ogob-voice__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 40px 60px 0 80px;
  border-left: 4px solid transparent;
  box-sizing: border-box;
}

.ogob-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 60px;
}

.ogob-voice-grid > p {
  display: none;
}

.ogob-voice-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;

  background: #fff!important;
}

.ogob-voice-card__photo {
  width: 200px;
  flex-shrink: 0;
}

.ogob-voice-card__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.ogob-voice-card__body {
  flex: 1;
  min-width: 0;
  max-width: 280px;
}

.ogob-voice-card__heading {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.ogob-voice-card__text {
  font-size: 12px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}

.ogob-voice-card__footer {
  border-top: 1px solid #ddd;
  padding-top: 8px;
}

.ogob-voice-card__hospital {
  font-size: 11px;
  color: #666;
  margin-bottom: 2px;
}

.ogob-voice-card__name {
  font-size: 13px;
  font-weight: bold;
  color: #333;
}

.ogob-voice-card__dept {
  font-size: 10px;
  color: #999;
}

/* 1400px前後から横並びだと窮屈で読みづらくなるため、早めに縦積み（写真の下にコメント）に切り替える */
@media (max-width: 1400px) {
  .ogob-voice-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ogob-voice-card {
    flex-direction: column;
  }

  .ogob-voice-card__photo {
    width: 35%;
    margin: 0 auto;
  }

  .ogob-voice-card__body {
    max-width: 100%;
  }
}

/* ===== 在校生の声（Voices of Current Students） ===== */
.student-voice__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0;
  padding: 40px 40px 0 80px;
  box-sizing: border-box;
}

.student-voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}

.student-voice-grid > p {
  display: none;
}

.student-voice-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #fff !important;
}

.student-voice-card--reverse {
  flex-direction: row-reverse;
}

.student-voice-card__photo {
  position: relative;
  flex: 0 0 auto;
  height: 500px;
}

.student-voice-card__photo img {
  height: 100%;
  width: auto;
  display: block;
}

.student-voice-card__content {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.student-voice-card__number {
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 96px;
  font-weight: 900;
  font-family: var(--font-en);
  color: rgba(26, 58, 107, 0.1);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.student-voice-card__heading {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  color: #111;
  margin-bottom: 14px;
}

.student-voice-card__text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.student-voice-card__footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.student-voice-card__school {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
}

.student-voice-card__name {
  font-size: 14px;
  font-weight: bold;
  color: #111;
  margin-top: 4px;
}

/* 1400px前後から2カラムだと窮屈で読みづらくなるため、早めに縦積み（写真の下にコメント）に切り替える */
@media (max-width: 1400px) {
  .student-voice-grid {
    grid-template-columns: 1fr;
    gap: 40px 16px;
  }

  .student-voice-card,
  .student-voice-card--reverse {
    flex-direction: column;
    gap: 20px;
  }

  .student-voice-card__photo {
    flex: none;
    width: 55%;
    margin: 0 auto;
    height: auto;
  }

  .student-voice-card__photo img {
    width: 100%;
    height: auto;
  }

  .student-voice-card__number,
  .student-voice-card--reverse .student-voice-card__number {
    font-size: 64px;
    right: 0;
    left: auto;
  }
}

@media (max-width: 768px) {
  .student-voice-grid {
    gap: 32px 16px;
  }

  .student-voice__inner {
    padding: 24px 20px !important;
  }

  .ogob-voice__inner {
    padding: 24px 20px !important;
  }
}

/* ===== 国家試験合格率テーブル ===== */
.exam-result-table {
  margin: 40px 0;
  overflow-x: auto;
}

.exam-result-table__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.exam-result-table .exam-result-table__table {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border: 1px solid #111 !important;
}

.exam-result-table .exam-result-table__table th,
.exam-result-table .exam-result-table__table td {
  border: 1px solid #111 !important;
  background: #fff !important;
  padding: 16px 8px;
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  font-weight: normal !important;
  color: #111 !important;
}

.exam-result-table .exam-result-table__table thead th {
  font-size: 13px;
  font-weight: normal !important;
  line-height: 1.4;
}

.exam-result-table .exam-result-table__dept,
.exam-result-table .exam-result-table__label {
  font-weight: bold !important;
}

.exam-result-table .exam-result-table__dept {
  font-size: 14px;
  white-space: nowrap;
}

.exam-result-table .exam-result-table__label {
  font-size: 13px;
  white-space: nowrap;
}

.exam-result-table .exam-result-table__num {
  font-size: 30px !important;
  font-weight: bold !important;
}

.exam-result-table .exam-result-table__table .exam-result-table__num--red {
  color: #e50012 !important;
}

@media (max-width: 768px) {
  .exam-result-table .exam-result-table__table th,
  .exam-result-table .exam-result-table__table td {
    padding: 10px 4px;
    font-size: 11px;
  }

  .exam-result-table .exam-result-table__num {
    font-size: 18px !important;
  }
}

/* ============================================================
   header2.css より統合 ―  3段ヘッダー
   ============================================================ */

:root {
  --h2-blue:    #1A3A6B;
  --h2-blue-dk: #0f2550;
  --h2-orange:  #A0CDDB;
  --h2-white:   #ffffff;
  --h2-border:  #e0e0e0;
  --h2-text:    #333333;
  --h2-font-jp: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --h2-font-en: 'Manrope', 'Arial', sans-serif;
}

.h2-header *,
.h2-drawer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================================
   ヘッダー全体
   ============================================================ */
.h2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-family: var(--h2-font-jp);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  height: auto;
}

.h2-header--hidden {
  transform: translateY(-100%);
}

/* ============================================================
   1行目：ロゴ ＋ 資料請求・お問い合わせ（紺色）
   ============================================================ */
.h2-row1 {
  background: var(--h2-blue);
  height: 84px;
}

.h2-row1__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── ロゴ ── */
.h2-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.h2-logo__img {
  height: 44px;
  width: auto;
}

.h2-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.h2-logo__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.h2-logo__main {
  font-size: 20px;
  font-weight: bold;
  color: var(--h2-white);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── 右側ボタン ── */
.h2-row1__nav {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

/* 資料請求（枠なし・文字のみ） */
.h2-row1__request {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  margin-right: 4px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.h2-row1__request:hover {
  color: #fff;
}

/* よくあるご質問（白枠・ホバーで色反転） */
.h2-row1__faq {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.7);
  white-space: nowrap;
  margin-right: 10px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}

.h2-row1__faq:hover {
  background: var(--h2-white);
  color: var(--h2-blue);
}

/* お問い合わせ（白枠・ホバーで色反転） */
.h2-row1__contact {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.5);
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
}

.h2-row1__contact span {
  display: none;
}

.h2-row1__contact:hover {
  background: var(--h2-white);
  color: #1A3A6B;
}

/* ============================================================
   2行目：メインナビゲーション（紺色）
   ============================================================ */
.h2-row2 {
  background: var(--h2-blue);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.h2-row2__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.h2-nav__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between; /* 1行目の幅に合わせて均等配置 */
  width: 100%;
}

.h2-nav__item {
  position: relative;
  flex: 1; /* 均等に広げる */
}

.h2-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.h2-nav__link:hover {
  color: #fff;
  border-bottom-color: var(--h2-orange);
  background: rgba(255,255,255,0.08);
}

/* ドロップダウン矢印 */
.h2-nav__item--has-child > .h2-nav__link::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -3px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.h2-nav__item--has-child:hover > .h2-nav__link::after {
  transform: rotate(225deg);
  margin-top: 2px;
}

/* ドロップダウンメニュー */
.h2-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--h2-white);
  border-top: 3px solid var(--h2-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}

.h2-nav__item--has-child:hover .h2-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.h2-nav__dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--h2-text);
  text-decoration: none;
  border-bottom: 1px solid var(--h2-border);
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
}

.h2-nav__dropdown li:last-child a {
  border-bottom: none;
}

.h2-nav__dropdown li a:hover {
  background: #f0f4fa;
  color: var(--h2-blue);
  padding-left: 26px;
}

/* ============================================================
   3行目：対象者別リンク（白色）
   ============================================================ */
.h2-row3 {
  background: var(--h2-white);
  position: relative;
  overflow: hidden; /* 左側の紺色を画面端でクリップ */
}

.h2-row3__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 32px;
}

.h2-audience {
  display: flex;
  align-items: center;
  width: 100%;
}

.h2-audience li {
  flex: 1; /* 均等幅 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2-audience li.h2-audience__label {
  position: relative;
  z-index: 0;
  flex: 0 0 auto;
  align-self: stretch;
  margin: -8px 0; /* h2-row3__inner の上下paddingを打ち消し、紺色を行の高さいっぱいに広げる */
  padding: 8px 20px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

/* 紺色の塗りと罫線はこの1枚にまとめ、画面左端からラベル右端まで継ぎ目なく表示する */
.h2-audience li.h2-audience__label::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: 0;
  background: var(--h2-blue);
  border-top: 1px solid rgba(255,255,255,0.15); /* 2行目メニューとの境界線（同スタイル） */
}

.h2-audience li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4px 0;
  font-size: 13px;
  color: var(--h2-blue);
  text-decoration: none;
  font-weight: bold;
  border-left: 1px solid var(--h2-border);
  letter-spacing: 0.03em;
  transition: color 0.18s;
  white-space: nowrap;
}

.h2-audience li:last-child a {
  border-right: 1px solid var(--h2-border);
}

.h2-audience li a:hover {
  color: var(--h2-blue-dk);
  text-decoration: underline;
}

/* ============================================================
   ハンバーガーボタン（SP用）
   ============================================================ */
.h2-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.h2-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--h2-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   SPドロワー（全面ネイビー・右からスライド）
   ============================================================ */
.h2-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--h2-blue);
  z-index: 1100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}

.h2-drawer.is-open {
  transform: translateX(0);
}

/* ── ドロワーヘッダー ── */
.h2-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.h2-drawer__head-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.h2-drawer__head-logo-img {
  height: 28px;
  width: auto;
}

.h2-drawer__head-logo-text {
  font-size: 13px;
  font-weight: bold;
  color: var(--h2-white);
  letter-spacing: 0.02em;
}

/* ── × 閉じるボタン ── */
.h2-drawer__close {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 2px;
}

.h2-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--h2-white);
  border-radius: 2px;
}

.h2-drawer__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.h2-drawer__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ── ドロワーナビ ── */
.h2-drawer__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.h2-drawer__nav {
  flex: 1;
}

/* L1（大項目） */
.h2-drawer__l1-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.h2-drawer__l1-link {
  flex: 1;
  display: block;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: bold;
  color: var(--h2-white);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.h2-drawer__l1--direct {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.h2-drawer__l1--direct > .h2-drawer__l1-link {
  display: block;
  padding: 18px 24px;
}

/* L1トグルボタン（シェブロン） */
.h2-drawer__toggle {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  position: relative;
}

.h2-drawer__toggle::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  background: none;
  border-top: solid 1px rgba(255,255,255,0.8);
  border-right: solid 1px rgba(255,255,255,0.8);
  transform: rotate(135deg);
  transition: transform 0.25s, margin-top 0.25s;
}

.h2-drawer__l1.is-open > .h2-drawer__l1-header > .h2-drawer__toggle::after {
  transform: rotate(-45deg);
  margin-top: 0;
  opacity: 1;
}

/* L2グループ */
.h2-drawer__l2-group {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  transition: max-height 0.6s ease;
}

.h2-drawer__l1.is-open > .h2-drawer__l2-group {
  max-height: 800px;
}

/* L2（中項目） */
.h2-drawer__l2-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.h2-drawer__l2-link {
  flex: 1;
  display: block;
  padding: 14px 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.h2-drawer__l2-direct {
  display: block;
  padding: 14px 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.02em;
}

/* L2トグルボタン（シェブロン小） */
.h2-drawer__toggle--sm {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
}

.h2-drawer__toggle--sm::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  background: none;
  border-top: solid 1px rgba(255,255,255,0.6);
  border-right: solid 1px rgba(255,255,255,0.6);
  transform: rotate(135deg);
  transition: transform 0.25s, margin-top 0.25s;
}

.h2-drawer__l2.is-open > .h2-drawer__l2-header > .h2-drawer__toggle--sm::after {
  transform: rotate(-45deg);
  margin-top: 0;
  opacity: 1;
}

/* L3（小項目） */
.h2-drawer__l3-list {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  transition: max-height 0.5s ease;
}

.h2-drawer__l2.is-open > .h2-drawer__l3-list {
  max-height: 400px;
}

.h2-drawer__l3-list li a {
  display: block;
  padding: 12px 44px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.02em;
}

.h2-drawer__l3-list li:last-child a {
  border-bottom: none;
}

/* ── 対象者リンク ── */
.h2-drawer__audience {
  margin: 24px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 4px;
  overflow: hidden;
}

.h2-drawer__audience li a {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--h2-font-jp);
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  letter-spacing: 0.03em;
  transition: background 0.18s;
}

.h2-drawer__audience li:last-child a {
  border-bottom: none;
}

.h2-drawer__audience li a:hover {
  background: rgba(255,255,255,0.5);
}

/* ── ユーティリティ ── */
.h2-drawer__utility {
  padding: 0 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h2-drawer__utility li a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: bold;
  font-family: var(--h2-font-jp);
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}

/* オープンキャンパス：白塗り・紺文字 */
.h2-drawer__utility-oc {
  background: var(--h2-white);
  color: var(--h2-blue) !important;
  border: 1px solid var(--h2-white);
}

.h2-drawer__utility-oc:hover {
  background: rgba(255,255,255,0.75);
}

/* よくあるご質問・お問い合わせ：白枠・塗りなし・白文字 */
.h2-drawer__utility-outline {
  background: transparent;
  color: var(--h2-white) !important;
  border: 1px solid rgba(255,255,255,0.6);
}

.h2-drawer__utility-outline:hover {
  background: var(--h2-white);
  color: var(--h2-blue) !important;
}

.h2-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.h2-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
  .h2-nav,
  .h2-row2,
  .h2-row3 {
    display: none;
  }

  .h2-hamburger {
    display: flex;
  }

  .h2-row1__nav {
    display: none;
  }

  .h2-row1 {
    height: 60px;
  }

  .h2-row1__contact {
    height: 60px;
    padding: 0 20px;
    font-size: 12px;
  }

  .h2-logo__main {
    font-size: 13px;
  }

  .h2-logo__sub {
    display: none;
  }

  /* ヘッダーが60pxに縮むのに合わせてヒーローの高さ・余白を追従させる */
  .hero-wrap {
    margin-top: 60px;
    margin-bottom: 64px; /* OPEN CAMPUSバッジ（bottom:-60px）のはみ出し分より大きくする */
  }

  .hero-wrap .hero {
    height: calc(100vh - 60px);
  }
}

/* ============================================================
   トップページ（home.php）：スマホ表示
   ============================================================ */
@media (max-width: 768px) {

  /* --- ヒーロー --- */
  .hero {
    min-height: 480px;
  }

  .hero__sidebar {
    width: 40px;
  }

  .hero__sidebar-text {
    font-size: 8px;
  }

  .hero__bg {
    left: 40px;
  }

  .hero__content {
    margin-left: 56px;
    width: calc(100% - 80px);
  }

  .hero__title {
    font-size: clamp(40px, 14vw, 64px);
  }

  .hero__btn {
    padding: 12px 0;
    font-size: 13px;
  }

  /* NEWSティッカーを絶対配置から通常表示に変え、ヒーロー画像の下に独立した帯として出す */
  .news-ticker {
    position: static;
    width: 100%;
    height: 64px; /* タイトルを2行まで表示できるよう高さを確保 */
  }

  .news-ticker__label {
    height: 100%;
  }

  /* タイトルを省略せず2行まで折り返して全文表示する */
  .news-ticker__title {
    flex: 1;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.4;
  }

  /* ティッカーが通常表示（高さ44px）になった分、バッジの基準はヒーロー画像の下端＝
     hero-wrapの下端から44px上（=ティッカーの高さ分）に固定し、ティッカーと重ならないようにする */
  /* ヘッダーはposition:fixedのため、margin-topで隙間を作らずヘッダーの下端に画像を詰める */
  .hero-wrap {
    margin-top: 0;
    margin-bottom: 40px;
  }

  /* 動画エリアの縦幅を画面いっぱいより少し狭くする */
  .hero-wrap .hero {
    height: 80vh;
  }

  /* バッジのサイズはヒーロー内・追従フローティング側で共通（位置指定はヒーロー側のみ） */
  .hero-wrap .hero__opencampus,
  .box_opencampus_wrap .hero__opencampus {
    min-width: 0;
    padding: 16px 18px 32px;
  }

  .hero-wrap .hero__opencampus {
    right: 0;
    bottom: 64px; /* NEWSティッカーの高さ(64px)に合わせてズレ・重なりを防ぐ */
    border-top: 8px solid #fff;
    border-left: 8px solid #fff;
    border-bottom: 8px solid #fff;
  }

  .hero-wrap .hero__opencampus-label,
  .box_opencampus_wrap .hero__opencampus-label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .hero-wrap .hero__opencampus-date,
  .box_opencampus_wrap .hero__opencampus-date {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .hero-wrap .hero__opencampus-link,
  .box_opencampus_wrap .hero__opencampus-link {
    font-size: 11px;
  }

  /* ヒーロー下の装飾用ネイビー正方形はスマホでは不要なので非表示 */
  .page-accent-bottom {
    display: none;
  }

  /* --- 学科紹介セクション（PT・OT共通） --- */
  .dept {
    padding: 48px 0 40px;
  }

  .dept__inner,
  .dept--ot .dept__inner {
    padding: 0 20px;
  }

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

  /* OT：DOMの後半にあるメイン写真を先頭に表示してPTと見た目の順序を揃える */
  .dept--ot .dept__photo-row {
    flex-direction: column-reverse;
  }

  .dept__main-img {
    flex: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .dept__main-img::after,
  .dept__main-img--ot::after {
    width: 36px;
    height: 36px;
    border-width: 18px;
  }

  /* PT：1枚目（メイン写真）の左上に配置 */
  .dept__main-img::after {
    top: 0;
    bottom: auto;
    left: 0;
    border-top: 18px solid var(--blue);
    border-bottom: none;
  }

  /* OT：PTと同じく1枚目（メイン写真）の左上に配置 */
  .dept__main-img--ot::after {
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
    border-top: 18px solid var(--blue);
    border-left: 18px solid var(--blue);
    border-bottom: none;
    border-right: none;
  }

  .dept__right {
    width: 100%;
  }

  .dept__photos {
    flex-direction: row;
    height: auto;
  }

  .dept__photo {
    aspect-ratio: 4 / 3;
  }

  .dept__photos::before,
  .dept__photos--ot::before {
    width: 30px;
    height: 30px;
    border-width: 15px;
  }

  /* PT：3枚目（右側の写真）の右下に配置 */
  .dept__photos::before {
    top: auto;
    bottom: 0;
    right: 0;
    border-top: none;
    border-bottom: 15px solid var(--blue);
  }

  /* OT：2枚目ではなく3枚目（右側の写真）の右下に、PTと同じ位置で配置 */
  .dept__photos--ot::before {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    border-top: none;
    border-left: none;
    border-bottom: 15px solid var(--blue);
    border-right: 15px solid var(--blue);
  }

  /* 画面外に配置されていた巨大ラベルを写真右上のバッジに変更（PT・OTとも） */
  .dept__label {
    top: 0;
    left: auto;
    right: 0;
    align-items: flex-end;
  }

  .dept__label .dept__label-en {
    text-align: right;
  }

  /* 白背景を写真の角にぴったり合わせる（上・右は0、下・左だけ余白を残す） */
  .dept__label .dept__label-bg {
    inset: 0 0 -8px -8px;
  }

  .dept__label--ot {
    top: 0;
    left: auto;
    right: 0;
  }

  .dept__label--ot .dept__label-bg {
    inset: 0 0 -8px -8px;
  }

  .dept__label-en,
  .dept__label-en--ot {
    font-size: 88px;
  }

  /* PT・OTバッジの下に付ける縦書き英字（スマホ専用、文字幅だけの白背景を独自に持つ） */
  .dept__label-vertical-sp {
    display: block;
    margin-top: 0;
  }

  .dept__label-vertical-sp span {
    display: inline-block;
    writing-mode: vertical-rl;
    font-size: 26px;
    font-weight: 600;
    color: #f5a800;
    font-family: var(--font-en);
    letter-spacing: 2px;
    line-height: 1.2;
    background: #fff;
    padding: 8px 4px;
  }

  /* OTの縦書き英字はOTの色（緑）に合わせる */
  .dept__label-vertical-sp--ot span {
    color: var(--green);
  }

  /* 縦書きの英語ラベルは画面外配置のため、スマホでは非表示 */
  .dept__label-vertical-wrap,
  .dept__label-vertical-wrap--ot {
    display: none;
  }

  .dept__bottom,
  .dept__bottom--ot {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .dept__body {
    padding: 24px 20px;
  }

  .dept__more {
    font-size: 9px;
  }

  .dept__more-sub {
    font-size: 8px;
  }

  /* --- 魅力セクション --- */
  .appeal {
    padding: 48px 0 40px;
  }

  .appeal__inner {
    padding: 0 20px;
  }

  .appeal__photo {
    margin-left: 0;
  }

  .appeal__photo img {
    height: auto;
    object-fit: contain;
  }

  .appeal__text {
    margin-top: -24px;
    display: block;
    width: 100%;
    padding: 24px 20px;
  }

  .appeal__title {
    font-size: 24px;
  }

  .appeal__more {
    font-size: 9px;
  }

  .appeal__more-arrow {
    font-size: 10px;
  }

  .appeal__more-sub {
    font-size: 8px;
  }

  /* --- キャンパスライフセクション --- */
  .campus {
    padding: 48px 0 40px;
  }

  .campus__inner {
    padding: 0 20px;
  }

  .campus__photos {
    height: auto;
  }

  .campus__bar {
    height: 55%;
  }

  .campus__text {
    margin-top: -24px;
    display: block;
    width: 100%;
    max-width: none;
    padding: 24px 20px;
  }

  .campus__title {
    font-size: 22px;
  }

  .campus__more {
    font-size: 9px;
  }

  .campus__more-arrow {
    font-size: 10px;
  }

  .campus__more-sub {
    font-size: 8px;
  }

  /* --- オープンキャンパスセクション --- */
  .opencampus {
    padding: 48px 0 40px;
  }

  .opencampus__inner {
    padding: 0 20px;
  }

  .opencampus__photo {
    margin-right: 0;
  }

  .opencampus__photo img {
    height: auto;
    object-fit: contain;
  }

  .opencampus__text-wrap {
    margin-top: -24px;
    justify-content: flex-start;
  }

  .opencampus__text {
    width: 100%;
    max-width: none;
    padding: 24px 20px;
  }

  .opencampus__title {
    font-size: 22px;
  }

  .opencampus__more {
    font-size: 9px;
  }

  .opencampus__more-arrow {
    font-size: 10px;
  }

  .opencampus__more-sub {
    font-size: 8px;
  }

  /* --- BLOGセクション --- */
  .blog {
    padding: 48px 0 40px;
    margin-left: 0;
  }

  .blog__inner {
    margin: 0 auto;
    padding: 0 20px;
  }

  .blog__title {
    font-size: 32px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .blog__more-link {
    font-size: 9px;
  }

  .blog__more-sub {
    font-size: 8px;
  }

  /* --- お問い合わせセクション --- */
  .contact__bg {
    height: 320px;
  }

  .contact__inner {
    padding: 40px 0 0;
  }

  .contact__catch {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .contact__box {
    width: calc(100% - 40px);
    margin-bottom: -100px;
    flex-direction: column;
  }

  .contact__box-item {
    padding: 12px 16px;
  }

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

  .contact__subtitle {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .contact__body {
    font-size: 11px;
    line-height: 1.5;
  }

  .contact__box-divider {
    width: 100%;
    height: 1px;
  }

  /* --- フッター --- */
  /* 3カラムグリッドのままだとサイトマップ列が極端に狭くなり、
     文字が1文字ずつ縦に折り返されてしまうため1カラムに変更 */
  .footer {
    margin-top: 120px; /* お問い合わせBOXの重なり(-100px)より大きくして footer と重ならないようにする */
  }

  footer.footer .footer__inner {
    grid-template-columns: 1fr !important;
  }

  .footer__col--info {
    align-items: flex-start;
    padding: 32px 20px;
  }

  .footer__col--sitemap,
  .footer__col--audience {
    padding: 32px 20px;
  }

  /* 右下のTOPボタンは非表示 */
  #floating-menu a.sp {
    display: none !important;
  }

  /* bodyのmin-height:100vh（縦積みflex）により、コンテンツが画面より短い時に
     フッター下へ余白ができてしまうため、スマホでは高さの強制をやめる */
  body {
    min-height: auto;
  }
}
