@charset "utf-8";
html {
  font-size: 100%;
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: hsl(51, 100%, 99%);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* ヘッダー */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 2px solid #e0e0c0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  box-sizing: border-box;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none;}
.logo__img { height: 60px; }
.logo__title { height: 40px; }
.logo:hover {opacity: 0.8;}


/* ナビ */
.site-nav .main-nav {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav .main-nav a {
  text-decoration: none;
  background: #f3f0c0;
  color: #333;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
}
.site-nav .main-nav a:hover {
  background: linear-gradient(90deg, #f6e58d, #ffbe76);
  color: #444;
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* 各ボタン */
.main-nav a {
  text-decoration: none;
  background: #f3f0c0;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap; /* ← ボタン内改行を禁止（崩れ防止） */
}


/* メインビジュアル */
.main {/*親div*/
  position: relative;
  margin-top: 84px; /* ヘッダーの高さ分調整 */
  }

.main-text {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-weight: bold; color: #fff; font-size: 32px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
  padding: 18px 26px; border-radius: 10px; text-align: center;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.main-img {
  width: 100%;
  object-fit: cover;
  height: 20rem;
  }

/* イントロテキスト */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    font-size: 1.1em;
    line-height: 1.6;
}




/* セクションタイトル */
.section__title {
  font-size: 22px;
  display: inline-block;
  padding: 10px 20px;
  border-top: 2px dashed #16a085;
  border-bottom: 2px dashed #16a085;
  margin-bottom: 20px;
  background: rgba(22,160,133,0.05);
  border-radius: 1px;
}

.section.latest{
  text-align: center;
}

.course-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ルート */
/* カード全体 */
.spot-card {
  position: relative;                /* 時間を左上に置く */
   background: #ffffff;
  border: 1px solid #e5dfd4; /* ← くすみベージュの枠線 */
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  width: 85%;
  max-width: 500px;
  padding: 14px 20px;                /* ← 余白を小さくしてスッキリ */
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 時間（左上・少し大きく） */
.time {
  position: absolute;
  top: 8px;
  left: 14px;
  background: rgba(240, 240, 240, 0.9);
  border-radius: 16px;
  padding: 3px 10px;
  font-size: 16px;               
  font-weight: 600;
  color: #444;
}

/* お店名（中央） */
.name {
  font-weight: bold;
  font-size: 1.8em;
  color: #333;
  text-align: center;
  margin: 20px 0 6px;              
}
/* 点線＋徒歩情報 */
.connector {
  display: flex;
  flex-direction: row;       /* ← 横並びにする！ */
  align-items: center;       /* ← 縦位置をそろえる */
  justify-content: center;   /* ← 中央揃え */
  gap: 12px;                 /* ← 点線とアイコンの間 */
  margin: 20px 0;
}

/* 点線（縦線） */
.dotted-line {
  width: 2px;
  height: 40px;
  border-left: 2px dotted #aaa;
}

/* 徒歩アイコンと文字を横並び */
.walk-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.walk-info img {
  width: 22px;
  height: 22px;
}


/* マップ */
.map-wrapper {
  display: flex;
  justify-content: center; 
  align-items: center;     
  margin: 40px 0;         
}

.map-container {
  position: relative;
  width: 90%;             
  max-width: 800px;       
  padding-bottom: 50%;    
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 🍞 お店紹介セクション全体 */
.spot1 {
  max-width: 1100px;         
  margin: 0 auto 100px;     
  padding: 0 60px;           
}

/* 🥐 お店名 */
.spot1 h3 {
  text-align: center;
  font-size: 30px;
  color: #3b3b3b;
  margin-bottom: 30px;
}

/* 🍞 画像＋テキストを横並びにして高さを揃える */
.spot1-content {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;   
}

/* 📸 画像（幅を指定して高さは自動） */
.spot1-content img {
  width: 300px;         
  object-fit: cover;     
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 📝 テキストボックス（高さ指定しない！） */
.text-box {
  width: 300px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px;
  line-height: 1.8;
  color: #444;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);

  display: flex;
  justify-content: flex-start;   /* ← 中身の水平方向を左揃え */
  align-items: center;           /* ← 高さの中で縦中央揃え */
  text-align: left;              /* ← 文字を左揃え */
}

/* 👤 取材者カード */
.interview-card {
  max-width: 800px;
  margin: 40px auto;
  background: rgba(255,255,255,0.8);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.interviewer-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.interview-text p {
  margin: 6px 0;
  color: #555;
  line-height: 1.6;
  text-align: left;
}


/* ボタン部分 */
.btn-area {
  text-align: center; /* 中央に配置 */
  margin-bottom: 50px; /* 下に余白 */
}

.btn {
  display: inline-block;
  background-color: #f3f0c0; /* ヘッダーナビと同じ色 */
  color: #333; /* 文字色も合わせる */
  padding: 20px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  }

.btn:hover {
  background: linear-gradient(90deg, #f6e58d, #ffbe76); /* ヘッダーナビと同じホバー色 */
  color: #444;
  transform: scale(1.05);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* ヘッダーナビと同じホバー影 */
}

/* フォトギャラリー */
.photo-slider {
  text-align: center;
  margin: 50px auto;
  width: 50%;
  max-width: 400px;
}

.gallery-title {
  font-size: 26px;
  font-weight: bold;
  color: #5c5243;
  border-bottom: 3px solid #cbb994;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 4px;
}

/* スライドショー全体 */
.fade-slideshow {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* 各スライド */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* キャプション */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  color: #4b453a;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(6px);
  border-radius: 0 0 20px 20px;
  font-family: "Hiragino Maru Gothic Pro", "Noto Sans JP", sans-serif;
}

/* フッター */
.site-footer {
  padding: 18px;
  text-align: center;
  font-size: 14px;
  color: #666;
  border-top: 2px solid #e0e0c0;
}

.site-footer a {
  color: #666;
  text-decoration: none;
  display: block;   /* 中央寄せを安定させる */
}


/* ================================
   ハンバーガーメニュー
================================ */
.nav-toggle {
  display: none;
}
.hamburger {
  display: none; /* デフォルトで非表示、スマホで表示 */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 10001; /* ヘッダーや他のコンテンツより前面に */
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* スマホ対応 */
@media (max-width: 800px) {
  .hamburger {
    display: flex; /* スマホではハンバーガーアイコンを表示 */
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px; /* 必要に応じて最大幅を設定 */
    height: 100%;
    background: #fffef8;
    transform: translateX(100%); /* 初期状態では画面外 */
    box-shadow: -3px 0 8px rgba(0,0,0,0.2);
    padding-top: 80px; /* ヘッダーの高さ分開ける */
    z-index: 9999; /* ヘッダーより下、ハンバーガーアイコンより下 */
    transition: transform 0.4s ease;
    overflow-y: auto; /* メニューが多い場合にスクロール可能にする */
  }

  /* ハンバーガーメニューのチェックボックスがチェックされたらメニューを表示 */
  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }

  .site-nav .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
    gap: 20px;
  }

  /* ハンバーガーアイコンのアニメーション */
  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* ロゴの調整 */
  .logo__img {
    height: 45px; /* スマホでのロゴ画像を小さく */
  }
  .logo__title {
    height: 30px; /* スマホでのロゴタイトルを小さく */
  }

  /* メインビジュアルの高さ調整 */
  .main {
    margin-top: 70px; /* スマホヘッダーの高さに合わせて調整 */
  }
  .main-img{
    height: 10rem;
  }
  .main-text{
    font-size: 20px;
    white-space: nowrap;
  }


  /* イントロテキストの調整 */
  .intro-text {
    font-size: 15px;        
    line-height: 1.8;       
    letter-spacing: 0.03em;  
    text-align: center;      
    padding: 16px 12px;      
    width: 90%;              
    max-width: 340px;        /* ← 見やすい幅に固定 */
    margin: 0 auto;          /* ← 中央寄せ */
    
  }


  /* ルートセクションの調整 */
  .route {
    margin: 30px auto;
    padding: 15px;
  }
  .route h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .route-step h4 {
    font-size: 18px;
    margin: 8px 0;
  }
  .route-step img.icon {
    width: 30px;
  }
  .route-step p {
    font-size: 13px;
  }
}
 /* ==================================
   📱 スマホ対応
   ================================== */
@media screen and (max-width: 800px) {

  /* お店紹介全体 */
  .spot1 {
    padding: 0 20px; /* ← スマホは余白少なめ */
    margin-bottom: 60px;
  }

  /* 見出し */
  .spot1 h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  /* 画像＋テキストの縦並び */
  .spot1-content {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  /* 画像：幅100%でそろう */
  .spot1-content img {
    width: 100%;
    max-width: 420px;  /* ← 写真の最大幅を統一 */
    height: auto;
    border-radius: 12px;
  }

  /* テキストボックス：画像と同じ幅にそろえる */
    .text-box {
    width: 100%;
    max-width: 420px;
    padding: 24px 22px; /* ← 余白を増やした！ */
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
    display: block;
  
  }
  /* 取材者カードをスマホ用に縦に並べる */
  .interview-card {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
  }

  .interview-img,
  .interviewer-img {
    width: 100px;
    height: 100px;
  }

  .interview-text {
    text-align: left;
    width: 100%;
    max-width: 420px;
  }

  /* ボタン中央寄せ */
  .btn-area {
    margin-top: 20px;
  }
}

  /* フォトギャラリーの調整 */
  @media (max-width: 800px) {
  .photo-slider {
    width: 95%;
    margin: 60px auto;
  }

  .fade-slideshow {
    height: 450px; 
    border-radius: 14px;
  }

  .caption {
    font-size: 14px;
    padding: 10px 0;
    border-radius: 0 0 14px 14px;
  }

  .gallery-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
/*   🌟 タブレット対応
  * ==========================================
   iPad Air / タブレット対応（完全版）
   820px〜1180px をタブレットとして扱う
   ========================================== */
@media screen and (min-width: 700px) and (max-width: 1200px) { 


  /* ヘッダー */
  .site-header {
    padding: 8px 20px;
  }
  .logo__img { height: 50px; }
  .logo__title { height: 34px; }

  /* ナビ（文字少し小さく＆詰める） */
  .site-nav .main-nav {
    gap: 10px;
  }
  .site-nav .main-nav a {
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  /* メインビジュアル */
  .main-img {
    height: 18rem; /* PCより少し低い */
  }
  .main-text {
    font-size: 26px;
    padding: 14px 22px;
  }

  /* イントロ */
  .intro-text {
    font-size: 1rem;
    padding: 0 28px;
    line-height: 1.8;
  }

  /* コース（タイムライン） */
  .course-timeline {
    width: 80%;
    margin: 0 auto;
  }
  .spot-card {
    width: 90%;
    max-width: 520px;
    padding: 16px 20px;
  }
  .name {
    font-size: 1.6em;
  }
  .walk-info span {
    font-size: 0.9rem;
  }

 

  /* -------------- お店紹介（spot1） -------------- */
  .spot1 {
    padding: 0 32px;
  }

  /* 写真2枚＋テキストのレイアウトを調整 */
  .spot1-content {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* 📌 タブレットで崩れない */
  }

  .spot1-content img {
    width: 240px;
    height: auto;
  }

  .text-box {
    width: 240px;
    padding: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* -------------- 取材者カード -------------- */
  .interview-card {
    padding: 20px;
    gap: 16px;
    width: 85%;
    margin: 20px auto;
  }
  .interviewer-img {
    width: 80px;
    height: 80px;
  }

  /* 詳しくはこちらボタン */
  .btn {
    padding: 16px 26px;
    font-size: 1rem;
  }




}