/* ------------------------------
    リセット＆ベーシック設定
------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Serif JP', serif;
  background-color: #fdfaf5; /* ベースカラー */
  color: #3c3c3c; /* テキストカラー */
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, li {
  list-style: none;
}

/* ------------------------------
   カラー変数（任意／後で使う場合）
------------------------------- */
:root {
  --main: #6e4d3a;     /* チョコレートブラウン */
  --accent: #d4a373;   /* カフェラテゴールド */
  --base: #fdfaf5;     /* 背景ベージュ */
  --text: #3c3c3c;     /* チャコールグレー */
}

/* ------------------------------
   セクション共通構成
------------------------------- */
.section {
  padding: 4rem 1rem;
  background-color: var(--base);
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.section p {
  font-size: 1rem;
  color: var(--text);
}
.section h2 {
  position: relative;
  padding-top: 2.2rem;
  font-size: 1.8rem;
  color: var(--main);
  margin-bottom: 1rem;
  font-family: 'Noto Serif JP', serif;
}
.section h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
  display: block;
}

/* ------------------------------
   メイン画面調整
------------------------------- */

/* ヒーロー画像を画面全体に広げる */
.wp-block-cover.alignfull {
  height: 100vh;
}

/* ヘッダー・スマホメニューを非表示（LP向け） */
.site-header {
  display: none;
}

@media screen and (max-width: 768px) {
  .vk-mobile-nav-menu-btn {
    display: none !important;
  }
}

/* PC表示：左下寄せ */
.wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  padding: 0 24px 10vh;
  text-align: left;
}

/* 通常：改行タグは非表示 */
.sp-only {
  display: none;
}

/* スマホ表示：上下中央配置＋中央揃え＆改行タグ表示 */
@media screen and (max-width: 768px) {
  .wp-block-cover__inner-container {
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    text-align: center;
  }

  h2.wp-block-heading {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
    padding: 0 12px !important;
    text-align: center !important;
  }

  .sp-only {
    display: inline;
  }
}


/* ------------------------------
   ヒーローセクション
------------------------------- */

.hero-text {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}
.hero-text h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
.hero-text p {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}


.hero-text {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
}

.hero-text h2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  font-family: 'Noto Serif JP', serif;
}

.hero-text p {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-family: 'Noto Serif JP', serif;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .hero-text h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0 16px;
  }

  .hero-text p {
    font-size: 0.9rem;
  }
}
/* ------------------------------
   ナビゲーション（透明・右上）
------------------------------- */
.hero-nav {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 3;
}
.hero-nav ul {
  display: flex;
  gap: 1.5rem;
}
.hero-nav a {
  color: #fff;
  font-weight: bold;
  transition: opacity 0.2s ease;
}
.hero-nav a:hover {
  opacity: 0.7;
}

/* ------------------------------
   レスポンシブ対応
------------------------------- */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .section {
    padding: 3rem 1rem;
  }
  .hero-nav ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 6px;
  }
}
.section h2 {
  font-size: 1.8rem;
  color: var(--main) !important;
  margin-bottom: 1rem;
  font-family: 'Noto Serif JP', serif;
}
.test-heading {
  color: red !important;
  font-size: 2rem;
}
}
/* ------------------------------
   コンセプト紹介セクション
------------------------------- */
.section.concept {
  background-color: var(--base);
  padding: 5rem 1rem 2rem;
}

/* 空間紹介セクション全体 */
.section.space {
  background-color: var(--base);
  padding: 5rem 1rem;
}

/* ギャラリー配置 */
.space-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

/* 画像アイテム拡大：一回り大きく */
.space-item {
  max-width: 400px;
  flex: 1 1 400px;
  text-align: center;
}

.space-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.12);
}

.space-item p {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text);
}

.section.service .lead {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}
.service-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}
.service-item h3 {
  font-size: 1.2rem;
  color: var(--main);
  margin-bottom: 0.5rem;
}
/* サービス紹介 */
.section.service {
  background-color: #f7f3ec;
  padding: 5rem 1rem;
}

.section.service .lead {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

.service-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.service-block {
  max-width: 320px;
  text-align: center;
}

.service-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.service-block h3 {
  font-size: 1.2rem;
  color: var(--main);
  margin-bottom: 0.5rem;
}

.service-block p {
  font-size: 1rem;
  color: var(--text);
}

@media screen and (max-width: 768px) {
  .service-block p {
    text-align: left;
  }
}

/* わたしたちについて */

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media screen and (max-width: 768px) {
  .about-container {
    padding: 0px 16px; /* スマホだけ余白を詰める */
  }
}
.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-text {
  flex: 1 1 50%;
}

.about-container {
  align-items: stretch;
}

.about-image {
  display: flex;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.about-text {
  max-width: 600px;
  color: #3c3c3c;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center; /* ← 追加 */
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2c2c2c;
  text-align: center;

  margin-top: 80px;      /* 前セクションとの間に余白を確保 */
  margin-bottom: 10px;   /* 見出しと画像・テキストの距離感を調整 */

  /* 装飾は不要なら省略。必要なら border-bottom 等で演出可能 */
  border-left: none;
}
@media screen and (min-width: 769px) {
  .section.concept p {
    font-size: 1.2rem !important;
  }
}

/* レスポンシブ対応（スマホで縦並び） */

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .about-text {
    text-align: left;
  }
}

/* 料理・素材のこだわり */

.ingredients-container {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  align-items: stretch;
}

.ingredients-image {
  flex: 1 1 40%;
  display: flex;
}

.ingredients-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredients-text {
  flex: 1 1 50%;
  text-align: center;
}

.ingredients-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
}

.ingredients-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}

/* レスポンシブ対応（スマホで縦並び） */

@media screen and (max-width: 768px) {
  .ingredients-container {
    flex-direction: column;
  }

  .ingredients-image img {
    height: auto;
    object-fit: contain;
  }

  .ingredients-text {
    text-align: left;
  }
}

/* ------------------------------
   店舗情報セクション
------------------------------- */
.store-access {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.store-access-inner {
  max-width: 800px;
  margin: 0 auto;
}

.store-access-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.store-access-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}

.store-access-list li {
  margin-bottom: 12px;
}

.store-access-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 6px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .store-access {
    padding: 40px 16px;
  }

  .store-access-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .store-access-list {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .store-access-map iframe {
    height: 240px;
  }
}
/* フッター表記非表示 */
.site-footer-copyright p:nth-child(2) {
    display: none;
}

@media screen and (max-width: 768px) {
  section,
  .wp-block-group,
  .block-section {
    margin-top: 24px !important;
    margin-bottom: 12px !important;
    padding-top: 16px !important;
    padding-bottom: 10px !important;
  }
}
