/* =========================================================
   リハビリデイサロン MIRAI — style.css
   空(青・白・黄色)をイメージしたカラーテーマ / モバイルファースト
   ========================================================= */

:root{
  /* --- カラー --- */
  --color-sky:        #4FA8E6;   /* メインの空色 */
  --color-sky-deep:    #1E6FB5;  /* 濃い空色（見出し・ヘッダー文字） */
  --color-sky-pale:    #EAF6FF;  /* 淡い空色（背景） */
  --color-sky-pale-2:  #DCF0FF;
  --color-white:       #FFFFFF;
  --color-yellow:      #FFD447;  /* 太陽の黄色 */
  --color-yellow-deep: #F5B400;
  --color-text:        #2C3B4A;
  --color-text-sub:    #5C7386;

  /* --- レイアウト --- */
  --header-h: 64px;
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-soft: 0 8px 24px rgba(30, 111, 181, 0.12);
  --shadow-soft-2: 0 4px 14px rgba(30, 111, 181, 0.08);
  --max-width: 1080px;
}

/* =========================================================
   リセット / ベース
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body{
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
table{ border-collapse: collapse; width: 100%; }
button{ font-family: inherit; cursor: pointer; }

.container{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   共通パーツ
   ========================================================= */
.section-title{
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-sky-deep);
  margin: 0 0 12px;
}
.section-title span{
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title span::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: var(--color-yellow);
}
.section-title--light{ color: var(--color-white); }
.section-title--light span::after{ background: var(--color-yellow); }

.section-lead{
  text-align: center;
  color: var(--color-text-sub);
  margin: 0 0 40px;
  font-size: 15px;
}
.section-lead--light{ color: var(--color-sky-pale); }

.sub-title{
  font-size: 18px;
  font-weight: 700;
  color: var(--color-sky-deep);
  border-left: 5px solid var(--color-yellow);
  padding-left: 12px;
  margin: 32px 0 16px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn--primary{
  background: var(--color-yellow);
  color: var(--color-sky-deep);
  box-shadow: var(--shadow-soft-2);
}
.btn--outline{
  background: var(--color-white);
  color: var(--color-sky-deep);
  border-color: var(--color-sky-deep);
}
.btn--small{ padding: 10px 20px; font-size: 13px; margin-top: 8px; }
.btn--block{ width: 100%; }

.img-placeholder{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-m);
  background: repeating-linear-gradient(
      45deg,
      var(--color-sky-pale), var(--color-sky-pale) 10px,
      var(--color-sky-pale-2) 10px, var(--color-sky-pale-2) 20px
    );
  color: var(--color-sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 2px dashed var(--color-sky);
}

.info-table{ width: 100%; margin: 8px 0 24px; }
.info-table th, .info-table td{
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-sky-pale-2);
  font-size: 14px;
}
.info-table th{
  width: 30%;
  color: var(--color-sky-deep);
  background: var(--color-sky-pale);
  font-weight: 700;
  white-space: nowrap;
}
.info-table td a{ color: var(--color-sky-deep); text-decoration: underline; font-weight: 700; }

.check-list li{
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
}
.check-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-sky-deep);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   ヘッダー / ナビゲーション
   ========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(30, 111, 181, 0.10);
  z-index: 1000;
}
.header-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo{
  display: flex;
  align-items: center;
}
.logo-img{ height: 38px; width: auto; display: block; }

/* ハンバーガー */
.hamburger{
  position: relative;
  z-index: 1100;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hamburger span{
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-sky-deep);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.is-active span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.hamburger.is-active span:nth-child(2){ opacity: 0; }
.hamburger.is-active span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* モバイルナビ（デフォルト：スライドイン） */
.global-nav{
  position: fixed;
  top: 0;
  right: -100%;
  width: min(78%, 320px);
  height: 100%;
  background: var(--color-white);
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
  padding: calc(var(--header-h) + 24px) 24px 24px;
  overflow-y: auto;
  transition: right .3s ease;
  z-index: 1050;
}
.global-nav.is-open{ right: 0; }

.global-nav ul{ display: flex; flex-direction: column; gap: 4px; }
.global-nav .nav-link{
  display: block;
  padding: 14px 8px;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-sky-pale);
}
.global-nav .nav-link--cta{
  margin-top: 12px;
  text-align: center;
  background: var(--color-yellow);
  color: var(--color-sky-deep);
  border-radius: 999px;
  border-bottom: none;
}

.nav-overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 60, 90, 0.4);
  z-index: 1040;
}
.nav-overlay.is-open{ display: block; }

/* =========================================================
   ヒーロー（空の演出）
   ========================================================= */
.hero{
  position: relative;
  margin-top: var(--header-h);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15,35,60,0.45) 0%, rgba(15,35,60,0.15) 45%, rgba(15,35,60,0.35) 100%),
    url("../img/hero-sky.jpg");
  background-size: cover;
  background-position: center 60%;
}

.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 100px;
  text-align: center;
}
@keyframes heroRiseUp{
  from{ opacity: 0; transform: translateY(36px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-logo{
  max-width: 260px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.25));
  opacity: 0;
  animation: heroRiseUp .9s ease .1s both;
}
.hero-eyebrow{
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  margin: 0 0 8px;
  opacity: 0;
  animation: heroRiseUp .9s ease .3s both;
}
.hero-title{
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0 0 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  opacity: 0;
  animation: heroRiseUp .9s ease .5s both;
}
.hero-lead{
  color: var(--color-white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  margin: 0 0 28px;
  opacity: 0;
  animation: heroRiseUp .9s ease .7s both;
}
.hero-actions{
  opacity: 0;
  animation: heroRiseUp .9s ease .9s both;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero-wave{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
}
.hero-wave svg{ width: 100%; height: 80px; }
.hero-wave path{ fill: var(--color-white); }

/* =========================================================
   イントロ
   ========================================================= */
.intro{ padding: 48px 0; background: var(--color-white); }
.intro-text{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-sky-deep);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================================
   3時間のイメージ
   ========================================================= */
.schedule{ padding: 64px 0; background: var(--color-sky-pale); }

.schedule-timetable{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.schedule-timetable-item{
  margin: 0;
  background: var(--color-white);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.schedule-timetable-item img{ width: 100%; }

.schedule-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.schedule-card{
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-m);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--color-sky);
}
.schedule-photo{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-s);
  margin-bottom: 16px;
}
.schedule-card--blue{   border-top-color: var(--color-sky-deep); }
.schedule-card--teal{   border-top-color: #2FBFA0; }
.schedule-card--white{  border-top-color: #C9D8E3; }
.schedule-card--yellow{ border-top-color: var(--color-yellow-deep); }

.schedule-num{
  position: absolute;
  top: -20px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-sky-deep);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: var(--shadow-soft-2);
}
.schedule-card--yellow .schedule-num{ background: var(--color-yellow-deep); }
.schedule-card--teal .schedule-num{ background: #2FBFA0; }

.schedule-title{
  margin: 12px 0 10px;
  font-size: 17px;
  color: var(--color-sky-deep);
}
.schedule-desc{ font-size: 14px; color: var(--color-text-sub); margin: 0 0 12px; }
.schedule-list li{
  font-size: 13px;
  padding: 4px 0 4px 18px;
  position: relative;
  color: var(--color-text);
}
.schedule-list li::before{
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-yellow-deep);
  font-weight: 900;
}

.flow{ margin-top: 48px; }
.flow-intro{
  background: var(--color-white);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}
.flow-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.flow-steps{ display: flex; flex-direction: column; gap: 20px; }
.flow-step{ display: flex; align-items: flex-start; gap: 14px; }
.flow-num{
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-sky-deep);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  box-shadow: var(--shadow-soft-2);
}
.flow-step-title{ margin: 4px 0 4px; font-size: 16px; color: var(--color-sky-deep); }
.flow-step-desc{ font-size: 13px; color: var(--color-text-sub); margin: 0; }
.flow-photos{ display: flex; flex-direction: column; gap: 16px; }
.flow-photo{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

/* =========================================================
   サービスと機器 / ギャラリー
   ========================================================= */
.service{ padding: 64px 0; background: var(--color-white); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item{ margin: 0; text-align: center; }
.gallery-item img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--color-sky-pale);
  border-radius: var(--radius-m);
  padding: 10px;
  box-sizing: border-box;
}
.gallery-item figcaption{
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-sky-deep);
}

/* =========================================================
   アクセス
   ========================================================= */
.access{ padding: 64px 0; background: var(--color-sky-pale); }

.access-grid{ display: grid; grid-template-columns: 1fr; gap: 24px; }

.map-embed{
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft-2);
}

.access-info .info-table{ margin-top: 0; background: var(--color-white); border-radius: var(--radius-m); overflow: hidden; }

/* =========================================================
   送迎・料金
   ========================================================= */
.price{ padding: 64px 0; background: var(--color-white); }
.price-block{ margin-bottom: 8px; }

.table-scroll{ overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table{ min-width: 420px; margin-bottom: 16px; }
.price-table th, .price-table td{
  padding: 12px 16px;
  border: 1px solid var(--color-sky-pale-2);
  font-size: 14px;
  text-align: center;
}
.price-table thead th{
  background: var(--color-sky-deep);
  color: var(--color-white);
}
.price-table tbody tr:nth-child(even){ background: var(--color-sky-pale); }

.price-table--detail{ min-width: 720px; table-layout: fixed; }
.price-table--detail th.note-cell,
.price-table--detail td.note-cell{
  text-align: left;
  font-size: 12px;
  color: var(--color-text-sub);
}
.price-table--detail tbody tr:nth-child(even){ background: transparent; }

/* =========================================================
   会社概要
   ========================================================= */
.company{ padding: 64px 0; background: var(--color-sky-pale); }
.greeting{
  background: var(--color-white);
  border-radius: var(--radius-m);
  padding: 28px;
  box-shadow: var(--shadow-soft-2);
  margin-bottom: 8px;
}
.greeting-text{ color: var(--color-text); }
.greeting-name{ text-align: right; font-weight: 700; color: var(--color-sky-deep); margin: 16px 0 0; }
.company .info-table{ background: var(--color-white); border-radius: var(--radius-m); overflow: hidden; }

/* =========================================================
   MIRAIについて
   ========================================================= */
.about{ padding: 64px 0; background: var(--color-white); }
.about-text{
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  color: var(--color-text);
}

/* =========================================================
   グループ紹介
   ========================================================= */
.group{ padding: 64px 0; background: var(--color-sky-pale); }

.group-feature{
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.group-feature + .group-feature{ margin-top: 32px; }
.group-feature-photo{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.group-feature-photo.img-placeholder{ border-radius: 0; }
.group-feature-body{ padding: 32px 24px; }
.group-feature-logo{ max-width: 280px; width: 100%; height: auto; margin: 0 auto 16px; }
.group-feature-name{
  font-size: 20px;
  font-weight: 700;
  color: var(--color-sky-deep);
  margin: 0 0 16px;
}
.group-feature-address{ font-size: 14px; color: var(--color-text-sub); margin: 0 0 12px; }
.group-feature-desc{ font-size: 15px; color: var(--color-text); margin: 0 0 20px; }

.group-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.group-card{
  background: var(--color-white);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
}
.group-card-logo{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: var(--color-sky-pale);
  padding: 12px;
  box-sizing: border-box;
  display: block;
}
.group-card-body{ padding: 20px; display: flex; flex-direction: column; flex: 1; }
.group-card-name{ font-size: 15px; font-weight: 700; color: var(--color-sky-deep); margin: 0 0 8px; }
.group-card-address{ font-size: 12px; color: var(--color-text-sub); margin: 0 0 8px; }
.group-card-desc{ font-size: 13px; color: var(--color-text); margin: 0 0 16px; flex: 1; }

/* =========================================================
   お問い合わせ
   ========================================================= */
.contact{
  padding: 64px 0;
  background: linear-gradient(180deg, var(--color-sky-deep), #164f82);
  color: var(--color-white);
}
.contact-catch{
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-yellow);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
  margin: 0 0 36px;
}
.contact-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.contact-photo{
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}
.contact-tel{
  display: block;
  text-align: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--color-yellow);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  transition: transform .15s ease, background .15s ease;
}
.contact-tel:hover{ background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.contact-tel-label{ display: block; font-size: 13px; color: var(--color-sky-pale); margin-bottom: 8px; }
.contact-tel-number{ display: block; font-size: 32px; font-weight: 900; color: var(--color-yellow); letter-spacing: 1px; }
.contact-tel-name{ display: block; font-size: 13px; color: var(--color-sky-pale); margin-top: 10px; }

/* =========================================================
   フッター
   ========================================================= */
.site-footer{ background: #103A5E; color: var(--color-sky-pale); padding: 40px 0 24px; }
.footer-inner{ text-align: center; }
.footer-logo{ font-size: 18px; font-weight: 900; color: var(--color-white); margin: 0 0 8px; }
.footer-address, .footer-tel{ font-size: 13px; margin: 4px 0; }
.footer-tel a{ text-decoration: underline; }
.footer-tel a:hover{ color: var(--color-yellow); }
.footer-links{ display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 20px 0; }
.footer-links a{ font-size: 12px; text-decoration: underline; }
.footer-copy{ font-size: 11px; opacity: 0.7; margin: 0; }

/* =========================================================
   文書ページ（運営規程・料金表など）
   ========================================================= */
.doc-header{
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(30, 111, 181, 0.10);
  padding: 16px 20px;
}
.doc-header-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.doc-back{ font-size: 14px; font-weight: 700; color: var(--color-sky-deep); }
.doc-logo{ font-size: 15px; font-weight: 900; color: var(--color-sky-deep); }

.doc-main{ padding: 40px 0 72px; background: var(--color-sky-pale); min-height: 60vh; }
.doc-title{
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-sky-deep);
  margin: 0 0 8px;
}
.doc-subtitle{ text-align: center; color: var(--color-text-sub); margin: 0 0 32px; font-size: 14px; }

.doc-panel{
  background: var(--color-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  padding: 28px 20px;
  max-width: 820px;
  margin: 0 auto;
}

.doc-article{ margin-bottom: 28px; }
.doc-article:last-child{ margin-bottom: 0; }
.doc-article h3{
  font-size: 15px;
  color: var(--color-sky-deep);
  border-left: 5px solid var(--color-yellow);
  padding-left: 12px;
  margin: 0 0 12px;
}
.doc-article p{ margin: 0 0 10px; font-size: 14px; line-height: 1.9; }
.doc-article ol, .doc-article ul{ margin: 0 0 10px; padding-left: 1.4em; font-size: 14px; line-height: 1.9; }
.doc-article ol{ list-style: decimal; }
.doc-article ul{ list-style: disc; }
.doc-article ol li, .doc-article ul li{ margin-bottom: 6px; }
.doc-article ul ul, .doc-article ol ul{ margin-top: 6px; }

.doc-note{ font-size: 13px; color: var(--color-text-sub); margin: 12px 0 0; }
.doc-appendix{ margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--color-sky-pale-2); font-size: 14px; text-align: right; }

.price-block .btn{ margin-top: 8px; }
.price-block-btns{ display: flex; flex-wrap: wrap; gap: 12px; }

/* =========================================================
   フローティング要素
   ========================================================= */
.fab-contact{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  background: var(--color-yellow);
  color: var(--color-sky-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.to-top{
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  color: var(--color-sky-deep);
  box-shadow: var(--shadow-soft);
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   タブレット / デスクトップ
   ========================================================= */
@media (min-width: 768px){
  .hero-logo{ max-width: 420px; }
  .hero-eyebrow{ font-size: 24px; }
  .hero-title{ font-size: 62px; }
  .hero-actions{ flex-direction: row; }

  .schedule-timetable{ grid-template-columns: repeat(2, 1fr); }
  .schedule-grid{ grid-template-columns: repeat(2, 1fr); }
  .flow-layout{ grid-template-columns: 1.3fr 1fr; align-items: start; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .access-grid{ grid-template-columns: 1.2fr 1fr; align-items: start; }
  .group-feature{ max-width: 880px; display: flex; align-items: stretch; text-align: left; }
  .group-feature-photo{ width: 45%; aspect-ratio: auto; }
  .group-feature-body{ width: 55%; display: flex; flex-direction: column; justify-content: center; }
  .group-feature-logo{ margin: 0 0 16px; }
  .group-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ flex-direction: row; justify-content: center; align-items: center; gap: 40px; }

  .footer-inner{ text-align: left; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
  .footer-links{ margin: 0; }
  .footer-copy{ width: 100%; text-align: center; margin-top: 16px; }
}

@media (min-width: 1024px){
  :root{ --header-h: 76px; }

  .header-inner{ max-width: 1240px; }
  .logo-img{ height: 48px; }

  .hamburger{ display: none; }
  .nav-overlay{ display: none !important; }

  .global-nav{
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .global-nav ul{ flex-direction: row; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 2px; }
  .global-nav .nav-link{
    border-bottom: none;
    padding: 9px 10px;
    font-size: 13px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
  }
  .global-nav .nav-link:hover{ background: var(--color-sky-pale); color: var(--color-sky-deep); }
  .global-nav .nav-link--cta{
    margin-top: 0;
    margin-left: 8px;
    padding: 9px 18px;
  }

  .schedule-grid{ grid-template-columns: repeat(4, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); }
  .group-grid{ grid-template-columns: repeat(3, 1fr); }

  .fab-contact span::before{ content: "📞 "; }
}
