/* ============================================
   リセット・ベーススタイル
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth; /* スムーズスクロール */
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #4a4a4a;
  background-color: #F3F0E8;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   共通コンポーネント
============================================ */

/* セクション共通の余白 */
.section-inner {
  padding: 60px 20px;
}
/*セクション共通のあしらい*/
.section-title::after{
    content: "";
    display:inline-block;
    width:20px;
    height:20px;
    background-image: url("../images/icon/leaf.svg");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(15deg);
    filter: invert(55%) sepia(20%) saturate(400%) hue-rotate(130deg);
}

/* セクションタイトル（日本語） */
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 500;
  color: #5c6e3f;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

/* セクションタイトル（英語サブ） */
.section-title-en {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #a0a0a0;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
}

/* 見出しとサブタイトルのラッパー */
.section-header {
  margin-bottom: 30px;
}

/* ボタン共通スタイル */
.btn {
  display: inline-block;
  padding: 10px 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* アウトラインボタン（緑） */
.btn-outline-green {
  border: 1px solid #7a9c5a;
  color: #7a9c5a;
  background: transparent;
}
.btn-outline-green:hover {
  background: #7a9c5a;
  color: #fff;
}

/* 塗りつぶしボタン（緑） */
.btn-green {
  background: #7a9c5a;
  color: #fff;
  border: 1px solid #7a9c5a;
}
.btn-green:hover {
  background: #5c7e3f;
  border-color: #5c7e3f;
}

/* ============================================
   ヘッダー（スマホ：ハンバーガーメニュー）
============================================ */
.header {
  position: fixed;       /* 固定ヘッダー */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ロゴ */
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  width: 45px;
  height: auto;
}

.header-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 500;
  color: #5c6e3f;
  line-height: 1.4;
}

/* ============================================
   ハンバーガーメニューボタン（スマホのみ表示）
============================================ */
.hamburger {
  display: flex;          /* スマホはデフォルト表示 */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px;
  z-index: 1100;
}

/* ハンバーガーの3本線 */
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #5c6e3f;
  border-radius: 2px;
  transition: all 0.3s ease; /* アニメーションのトランジション */
}

/* ハンバーガーがオープン時にバツ印へ変化 */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;              /* 中央の線を非表示 */
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   スマホ用ナビメニュー（初期は非表示）
============================================ */
.nav-sp {
  display: none;           /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* jQueryでis-openクラスを付与したときに表示 */
.nav-sp.is-open {
  display: flex;
}

.nav-sp a {
  display: block;
  padding: 18px 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #5c6e3f;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #e8ede0;
  width: 240px;
  text-align: center;
}

.nav-sp a:last-child {
  border-bottom: none;
}

/* PC用ナビ（スマホは非表示） */
.nav-pc {
  display: none;
}

/* ============================================
   ファーストビュー スライダー
============================================ */
.hero {
  margin-top: 69px; /* ヘッダーの高さ分だけ下げる */
  position: relative;
}

/* スライダー本体 */
.hero-slider {
  width: 100%;
}

/* 各スライドの画像 */
.hero-slider .slide img {
  width: 100%;
  height: 100vh;             /* スマホ時の高さ */
  object-fit: cover;         /* 画像をトリミングしてフィット */
  object-position: center;
}

/* スライダーのドット（slick.jsのカスタマイズ） */
.hero-slider .slick-dots {
  bottom: 12px;
}

.hero-slider .slick-dots li button:before {
  color: #fff;
  opacity: 0.7;
  font-size: 8px;
}

.hero-slider .slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

/* スライダー上のキャッチコピー */
.hero-catch {
  position: absolute;
  bottom: 40px;
  left: 20px;
  color: #fff;
  z-index: 10;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-catch h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
/* ============================================
   診療時間（schedule）セクション
============================================ */
.schedule{
    background-color: #F3F0E8;
}

.schedule-table caption{
    border-bottom:1px solid #A8C5AD;
}

.schedule-table thead {
    border-bottom:1px dotted #A8C5AD;
}

.schedule-table tbody {
    border-bottom:1px solid #A8C5AD;
}

.schedule-table th{
  font-size: 16px;
  font-weight: 200;
  line-height: 175%;
  color: #5a5a5a;
}

.schedule-table{
width:100%;
}

.schedule-table th,td{
padding:10px;
text-align: center;
}

.schedule-table tr th:first-child{
    font-weight: 400;
}

/* ============================================
   お知らせ（NEWS）セクション
============================================ */
.news {
  background: #F3F0E8;
      ;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* お知らせの1件 */
.news-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid #e0dbd0;
}

.news-item:first-child {
  border-top: 1px solid #e0dbd0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 日付 */
.news-date {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}

/* カテゴリバッジ */
.news-cat {
  font-size: 11px;
  padding: 2px 10px;
  border: 1px solid #7a9c5a;
  color: #7a9c5a;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.news-title {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.6;
}

/* もっと見るボタン */
.news-more {
  text-align: center;
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
    .section-collect{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin:0 10.4%;
    } 
    #taime-table{
        width:40%;
    }    
    
   .schedule-table th{
      font-size: 18px;
      font-weight: 200;
      line-height: 175%;
      color: #5a5a5a;
    }
    
}

/* ============================================
   当院の特徴（clinic）
============================================ */
.clinic {
  background: #F3F0E8;
}

.clinic-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.clinic-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}


.clinic-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top; /* 顔が上に来るように */
}

.clinic-card-body {
  padding: 20px;
}

.clinic-features {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: #6B8F71;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  border-bottom:1px solid #A8C5AD;
}

.clinic-profile {
  font-size: 12px;
  line-height: 1.9;
  color: #666;
}

@media screen and (min-width: 768px) {
.clinic-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.clinic-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width:30.6%;
}


.clinic-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top; /* 顔が上に来るように */
}

.clinic-card-body {
  padding: 20px;
}

.clinic-features {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: #6B8F71;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  border-bottom:1px solid #A8C5AD;
}

.clinic-profile {
  font-size: 12px;
  line-height: 1.9;
  color: #666;
}
    
}
/* ============================================
   スタッフ紹介セクション
============================================ */
.staff {
  background: #F3F0E8;
}

.staff-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* スタッフカード1件 */
.staff-card {
  display: flex;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin:0 20px;
  justify-content: space-between;
}

.staff-card-img img {
  width: 218px;
  height: 305px;
  border-radius: 50px;
  overflow: hidden;
  object-fit: cover;
  object-position: center top; /* 顔が上に来るように */
}

.staff-card-body {
  padding:0 20px;
}

/* 役職ラベル */
.staff-role {
  font-size: 1rem;
  color: #7a9c5a;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.staff-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: #3d3d3d;
  letter-spacing: 0.08em;
}

.staff-profile {
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

.satou_img{
    order: 2;
}

@media screen and (min-width: 768px) {
    
  .staff-list{
        width:64%;
        margin:0 auto;
    }
    .staff-section{
        margin:75px 0;
    }
    
   .staff-card {
   display: flex;
   box-shadow:none;
   margin:0 20px;
   justify-content: flex-start;
  }
   
   .satou{
        justify-content: flex-end;
    }
    
    .staff-others{
        margin:0 auto;
    }
}
/* ============================================
   症状例メニューセクション
============================================ */
.symptoms {
  background: #F3F0E8;
}

.symptoms-grid {
  display: flex;
  flex-direction: column;
  gap:10px;
    
}

/* メニューカード */


.symptoms-img {
   border-radius: 30px;
  overflow: hidden; 
}

.symptoms-img img {
  width: 100%;
  height: auto;
  object-fit: cover; 
}
/* メニューアイコン（しずく・月・カップ） */

.symptoms-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: #C4956A;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-align: center
}


.symptoms-card{
    display: flex;
    gap:20px;
}

.symptoms-card2{
    align-self: center;
    
}

@media screen and (min-width: 768px) {
    .symptoms-grid {
  display: flex;
  flex-direction: row;
  gap:3%;
    
}
}
/* ============================================
   診療メニューセクション
============================================ */
.menu {
  background: #F3F0E8;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* メニューカード */
.menu-card {
  border: 1px solid #e8ede0;
  border-radius: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  background-color:#A8C5AD;
}

.menu-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.menu-card-body {
  padding: 0 15px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

/* メニューアイコン（やじるし） */
.menu-icon {
  width: 15px;
  height: auto;
  flex-shrink: 0;
}

.menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.95);
}

.menu-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #F3F0E8;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.menu-info p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}
/* ============================================
   Q&Aセクション
============================================ */
#Q_A {
  background: #F3F0E8;
}

.Q_A-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* メニューカード */
.Q_A-card {
  border: 1px solid #e8ede0;
  border-radius: 30px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.Q_A-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.Q_A-card-body {
  padding: 0 15px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

/* メニューアイコン（やじるし） */
.Q_A-icon {
  width: 15px;
  height: auto;
  flex-shrink: 0;
}

.Q_A-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.8)
        sepia(20%) saturate(250%)
        hue-rotate(90deg);
}

.Q_A-info {
    display: flex;
    gap:20px;
    
}

.Q_A-info img{
    height:20px;
    width:20px;
    object-fit: cover;
    align-self: center;
    filter:brightness(0) invert(0.7)
        sepia(40%) saturate(300%)
        hue-rotate(10deg);
}

.Q_A-info h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 175%;
  letter-spacing: 0.05em;
}

.Q_A-info p {
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}
/* ============================================
   お問い合わせセクション
============================================ */
 #lower p,label,button{
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #2C3E50;
  line-height: 175%;
  letter-spacing: 0.05em;
}

#lower .sample-text{
  font-family: 'Noto Serif JP', serif;
  font-size: 12px;
  font-weight: 400;
  color: #2C3E50;
  line-height: 180%;
  letter-spacing: 0.05em;
}

.inquiry-top{
    position:relative;
}

.inquiry-top img{
}

#lower .inquiry-top p{
    color:#fff;
    position:absolute;
    top:60%;
    left:50%;
    transform: translate(-50%, -50%);
}

.pankz{
    display: flex;
    margin:0 20px;
    align-items: center;
    gap:10px;
}

.pankz a:hover{
    color:#C4956A;
    transition: 0.5s;
}

.inquiry-step{
    display: flex;
    justify-content: center;
    gap:10px;
}

.inquiry-step img:nth-child(even){
    width:20px;
    filter: brightness(0) invert(0.7)
          sepia(45%) saturate(300%)
          hue-rotate(10deg);
}

.form-parts{
    margin:15px 0;
}

.form-parts span {
    color:#C4956A;
}

.inquiry-form-text{
    margin:25px 0;
}

.inquiry-form-text span{
    font-weight: 400;
}

.inquiry-form div input,textarea{
    border:2px solid #A8C5AD;
    border-radius: 10px;
}

.inquiry-form div textarea{
    width:100%;
    height:130px;
}

.inquiry-form h3{
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #6B8F71;
  line-height: 175%;
  letter-spacing: 0.05em;
  margin-bottom:10px;
}

.inquiry-form h3+p a{
    color: #C4956A;
}

.inquiry-form label{
    background-color: #A8C5AD;
    padding:10px;
    border-radius: 30px;
    width:310px;
    margin:15px auto;
    display: block;
    color:#F3F0E8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inquiry-form label:hover{
    box-shadow:none;
    opacity:0.7;
    transition: 0.5s;
}

.inquiry-form input[type="checkbox"]{
  appearance: auto;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.inquiry-form button{
    background-color: #A8C5AD;
    padding:10px;
    color:#F3F0E8;
    border-radius: 30px;
    display:block;
    margin:0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inquiry-form button:hover{
    box-shadow:none;
    opacity:0.7;
    transition: 0.5s;
}

@media screen and (min-width: 768px) {

.inquiry-top{
    position:relative;
    margin:0 10.4%;
    
}

.inquiry-top img{
    margin:0 auto;
    border-radius: 50px;
    overflow: hidden;
    width:1140px;
    height:359px;
    object-fit: cover;
    
}

#lower .inquiry-top p{
    color:#fff;
    position:absolute;
    top:60%;
    left:50%;
    transform: translate(-50%, -50%);
}

.pankz{
    display: flex;
    margin:0 10.4%;
    align-items: center;
    gap:10px;
}

.pankz a:hover{
    color:#C4956A;
    transition: 0.5s;
}

.inquiry-step{
    display: flex;
    justify-content: center;
    gap:10px;
}

.inquiry-step img:nth-child(even){
    width:20px;
    filter: brightness(0) invert(0.7)
          sepia(45%) saturate(300%)
          hue-rotate(10deg);
}

.form-parts{
    margin:15px 0;
    display: flex;
    justify-content: space-between;
}

.form-parts span {
    color:#C4956A;
}

    #lower .form-parts textarea{
        width:400px;
    }
    
    .form-parts-box{
        display: flex;
        width:400px;
        justify-content: space-between;
    }    
    
.inquiry-form-text{
    margin:25px 0;
    text-align: center;
}

.inquiry-form-text span{
    font-weight: 400;
}

.inquiry-form div input,textarea{
    border:2px solid #A8C5AD;
    border-radius: 10px;
}

.inquiry-form div textarea{
    width:100%;
    height:130px;
}

.inquiry-form h3{
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: #6B8F71;
  line-height: 175%;
  letter-spacing: 0.05em;
  margin-bottom:10px;
  margin-top:25px;
  text-align: center;
}

.inquiry-form label{
    background-color: #A8C5AD;
    padding:10px;
    border-radius: 30px;
    width:310px;
    margin:15px auto;
    display: block;
    color:#F3F0E8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inquiry-form label:hover{
    box-shadow:none;
    opacity:0.7;
    transition: 0.5s;
}

.inquiry-form input[type="checkbox"]{
  appearance: auto;
  display: inline-block;
  width: 16px;
  height: 16px;
}

.inquiry-form button{
    background-color: #A8C5AD;
    padding:10px;
    color:#F3F0E8;
    border-radius: 30px;
    display:block;
    margin:0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.inquiry-form button:hover{
    box-shadow:none;
    opacity:0.7;
    transition: 0.5s;
}


}

/* ============================================
   アクセスセクション
============================================ */
.access {
  background: #f9f7f3;
}

.access-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Googleマップ埋め込み */
.access-map {
  width: 100%;
  height: 240px;
  background: #e0dbd0; /* マップが読み込まれるまでのプレースホルダー */
  border-radius: 4px;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access-info dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.access-info-row {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #e0dbd0;
  padding-bottom: 12px;
}

.access-info-row:last-child {
  border-bottom: none;
}

.access-info dt {
  font-size: 12px;
  color: #7a9c5a;
  font-weight: 500;
  letter-spacing: 0.05em;
  min-width: 60px;
  flex-shrink: 0;
}

.access-info dd {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
}
/* ============================================
   フッター
============================================ */
.footer {
  background: #4a5c35;
  color: #e8ede0;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  filter: brightness(10);  /* ロゴを白く表示 */
  opacity: 0.85;
}

.footer-logo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: #e8ede0;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 12px;
  color: #c0cdb0;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 11px;
  color: #8a9c78;
  letter-spacing: 0.05em;
}

/* ============================================
   ページトップに戻るボタン
============================================ */
.page-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #7a9c5a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;              /* 初期は非表示 */
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-top:hover {
  background: #5c7e3f;
}

/* ============================================
   PC用スタイル（768px以上）
   モバイルファーストのためここで上書き
============================================ */
@media screen and (min-width: 768px) {

  /* ヘッダー：高さを増やす */
  .header-inner {
    padding: 16px 40px;
  }

  .header-logo img {
    width: 55px;
  }

  .header-logo-text {
    font-size: 16px;
  }

  /* PCではハンバーガーを非表示 */
  .hamburger {
    display: none;
  }

  /* PC用ナビを表示 */
  .nav-pc {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .nav-pc a {
    font-size: 13px;
    color: #5c6e3f;
    letter-spacing: 0.08em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .nav-pc a:hover {
    border-bottom-color: #7a9c5a;
  }

  /* PC用予約ボタン */
  .nav-pc .nav-btn {
    padding: 8px 22px;
    background: #7a9c5a;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-bottom: none;
    transition: background 0.3s;
  }

  .nav-pc .nav-btn:hover {
    background: #5c7e3f;
    border-bottom: none;
  }

  /* スマホ用ナビは常に非表示 */
  .nav-sp {
    display: none !important;
  }

  /* ヒーローの高さ調整 */
  .hero {
    margin-top: 81px;
  }

  .hero-slider .slide img {
    height: 520px; /* PC時の高さ */
  }

  .hero-catch {
    left: 60px;
    bottom: 80px;
  }

  .hero-catch h1 {
    font-size: 30px;
    line-height: 2;
  }

  /* セクション余白を増やす */
  .section-inner {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  /* コンテンツの最大幅制限 */
  .section-inner {
    max-width: 1440px;
    margin: 0 10.4%;
  }

    
  /* NEWS：横並びレイアウト */
  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
  }

  .news-meta {
    flex-shrink: 0;
  }


  /* スタッフ：横並びグリッド */
  .staff-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }

  .staff-card {
    flex: 1 1 calc(33.333% - 20px); /* 3カラム */
    min-width: 240px;
  }

  .staff-card-img img {
    height: 280px;
  }

  /* メニュー：3カラムグリッド */
  .menu-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }

  .menu-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 240px;
  }

  .menu-card-img img {
    height: 200px;
  }

  /* アクセス：横並び */
  .access-content {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }

  .access-map {
    flex: 1;
    height: 320px;
  }

  .access-info {
    flex: 1;
  }

  /* フッターレイアウト */
  .footer {
    padding: 50px 60px;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-nav {
    margin-bottom: 0;
  }

} /* ここまで @media screen and (min-width: 768px) */
