/* ========================================
   pages/home.css — TOPページ（index.html）固有スタイル
   松原メイフラワー病院
   ======================================== */


/* ========================================
   メインビジュアル
   ======================================== */
.c-main-visual {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 0px);
  min-height: 560px;
  max-height: 780px;
  background: #1a1a2a;
}
.c-mv-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-mv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 0px);
  min-height: 560px;
  max-height: 780px;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.c-mv-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.c-mv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 背景の暗さ調整：ナビ・文字は明るいまま、空だけを暗く
     0.90 = 10%暗 ／ 0.85 = 15% ／ 0.80 = 20% */
  filter: brightness(0.90);
  transform: scale(1.08) translateZ(0);
  transition: transform 7s ease-out;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-mv-slide.is-active img {
  transform: scale(1) translateZ(0);
}
.c-mv-copy {
  position: absolute;
  top: 50%;
  left: max(32px, calc((100% - 1200px) / 2 + 32px));
  transform: translateY(-50%);
  padding: 28px 32px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.c-mv-copy h2 {
  font-family: var(--ff-accent);
  font-weight: 700;
  color: var(--c-text-main);
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}
.c-mv-copy h2 .c-col {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.c-mv-copy p {
  font-size: 16px;
  color: var(--c-text-sub);
  margin-top: 16px;
}
.c-mv-dots {
  position: absolute;
  bottom: 24px;
  right: max(32px, calc((100% - 1200px) / 2 + 32px));
  display: flex;
  gap: 10px;
  z-index: 10;
}
.c-mv-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.c-mv-dots button.is-active { background: #fff; }

/* ========================================
   初めての方へ
   ======================================== */
.c-firstvisit-section {
  padding: 40px 0 16px;
  background: var(--c-bg-white);
}
.c-firstvisit-box {
  background: linear-gradient(135deg, #fdf6ec 0%, #fff8ef 100%);
  border: 1px solid #f0e0c4;
  border-radius: 14px;
  padding: 28px 32px;
}
.c-firstvisit-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.c-firstvisit-header h2 {
  font-family: var(--ff-accent);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin: 0;
}
.c-firstvisit-header .t-eyebrow {
  font-size: 14px;
  color: var(--c-primary);
  font-weight: 500;
  letter-spacing: 0.08em;
}
body .c-firstvisit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.c-firstvisit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.c-firstvisit-item-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.c-firstvisit-item .c-fv-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: var(--c-primary);
}
.c-firstvisit-item .c-fv-icon svg { width: 100%; height: 100%; }
.c-firstvisit-item .c-fv-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 8px;
}
.c-firstvisit-item .c-fv-text {
  font-size: 15px;
  color: var(--c-text-sub);
  line-height: 1.6;
  flex-grow: 1;
}
.c-firstvisit-item .c-fv-text small { font-size: 13px; color: var(--c-text-light); }
.c-fv-link {
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--c-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.c-fv-link:hover { background: var(--c-primary-dark); }
.c-fv-arrow {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
}
.c-firstvisit-item-link:hover .c-fv-arrow { color: var(--c-primary-dark); }
@media (max-width: 768px) {
  .c-firstvisit-section { padding: 28px 0 8px; }
  .c-firstvisit-box { padding: 20px 16px; border-radius: 10px; }
  .c-firstvisit-header h2 { font-size: 20px; }
  .c-firstvisit-header .t-eyebrow { font-size: 12px; }
  body .c-firstvisit-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .c-firstvisit-item { padding: 16px 10px; }
  .c-firstvisit-item .c-fv-icon { width: 32px; height: 32px; margin-bottom: 8px; }
  .c-firstvisit-item .c-fv-label { font-size: 14px; margin-bottom: 6px; }
  .c-firstvisit-item .c-fv-text { font-size: 13px; line-height: 1.5; }
  .c-firstvisit-item .c-fv-text small { font-size: 11px; }
  .c-fv-link { padding: 7px 10px; font-size: 12px; margin-top: 10px; }
  .c-fv-arrow { font-size: 13px; margin-top: 10px; }
}

/* ========================================
   当院の強み（ツートップ）
   ======================================== */
.c-strength-section {
  padding: 48px 0 0;
  background: var(--c-bg-white);
}
.c-strength-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.c-strength-label .c-label-line {
  width: 32px;
  height: 2px;
  background: var(--c-primary);
}
.c-strength-label span {
  font-family: var(--ff-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary-dark);
  letter-spacing: 0.08em;
}
body .c-strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.c-strength-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-white);
  border: 2px solid var(--c-primary);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}
.c-strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(238,135,54,0.12);
}
.c-strength-card-icon {
  width: 100%;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--c-primary-tint);
  padding: 0 20px;
}
.c-strength-card-icon svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.c-strength-card-icon svg path,
.c-strength-card-icon svg circle,
.c-strength-card-icon svg line,
.c-strength-card-icon svg rect,
.c-strength-card-icon svg polyline { stroke: var(--c-primary-dark); }
.c-strength-card-body {
  padding: 24px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.c-strength-card-body .c-card-title {
  font-family: var(--ff-accent);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.4;
  margin-bottom: 12px;
}
.c-strength-card-body .c-card-desc {
  font-size: 17px;
  color: var(--c-text-sub);
  line-height: 1.75;
  flex: 1;
}
.c-strength-card-body .c-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  color: var(--c-primary);
  font-weight: 600;
  margin-top: 16px;
}

/* ========================================
   カテゴリーナビ
   ======================================== */
.c-category-nav {
  padding: 28px 0 40px;
  background: var(--c-bg-white);
  position: relative;
}
.c-category-nav::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-border-light);
}
.c-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.c-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 12px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.c-cat-card:hover {
  background: var(--c-bg-warm);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238,135,54,0.10);
}
.c-cat-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-tint);
  border-radius: 50%;
  transition: transform 0.2s;
}
.c-cat-icon svg {
  width: 36px;
  height: 36px;
}
.c-cat-icon svg path { fill: var(--c-primary); }
/* カテゴリー2,5 → ブルー */
.c-category-grid > a:nth-child(3n-1) .c-cat-icon { background: var(--c-accent-blue-light); }
.c-category-grid > a:nth-child(3n-1) .c-cat-icon svg path { fill: var(--c-accent-blue); }
/* カテゴリー3,6 → グリーン */
.c-category-grid > a:nth-child(3n) .c-cat-icon { background: var(--c-accent-green-light); }
.c-category-grid > a:nth-child(3n) .c-cat-icon svg path { fill: var(--c-accent-green); }
.c-cat-card:hover .c-cat-icon { transform: scale(1.05); }
.c-cat-card .c-cat-name {
  font-family: var(--ff-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.5;
  margin-bottom: 4px;
}
.c-cat-card .c-cat-name-en {
  display: none;
}
.c-cat-card .c-cat-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  color: var(--c-primary);
  font-weight: 500;
  margin-top: 10px;
}

/* ========================================
   重要なお知らせバー
   ======================================== */
.c-important-bar {
  background: #FFF4F4;
  border-top: 2px solid var(--c-accent-red);
  padding: 14px 0;
}
.c-important-bar .l-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.c-important-bar .c-bar-label {
  flex-shrink: 0;
  background: var(--c-accent-red);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.c-important-bar .c-bar-date {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--c-text-light);
}
.c-important-bar .c-bar-text {
  font-size: 18px;
  color: var(--c-text-main);
}
.c-important-bar a { color: var(--c-accent-red); text-decoration: none; }

/* ========================================
   01 お知らせ
   ======================================== */
.c-section-news { background: var(--c-bg-white); }
body .c-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
/* 休診・代診テーブルは c-table--schedule（診療時間表）のスタイルを流用するが、
   全列がデータ列のため、行見出し用の左固定・濃色背景の指定は無効化する */
.c-table--closure thead th:first-child {
  position: static !important;
  background: var(--c-primary) !important;
  z-index: auto !important;
}
/* SPでは横幅が収まりきらないため、テーブル自体を横スクロールできるようにする */
.c-table--closure {
  display: block;
  width: 100%;
  max-width: 100%;
  /* .c-table--schedule 自体に min-width:500px があり（本来table要素向けの指定がfigureに
     ついてしまっている）、min-widthはmax-widthより優先されるため明示的に打ち消す */
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* 日付セル：PCは年あり、SPは年を省略し時間帯も併記した表記に切り替える */
.c-table--closure .c-date-short { display: none; }
@media (min-width: 769px) {
  /* PC版：日付列を狭く、その分備考列を広くする */
  .c-table--closure th:nth-child(1),
  .c-table--closure td:nth-child(1) { width: 21.5%; }
  .c-table--closure th:nth-child(5),
  .c-table--closure td:nth-child(5) { width: 26%; white-space: normal; }
}
@media (max-width: 768px) {
  .c-table--closure .c-date-full { display: none; }
  .c-table--closure .c-date-short { display: inline; }
  /* SP版：時間帯は日付列に併記し、時間帯列自体は非表示にする */
  .c-table--closure .c-col-time { display: none; }
  /* 「日付・変更前・変更後」までは横スクロールなしで見える固定幅にし、
     備考だけがはみ出す場合はそこだけ横スクロールで確認できるようにする */
  .c-table--closure th:nth-child(1),
  .c-table--closure td:nth-child(1) { width: 130px; }
  .c-table--closure th:nth-child(3),
  .c-table--closure td:nth-child(3) { width: 60px; }
  .c-table--closure th:nth-child(4),
  .c-table--closure td:nth-child(4) { width: 60px; }
}
.c-news-side,
.c-news-main {
  /* グリッドアイテムの既定min-width:autoのままだと、内側のテーブル（min-width指定あり）が
     アイテム自体を押し広げてしまい横スクロールが効かなくなるため、明示的に0にする */
  min-width: 0;
}
.c-news-side h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-primary);
}
.c-news-side .c-schedule-link {
  display: block;
  width: fit-content;
  margin-top: 20px;
  margin-left: auto;
}
.c-news-list-link {
  display: block;
  width: fit-content;
  margin-top: 24px;
  margin-left: auto;
}
.c-news-main h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-primary);
}
/* 「新着情報」の日付・カテゴリバッジ・タイトルは /news/ のお知らせタブと共通の
   .c-news-list .news-date / .news-category / .news-title（components.css）を使う。
   見た目を完全に一致させるため、このページ専用の上書きは持たない。 */

/* 休診情報リスト */
.c-closure-list {
  list-style: none;
  margin: 0 0 16px;
}
.c-closure-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border-light);
}
.c-closure-list li:first-child { padding-top: 0; }
.c-closure-date {
  font-size: 16px;
  color: var(--c-text-light);
  font-weight: 500;
}
.c-closure-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--c-accent-red, #D14444);
  border-radius: 4px;
  padding: 2px 9px;
  line-height: 1.5;
}
.c-closure-doctor {
  width: 100%;
  font-size: 17px;
  color: var(--c-text-sub);
  line-height: 1.5;
}

/* ========================================
   02 当院の特徴（ピックアップ）
   ======================================== */
.c-section-pickup { background: var(--c-bg-section); }
body .c-pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.c-pickup-card {
  background: var(--c-bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.c-pickup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.c-pickup-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pickup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-pickup-thumb .c-thumb-placeholder {
  font-size: 18px;
  color: var(--c-text-light);
  text-align: center;
  padding: 20px;
}
.c-pickup-body {
  padding: 20px 22px 22px;
}
.c-pickup-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}
.c-pickup-body p {
  font-size: 18px;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ========================================
   03 診療時間
   ======================================== */
.c-section-schedule { background: var(--c-bg-white); }
.c-schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
}
.c-schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--c-bg-white);
}
.c-schedule-table th, .c-schedule-table td {
  padding: 16px 12px;
  text-align: center;
  font-size: 18px;
  border: 1px solid var(--c-border-light);
}
.c-schedule-table thead th {
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}
.c-schedule-table tbody th {
  background: var(--c-primary-pale);
  font-weight: 700;
  text-align: left;
  padding-left: 16px;
  min-width: 100px;
  color: var(--c-text-main);
}
.c-schedule-table tbody th small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--c-text-light);
}
.c-schedule-table .c-closed { color: var(--c-text-light); }

/* ========================================
   04 救急
   ======================================== */
.c-section-emergency {
  background: linear-gradient(135deg, #2E8FD6 0%, #1F75B5 100%);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.c-emergency-inner { position: relative; z-index: 1; }
.c-emergency-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.c-emergency-inner h2 {
  font-family: var(--ff-accent);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.c-emergency-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.c-emergency-tel-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.c-emergency-tel-box:hover { background: rgba(255,255,255,0.25); }
.c-emergency-tel-box .c-tel-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-emergency-tel-box .c-tel-icon svg { width: 24px; height: 24px; fill: #fff; }
.c-emergency-tel-box .c-tel-num {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.03em;
  font-family: var(--ff-accent);
}
.c-emergency-note {
  margin-top: 14px;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}
.c-emergency-note small { font-size: 18px; }

/* ========================================
   05 各種ご案内
   ======================================== */
.c-section-guide { background: var(--c-bg-section); }
body .c-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 32px;
  align-items: start;
}
.c-guide-links {
  list-style: none;
  padding: 0;
}
.c-guide-links li {
  border-bottom: 1px solid var(--c-border-light);
}
.c-guide-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-size: 17px;
  color: var(--c-text-sub);
  text-decoration: none;
  transition: color 0.2s;
}
.c-guide-links li a:hover { color: var(--c-primary-dark); }
.c-guide-links li a .c-arrow {
  color: var(--c-text-light);
  font-size: 18px;
}
.c-guide-contact {
  background: var(--c-bg-white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.c-guide-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary-dark);
  margin-bottom: 14px;
}
.c-guide-contact .c-tel-big {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--c-primary-dark);
  font-family: var(--ff-accent);
  text-decoration: none;
  margin-bottom: 8px;
}
.c-guide-contact .c-info-line {
  font-size: 18px;
  color: var(--c-text-light);
  line-height: 1.8;
}

/* ========================================
   06 アクセス
   ======================================== */
.c-section-access { background: var(--c-bg-white); }
body .c-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.c-map-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.c-access-info h3 {
  font-family: var(--ff-accent);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text-main);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-primary);
}
.c-access-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px 16px;
  font-size: 18px;
  line-height: 1.8;
}
.c-access-info dt { font-weight: 700; color: var(--c-primary-dark); }
.c-access-info dd { color: var(--c-text-sub); }
.c-access-bus-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--c-bg-warm);
  border-radius: 8px;
  border-left: 4px solid var(--c-primary);
  font-size: 18px;
  color: var(--c-text-sub);
  line-height: 1.8;
}
.c-access-bus-note a { color: var(--c-primary-dark); font-weight: 500; text-decoration: underline; }

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 1024px) {
  .c-category-grid { grid-template-columns: repeat(3, 1fr); }
  body .c-strength-cards { grid-template-columns: repeat(2, 1fr); }
  .c-strength-card-body .c-card-title { font-size: 20px; }
  body .c-firstvisit-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 768px) {
  .c-main-visual { min-height: 480px; max-height: 640px; }
  .c-mv-slide { height: calc(100vh - 0px); min-height: 480px; max-height: 640px; }
  .c-mv-copy { padding: 18px 22px; left: 16px; }
  .c-mv-copy h2 .c-col { font-size: 18px; }

  .c-strength-section { padding: 32px 0 0; }
  body .c-strength-cards { grid-template-columns: 1fr; gap: 16px; }
  .c-strength-card { border-width: 1.5px; }
  .c-strength-card-icon { height: 56px; }
  .c-strength-card-icon svg { width: 28px; height: 28px; }
  .c-strength-card-body { padding: 20px 22px 22px; }
  .c-strength-card-body .c-card-title { font-size: 19px; }
  .c-strength-card-body .c-card-desc { font-size: 16px; }

  .c-category-nav { padding: 24px 0 28px; }
  .c-category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .c-cat-card { padding: 22px 6px 18px; }
  .c-cat-icon { width: 52px; height: 52px; margin-bottom: 8px; }
  .c-cat-icon svg { width: 28px; height: 28px; }
  .c-cat-card .c-cat-name { font-size: 16px; line-height: 1.4; margin-bottom: 0; }
  .c-cat-card .c-cat-name-en { display: none; }
  .c-cat-card .c-cat-arrow { display: none; }

  .c-important-bar .l-container { flex-wrap: wrap; gap: 8px; }

  body .c-news-layout { grid-template-columns: 1fr; gap: 24px; }

  body .c-pickup-grid { grid-template-columns: 1fr; gap: 16px; }

  body .c-guide-grid { grid-template-columns: 1fr; gap: 24px; }

  body .c-access-grid { grid-template-columns: 1fr; }

  .c-emergency-inner h2 { font-size: 22px; }
  .c-emergency-tel-box { padding: 12px 24px; }
  .c-emergency-tel-box .c-tel-num { font-size: 28px; }
}
