@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  color: #3a2f2b;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: "Shippori Mincho", sans-serif;
  background-image: url(../images/contents-bg-img.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

/* ここからヘッダーの装飾 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  height: 90px;
  z-index: 999;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.4);
  /* 半透明へ */
  backdrop-filter: blur(4px);
  /* 背景に少しぼかし → 高級感UP（任意） */
}

/* コンテンツ部分 */
.header-inner {
  max-width: 1440px;
  padding-left: 130px;
  padding-right: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav a:hover {
  opacity: 0.7;
}

/* ロゴ */
.logo img {
  width: auto;
  height: 60px;
}

.mobile-menu {
  display: none;
}

/* ナビリスト */
.nav ul {
  display: flex;
  gap: 60px;
  color: #3a2f2d;
  font-weight: bold;
}

.btn-reserve {
  display: inline-block;
  padding: 10px 25px;
  background-color: #6a8c49;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-reserve:hover {
  background-color: #55753c; /* ← ホバー時の色（少し濃い緑） */
  color: #fff;
}

.page-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/store-main.png);
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  /* 文字を読みやすく */
  z-index: 1;
}

/* タイトル文字（フォント指定なし） */
.page-hero-title {
  position: relative;
  z-index: 2;
  font-size: 56px;
  color: #fff;
  letter-spacing: 0.2em;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
}

/* HEXAGON（右下飾り） */
.yasai-hexagon-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 330px;
  opacity: 0.1;
  z-index: -1;
}

.yasai-kumo-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 272px;
  opacity: 0.85;
  z-index: -1;
}

/* ===============================
   お店について：最初の紹介ブロック
================================*/
.store-intro {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}

.store-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}

/* 左側テキスト */
.store-title {
  font-size: 24px;
  letter-spacing: 0.28em;
  margin-bottom: 35px;
  color: #3a2f2b;
}

.store-desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.28em;
  color: #3a2f2b;
  max-width: 560px;
  font-family: "Noto Serif JP", serif;
}

/* 右側画像 */
.store-img img {
  width: 570px;
  border-radius: 20px;
  display: block;
}

.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease-out;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   店内についてセクション
================================*/
.store-room {
  position: relative;
  width: 100%;
  padding: 200px 0;
  overflow: hidden;
}

.store-room-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* --- 左の1枚画像 --- */
.room-photo {
  width: 600px;
  border-radius: 20px;
}

.room-photo img {
  border-radius: 20px;
}

/* --- 右側テキスト --- */
.room-text {
  max-width: 550px;
}

.room-title {
  font-size: 24px;
  letter-spacing: 0.28em;
  margin-bottom: 35px;
  color: #3a2f2b;
}

.room-desc {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.28em;
  color: #3a2f2b;
  font-family: "Noto Serif JP", serif;
}

.menu-flower-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 192px;
  opacity: 0.1;
}

.store-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* 下線のデザイン */
.store-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #3a2f2b;
  opacity: 0.8;
}

.room-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* 下線のデザイン */
.room-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #3a2f2b;
  opacity: 0.8;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  width: 100%;
  color: #fff;
  margin-top: 300px;
  font-family: "Yu Mincho", serif;
  position: relative;
}

/* 背景画像 */
.footer-bg {
  background-image: url("../images/footer-img.png");
  background-size: cover;
  background-position: center top;
  height: 700px;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

/* 中身を重ねる */
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  margin-top: -500px;
  padding-bottom: 40px;
  z-index: 3;
}

/* 左右2カラム */
.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* 左側 */
.footer-left {
  max-width: 500px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 80px;
}

.footer-address {
  font-size: 16px;
  line-height: 3;
  letter-spacing: 0.12em;
}

/* 右側 */
.footer-right {
  text-align: right;
  padding-top: 100px;
}

/* ナビ */
.footer-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  gap: 20px 35px;
  max-width: 400px;
}

.footer-nav a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.12em;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* SNSエリア */
.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.footer-instagram {
  width: 32px;
}

/* ボタン */
.footer-reserve-btn {
  background: #b81226;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
}

.footer-reserve-btn:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ▼ ふわっと表示する基本アニメーション */
.fadein {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

/* ▼ 表示されるときの状態 */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-mobile {
  display: none;
}

/* =========================
SP レスポンシブ
=========================*/

@media (max-width: 768px) {
  /* =================
共通
================= */

  body {
    font-size: 16px;
  }

  .wrapper {
    overflow: hidden;
  }

  /* =================
HEADER
================= */

  .header {
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .nav {
    display: none;
  }

  .btn-reserve {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  /* ハンバーガー */

  .hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* =================
モバイルメニュー
================= */

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    height: 100vh;
    background: rgba(184, 18, 38, 0.95);
    padding: 40px 30px;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-menu a {
    color: #fff;
    font-size: 18px;
  }

  .mobile-menu.open {
    display: block;
  }

  /* 予約ボタン */

  .mobile-menu .reserve-btn {
    display: block;
    margin-top: 40px;
    padding: 12px;
    background: #6a8c49;
    border-radius: 6px;
    text-align: center;
    color: #fff;
  }

  /* =================
HERO
================= */

  .page-hero {
    height: 300px;
    padding-top: 70px;
  }

  .page-hero-title {
    font-size: 36px;
  }


  .yasai-hexagon-right {
    display: none;
  }

 .store-inner {
  flex-direction: column-reverse;
 }

 .store-room-inner {
  flex-direction: column;
  margin: 0 auto;
 }


  /* =================
FOOTER
================= */

  .site-footer {
    display: none;
  }

  .footer-mobile {
    display: block;
    height: 200px;
    background-color: #b81226;
  }

  .footer-mobile-inner {
    height: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-mobile-logo img {
    height: 50px;
  }

  .footer-mobile-logo {
    margin-bottom: 30px;
  }

  .footer-mobile-address {
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
  }

  .footer-mobile-copy {
    text-align: center;
    color: #fff;
    font-size: 12px;
  }
}
