*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
    font-size: 62.5%;  /* 1rem = 10px */
}
html,
body {
	margin: 0;
	padding: 0;
}
body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	color: #222;
    font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
}


article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

ul,
ol {
	list-style: none;
}

table{
    border-collapse: collapse; 
    table-layout: fixed;
    border-spacing: 0;
}

th,
td {
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

a{
    text-decoration: none;
}

.inner{
    width: 1080px;
    margin: 0 auto;
}

.sp{
    display: none;
}

.pc{
    display: block;
}

a{
    color: #222222;
}

h1,h2,h3,h4,h5{
  font-weight: 500;
}

h2,h3{
    font-size: 3.6rem;
    font-weight: 500;
}

h4{
  font-size: 2.1rem;
}

/* ベースカラー */
:root {
    --main-color: #EE7800;
  }
  

/* home */
.wrap{
    padding: 0 20px;
}
#header-g{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;         /* スクロールしても下が透けないように */
  border-bottom: 1px solid #eee; /* お好み。いらなければ消してOK */
}

#header-g .h-box{
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.logo-img{
    width: auto;
    height: 70px;
    display: block;
    margin: 0 auto;
}

#header-g h1{
    font-size: 24px;
}

.header-g-p{
    line-height: 0.5;
}

#navi {
    margin: 0 10px;             /* ロゴと電話の間の余白 */
    flex: 1;                    /* 中央エリアとして広がる */
  }

#navi ul{
    text-align: center;
    padding-bottom: 18px;
}

#navi ul li {
    display: inline-block;
    padding: 20px 10px 0;
    font-weight: 500;
    font-size: 1.8rem;
}

#navi ul li a:hover{
    opacity: 0.6;
}

.h-menu{
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;        /* 縦中央 */
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

/* 電話まわり */
.header-tel{
    padding-bottom: 19px;
    padding-top: 16px;
}

.header-tel a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EE7800;
    font-weight: 500;
    font-size: 20px;
  }
  
  .tel-icon {
    height: 30px;
    width: auto;
  }
  
  .tel-number {
    letter-spacing: 0.08em;
  }

  /* ヘッダーナビの現在ページにオレンジの下線を出す */
.navi li.border-line a {
  position: relative;
  padding-bottom: 12px;  /* 下線との間の余白はお好みで */
}

.navi li.border-line a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%); /* 中央寄せ */
  width: 36px;                 /* 線の長さ */
  height: 3px;                 /* 線の太さ */
  background-color: #f28c2a;   /* オレンジ */
  border-radius: 2px;
}


.mv{
    position: relative;
    z-index: -2;
    background: url(./img/mv_img.webp) no-repeat;
    height: 800px;
    width: 100%;
    background-size: cover;
    min-height: 600px;
    margin-top: 90px;  /* ★ヘッダーの高さに合わせて調整 */  
}


.mv h2{
    font-size: 3.6rem;
    font-weight: 500;
}

.mv .mv-t{
    position: absolute;
    top: 17%;
    left: 10%;
}

.mv .mv-t p{
    padding-top: 17px;
    line-height: 1.75;
}


/* 診察時間のカード（画像の親） */
.clinic-time-box {
    position: absolute;
    right: 70px;       /* 右からの距離 */
    bottom: -100px;      /* 下からの距離 */
    max-width: 513px;  /* カードの幅。スクショに合わせてる */
    z-index: 2;        /* テキストの上に表示 */
}

/* 画像自体 */
.clinic-time-img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* ← シャドウ */
    border-radius: 19px; /* 角丸が必要なら */
}

.sec-title{
  display: block;
  font-size: 1.8rem;
  color: var(--main-color);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* 追記 */
.footer-t th,
.footer-t td {
    text-align: center;
    padding: 18px 15px;
    /* font-size: 16px; */
    white-space: nowrap; /* 改行しない！ */
}

/* 曜日行（角丸を外す） */
.footer-t .tb01 th,
.footer-t .tb01 td {
    background: #e6c69f;
    color: #fff;
    font-weight: 500;
}

.footer-t {
    /* width: 100%; */
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden; /* 角丸を有効にする */
}

/* 曜日行は角丸無し */
.footer-t .tb01 th,
.footer-t .tb01 td {
    background: #e6c69f;
    color: #fff;
    font-weight: 500;
}
/* 追記終わり */


.bb{
    font-weight: 500;
    color: #EE7800;
    font-size: 1.5em;
    line-height: 1.5;
    /* padding-left: 17px; */
}

.information-h .inner {
  max-width: 1080px;
  width: 100%;           /* 画面幅にフィットさせる */
  margin: 0 auto;
  box-sizing: border-box;
}

.information-h{
    margin: 170px 0 40px 0;
    z-index: -2;
}

.information-h dl{
    display: flex;
}

.information-h dt{ 
    width: 200px;
    border-bottom: 1px solid #bbb;
    padding: 12px 0;
}
.information-h dd{ 
    border-bottom: 1px solid #bbb;
    width: 800px;
    padding: 12px 0;
}
.information-h dt a:hover{
    opacity: 0.6;
}

.information-h dd a:hover{
    opacity: 0.6;
}

.information-h h3{
    margin-bottom: 50px;
}

.news-more-link{
  margin-top: 30px;
}

.news-more-link a{
  color: #555;
}

.news-nav-area {
  margin: 100px 0 0;
}

.news-nav-line {
  border-top: 1px solid #bbb;
  margin-bottom: 40px;
}

.news-nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.news-nav-next{
  line-height: 2;
}

.news-nav-prev a, .news-nav-next a{
  display: inline-block;
  padding: 12px 40px;
  border-radius: 999px;
  border: 1px solid #ccc;
  text-decoration: none;
  font-size: 1.7rem;
  background: #fff;
}

.news-nav-prev a,
.news-nav-next a,
.news-nav-disabled {
  display: flex;
  align-items: center;
  gap: 15px; /* 画像とテキストの間 */
  text-decoration: none;
}

.news-nav-archive{
  font-size: 1.7rem; 
}

.news-nav-prev a:hover, .news-nav-next a:hover {
  background: #f7f7f7;
}

.news-nav-arrow {
  width: 8px;
  height: auto;
  padding-top: 3px;
}

/* 無効状態（リンク無し）は薄いグレー） */
.news-nav-disabled {
  color: #aaa;
  border-color: #ddd;
  background: #f9f9f9;
  cursor: default;
  pointer-events: none;
  border: 1px solid #ccc;
  padding: 12px 40px;
  border-radius: 999px;
  font-size: 1.7rem;
}


/* 診察のご案内 */
.guide-sec{
    margin-top: 140px;
    /* margin-bottom: 50px; */
    line-height: 2.5;
    background: #f8f5f4;
    padding: 120px 0;
}

/* 基本：横並び（flex） */
.guide-img {
  display: flex;
  gap: 16px;         /* 好みで調整 */
}

.guide-img img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.guide-sec h3{
    padding-bottom: 30px;
}

/* ================================
   主な症状
   （Conditions）
================================ */
/* セクション全体 */
.conditions-sec {
    padding: 120px 0;
  }
  
  /* 見出し「主な症状」 */
  .sec-heading {
    font-size: 3.2rem;       /* 32px */
    margin-bottom: 32px;
  }
  
  /* リード文 */
  .sec-lead {
    line-height: 2;
  }

  .sec-lead span{
    font-weight: 500;
  }
  
  /* 症状カードの横並び */
  .symptom-list {
    display: flex;
    gap: 40px;
    margin-top: 56px;
  }
  
  /* 1枚のカード */
  .symptom-item {
    flex: 1;
    text-align: center;
  }
  
  /* イラスト部分の背景ボックス */
  .symptom-thumb {
    margin-bottom: 16px;
  }
  
  .symptom-thumb img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* キャプション */
  .symptom-text {
    /* font-size: 1.6rem;  */
    line-height: 1.8;
  }
  
  /* スマホ用：縦並びにする */
  @media screen and (max-width: 768px) {
    .symptom-list {
      flex-direction: column;
      gap: 24px;
    }
  
    .symptom-item {
      max-width: 400px;
      margin: 0 auto;
    }
  }

/* ================================
   当院の特徴セクション
   （Features）
================================ */

  /* セクション背景（方眼） */
  .features-sec {
    padding: 120px 0;
    background-color: #fffbf2;
    background-image:
      linear-gradient(rgba(245, 228, 200, 0.3) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245, 228, 200, 0.12) 1px, transparent 1px);
    background-size: 10px 10px; /* マス目のサイズ */
  }
  
  /* 中身の最大幅 */
  .features-sec .inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* 英語サブタイトル（Features） */
  .sec-title-en {
    display: block;
    font-size: 1.8rem;
    color: var(--main-color);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  
  /* 見出し「当院の特徴」 */
  .sec-heading {
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 16px;
  }
  
  /* リード文 */
  .sec-lead {
    /* font-size: 1.8rem; */
    line-height: 2;
/*     color: #555; */
    /* margin-bottom: 32px; */
  }
  
  /* ３つの特徴をまとめるラッパー */
  .features-rows {
    margin-top: 30px;
    display: grid;
    row-gap: 32px;
  }
  
  /* 1行 = テキスト（左）＋ 写真（右） */
  .feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px; /* 左を可変・右を固定幅 */
    column-gap: 60px;
    align-items: start;
  }
  
  /* 見出し行（番号＋タイトル） */
  .feature-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  /* 丸の番号 1,2,3 */
  .feature-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
  }
  
  /* オレンジの小見出し */
  .feature-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--main-color);
  }
  
  /* 説明テキスト */
  .feature-text {
    line-height: 2;
  }

  .feature-text a {
	 line-height: 2.5;
    color: #555;
  }

  /* 写真側のラッパー */
  .feature-photo-wrap {}
  
  /* 写真そのもの */
  .feature-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
  }
  
  /* ================================
     レスポンシブ（スマホ）
  ================================ */
  @media screen and (max-width: 768px) {
    .features-sec {
      padding: 56px 0;
    }
  
    .feature-row {
      grid-template-columns: 1fr;  /* 縦並び */
      row-gap: 16px;
    }
  
    .feature-photo-wrap {
      max-width: 320px;
      margin: 0 auto;
    }
  
    .sec-heading {
      font-size: 2.6rem;
    }
  }

  /* ===== 施術内容セクション ===== */

.services-sec {
    padding: 120px 0;
    background-color: #fff;
  }
    
  .services-table-wrap {
    margin-top: 32px;
    overflow-x: auto;        /* スマホで横スクロール可にする保険 */
  }
  
  .services-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #bbb;
    background-color: #fff;
  }
  
  /* 見出し行 */
  .services-table thead th {
    background-color: #FFF2E5;   /* 見出し行のベージュ */
    font-weight: 500;
    text-align: left;
    padding: 14px 20px;
    border-right: 1px solid #bbb;
  }
  
  .services-table thead th:last-child {
    border-right: none;
  }
  
  /* 本文セル */
  .services-table tbody th,
  .services-table tbody td {
    padding: 14px 20px;
    border-top: 1px solid #bbb;
    border-right: 1px solid #bbb;
    vertical-align: top;
    line-height: 1.8;
  }
  
  .services-table tbody tr:last-child th,
  .services-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .services-table tbody td:last-child,
  .services-table tbody th:last-child {
    border-right: none;
  }
  
  /* 1列目（区分）だけ背景を少し変えて見やすく */
  .services-table tbody th[scope="row"] {
    background-color: #FFF2E5;
    font-weight: 500;
    white-space: nowrap;
    width: 18%;
  }
  
  /* スマホ用ちょい調整 */
  @media screen and (max-width: 768px) {
    .services-sec {
      padding: 56px 0;
    }

  }

  /* 施術内容SP */
  /* PCはカード非表示 */
.sp-insurance-cards {
  display: none;
}

/* スマホになったら */
@media screen and (max-width: 768px) {
  .sp-insurance-cards {
    display: grid;
    gap: 20px;
  }

  .sp-card {
    background: #fff;
    border: 1px solid #F0E1D6;
    padding: 16px 18px;
    border-radius: 8px;
  }

  .sp-card h4 {
    color: #EE7800;
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .sp-card p {
    line-height: 1.8;
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
}


 /* セクション全体 */
.tel-cta-sec {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 130px;
  }
  
  /* 説明テキスト */
  .tel-cta-text {
    margin-bottom: 40px;
  }
  
  /* 電話ボタン */
  .tel-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 400px;              /* ★指定の幅 */
    padding: 0;
    background-color: #EE7800; /* 基本カラー */
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
    border-radius: 50px;       /* 丸いボタン形状 */
    text-decoration: none;
    gap: 12px;                 /* アイコンとの間隔 */
    transition: opacity 0.25s;
  }
  
  .tel-cta-btn:hover {
    opacity: 0.85;
  }
  
  /* 電話アイコン画像 */
  .tel-icon-img {
    width: 24px;
    height: 24px;
    display: block;
  }
  
  /* スマホ対応 */
  @media screen and (max-width: 480px) {
    .tel-cta-btn {
      width: 90%;
      font-size: 2rem;
    }
  
    .tel-icon-img {
      width: 22px;
      height: 22px;
    }
  }
  
  
iframe{
    vertical-align:bottom;
    }

/* 背景＆全体 */
.footer-access {
    background-color: #F5F2F2;
    padding: 85px 0 0;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* 上段：2カラム */
  .footer-access-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
  
  /* 左カラム：医院情報 */
  .footer-clinic {
    flex: 1;
  }
  
  .footer-logo {
    display: block;
    margin-bottom: 20px;
    width: 250px;
  }
  
  /* TEL */
  .footer-tel {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .footer-tel-label {
    color: #EE7800;
    font-weight: 500;
    margin-right: 4px;
  }
  
  .footer-tel-number {
    color: #EE7800;
    font-weight: 500;
    font-size: 2.8rem;
  }
  
  /* 住所・アクセス */
  .footer-address {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }
  
  .footer-access-list {
    font-size: 1.7rem;
    line-height: 1.9;
  }
  
  /* 右カラム：診察時間カード */
  .footer-time-card {
    width: 47%;
  }
  
  .footer-time-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
  }
  
  /* 下段：フッターナビ（白い pill） */
  .footer-nav {
    margin-top: 60px;
  }
  
  .footer-nav ul {
    /* max-wi dth: 1080px; */
    margin: 0 auto;
    padding: 16px 40px;
    background-color: #fff;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .footer-nav a {
    font-size: 1.7rem;
    color: #222;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .footer-nav a:hover {
    color: #EE7800;
  }

  .copyright {
    font-size: 1.4rem;
    text-align: center;
    color: #555;
    padding: 20px 0;
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  
  /* スマホ対応（簡易） */
  @media screen and (max-width: 768px) {
    .footer-access-main {
      flex-direction: column;
      gap: 30px;
    }
  
    .footer-time-card {
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
    }
  
    .footer-nav ul {
      flex-wrap: wrap;
      row-gap: 12px;
      border-radius: 30px;
      padding: 16px 20px;
    }
  }
  
.copy-right{
    text-align: center;
    padding: 40px;
}

#page-top {
  width: 50px;
  height: 50px;
  background-color: #EE7800;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  bottom: 50px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* 矢印アイコン */
.page-top-icon {
  width: 22px;   /* 好みで調整OK */
  height: auto;
  pointer-events: none;
}


/* about */
.about{
    position: relative;
    z-index: -2;
    background: url(./img/about_mv.jpg) no-repeat;
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    margin-top: 90px;
}

.medical-h h3{
margin-bottom: 20px;  
}
.clinic-dl dl{
    display: flex;
}

.clinic-dl dt{
    width: 150px;
    padding-bottom: 15px;
}

#clinic{
    margin-top: 80px;
    /* margin-bottom: 200px; */
}

.clinic-w{
    margin-top: 50px;
}
.clinic-w h4{
    font-size: 1.2em;
    margin-bottom: 20px;
}

.clinic-img{
    position: relative;
    margin-bottom: 100px;
}

.bg{
    position: absolute;
    top: -80px;
    background: #FFF9EB;
    height: 500px;
    width: 100%;
    z-index: -1;
}

.clinic-img .inner{
    width: 1000px;
    margin: 0 auto;
}

.clinic-img h4{
    text-align: center;
    padding-bottom: 50px;
    font-size: 1.2em;
}

.photo-wrapper{
    display: flex;
    padding-top: 50px;
}

.photo{
    width: 470px;
    margin-right: 60px;
}
.photo02{
    margin-right: 0;
}

.photo p{
    text-align: center;
    padding-top: 5px;
}

.tb{
    display: none;
}

#sp-navi{
    display: none;
}

/* ===== 当院の情報（Clinic Info） ===== */

.clinic-info-sec {
  padding: 120px 0 80px;
  background-color: #fff;
}

/* 見出しは他セクションと共通でOK
   .sec-title-en / .sec-heading など */


.clinic-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  /* font-size: 1.6rem; */
}

.clinic-info-table th,
.clinic-info-table td {
  padding: 14px 20px;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}

.clinic-info-table tr:last-child th,
.clinic-info-table tr:last-child td {
  border-bottom: 1px solid #e5e5e5;
}

.clinic-info-table th {
  width: 24%;
  white-space: nowrap;
  font-weight: 500;
}

.clinic-info-table td {
  background-color: #fff;
}

/* ○・□・✕のスタイル */
.dot-circle,
.dot-square {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
}

.dot-circle {
  border-radius: 50%;
  background-color: #EE7800;
}

.dot-square {
  background-color: #f4b066;
}

.dot-square.beige {
  background-color: #f5d8ad;
}

.dot-circle.dot-empty,
.dot-square.dot-empty {
  background-color: transparent;
  border: 1px solid #f0d0a0;
}

.mark-x {
  text-align: center;
  color: #EE7800;
  font-size: 1.3rem;
}
.clinic-hours img{
  width: 500px;
  padding: 5px 0 0;
}

/* 凡例・注意書き */
.clinic-hours-note {
  margin-top: 12px;
  line-height: 1.8;
}

.clinic-hours-note p {
  margin-bottom: 6px;
}

.clinic-hours-accident span {
  font-weight: 600;
}

/* スマホ簡易対応 */
@media screen and (max-width: 768px) {

  .clinic-info-table th,
  .clinic-info-table td {
    padding: 10px 12px;
  }

  .clinic-hours-head,
  .clinic-hours-row {
    font-size: 1.3rem;
  }
}

/* 院内紹介 */
.clinic-tour-sec {
  padding: 80px 0;
  background-color: #fff;
}

/* タイトルは既存の .sec-title-en / .sec-heading を流用 */

.clinic-tour-images {
  margin-top: 24px;
}

.clinic-tour-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 40px;   /* 1枚目と2枚目の間の余白 */
}

.clinic-tour-img:last-child {
  margin-bottom: 0;
}

/* 院長紹介セクション */
.director-sec {
  padding: 80px 0;
  background: #fff;
}

/* タイトルはサイト共通の .sec-title-en / .sec-heading を使う想定 */

.director-flex {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 40px;
}

.director-photo img {
  width: 320px;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.director-text {
  flex: 1;
}

.director-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.director-text p {
  line-height: 1.8;
  margin-bottom: 16px;
}

.director-name {
  margin-top: 24px;
  font-weight: 500;
}

/* プロフィール表 */
.director-profile {
  margin-top: 60px;
}

.director-profile-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
}

.profile-table th,
.profile-table td {
  padding: 14px 8px;
  border-bottom: 1px solid #ddd;
}

.profile-table th {
  width: 240px;
  font-weight: 500;
}

/* ---------------------------------------------------
   杜のクラブセクション
--------------------------------------------------- */

.morinoclub-sec {
  padding: 100px 0;
  background: #fff;
}

.morinoclub-box {
  max-width: 1080px;
  /* margin: 0 auto; */
  background: #f8f8f8;
  border-radius: 40px;
  padding: 60px 70px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* 左エリア */
.morinoclub-left {
  flex: 1;
}

.morinoclub-logo {
  width: 250px;
  margin-bottom: 24px;
}

.morinoclub-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.morinoclub-right p {
  line-height: 1.9;
  margin-bottom: 28px;
}

.morinoclub-arrow {
  width: 89px;     /* 矢印サイズ（必要なら調整してね） */
  height: auto;
  padding-bottom: 6px;
}

.morinoclub-link:hover {
  opacity: 0.6;
}

/* 右寄せ用のコンテナ */
.morinoclub-link-wrap {
  text-align: right;   /* ← これで右揃え */
  margin-top: 40px;    /* お好みで余白調整 */
}

/* 詳細リンク */
.morinoclub-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}



/* スマホ対応 */
@media (max-width: 768px) {
  .morinoclub-box {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }

  .morinoclub-logo {
    width: 200px;
  }
}

/* =========================
   施術のご案内 共通
========================= */

.menu-mv {
  position: relative;
  z-index: -2;
  background: url(./img/menu_mv.jpg) no-repeat;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: 90px;
}

/* 施術のご案内セクション */
.menu-treatment-sec {
  padding: 80px 0 90px;
}

.menu-treatment-heading {
  font-size: 3.6rem;
  margin-bottom: 24px;
}

.menu-treatment-lead {
  line-height: 2;
  margin-bottom: 40px;
}

/* 保険施術ボックス */
.menu-insurance-box {
  margin-top: 10px;
}

.menu-insurance-title {
  background-color: #EE7800;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px 8px 0 0;
  font-size: 2.7rem;
  font-weight: 500;
}

.menu-insurance-body {
  background-color: #F8F5F4;
  border-radius: 0 0 8px 8px;
  padding: 26px 60px 55px;
  /* border: 1px solid #F0E1D6; */
  border-top: none;
}

.menu-insurance-lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 66px;
}

/* カード2枚横並び */
.menu-insurance-card-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.menu-insurance-card {
  position: relative;
  flex: 1;
  background-color: #fff;
  border: 1px solid #EE7800;
  border-radius: 4px;
  padding: 50px 24px 26px;
  text-align: center;
}

.menu-insurance-card-icon {
  position: absolute;
  left: 50%;
  top: -32px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-insurance-card-icon img {
  width: 60px;
}

.menu-insurance-card-text {
  font-weight: 500;
  line-height: 1.4;
  font-size: 2.4rem;
}

.menu-insurance-card-text span{
  font-size: 1.7rem;
  font-weight: normal;
}

.menu-insurance-card .text2{
  margin-top: 10px;
}

/* 注意文 */
.menu-insurance-note {
  line-height: 1.9;
}

.menu-insurance-note span {
  font-weight: 500;
}

/* スマホ対応 */
@media (max-width: 768px) {

  .menu-insurance-body {
    padding: 22px 16px 28px;
  }

  .menu-insurance-card-row {
    flex-direction: column;
  }
}

/* 交通事故・労災対応ブロック */
.menu-accident-box {
  margin-top: 80px;
}

/* 見た目は保険施術ボックスと合わせる */
.menu-accident-title {
  background-color: #EE7800;
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px 8px 0 0;
  font-size: 2.7rem;
  font-weight: 500;
}

.menu-accident-body {
  background-color: #F8F5F4;     /* セクション全体と合わせて #F8F5F4 */
  border-radius: 0 0 8px 8px;
  padding: 32px 60px 55px;
  /* border: 1px solid #F0E1D6; */
  border-top: none;
}

.menu-accident-lead {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 32px;
}

.menu-accident-lead span {
  font-weight: 500;
}

/* 4つのカードを2×2に */
.menu-accident-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
}

/* 各カード */
.menu-accident-item {
  background-color: #fff;
  border-radius: 4px;
  padding: 34px 32px 28px;
  text-align: center;
}

.menu-accident-icon {
  margin-bottom: 16px;
  text-align: center;
}

.menu-accident-icon img {
  width: 70px;
  height: auto;
}

.menu-accident-item-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}

/* =========================
   パーソナルストレッチ
========================= */

.stretch-mv {
  position: relative;
  z-index: -2;
  background: url(./img/stretch_mv.jpg) no-repeat;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: 90px;
}

.menu-stretch-box {
  margin-top: 80px;
}

.menu-stretch-title {
  background-color: #EE7800; /* #EE7800 に近い画像の色味 */
  color: #fff;
  text-align: center;
  padding: 8px 10px;
  border-radius: 12px 12px 0 0;
  font-size: 2.8rem;
  font-weight: 500;
}

.menu-stretch-body {
  background-color: #F8F5F4;
  border-radius: 0 0 12px 12px;
  padding: 40px 60px 50px;
  /* border: 1px solid #F0E1D6; */
  border-top: none;
}

.menu-stretch-lead {
  margin-bottom: 20px;
  line-height: 1.9;
}

.menu-stretch-list {
  margin-bottom: 40px;
  line-height: 1.9;
}

.menu-stretch-btn-wrap {
  text-align: center;
}

.menu-stretch-btn {
  display: inline-block;
  padding: 13px 80px;
  border-radius: 32px;
  border: 1px solid #EE7800;
  color: #EE7800;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  background: #fff;
}

.menu-stretch-btn:hover {
  background-color: #EE7800;
  color: #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {

  .menu-stretch-body {
    padding: 28px 18px 40px;
  }

  .menu-stretch-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================
   パーソナルストレッチ
============================ */

.stretch-main-sec {
  padding: 80px 0;
}

.stretch-title {
  /* font-size: 3.2rem; */
  margin-bottom: 30px;
}

.stretch-main-img {
  position: relative;
  margin-bottom: 25px;
}

.stretch-main-img img {
  width: 100%;
}

.stretch-main-copy {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 2.4rem;
  line-height: 1.8;
  color: #222;
}

.stretch-photo-grid {
  display: flex;
  gap: 26px;
  margin-bottom: 50px;
}

.stretch-photo-item img {
  width: 100%;
  margin-bottom: 10px;
}

.stretch-lead {
  margin-bottom: 18px;
  line-height: 1.9;
}

.stretch-list {
  margin: 10px 0 20px;
  line-height: 2;
}

.stretch-list li {
  font-size: 1.8rem;
}

.stretch-list span{
  color: #EE7800;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .stretch-photo-grid {
    flex-direction: column;
  }

  .stretch-main-copy {
    right: 20px;
    top: 20px;
    font-size: 2rem;
  }
}

/* ============================
   姿勢 × 呼吸 ＆ 姿勢改善ストレッチ
============================ */

.stretch-detail-sec {
  padding: 0 0 100px;
}

.stretch-detail-box {
  background: #F8F5F4;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.stretch-detail-box.reverse {
  flex-direction: row-reverse;
}

.stretch-detail-text {
  flex: 1.1;
}

.stretch-detail-img {
  flex: 1;
}

.stretch-detail-img img {
  width: 100%;
  border-radius: 6px;
}

.stretch-detail-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: #EE7800;
  margin-bottom: 16px;
}

.stretch-detail-p {
  /* font-size: 1.7rem; */
  line-height: 1.9;
}


/* スマホ対応 */
@media (max-width: 768px) {

  .stretch-detail-box,
  .stretch-detail-box.reverse {
    flex-direction: column;
    padding: 24px 20px;
  }

  .stretch-detail-title {
    font-size: 2.2rem;
  }

}

/* ============================
   主な効果と期待できる変化
============================ */

.stretch-effect-sec {
  padding: 0 0 100px;
  background: #fff;
}

.stretch-effect-heading {
  text-align: center;
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 16px;
}

.stretch-effect-heading:after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #EE7800;
  margin: 12px auto 0;
}

.stretch-effect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.stretch-effect-card {
  border: 1px solid #EE7800;
  border-radius: 8px;
  padding: 50px 24px 32px;
  position: relative;
  text-align: center;
  background: #fff;
}

.stretch-effect-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stretch-effect-icon img {
  width: 50px; /* 指定どおり：アイコン幅 */
}

.stretch-effect-title {
  color: #EE7800;
  font-size: 2.3rem; /* 小見出しサイズ指定 */
  font-weight: 500;
  margin-bottom: 16px;
}

.stretch-effect-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/* ふわっとアニメの初期状態 */
.fuwatto-wrap [class*="fuwatto"] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* f-act が付いたらふわっと表示 */
.fuwatto-wrap .f-act {
  opacity: 1;
  transform: translateY(0);
}



/* スマホ対応 */
@media (max-width: 768px) {
  .stretch-effect-grid {
    grid-template-columns: 1fr;
  }

  .stretch-effect-card {
    padding: 46px 20px 28px;
  }

  .stretch-effect-title {
    font-size: 2rem;
  }

}

/* セクション外側（中央に配置） */
.stretch-diff-sec {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

/* ★ 背景マス目を含む1080pxのボックス */
.stretch-diff-box {
  width: 1080px;
  max-width: 90%;
  padding: 50px 60px;
  background-color: #fff9ef;
  background-image:
    linear-gradient(rgba(245, 228, 200, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 228, 200, 0.2) 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 8px;
  margin: 0 auto;
  text-align: center; /* ★ 見出し中央寄せ */
}

/* 見出し */
.stretch-diff-heading {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 50px;
  display: inline-block;
  position: relative;
}

/* 下線 */
.stretch-diff-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 220px;
  height: 2px;
  background-color: #EE7800;
}

/* ★ リスト（中央寄せ & 幅を狭くする） */
.stretch-diff-list {
  margin: 0 auto;
  width: 80%;           /* 中央寄せのため幅を調整 */
  max-width: 800px;     /* これで中央にまとまる */
  text-align: left;     /* 文字だけ左揃えに戻す */
}

/* 各項目の行 */
.stretch-diff-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

/* 数字（1,2,3） */
.diff-num {
  font-size: 2.6rem;
  font-weight: 500;
  margin-right: 18px;
  line-height: 1.5;
  flex-shrink: 0;
}

/* テキスト */
.diff-text {
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
}

/* スマホ対応 */
@media (max-width: 768px) {

  .stretch-diff-box {
    padding: 50px 20px;
  }

  .stretch-diff-heading {
    font-size: 2.3rem;
  }

  .stretch-diff-list {
    width: 100%;
    max-width: none;
  }

  .diff-num {
    font-size: 2.4rem;
    margin-right: 5px;
  }

  .diff-text {
    font-size: 1.8rem;
  }
}

.new-stretch-box {
  width: 1080px;
  margin: 40px auto 100px;
  padding: 60px 40px;
  border: 7px solid rgba(238, 120, 0, 0.2); /* #EE7800 の 20% */
  text-align: center;
  border-radius: 6px;
  background: #fff;
}

.new-stretch-box p {
  font-size: 2.7rem;
  line-height: 2;
  font-weight: 500;
}

.new-stretch-box p span {
  font-size: 2.7rem;
  color: #EE7800;
  font-weight: 500;
}

/* =========================
   アクセスページ
========================= */

/* メインビジュアル（必要なら画像差し替え） */
.access-mv {
  position: relative;
  z-index: -2;
  background: url(./img/access_mv.webp) no-repeat;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  margin-top: 90px;
}

/* メインセクション */
.access-main-sec {
  padding: 80px 0 60px;
}

.access-title {
  font-size: 3.6rem;
  margin-bottom: 24px;
}

.access-main-sec .sec-title-en {
  color: #EE7800;
}

/* 上の説明テキスト（「初めての方へ～」的な）を入れる場合 */
.access-intro {
  line-height: 2;
  margin-bottom: 32px;
}

/* 情報ブロック左右並び */
.access-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 80px 0 80px;
}

/* 左：住所・アクセス方法 */
.access-info-left {
  flex: 1 1 60%;
}

/* 右：診療時間カードやミニマップ等 */
.access-info-right {
  flex: 1 1 40%;
}

/* 情報テーブル（院名／住所／TEL…） */
.access-info-table {
  margin-bottom: 24px;
}

.access-info-table > div {
  /* display: flex; */
  margin-bottom: 26px;
}

.access-info-table dt {
  min-width: 150px;
  font-weight: 600;
}

.access-info-table dd {
  margin: 0;
  line-height: 1.8;
}



/* アクセスページの店舗写真（幅いっぱい）用 */
.access-photo {
  margin: 40px auto 0;
}

.access-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* アクセスページ：乗り物アイコン */
.access-icon-line {
  display: flex;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #222;
}

.access-icon {
  width: 26px;
  height: auto;
  margin-right: 8px;
  opacity: 0.9;
}

.access-method{
  padding-bottom: 10px;
}


/* -------------------------
   SP レイアウト
------------------------- */
@media (max-width: 768px) {

  .access-main-sec {
    padding: 60px 0 40px;
  }

  .access-info {
    flex-direction: column;
  }

  .access-info-right {
    width: 100%;
  }

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

  .access-detail-item {
    padding: 18px 16px;
  }
}

/* =========================
   お知らせページ
========================= */

.news-mv, .news-head-sec {
  background-color: rgba(238,120,0,0.1);
  padding: 150px 0 70px 0;
}
.news-mv-title {
  font-size: 3.6rem;
  font-weight: 500;
}

.news-sec {
  padding: 60px 0 80px;
}

.news-list {
  border-top: 1px solid #e5e5e5;
}

.news-item {
  padding: 32px 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-date {
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: #6f6f6f;
}

.news-heading {
  font-size: 2rem;
  margin-bottom: 8px;
}

.news-heading a {
  color: #222;
}

.news-heading a:hover {
  text-decoration: underline;
}

.news-excerpt {
  line-height: 1.8;
}

.news-pager {
  margin-top: 40px;
  text-align: center;
}

.pager-num {
  display: inline-block;
  min-width: 26px;
  padding: 6px 8px;
  margin: 0 3px;
  font-size: 1.6rem;
  border: 1px solid #ddd;
  background: #fff;
}

.pager-num.is-current {
  background: #555;
  color: #fff;
  border-color: #555;
}

.pager-dot {
  border: none;
  background: transparent;
}

/* ページネーションの全体 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

/* 各ボックス（数字） */
.pagination a,
.pagination span {
  width: 40px;      /* 正方形にするため width = height */
  height: 40px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 20px;  /* 角丸・不要なら0でOK */
  font-size: 1.7rem;
  text-decoration: none;
  background-color: #fff;
  transition: 0.25s;
}

/* ホバー */
.pagination a:hover {
  background-color: rgba(238,120,0,0.12); /* #EE7800 の12% */
  border-color: #EE7800;
  color: #EE7800;
}

/* 現在のページ */
.pagination .current {
  background-color: #EE7800;
  border-color: #EE7800;
  color: #fff;
  font-weight: 500;
  border-radius: 20px;
}

.pagination-arrow {
  width: 10px;
  height: auto;
  vertical-align: middle;
  padding: 0 0 0 2px;
}

.pagination-arrow-b{
  width: 10px;
  height: auto;
  vertical-align: middle;
  padding: 0 2px 0 0;

}

.news-list-item {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}

.news-date {
  color: #a5a5a5;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.news-title a {
  font-weight: 500;
  font-size: 2rem;
  text-decoration: none;
}

.news-title a:hover {
  opacity: 0.7;
}

.news-excerpt {
  margin-top: 8px;
  color: #555;
  line-height: 1.7;
}

.news-title{
  margin-bottom: 10px!important;
}

.page-news .information-h {
    margin: 40px 0 100px 0;
}

.page-mv {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.news-mv {
  /* background-image: url('/wp-content/themes/あなたのテーマ名/img/mv-news.jpg'); */
  background-color: #FFF2E6;
}

.page-mv-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.page-mv-en, .news-head-label {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #EE7800;
  margin-bottom: 6px;
  text-align: left;
  font-weight: 500;
}

.page-mv-title, .news-head-title {
  font-size: 3rem;
  font-weight: 500;
}




/* =========================
   お知らせ 個別ページ
========================= */

.news-single-sec {
  padding: 80px 0 200px;
  background-color: #ffffff;
}


/* 日付 */
.news-single-date {
  font-size: 1.6rem;
  color: #6f6f6f;
  margin-bottom: 6px;
}

/* タイトル */
.news-single-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 28px;
}

/* 本文 */
.news-single-body p {
  margin-bottom: 1em;
}

/* 受付時間など、少しまとめて見せたい文 */
.news-single-lead {
  margin-top: 24px;
}

/* 戻るボタン */
.news-back-wrap {
  margin-top: 100px;
}

.news-back-btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid #999;
  border-radius: 3px;
  background-color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  font-size: 1.7rem;
}

.news-back-btn:hover {
  background-color: #f3f3f3;
  border-color: #666;

}

/* =========================
   SPレイアウト
========================= */
@media (max-width: 768px) {
  .news-single-sec {
    padding: 50px 0 80px;
  }

  .news-single {
    max-width: 100%;
  }

  .news-single-title {
    font-size: 2.1rem;
  }

  .news-back-btn {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
  }

  .page-news .information-h {
    margin: 20px 0 100px 0;
  }
  .news-more-link{
    margin-top: 30px;
  }
}


/* ==============================
    スマホナビ（ハンバーガー）
============================== */
.header {
  position: relative;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  z-index: 999;
  position: fixed;
}

.header .logo-img {
  height: 42px;
}

.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.hamburger__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #222;
  left: 0;
  transition: 0.3s;
}

.hamburger__line--1 { top: 0; }
.hamburger__line--2 { top: 10px; }
.hamburger__line--3 { top: 20px; }

/* ✕ の状態 */
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 10px;
}
.nav-open .hamburger__line--2 {
  opacity: 0;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 10px;
}

/* ==============================
  全画面メニュー
============================== */
.global-nav {
  position: fixed;
  top: 0;
  right: -100%;         /* 初期は画面外 */
  width: 100%;
  height: 100vh;
  background: #fff;
  padding-top: 80px;
  text-align: center;
  transition: right 0.35s ease;
  z-index: 1000;
}

.nav-open .global-nav {
  right: 0;
}

.global-nav__list {
  padding: 0;
}

.global-nav__item {
  margin-bottom: 28px;
}

.global-nav__item a {
  font-size: 1.9rem;
  font-weight: 400;
  color: #222;
}

/* 電話番号 */
.global-nav p{
  color: #EE7800;
  font-weight: 500;
}

.global-nav .nav-tel {
  display: block;
  /* margin-top: 32px; */
  font-size: 3rem;
  font-weight: 500;
  color: #EE7800;
  line-height: 1.5;
}

.global-nav .nav-tel img {
  width: 25px;
  /* margin-right: 6px; */
  vertical-align: middle;
}

.dayservice{
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
  width: 90%;
  margin: 0 auto;
}

.nav-contact{
  margin: 20px 0;
}

/* 背景の黒 */
.black-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.nav-open .black-bg {
  opacity: 1;
  visibility: visible;
}

/* スマホではPCヘッダーを非表示 */
@media (max-width: 900px) {
  #header-g {
      display: none !important;
  }
}

/* まずはデフォルト（PC用）：PCでは #header-g を表示、.header は非表示 */
#header-g {
  display: block;
}

.header {
  display: none;
}

/* 1024px 以下（タブレット＋スマホ）はハンバーガーヘッダーに切り替え */
@media screen and (max-width: 1024px) {  
    body {
      font-size: 1.8rem;
      line-height: 1.8;
    }
  
  .tb{
    display: block;
  }

  /* .pc{
    display: none;
  } */

  .wrap {
    padding: 0;
}
  #header-g {
    display: none;
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
  }

  .mv .mv-t {
    top: 14%;
    left: 6%;
}

  .mv{
    margin-top: 0;
    background-size: contain;
    height: 630px;
  }

  .inner {
    width: 90%;
  }

  .information-h .inner {
    width: 90%;
    padding: 0;
}

  .guide-img img {
    width: 100%;
  }

  .guide-img {
    flex-direction: column;
  }

  .page-mv-inner{
    width: 90%;
  }

.footer-inner {
  max-width: 90%;
}

.footer-nav ul {
  gap: 15px;
}

.footer-nav ul {
  display: flex;          /* 横並びレイアウトに変更（既にflexなら上書きでもOK） */
  flex-wrap: wrap;        /* 幅を超えたら折り返す */
  justify-content: center;/* 中央寄せ */
  gap: 8px 16px;          /* 行間・横のすき間 */
  padding: 0 16px;
}

.footer-nav li {
  margin: 4px 0;
  font-size: 14px;        /* ちょっとだけ小さくして収まりを良くする */
  white-space: nowrap;    /* メニュー名の途中で改行されないようにする */
}
}

/* タブレット以上（768px〜）：横並びを強制上書き */
@media screen and (min-width: 768px) {
  h2, h3, .sec-heading, .access-title, .news-mv-title {
    font-size: 3rem;
  }

  .guide-img {
    flex-direction: row !important;
    margin-top: 40px;
  }

  .guide-img img {
    width: 50% !important;
    max-width: none !important;
  }



}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* タブレットだけに適用したいCSS */
  .mv h2 {
    font-size: 3rem;
  }

  .mv{
    top: 60px;
  }

  .guide-img {
    margin-top: 30px;
}

  .menu-mv, .stretch-mv, .access-mv{
    margin-top: 0;
    top: 60px;
  }
  
  .feature-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;      /* 円の大きさ */
    height: 32px;     /* 幅と高さを同じにする */
    padding: 0;       /* 余計な余白をリセット */
    line-height: 1;   /* 行間リセット */
    border-radius: 50%;      /* 正円 */
    background-color: #f28c2a;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
    flex-shrink: 0;   /* 狭い幅でもつぶれないように */
  }
  
  .feature-head {
    gap: 3px;
  }
  
  .feature-title{
    line-height: 1.5;
  }
  
  .about{
    margin-top: 0;
    top: 60px;
  }
  
  #clinic {
    margin-top: 120px;
  }
  
  .morinoclub-left {
    flex: auto;
  }
  
  .new-stretch-box {
    width: 90%;
  }
  
  .menu-insurance-body, .menu-accident-body{
    padding: 30px 30px 50px;
  }
  
  .menu-insurance-card-text,.menu-accident-item-title {
    font-size: 2rem;
  }
  
  .news-mv {
    padding-top: 120px;
  }
}


/* ==============================
   共通：スマホ用（〜768px）
================================ */
@media (max-width: 768px) {

  /* ベース */
  html {
    font-size: 56.25%; 
  }

  body {
    font-size: 1.9rem;
    line-height: 1.8;
  }

  .wrap {
    padding: 0 10px;
  }

  .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .pc {
    display: none;
  }

  .sp{
    display: block;
  }

  h2, h3 {
    font-size: 2.4rem;
  }

  .mv{
    margin-top: 70px;
  }

  /* ========= ヘッダー切り替え ========= */

  #header-g {
    display: none;         /* PCヘッダー非表示 */
  }

  .header {
    height: 60px;
    border-bottom: 1px solid #eee;
    z-index: 500;
    display: flex;          /* 元が display: none になってるので上書き */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;           /* 実際の高さに合わせて */
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 9999;
    background-color: #fff;
  }

  .header .logo-img {
    height: 45px;
    width: auto;
  }

    /* ヘッダー高さぶん、下に余白を足すのは .wrap に */
    .wrap {
      padding-top: 60px;      /* ↑で指定した .header の高さと合わせる */
    }

  /* ハンバーガーの位置微調整 */
  .hamburger {
    width: 44px;
    height: 44px;
    right: 0;
    top: 8px;
  }

  .hamburger__line {
    left: 5px;
    width: 32px;
  }

  .hamburger__label {
    font-size: 1.2rem;
  }

  /* ========= メインビジュアル ========= */

  .mv,
  .about,
  .menu-mv,
  .stretch-mv,
  .access-mv {
    margin-top: 0;    /* SPヘッダー分だけ下げる */
    height: 70vh;        /* 画面の7割くらいに調整 */
    background-position: center center;
  }

  .mv .mv-t {
    top: 7%;
    left: 6%;
    right: 6%;
  }

  .mv h2 {
    font-size: 2.4rem;
  }

  /* スマホ用メインビュー画像（〜768px） */

  .mv {
    background-image: url("img/mv_sp.webp");
    background-position: center;
    background-size: cover;
  }

  /* 診察時間 */
  .clinic-time-box {
    width: 100%;
    display: flex;
    justify-content: center;
    right: 0;
    bottom: -150px;
  }

  .clinic-time-img {
    width: 90%;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  /* お知らせ */
  .information-h {
    margin: 240px 0 40px 0;
  }

  .information-h h3 {
    margin-bottom: 20px;
}

  .information-h dl {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }

  .information-h dt,
  .information-h dd {
    margin: 0;
    padding: 0;
  }

  .information-h dd{
    width: 100%;
  }

  /* 日付（dt） */
  .information-h dt a {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
  }

  /* タイトル（dd） */
  .information-h dd a {
    /* font-size: 17px; */
    line-height: 1.6;
    color: #000;
    display: block;
    text-decoration: none;
  }

  .information-h dt, .information-h dd{
    border: none;
  }



  /* 診察の案内 */
  .guide-img{
    display: block;
    margin-top: 30px;
  }

  .guide-sec {
    margin-top: 80px;
    padding: 60px 0 40px;
    line-height: 2;
  }

  .guide-img img{
    margin-bottom: 20px;
  }
  .sec-title {
    margin-bottom: 0;
  }

  /* ========= 主な症状（カード類） ========= */

  .conditions-sec {
    padding: 70px 0;
}
  .symptom-list {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .symptom-item {
    max-width: 100%;
  }

  .features-rows {
    margin-top: 20px;
  }

  .feature-head {
    margin-top: 20px;
}

  .symptom-thumb {
    margin-bottom: 10px;
  }

  /* ========= 当院の特徴 ========= */

  .features-sec {
    padding: 60px 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .feature-photo-wrap {
    max-width: 100%;
    margin: 0 auto;
  }

  .feature-title {
    font-size: 2rem;
    line-height: 1.5;
  }

  .feature-num {
    width: 32px;          /* 丸の大きさ（調整OK） */
    height: 32px;
    background: #EE7800;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;       /* 横幅を伸ばされたり潰されたりしない */
  }

  .feature-head{
    margin-bottom: 15px;
  }
  
  
/* ====== スマホ用 施術内容（Services） ====== */

  .services-sec {
    padding: 56px 0;
  }

  .services-table-wrap {
    margin-top: 24px;
  }

  /* テーブルをカード風に */
  .services-table {
    border: none;
  }

  .services-table thead {
    display: none;          /* 見出し行は隠す */
  }

  .services-table,
  .services-table tbody,
  .services-table tr,
  .services-table th,
  .services-table td {
    display: block;
    width: 100%;
  }

  /* 1件ごとのカード */
  .services-table tr {
    padding: 16px 0 20px;
    border-bottom: 1px solid #ddd;
  }

  /* 区分（タイトル部分） */
  .services-table th[scope="row"] {
    background: none;
    padding: 0 0 8px;
    font-size: 2rem;
    color: #EE7800;
    font-weight: 500;
  }

  /* 中身のテキスト */
  .services-table td {
    padding: 0 0 6px;
    border: none;
    line-height: 1.8;
  }

  /* ラベルを前につける */
  .services-table td:nth-of-type(1)::before {
    content: "対象となる症状：";
    font-weight: 500;
  }

  .services-table td:nth-of-type(2)::before {
    content: "窓口負担：";
    font-weight: 500;
  }

  /* ラベルと本文の間に少しスペース */
  .services-table td::before {
    margin-right: 4px;
  }

  .services-table tbody th, .services-table tbody td {
    border-top: none;
    border-right: none;
    padding: 0;
  }

  .services-table tbody th[scope="row"] {
    background-color: #fff;
  }

  /* 問い合わせ */
  .tel-cta-text {
    margin-bottom: 20px;
  }
  

  /* ========= パーソナルストレッチ各種 ========= */

  .stretch-main-sec,
  .stretch-detail-sec,
  .stretch-effect-sec {
    padding: 40px 0 60px;
  }

  .stretch-main-img {
    margin-bottom: 10px;
  }

  .stretch-photo-grid {
    flex-direction: column;
    gap: 0;
  }

  .stretch-detail-box,
  .stretch-detail-box.reverse {
    flex-direction: column;
    padding: 30px 20px 35px;
  }

  .stretch-effect-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stretch-diff-box,
  .new-stretch-box {
    max-width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
  }

  .new-stretch-box{
    width: 90%;
  }

  .stretch-diff-list {
    width: 100%;
    max-width: none;
  }

  .new-stretch-box p, .new-stretch-box p span {
    font-size: 2rem;
  }

  .stretch-detail-box {
    gap: 20px;
    border-radius: 0;
  }

  .stretch-diff-heading::after {
    width: 40px;
    bottom: -10px;
}


  /* ========= TEL CTA ========= */

  .tel-cta-sec {
    padding: 40px 0 60px;
    margin-bottom: 80px;
  }

  .tel-cta-btn {
    width: 100%;
    max-width: 360px;
    font-size: 2.4rem;
    padding: 5px;
  }

  /* ========= フッター ========= */

  .footer-access {
    padding-top: 60px;
  }

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

  .footer-logo {
    width: 210px;
    margin-bottom: 5px;
  }

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

  .footer-nav ul {
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 18px;
    border-radius: 24px;
    padding: 14px 18px;
  }

  .footer-nav a {
    font-size: 1.6rem;
  }

  .footer-nav ul {
    background: none;
  }

  .copyright {
    font-size: 1.2rem;
    padding: 14px 0 24px;
  }

  /* ページトップボタン少し大きめ */
  #page-top {
    right: 14px;
    bottom: 24px;
    width: 46px;
    height: 46px;
  }

  .footer-inner {
    width: 90%;
}

/* about */
.about {
  background-image: url("img/about_mv_sp.webp");
  background-position: center;
  background-size: cover;
  height: 18vh!important;
}
#clinic {
  margin-top: 40px;
}
.clinic-info-table,
.clinic-info-table tbody,
.clinic-info-table tr,
.clinic-info-table th,
.clinic-info-table td {
  display: block;
  width: 100%;
}

.clinic-info-table tr {
  padding: 20px 0;
  border-bottom: 1px solid #C4C4C4;
}

.clinic-info-table th {
  margin-bottom: 4px;
  font-weight: 600;
}

.clinic-info-table td {
  line-height: 1.8;
}

.clinic-info-table tr:last-child {
  border-bottom: 1px solid #C4C4C4;
}

/* 診察時間の画像もスマホで収まるように */
.clinic-hours img {
  width: 100%;
  height: auto;
}

.clinic-info-table th,.clinic-info-table td {
  border: none;
  padding: 0;
}

.clinic-info-table tr:last-child th, .clinic-info-table tr:last-child td {
  border-bottom: 0;
}

.clinic-category{
  font-size: 1.7rem;
  padding-bottom: 10px;
}

.clinic-tour-img {
  margin-bottom: 20px;
}

.clinic-info-table {
  margin-top: 20px;
}

  /* ========= 院長紹介・院内紹介 ========= */

  .clinic-info-sec {
    padding: 70px 0 40px;
  }

  /* .clinic-info-table th,
  .clinic-info-table td {
    padding: 10px 12px;
  } */

  .clinic-tour-sec,
  .director-sec {
    padding: 50px 0;
  }

  .director-flex {
    flex-direction: column;
    gap: 24px;
  }

  .director-photo img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .director-profile {
    margin-top: 70px;
  }

.director-flex {
  margin-top: 30px;
}

.director-title {
  font-size: 2rem;
}

.director-profile-title {
  position: relative;
  padding-bottom: 12px; /* 下の余白（好みで調整） */
  display: inline-block; /* 幅を文字に合わせたいとき */
}

.director-profile-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;       /* 線の長さ */
  height: 3px;       /* 線の太さ */
  background-color: #EE7800; /* オレンジ色 */
  border-radius: 2px;
}

.profile-table,
.profile-table tbody,
.profile-table tr,
.profile-table th,
.profile-table td {
  display: block;
  width: 100%;
}

.profile-table tr {
  padding: 16px 0;
  border-bottom: 1px solid #C4C4C4;
}

.profile-table th {
  margin-bottom: 4px;
}

.profile-table td {
  line-height: 1.8;
}

.profile-table tr:last-child {
  border-bottom: 1px solid #C4C4C4;
}

.profile-table th, .profile-table td {
  border-bottom: none;
}
.profile-table th, .profile-table td {
  padding: 0;
}

.profile-table th{
  font-weight: 600;
}

  /* ========= 杜のクラブボックス ========= */

  .morinoclub-sec {
    padding: 60px 0;
  }

  .morinoclub-box {
    flex-direction: column;
    padding: 60px 20px;
    gap: 24px;
    border-radius: 0;
  }

  .morinoclub-link-wrap {
    text-align: left;
  }

  .morinoclub-link{
    font-size: 1.7rem;
  }

/* menuページ */
.menu-mv {
  background-image: url("img/menu_mv_sp.webp");
  background-position: center;
  background-size: cover;
  height: 18vh!important;
}

.menu-treatment-sec {
  padding: 40px 0 90px;
}

.menu-treatment-heading{
  font-size: 2.4rem;
}

.menu-insurance-title, .menu-accident-title, .menu-stretch-title{
  font-size: 2rem;
}

.menu-insurance-lead {
  text-align: -webkit-auto;
  margin-bottom: 50px;
}

.menu-accident-lead{
  margin-bottom: 20px;
}

.menu-insurance-card{
  margin-top: 10px;
}

.menu-insurance-card-text {
  font-size: 2rem;
}

.menu-accident-grid {
  display: block;
}

.menu-accident-item {
  padding: 20px 17px 25px;
  margin-bottom: 20px;
  text-align: left;
}

.menu-accident-icon {
  margin-bottom: 5px;
}

.menu-accident-item-title {
  font-size: 2rem;
}

.menu-accident-box, .menu-stretch-box {
  margin-top: 50px;
}

.menu-accident-lead {
  text-align: left;
}

.menu-stretch-btn {
  padding: 10px 80px;
}

.menu-stretch-list {
  margin-bottom: 20px;
}

.menu-stretch-btn-wrap {
  margin-bottom: 30px;
}

.tel-cta-sec {
  padding: 0px 0 60px;
}

/* Personal Stretchページ */
.stretch-mv {
  background-image: url("img/stretch_mv_sp.webp");
  background-position: center;
  background-size: cover;
  height: 18vh!important;
}

.stretch-title{
  font-size: 2.4rem;
}
.stretch-title span{
  font-size: 1.8rem;
}

.stretch-main-sec {
  padding: 40px 0 0px;
}

.stretch-detail-box{
  padding: 30px 20px;
}

.stretch-effect-heading:after {
  width: 40px;
}

.stretch-effect-card {
  margin-bottom: 20px;
}

.stretch-effect-heading {
  font-size: 2.4rem;
}

.stretch-effect-heading{
  margin-bottom: 40px;
}

.stretch-diff-sec {
  padding: 0;
}

  /* ========= アクセスページ ========= */

  .access-main-sec {
    padding: 40px 0 70px;
  }

  .access-info {
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px;
  }

  .access-info-right iframe {
    height: 260px;
  }

  .access-detail-sec {
    padding: 30px 0 50px;
  }

  .access-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .access-detail-item {
    padding: 16px 14px;
  }

  .access-photo {
    margin: 24px auto 0;
  }

.access-mv {
  background-image: url("img/access_mv_sp.webp");
  background-position: center;
  background-size: cover;
  height: 18vh!important;
}

.access-title{
  font-size: 2.4rem;
}

/* お知らせページ */
.news-mv-title{
  font-size: 2.4rem;
}
.news-sec {
  padding: 60px 0 100px;
}

.news-back-btn{
  font-size: 1.7rem;
  /* border:none; */
  /* border-bottom: 1px solid #222; */
  width: auto;
  padding: 10px;
}

.news-back-wrap {
  margin-top: 70px;
}

.news-mv{
  padding: 40px 0;
}

.page-mv{
  height: 120px;
}

.page-mv-title{
  font-size: 2.4rem;
}

.page-mv-en{
  margin-bottom: 0;
}

/* ▼ 共通：下部ナビ全体 */
.news-nav-area {
  margin: 80px 0 60px;
}

.news-nav-line {
  border-top: 1px solid #e0e0e0;
  margin-bottom: 32px;
}

.news-nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* 前／次ボタンのベース */
.news-nav-prev,
.news-nav-next {
  flex: 1;
}

.news-nav-prev a,
.news-nav-next a,
.news-nav-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cccccc;
  border-radius: 9999px;   /* まるっこいボタン */
  font-size: 14px;
  text-decoration: none;
  color: #333333;
  column-gap: 8px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.news-nav-prev a:hover,
.news-nav-next a:hover {
  background-color: #f8f8f8;
}

/* 矢印アイコン */
.news-nav-arrow {
  width: 6px;
  height: auto;
}

/* 前後の記事がないときのグレー表示 */
.news-nav-disabled {
  color: #bbbbbb;
  border-color: #dddddd;
  background-color: #f8f8f8;
}

.news-nav-arrow.disabled {
  opacity: 0.4;
}

/* 一覧へ戻るリンク */
.news-nav-archive {
  text-align: center;
}


  .news-nav-area {
    margin: 48px 0 40px;
  }

  .news-nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* 前／次を横並び 2 カラムに */
  .news-nav-prev,
  .news-nav-next {
    flex-basis: calc(50% - 8px); /* 2つで100%になるよう調整 */
  }

  .news-nav-prev a,
  .news-nav-next a,
  .news-nav-disabled {
    font-size: 1.5rem;
    padding: 8px;
  }

  /* 一覧へ戻るはその下にセンターで */
  .news-nav-archive {
    width: 100%;
    order: 3;
    margin-top: 8px;
  }
}


/* ==============================
   さらに小さい端末（〜480px）
================================ */
@media (max-width: 480px) {

  .mv,
  .about,
  .menu-mv,
  .stretch-mv,
  .access-mv {
    height: 60vh;
  }

  .menu-insurance-body,
  .menu-accident-body,
  .menu-stretch-body {
    padding: 24px 16px 32px;
  }

  .menu-insurance-card-row {
    flex-direction: column;
  }

  .stretch-main-copy {
    right: 14px;
    top: 14px;
    font-size: 1.6rem;
  }
}

/* 回数券についての当院の考え方  */
.menu-coupon-box {
  padding: 50px 60px;
  border: 7px solid rgba(238, 120, 0, 0.2);
  box-sizing: border-box;
  margin-bottom: 50px;
}

.menu-coupon-policy {
  margin-top: 48px;
}

.menu-coupon-policy-title {
  text-align: center;
  margin: 0 0 30px;
  font-weight: 500;
}

.menu-coupon-policy-body strong {
  font-weight: 500;
}

.menu-coupon-policy p{
  margin: 20px 0;
  font-size: 1.75rem;
}

/* スマホ */
@media (max-width: 768px) {
  .menu-coupon-policy-title {
    font-size: 2rem;
  }

  .menu-coupon-box{
    margin: 0 auto;
    padding: 30px 20px 15px;
  }

  .menu-coupon-policy-body p {
    margin-bottom: 16px;
  }
  .menu-coupon-policy{
    margin: 0 0 50px;
  }
}
