
body {
    font-family: 'Noto Serif SC', serif;
    background-color: black;
    color: white;
    font-size: 100%;
    line-height: 1.6;
}

img {
    width: 100%;
}

a:hover {
    opacity: 0.6;
}

.container {
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 0 4%; 
    box-sizing: border-box;
    /* background-color: pink; */
  }

.section-title {
    text-align: center;
    font-size: 26px;
    opacity: 0.6;
}

.ch {
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
    opacity: 0.6;
}
  


/* ーーーーーーーーーーーーーーーーーーー
ヘッダー
ーーーーーーーーーーーーーーーーーーー */

/* ーーーーーーーーーーーーーーーーーーー
ヘッダースタイル
ーーーーーーーーーーーーーーーーーーー */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0; /* パディングを少し減らしてコンパクトに */
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ロゴスタイル */
.logo a {
    font-size: 1.3rem; /* サイズダウン */
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.8;
}

/* メインメニュー */
#header .menu ul {
    display: flex;
    gap: 25px; /* marginからgapに変更 */
}

#header .menu li {
    position: relative;
}

#header .menu a {
    font-size: 0.9rem; /* サイズダウン */
    color: #fff;
    padding-bottom: 5px;
    transition: all 0.3s;
}

#header .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

#header .menu a:hover::after {
    width: 100%;
}

/* コンタクトメニュー */
#header .contact ul {
    display: flex;
    gap: 20px; /* marginからgapに変更 */
    align-items: center;
}

#header .contact a {
    font-size: 0.85rem; /* サイズダウン */
    color: #fff;
    transition: opacity 0.3s;
}

#header .contact a:hover {
    opacity: 0.8;
}

#header .contact li:last-child a {
    padding: 6px 12px; /* サイズダウン */
    border: 1px solid #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

#header .contact li:last-child a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* スクロール */
#header.scrolled {
    background-color: rgba(0, 0, 0, 0.95); /* 少し透明度を加えた深黒 */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.9); /* シャドウも黒ベースに */

  }
  
  /* ロゴとメニューの色（スクロール時も白文字を維持） */
  .logo a,
  #header .menu a,
  #header .contact a {
    color: #fff;
  }
  
  /* 予約ボタンのスタイル（スクロール時も維持） */
  #header .contact li:last-child a {
    border: 1px solid #fff;
  }


/* レスポンシブ対応 */
@media (max-width: 768px) {
    #header {
        padding: 10px 0;
    }
    
    #header .container {
        flex-direction: column;
        gap: 12px;
    }
    
    #header .menu ul {
        gap: 15px;
    }
    
    #header .contact ul {
        margin-top: 8px;
        gap: 15px;
    }
}

/* ーーーーーーーーーーーーーーーーーーー
mv
ーーーーーーーーーーーーーーーーーーー */

/* スライドショーのスタイル */
#mv {
    position: relative;
    overflow: hidden;
    height: 100vh; /* 画面いっぱいの高さに */
  }
  
  .slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* ゆっくりとしたフェード効果 */
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナに合わせてトリミング */
    object-position: center;
    filter: brightness(0.9) saturate(1.1) sepia(0.1);
  }
  
  #mv h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-align: center;
    width: 100%;
    opacity: 0; /* 最初は非表示に */
    transition: opacity 1.5s ease-in-out 1s; /* 1秒遅らせてから1.5秒かけて表示 */
  }
  
  #mv h2.show {
    opacity: 1;
  }

  /* ーーーーーーーーーーーーーーーーーーー
アバウト
ーーーーーーーーーーーーーーーーーーー */
#about {
    margin-top: 70px;
    text-align: center;
    /* background-color: red; */
}

#about .section-title {
    font-size: 200%;
    margin-bottom: 20px;
}

  /* ーーーーーーーーーーーーーーーーーーー
特徴
ーーーーーーーーーーーーーーーーーーー */
#feature {
    margin-top: 70px;
    /* background-color: green; */

}

#feature img {
    height: 300px;
    object-fit: cover;
}
/* 初期状態（非表示） */
.feature-row {
    opacity: 0;
    transition: all 0.8s ease-out;
  }
  
  /* 奇数行の初期位置 */
  .feature-row.odd {
    transform: translateX(-50px);
  }
  
  /* 偶数行の初期位置 */
  .feature-row.even {
    transform: translateX(50px);
  }
  
  /* 表示時の状態 */
  .feature-row.active {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* 画像とテキストの基本レイアウト */
  .feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
  }
  
  .feature-row.odd .feature-image { order: 1; }
  .feature-row.odd .feature-text { order: 2; }
  .feature-row.even .feature-text { order: 1; }
  .feature-row.even .feature-image { order: 2; }
  
  .feature-image, .feature-text { width: 50%; }
  .feature-image img { width: 100%; height: auto; }
  
  /* モバイル対応 */
  @media (max-width: 768px) {
    .feature-row {
      flex-direction: column;
      gap: 20px;
    }
    .feature-image, .feature-text { width: 100%; }
    .feature-row.even .feature-text,
    .feature-row.odd .feature-text { order: 2; }
    .feature-row.even .feature-image,
    .feature-row.odd .feature-image { order: 1; }
  }

  /* ーーーーーーーーーーーーーーーーー
  メニュー
  ーーーーーーーーーーーーーーーーーー */

  #menu {
    margin-top: 70px;
    /* background-color: pink; */
}


  /* メニューコンテナ */
#menu .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto 40px;
  }
  
  /* メニューアイテム */
  .menu-item {
    width: 30%;
    text-align: center;
  }
  
  /* 正方形の画像 */
  .menu-image {
    width: 100%;
    aspect-ratio: 1/1; /* 正方形を保証 */
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .menu-image:hover img {
    transform: scale(1.05);
  }
  
  /* テキスト部分 */
  .menu-title {
    margin: 0 0 8px 0;
    line-height: 1.3;
  }
  
  .menu-description {
    margin: 0;
    line-height: 1.5;
  }
  
  /* ボタン */
  .button-container {
    text-align: center;
    margin-top: 30px;
  }
  
  .menu-button {
    padding: 12px 30px;
    border: 1px solid white;
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .menu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    transition: all 0.4s ease;
  }
  
  .menu-button:hover::before {
    left: 0;
  }
  
  .menu-button::after {
    content: '';
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    border-right: 1px solid white;
    border-left: 1px solid white;
    transition: all 0.4s ease;
  }
  
  .menu-button:hover::after {
    top: 0;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .menu-container {
      flex-direction: column;
      align-items: center;
    }
    
    .menu-item {
      width: 100%;
      max-width: 350px;
      margin-bottom: 30px;
    }
  }



  /* ーーーーーーーーー
  アクセス
  ーーーーーーーーーー */
  #access {
    margin-top: 70px;
}

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .access-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .shop-info {
    padding: 20px 0;
    width: 45%;
  }
  
  .map-wrapper {
    width: 55%;
    position: relative;
    padding-top: 40%; /* アスペクト比維持 */
  }
  
  .grayscale-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(90%) contrast(85%);
    border: none;
  }
  
  .info-item {
    margin-bottom: 25px;
  }
  
  .info-item h3 {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
  }
  
  .info-item h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 3px;
    background: currentColor;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .access-container {
      flex-direction: column;
    }
    
    .shop-info,
    .map-wrapper {
      width: 100%;
    }
    
    .map-wrapper {
      padding-top: 75%; /* モバイルでは縦長に */
    }
  }


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

  #footer {
    background-color: #5c0000; /* 深みのある暗い赤 */
    padding: 50px 0 30px;
    margin-top: 70px;
    position: relative;
    color: #fff;
  }
  
  #footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
      to right, 
      transparent 0%, 
      rgba(255, 255, 255, 0.3) 50%, 
      transparent 100%
    );
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-logo h2 {
    font-size: 1.4rem; /* 調整済み */
    margin-bottom: 10px;
  }
  
  .footer-logo p {
    font-size: 0.85rem; /* 調整済み */
    opacity: 0.8;
  }
  
  .footer-nav h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1rem; /* 調整済み */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
  }
  
  .footer-nav h3::after,
  .footer-contact h3::after,
  .footer-social h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
  }
  
  .footer-nav ul {
    display: grid;
    gap: 10px;
  }
  
  .footer-nav a {
    font-size: 0.85rem; /* 調整済み */
    transition: all 0.3s ease;
    opacity: 0.8;
  }
  
  .footer-nav a:hover {
    opacity: 1;
    padding-left: 5px;
  }
  
  .footer-contact p {
    font-size: 0.85rem; /* 調整済み */
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer-contact .tel {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
  }
  
  .footer-social ul {
    display: flex;
    gap: 12px;
  }
  
  .footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s;
  }
  
  .footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem; /* 調整済み */
    opacity: 0.6;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-nav h3,
    .footer-contact h3,
    .footer-social h3 {
      margin-bottom: 12px;
    }
  }