/* ベース */
* { box-sizing:border-box; }
body {
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background:#ffffff;
  color:#203338;
}
img { max-width:100%; display:block; }

/* 横幅を合わせるためのコンテナ */
.wrap {
  max-width:1200px;     /* ここをIllustartorのアートボード幅に合わせてもOK */
  margin:0 auto;
  padding:0 24px;
}

/* ===== ヘッダー ===== */
.site-header {
  padding:24px 0 12px;
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

/* ロゴブロック全体のレイアウト */
.brand {
  display:flex;
  align-items:center;
  text-decoration:none;
}

/* SVGロゴのサイズ調整 */
.brand-logo img {
  width: 60px;      /* 好きなサイズに変更可能 */
  height: auto;
  display:block;
}

/* 英語・日本語のロゴテキストのレイアウト */
.brand-text {
  margin-left: 14px;
  display:flex;
  flex-direction:column;
}

.brand-en {
  font-size: 12px;
  color:#333;
  letter-spacing:0.03em;
}

.brand-ja {
  font-size: 22px;
  font-weight:600;
  color:#333;
  margin-top:2px;
}


/* ナビゲーション */
.gnav {
  display:flex;
  gap:32px;
  margin-left:auto;
}
.gnav a {
  font-size:14px;
  font-weight:700;
  color:#2b7f76;           /* 緑がかった青 */
  text-decoration:none;
}
.gnav a:hover {
  opacity:.8;
}

/* 電話ボタン */
.header-tel {
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
  margin-left:32px;
}
.header-tel-label {
  font-size:12px;
  color:#f5ffff;
  opacity:0; /* デザイン上見えない位置にあるので一旦オフでも可 */
}
.header-tel-number {
  display:inline-block;
  padding:16px 32px;
  border-radius:16px;
  background:#2b7f76;   /* ボタンの濃い青緑 */
  color:#fff;
  font-size:20px;
  font-weight:800;
  letter-spacing:.08em;
  text-decoration:none;
}
.header-tel-number:hover {
  opacity:.9;
}

/* デフォルト（PC）は電話番号だけ表示 */
.header-tel-number .tel-text-sp{
  display:none;
}

/* ===== ヒーロー ===== */
.hero-section{
  padding:40px 0 80px;
}

.hero-inner{
  position:relative;
}

/* メイン写真＋カードのラッパー */
.hero-main{
  position:relative;
}

/* 大きな写真部分 */
.hero-photo{
  margin:0;
  border-radius:32px;
  overflow:hidden;
  position:relative;
  height:560px;                 /* PC時の高さ */
}

/* キャッチコピー（既存＋位置調整） */
.hero-copy{
  position:absolute;
  left:60px;
  bottom:52px;
  margin:0;
  font-size:32px;
  letter-spacing:0.18em;
  color:#ffffff;
  z-index:2;
  font-family:
    "Yu Mincho", "游明朝", "Hiragino Mincho ProN",
    "MS PMincho", serif;
}

/* 右下の診療時間カード */
.hero-schedule-card{
  position:absolute;
  right:0px;
  bottom:-20px;                /* 少し写真からはみ出させる */
  width:420px;
  border-radius:28px;
  background:#ffffff;
  box-shadow:0 18px 40px rgba(0,0,0,0.16);
}

/* 写真下部グラデーション（既存そのまま） */
.hero-photo::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:55%;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.0)
  );
  pointer-events:none;
}



.hero-schedule-inner{
  padding:20px 28px 22px;
}

/* カードの見出し */
.hero-schedule-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
  color:#1e7b71;
}
.hero-schedule-underline{
  width:100%;
  height:2px;
  background:#d8d8d8;
  margin-bottom:14px;
}

/* 表組み風の行 */
.hero-schedule-table{
  font-size:13px;
  color:#555;
}

.hero-schedule-head,
.hero-schedule-row{
  display:grid;
  grid-template-columns:120px repeat(7, 1fr);
  align-items:center;
  column-gap:12px;
  margin-bottom:6px;
}

.hero-schedule-head span{
  text-align:center;
}
.hero-schedule-label{
  text-align:left;
}

.hero-schedule-time{
  text-align:left;
  font-size:16px;
}

/* ○／× のスタイル */
.dot,
.cross{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

.dot{
  width:16px;
  height:16px;
  border-radius:50%;
  background:#555;
}
.cross{
  color:#555;
  font-weight:700;
}

/* 下の注釈 */
.hero-schedule-note{
  margin:8px 0 0;
  font-size:11px;
  color:#777;
  line-height:1.7;
}


/* ===== ヒーロー直下のリードセクション ===== */
.lead-block{
  position:relative;        /* 背景用レイヤーの基準にする */
  padding:120px 0 160px;    /* セクション全体の高さ（お好みで調整） */
  overflow:hidden;
}


/* ヒーロー下のリードセクション全体 */
.lead-bg{
  position:absolute;
  inset:0;                  /* top:0; right:0; bottom:0; left:0; と同じ */
  z-index:-1;               /* コンテンツの背面に配置 */

  /* 画像パスはフォルダ構成に合わせてここだけ調整 */
  background: url('assets/lead-bg.jpg') center bottom / cover no-repeat;
}


/* 全体レイアウト */
.lead-inner{
  position:relative;
}

/* 上側：縦書き＋円＋大花 */
.lead-visual{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:40px;
  margin-bottom:80px;
}

/* 縦書きコピー */
.lead-copy-vert{
  margin:40px 0 0 40px;   /* ← 上に40px、左から40px 内側に */
  writing-mode:vertical-rl;
  text-orientation:mixed;
  font-size:22px;
  line-height:1.8;
  letter-spacing:0.15em;
  font-weight:700;
  color:#2b7f76;
}


/* 円形画像群全体 */
.lead-circles{
  position:relative;
  flex:1;
  min-height:360px;      /* 縦に重ねるので少し高め */
}

/* 円それぞれの位置・サイズを調整 */
.lead-circle{
  position:absolute;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(0,0,0,0.12);
}
.lead-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 左上（ご夫婦） */
.lead-circle--top{
  left:120px;
  top:0;
  width:260px;
  height:260px;
}

/* その下あたり（看護師） */
.lead-circle--middle{
  left:260px;
  top:190px;
  width:220px;
  height:220px;
}

/* 右側（親子） */
.lead-circle--bottom{
  left:460px;
  top:60px;
  width:260px;
  height:260px;
}


/* 右上の大きな花ロゴ */
.lead-flower{
  position:absolute;
  right:-40px;
  top:-40px;
  width:420px;
  height:420px;
  opacity:0.5;
}
.lead-flower-svg{
  width:100%;
  height:100%;
}

/* 下側：テキスト＋先生写真 */
.lead-message{
  display:flex;
  flex-wrap:nowrap;         /* ★ 改：折り返さない */
  align-items:flex-start;   /* 上揃え */
  gap:60px;
  margin-top:80px;
}

/* あいさつテキスト部分 */
.lead-message-text{
  flex:1 1 auto;            /* ★ 横幅を取りつつ、残りを写真に */
  max-width:640px;
  padding:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

.lead-message-text p{
  margin:0 0 10px;
  font-size:14px;
  line-height:2.0;
  color:#47535a;
}

/* 署名はそのままでOK（必要なら微調整） */
.lead-sign{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:8px;
}

.lead-sign-logo{
  width:40px;
  height:40px;
}
.lead-sign-logo img{
  width:100%;
  height:100%;
  display:block;
}

.lead-sign-text{
  font-size:13px;
}
.lead-sign-text .clinic-name{
  font-weight:700;
}
.lead-sign-text .doctor-name{
  font-weight:500;
}

/* 先生写真（角丸長方形） */
.lead-doctor{
  flex:0 0 260px;           /* ★ 常に260px幅で右側に */
  margin:0;                 /* ★ 位置調整用マージンは一旦リセット */
  width:260px;
  height:320px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(0,0,0,0.16);
}
.lead-doctor img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== 診療科目セクション ===== */
.dept-section{
  padding:80px 0 120px;
  background:#ffffff;
}

.dept-inner{
  position:relative;
}

/* 見出し */
.dept-header{
  margin-bottom:40px;
}
.dept-title{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:0.18em;
  font-weight:700;
  color:#2b7f76;              /* 見出しの緑 */
}
.dept-lead{
  margin:0;
  font-size:13px;
  color:#555;
}

/* カード配置：上3枚＋下2枚（添付のように中央寄せ） */
.dept-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  grid-template-areas:
    "naika   naika   shokaki shokaki rheuma  rheuma"
    ".       shonika shonika homevisit homevisit .";
  gap:32px 32px;
  margin-top:40px;
}



/* カード共通 */
.dept-card{
  position:relative;
  padding:32px 32px 24px;
  border-radius:28px;
  background:#ffffff;
  border:2px solid #eceff4;
  box-shadow:0 16px 40px rgba(0,0,0,0.04);
  text-align:center;
}

/* 内科（左上） */
.dept-card--naika{
  grid-area:naika;
  border-color:#f2c58a;
}
.dept-card--naika .dept-name,
.dept-card--naika .dept-icon img{
  color:#f2a23a;
  fill:#f2a23a;
}

/* 消化器科（中央上） */
.dept-card--shokaki{
  grid-area:shokaki;
  border-color:#f2a3b5;
}
.dept-card--shokaki .dept-name,
.dept-card--shokaki .dept-icon img{
  color:#f26f8f;
  fill:#f26f8f;
}

/* リウマチ科（右上） */
.dept-card--rheuma{
  grid-area:rheuma;
  border-color:#87d1d1;
}
.dept-card--rheuma .dept-name,
.dept-card--rheuma .dept-icon img{
  color:#26a6a6;
  fill:#26a6a6;
}

/* 小児科（下段やや左寄り） */
.dept-card--shonika{
  grid-area:shonika;
  border-color:#f5d892;
}
.dept-card--shonika .dept-name,
.dept-card--shonika .dept-icon img{
  color:#f4b642;
  fill:#f4b642;
}

/* 訪問診療（下段やや右寄り） */
.dept-card--homevisit{
  grid-area:homevisit;
  border-color:#c9b8f2;
}
.dept-card--homevisit .dept-name,
.dept-card--homevisit .dept-icon img{
  color:#8a6fd8;
  fill:#8a6fd8;
}


/* アイコン */
.dept-icon{
  margin-bottom:12px;
}
.dept-icon img,
.dept-icon svg{
  width:48px;
  height:48px;
  display:inline-block;
}

/* 科目名・説明文 */
.dept-name{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
}
.dept-text{
  margin:0;
  font-size:13px;
  line-height:1.9;
  color:#555;
}

/* ===== 検査・設備セクション ===== */
.equip-section{
  padding:80px 0 120px;
  background:#f6f4f1;              /* うっすらベージュグレー */
}

.equip-inner{
  position:relative;
}

/* 見出し */
.equip-header{
  margin-bottom:40px;
}
.equip-title{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:0.18em;
  font-weight:700;
  color:#2b7f76;
}
.equip-lead{
  margin:0;
  font-size:13px;
  color:#555;
}

/* カード4枚横並び */
.equip-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:32px;
}

/* カード共通 */
.equip-card{
  border-radius:28px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
}

/* 上の写真部分 */
.equip-photo{
  margin:0;
  height:190px;                     /* デザインに合わせて固定高さ */
  overflow:hidden;
}
.equip-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* 下のテキスト部分 */
.equip-body{
  padding:20px 24px 24px;
  text-align:center;
}
.equip-name{
  margin:0 0 10px;
  font-size:16px;
  font-weight:700;
  color:#2b7f76;
  line-height:1.6;
}
.equip-name-sub{
  font-size:14px;
  font-weight:700;
}
.equip-text{
  margin:0;
  font-size:13px;
  line-height:1.9;
  color:#555;
}

/* ===== 診療時間セクション ===== */
.time-section{
  padding:80px 0 120px;
  background:#f3f7f8;
}

.time-inner{ position:relative; }

.time-header{
  margin-bottom:40px;
}
.time-title{
  margin:0 0 8px;
  font-size:26px;
  letter-spacing:0.18em;
  font-weight:700;
  color:#2b7f76;
}
.time-lead{
  margin:0;
  font-size:12px;
  color:#555;
}

/* カード */
.time-card{
  display:flex;
  justify-content:center;
}
.time-card-inner{
  max-width:820px;
  width:100%;
  margin-top:20px;
  padding:28px 40px 28px;
  background:#ffffff;
  border-radius:28px;
  border:2px solid #707070;
  box-shadow:0 16px 40px rgba(0,0,0,0.06);
}

/* テーブル本体 */
.time-table{
  width:100%;
  border-collapse:collapse;
  table-layout:fixed;   /* ← 列幅をキッチリ揃える */
  text-align:center;
}

/* 列幅（ここが「数字で調整できる」ところ） */
.col-time{ width:140px; }   /* 時間列 */
.col-day{ width:auto; }     /* 各曜日（自動で等分） */

/* ヘッダー */
.time-table thead th{
  padding:4px 0 8px;
  font-weight:700;
  font-size:16px;
  color:#555;
}
.th-title{
  text-align:left;
  font-size:18px;
  color:#2b7f76;
}

/* 行 */
.time-table tbody th,
.time-table tbody td{
  padding:10px 0;
  font-size:16px;
}

.time-slot{
  text-align:left;
  padding-right:8px;
}

/* ○× */
.mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:20px;
  height:20px;
  font-size:18px;
}
.mark--dot{
  border-radius:50%;
  background:#555;
}
.mark--cross{
  color:#555;
  font-weight:700;
}

/* 注記 */
.time-note{
  margin:14px 0 0;
  font-size:14px;
  color:#f0a64a;
}

/* ===== アクセス ===== */
.access-section{
  padding:80px 0 120px;
  background:#ffffff;
}

.access-header{
  margin-bottom:24px;
}

.access-title{
  margin:0 0 4px;
  font-size:28px;
  font-weight:700;
  letter-spacing:0.18em;
  color:#2b7f76;
}

.access-lead{
  margin:0;
  font-size:14px;
  color:#555;
  letter-spacing:0.05em;
}

/* 地図周り */
.access-map-wrap{
  margin-top:28px;
  border-radius:24px;
  overflow:hidden;
  width:100%;
  max-width:1050px;
  height:420px;
  background:#777;
}

.access-map{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* ===== フッター ===== */
.site-footer{
  padding:60px 0 24px;
  background:#fbf7f3;
  font-size:14px;
  color:#444;
}

/* 上段メイン部分 */
.footer-main{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:80px;
}

/* 左側：ロゴ＋クリニック名 */
.footer-brand{
  flex:0 1 520px;
}

.footer-brand-head{
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:16px;
}

.footer-logo{
  width:72px;
  height:72px;
  flex:0 0 72px;
}
.footer-logo img{
  width:100%;
  height:100%;
  display:block;
}

.footer-name-en{
  margin:4px 0 4px;
  font-size:12px;
  color:#444;
}
.footer-name-ja{
  margin:0;
  font-size:24px;
  font-weight:700;
  letter-spacing:0.06em;
}

/* 住所・電話 */
.footer-info p{
  margin:4px 0;
}

.footer-addr{
  font-size:13px;
  color:#666;
}

.footer-tel{
  font-size:22px;
  letter-spacing:0.08em;
  color:#555;
}
.footer-tel-icon{
  margin-right:4px;
  font-size:18px;
}
.footer-fax{
  font-size:13px;
  color:#777;
}

/* 右側：アンカーリンク */
.footer-nav{
  flex:0 0 220px;
}

.footer-nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-nav-link{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#222;
  font-size:14px;
}

.footer-nav-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#2b7f76;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.footer-nav-link:hover .footer-nav-icon{
  filter:brightness(1.1);
}
.footer-nav-link:hover .footer-nav-text{
  text-decoration:underline;
}

/* コピーライト */
.footer-copy{
  margin-top:36px;
  text-align:center;
  font-size:12px;
  color:#555;
}

/**********************************
  Responsive
**********************************/

/* ================================
   タブレット（769px〜1024px）
   ================================ */
@media (min-width: 769px) and (max-width: 1024px){

  /* クリニック名（英語 / 日本語）を少し小さく */
  .brand-en{
    font-size:14px;
  }
  .brand-ja{
    font-size:18px;
    line-height:1.2;
  }

  /* グローバルナビの文字が折れないように小さめに */
  .gnav a{
    font-size:15px;
    white-space:nowrap;
  }

  .gnav{
    gap:20px;
  }

  /* 電話番号の文字を少し小さく */
  .header-tel-number{
    font-size:20px;
    white-space:nowrap;
  }

  .header-tel-label{
    font-size:12px;
  }

  /* 全体の横幅調整 */
  .header-inner{
    gap:12px;
  }

  /* ★ ヒーローコピー（「地域によりそう〜」）調整 */
  .hero-copy{
    font-size:28px;
    line-height:1.4;
    max-width:80%;
    bottom:32px;
  }

  /* ★ 検査・設備：タブレットでは 2列表示にする */
  .equip-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    column-gap:24px;
    row-gap:28px;
  }
}





/* スマホ（〜768px） */
@media (max-width : 768px ){

  .wrap{
    padding:0 16px;
  }

  /* ───────── ヘッダー周り ───────── */

  /* ロゴとメニューを縦並びに */
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .brand{
    width:100%;
  }

  .brand-logo img{
    width:52px;
  }

  .brand-ja{
    font-size:18px;
  }

  /* グローバルナビ：ロゴの下で中央寄せ */
  .gnav{
    margin-left:0;           /* PC時の右寄せを解除 */
    width:100%;
    justify-content:center;  /* 中央揃え */
    gap:32px;
    flex-wrap:wrap;
  }

  .gnav a{
    font-size:16px;
  }

  /* 電話ボタンも中央寄せ（任意） */
  .header-tel{
    margin-left:0;
    align-items:center;
    width:100%;
  }

  .header-tel-number{
    width:100%;
    text-align:center;
  }
	
	 /* 〜〜既存のスマホ用指定はそのまま〜〜 */

  /* 電話ボタンの文言を「電話予約」に切り替え */
  .header-tel-number .tel-text-pc{
    display:none;
  }
  .header-tel-number .tel-text-sp{
    display:inline;
  }

  /* ───────── ヒーロー ───────── */

  .hero-section{
    padding:24px 0 40px;
  }

   .hero-photo{
    height:360px;          /* スマホでは少し低く */
  }

  .hero-copy{
    left:20px;
    bottom:20px;
    font-size:22px;
    max-width:80%;
    line-height:1.4;
  }

  /* 診療時間カードは写真の下に分離 */
  .hero-schedule-card{
    position:static;
    margin:16px auto 0;
    width:100%;
    max-width:420px;
  }

 /* === ヒーロー直下のリードセクション（スマホ） === */

.lead-block{
  padding:40px 0 60px;     /* 上下の余白を少し抑える */
}

/* 上側：縦書きコピー＋円形写真３枚＋花ロゴ */
.lead-visual{
  position:relative;
  min-height:520px;        /* 縦書きコピーが収まる高さを確保 */
}

/* ▼ 縦書きコピー：一番上＋円より手前に表示 ▼ */
.lead-copy-vert{
  position:absolute;
  top:20px;               /* ← ここを小さくして一番上へ */
  left:150px;
  writing-mode:vertical-rl;
  text-orientation:mixed;
  white-space:nowrap;
  margin:0;
  font-size:18px;
  line-height:1.8;
  letter-spacing:0.18em;
  font-weight:700;
  color:#2b7f76;
  z-index:2;              /* ★ 円より前面に出す */
}

/* 円形写真用のエリア（PC に近い構図をスマホ用に縮小） */
.lead-circles{
  position:absolute !important;
  top:70px;               /* ← テキストの下からスタートさせる */
  left:0px;
  width:430px;
  height:520px;
  z-index:1;              /* ★ 背面側 */
}

/* 円形写真３枚 */
.lead-circle{
  position:absolute !important;
  width:170px;
  height:170px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(0,0,0,0.16);
}

/* 上：ご夫婦 */
.lead-circle--top{
  top:0 !important;
  left:-30px !important;
}

/* 中：看護師さん（少し左下に） */
.lead-circle--middle{
  top:220px !important;
  left:-30px !important;
}

/* 右側：親子（大きめのイメージに近い位置） */
.lead-circle--bottom{
  top:120px !important;
  left:200px !important;
}

/* 花ロゴは右上にうっすら */
.lead-flower{
  position:absolute;
  right:-40px;
  top:-40px;
  width:260px;
  height:260px;
  opacity:0.35;
}

	

  /* === 下側：挨拶文＋ロゴ＋名前＋写真をセンター寄せ === */

  .lead-message{
    margin-top:40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
  }

  .lead-message-text{
    max-width:90%;
    text-align:left;         /* テキストは読みやすく左揃えのまま */
  }

  .lead-message-text p{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.9;
  }

  .lead-sign{
    justify-content:center;
  }

  .lead-sign-text{
    text-align:left;
  }

  .lead-doctor{
    flex:none;
    width:220px;
    height:280px;
    margin:0 auto;
  }


  /* ───────── 診療科目セクション ───────── */

  .dept-section{
    padding:60px 0 80px;
  }

  .dept-grid{
    display:flex;
    flex-direction:column;
    gap:24px;
    align-items:center;
  }

  .dept-card{
    width:100%;
    max-width:420px;
    margin:0 auto;
  }

  /* ───────── 検査・設備セクション ───────── */

  .equip-section{
    padding:60px 0 80px;
  }

  .equip-grid{
    display:flex;
    flex-direction:column;
    gap:24px;
    align-items:center;
  }

  .equip-card{
    width:100%;
    max-width:420px;
    margin:0 auto;
  }

    /* ───────── 診療時間セクション（スマホ）───────── */
   .time-section{
    padding:60px 0 80px;
  }

  .time-card-inner{
    max-width:460px;
    margin:0 auto;
    padding:20px 16px;
    border-radius:24px;
  }

  .time-table{
    font-size:14px;
  }

  .time-table thead th{
    font-size:14px;
  }
  .th-title{
    font-size:16px;
  }

  .time-table tbody th,
  .time-table tbody td{
    padding:8px 0;
  }

  .time-slot{
    font-size:14px;
  }

  .mark{
    width:18px;
    height:18px;
    font-size:14px;
  }

  /* 列幅も少しだけ詰めるならここを調整 */
  .col-time{ width:80px !important; }
}
.col-day  { width:15px !important; }   /* ←スマホ時の曜日幅 */


  /* ───────── アクセス ───────── */

  .access-section{
    padding:60px 0 80px;
  }

  .access-map-wrap{
    height:280px;
    border-radius:18px;
  }

  /* ───────── フッター ───────── */

  .site-footer{
    padding:40px 0 20px;
  }

  .footer-main{
    flex-direction:column;
    gap:28px;
  }

  .footer-brand,
  .footer-nav{
    flex:1 1 auto;
  }

  .footer-tel{
    font-size:18px;
  }

  .footer-copy{
    margin-top:24px;
    font-size:11px;
  }

/* ーー 縦書きコピーにかぶらないように円を右へずらす ーー */

  .lead-circle--top{
    top:0;
    left:220px;    /* ← 150px から右に寄せる */
  }

  .lead-circle--middle{
    top:190px;
    left:130px;    /* ← 40px から右に寄せる */
  }

  .lead-circle--bottom{
    top:240px;
    right:24px;    /* ← -10px から少し内側に */
  }
	/* ────────────────
   セクションタイトル中央寄せ共通化
──────────────── */
.dept-header,
.equip-header,
.time-header,
.access-header {
  text-align: center;
}

.dept-title,
.equip-title,
.time-title,
.access-title {
  text-align: center;
}

.dept-lead,
.equip-lead,
.time-lead,
.access-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

	
	 .footer-name-ja{
    font-size:18px;      /* 24px → 18px 程度に */
    line-height:1.3;
    letter-spacing:0.04em;
  }

  .footer-name-en{
    font-size:11px;
  }

  .footer-brand-head{
    align-items:flex-start;
    gap:10px;
  }

}
/* ここから下は「全デバイス共通」で効かせたいアニメ系 */

/* ヒーロー複数画像のフェード用 */
.hero-photo{
  position:relative;
  overflow:hidden;
}

/* スライドさせる各画像（重ねて配置） */
.hero-slide{
  position:absolute;
  inset:0;                      /* top:0; right:0; bottom:0; left:0; */
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
}

/* 表示中のスライド */
.hero-slide.is-active{
  opacity:1;
}

/* スクロール時のフェードアップ */
.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:
    opacity .7s ease-out,
    transform .7s ease-out;
}

.fade-up.is-inview{
  opacity:1;
  transform:translateY(0);
}
