body {
  background-color: #f5f1e6;
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
  color: #4a3b2a;
  font-family: '游明朝体', 'Old Standard TT', serif;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

/* ヘッダー */
header {
  background-color: #e3d5b8;
  border-bottom: 2px solid #b4975a;
  padding: 6px 16px; /* 上下6pxにするとスッキリ */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0;
}


/* 左側：店名とキャッチ */
.header-left h1 {
  margin-top: 0;
  line-height: 1.2;
}

.catch {
  font-size: 1em;
  color: #7b5e3b;
  margin-bottom: -5px;
}

/* ナビゲーション */
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: #4a3b2a;
  border: 1px solid #b4975a;
  padding: 6px 14px !important;  /* ← 少しゆとりのあるサイズ */
  border-radius: 6px;
  background: #f5f1e6;
  transition: 0.3s;
  font-size: 15px !important;    /* ← 少し大きめ、でも2行にならない */
  white-space: nowrap;            /* ← 2行禁止 */
}



nav a:hover {
  background-color: #b4975a;
  color: white;
}

/* 電話ボタン */
.tel-btn {
  background: #b4975a;
  color: #4a3b2a;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}





/* ヒーロー全体 */
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;

}


/* 無限スクロール全体 */
.scroll-infinity {
  width: 100%;
  overflow: hidden;
  position: relative;
  --items: 5; /* 1セットの画像枚数 */
  --item-width: 50vw; /* 画像の表示幅 */
  --start-offset: 0vw; /* ← ここを調整すると開始位置が左に寄る */
}


/* トラック（画像2セット分） */
.scroll-infinity__track {
  display: flex;
  flex-wrap: nowrap;
  animation: infinity-scroll-left 40s linear infinite;
  transform: translateX(var(--start-offset)); /* ← 最初の開始位置をズラす */
}


/* リスト1セット分 */
.scroll-infinity__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}


/* 画像アイテム */
.scroll-infinity__item {
  width: var(--item-width);
  flex-shrink: 0;
}

.scroll-infinity__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* 無限スクロールアニメーション（1セット分左へ移動） */
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0vw);
  }
  100% {
    transform: translateX(calc(-1 * var(--items) * var(--item-width)));
  }
}






/* モバイル時は切り替え式（軽量） */
@media (max-width: 768px) {
  .slides {
    animation: none; /* アニメーション停止 */
  }

  .slides img {
    display: none;
  }

  .slides img:first-child {
    display: block; /* 最初の1枚だけ表示 */
  }
}

section {
  padding: 40px 20px;
  border-bottom: 1px solid #e3d5b8;
}

/* 各セクション画像 */
.section-img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 15px;
}

/* ボタン共通 */
.btn {
  background: #e3d5b8;
  color: #4a3b2a;
  border: 1px solid #b4975a;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #b4975a;
  color: white;
}

/* フッター */
footer {
  background-color: #e3d5b8;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* ===== スマホ対応メニュー ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1500;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background-color: #4a3b2a;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}


  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 20px 0;
  }

  nav a {
    font-size: 1.4em;
    padding: 12px 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .tel-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #b4975a;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 2000;
    font-size: 1em;
  }

.hero .catch {
  margin-bottom: 0.4em; /* ← この値を小さくすると距離が縮まる */
  line-height: 1.2; /* 行間を少し詰める */
}

.hero .logo {
  margin-top: 0; /* 不要な余白をリセット */
}

/* ===== 電話ボタン（常時固定・スマホ優先） ===== */
.tel-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #b4975a; /* あなたのサイトに合うアンティークゴールド */
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  font-size: 1.1em;
  text-decoration: none;
  z-index: 2000;
  transition: all 0.2s ease;
}

/* ホバー効果（PC・スマホ共通） */
.tel-btn:hover {
  background: #a3854f;
  transform: scale(1.03);
}

/* スマホ時はより目立つように少し大きめ */
@media (max-width: 768px) {
  .tel-btn {
    padding: 16px 24px;
    font-size: 1.15em;
  }
}
/* ===== 電話ボタン（常時固定 + アニメーション） ===== */
.tel-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #b4975a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  font-size: 1.1em;
  text-decoration: none;
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  transition: all 0.3s ease;
}

/* フェードイン・スライドアップ */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ホバー効果（PC・スマホ共通） */
.tel-btn:hover {
  background: #a3854f;
  transform: scale(1.05);
}

/* メニュー開時に非表示（ふわっと消える） */
.tel-btn.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* スマホ時は大きめでタップしやすく */
@media (max-width: 768px) {
  .tel-btn {
    padding: 16px 24px;
    font-size: 1.15em;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== 真鍮風ふわっと固定電話ボタン ===== */
.tel-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(145deg, #c2a35b, #a88c47); /* 真鍮風のグラデーション */
  color: #fffaf0;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  z-index: 2000;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.9s ease forwards;
  transition: all 0.3s ease;
}

/* フェードイン・スライドアップ */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ホバー時（光沢＋押し感） */
.tel-btn:hover {
  background: linear-gradient(145deg, #d4b76e, #b3924f);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* メニュー開時に非表示（ふわっと消える） */
.tel-btn.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* スマホ用：ボタンを大きめにして指で押しやすく */
@media (max-width: 768px) {
  .tel-btn {
    padding: 16px 28px;
    font-size: 1.2em;
    bottom: 20px;
    right: 20px;
    border-radius: 60px;
  }
}
/* ===== 背景トーン調整 ===== */

/* 全体ベース */
body {
  background-color: #f5f1e6;
  color: #4a3b2a;
  margin: 0;
  padding: 0;
}

/* 各セクションのトーン差 */
.hero {
  background-color: #e1d4b2; /* ほんのり濃いアンティーク紙色 */
}

#about, #carbon, #microbubble {
  background-color: #f5f1e6; /* 明るく読みやすく */
}

#menu {
  background-color: #e8dfca; /* メニュー部分だけ少し深めに */
}

#contact, #info, #map {
  background-color: #f3f0e8; /* 優しいトーンで締める */
}

/* セクション間の境界を柔らかく */
section {
  border-bottom: 1px solid rgba(180, 151, 90, 0.25);
  padding: 50px 20px;
}
/* ===== CTA強化版 真鍮ボタン ===== */
.tel-btn {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: linear-gradient(145deg, #b9934a, #8d7337);
  color: #fffdf7;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 2px 1px rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transition: all 0.3s ease;
  animation: fadeInUp 0.9s ease forwards, pulseGlow 3s ease-in-out infinite;
}

/* 光の“呼吸”アニメーション */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(185, 147, 74, 0.5),
                inset 0 2px 1px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(185, 147, 74, 0.8),
                inset 0 2px 1px rgba(255, 255, 255, 0.6);
  }
}

/* ホバー時 */
.tel-btn:hover {
  background: linear-gradient(145deg, #d2b15f, #a9893e);
  transform: translateY(-2px) scale(1.05);
  color: #fffef7;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .tel-btn {
    padding: 18px 32px;
    font-size: 1.2em;
    bottom: 20px;
    right: 20px;
  }
}
/* ========== 共通スタイル ========== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(145deg, #b9934a, #8d7337);
  color: #fffdf7;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.3),
    inset 0 2px 1px rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 3s ease-in-out infinite;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(145deg, #d2b15f, #a9893e);
  color: #fffef7;
}

/* “呼吸する光”アニメーション */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(185, 147, 74, 0.4),
                inset 0 2px 1px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 6px 20px rgba(185, 147, 74, 0.8),
                inset 0 2px 1px rgba(255, 255, 255, 0.6);
  }
}

/* ========== 固定ボタン（右下） ========== */
.cta-btn.call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 2000;
  font-size: 1.05em;
  padding: 16px 32px;
}

/* ========== セクション内ボタン ========== */
.cta-btn.reserve {
  margin-top: 20px;
  font-size: 1em;
}

/* ========== スマホ対応 ========== */
@media (max-width: 768px) {
  .cta-btn {
    padding: 16px 36px;
    font-size: 1.15em;
  }

  .cta-btn.call {
    bottom: 20px;
    right: 20px;
  }
}
.intro {
  background-color: #f3ebdc;
  padding: 60px 20px;
  border-bottom: 1px solid #d6c6a8;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.intro-img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-text {
  max-width: 520px;
  font-size: 1.1em;
  color: #4a3b2a;
  line-height: 2; /* 行間を少し広げて読みやすく */
}

.intro-text h2 {
  font-size: 1.7em;
  margin-bottom: 25px;
  color: #3b2e1f;
  border-left: 5px solid #b4975a;
  padding-left: 10px;
  line-height: 1.6;
}

.intro-text p {
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    border: none;
    padding-left: 0;
  }
}
.concept {
  padding: 80px 20px;
  background-color: #faf8f5;
  text-align: center;
}

.concept h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  margin-bottom: 50px;
  border-bottom: 3px solid #b4975a;
  display: inline-block;
  padding-bottom: 10px;
}

.concept-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.concept-item.reverse {
  flex-direction: row-reverse;
}

.concept-img {
  width: 45%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.concept-text {
  max-width: 480px;
  font-size: 1.1em;
  line-height: 1.9;
  color: #4a3b2a;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .concept-item {
    flex-direction: column !important;
  }

  .concept-img {
    width: 90%;
  }

  .concept-text {
    text-align: center;
  }
}
.carbon-shampoo {
  background-color: #fff;
  padding: 80px 20px;
}

.carbon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.carbon-img {
  width: 45%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carbon-text {
  max-width: 520px;
  color: #4a3b2a;
  font-size: 1.1em;
  line-height: 2;
}

.carbon-text h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  border-left: 5px solid #b4975a;
  padding-left: 10px;
  margin-bottom: 25px;
}

.carbon-text p {
  margin-bottom: 1.6em;
}

.carbon-text strong {
  color: #b4975a;
}

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

  .carbon-img {
    width: 90%;
  }

  .carbon-text {
    text-align: center;
  }

  .carbon-text h2 {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #b4975a;
    display: inline-block;
    padding-bottom: 8px;
  }
}
.microbubble {
  background-color: #fdfbf7;
  padding: 80px 20px;
}

.microbubble-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse; /* 画像が右、テキストが左 */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.microbubble-img {
  width: 45%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.microbubble-text {
  max-width: 520px;
  color: #4a3b2a;
  font-size: 1.1em;
  line-height: 2;
}

.microbubble-text h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  border-left: 5px solid #b4975a;
  padding-left: 10px;
  margin-bottom: 25px;
}

.microbubble-text p {
  margin-bottom: 1.6em;
}

.microbubble-text strong {
  color: #b4975a;
}

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

  .microbubble-img {
    width: 90%;
  }

  .microbubble-text {
    text-align: center;
  }

  .microbubble-text h2 {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #b4975a;
    display: inline-block;
    padding-bottom: 8px;
  }
}
.menu-section {
  background-color: #fff;
  padding: 80px 20px;
  border-bottom: 1px solid #e3d5b8;
}

.menu-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-img {
  width: 45%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-text {
  max-width: 520px;
  color: #4a3b2a;
  font-size: 1.1em;
  line-height: 2;
}

.menu-text h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  border-left: 5px solid #b4975a;
  padding-left: 10px;
  margin-bottom: 25px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
}

.menu-list li {
  margin-bottom: 8px;
  border-bottom: 1px dotted #d1c3a3;
  padding-bottom: 4px;
}

.menu-text strong {
  color: #b4975a;
}

.note {
  font-size: 0.9em;
  color: #7b5e3b;
}

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

  .menu-img {
    width: 90%;
  }

  .menu-text {
    text-align: center;
  }

  .menu-text h2 {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid #b4975a;
    display: inline-block;
    padding-bottom: 8px;
  }

  .menu-list li {
    text-align: left;
  }
}
.refresh-shaving {
  background-color: #f8f5f0;
  padding: 60px 20px;
  border-top: 1px solid #e0d8c8;
}

.refresh-shaving h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  text-align: center;
  margin-bottom: 20px;
}

.refresh-shaving p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
  color: #4a3b2a;
}

.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.step-text {
  max-width: 400px;
}

.step-text h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #3b2e1f;
}

.step-text p {
  color: #5a4a3a;
  line-height: 1.7;
}
.refresh-shaving {
  background-color: #f8f5f0;
  padding: 80px 20px;
  border-top: 1px solid #e0d8c8;
}

.refresh-shaving h2 {
  font-size: 1.8em;
  color: #3b2e1f;
  text-align: center;
  margin-bottom: 20px;
}

.refresh-shaving p {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
  color: #4a3b2a;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.step img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #3b2e1f;
}

.step p {
  font-size: 1em;
  line-height: 1.6;
  color: #5a4a3a;
}
#footer-info {
  background-color: #f3ece0; /* 落ち着いたトーン */
  border-top: 1px solid #e0d8c8;
  padding: 80px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-box, .shop-box {
  flex: 1 1 400px;
  background-color: #fffaf3; /* やや明るめの背景 */
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

#footer-info h2 {
  font-size: 1.6em;
  margin-bottom: 25px;
  color: #3b2f2f;
  text-align: center;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
}

#footer-info p {
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 18px;
}

#footer-info .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background-color: #a67c52;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
  text-align: center;
}

#footer-info .btn:hover {
  background-color: #8c6239;
}

.shop-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-info li {
  margin-bottom: 14px;
  color: #4a4a4a;
  line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-box, .shop-box {
    width: 100%;
  }
  #footer-info h2 {
    text-align: center;
  }
}
#footer-info {
  background-color: #f3ece0; /* 全体の落ち着いた背景 */
  border-top: 1px solid #ddd2c2;
  padding: 80px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-box, .shop-box {
  flex: 1 1 400px;
  background-color: #fffaf3;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

#footer-info h2 {
  font-size: 1.6em;
  margin-bottom: 25px;
  color: #483C2C; /* メインカラー */
  text-align: center;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
}

#footer-info p {
  line-height: 1.8;
  color: #3e3e3e;
  margin-bottom: 18px;
}

#footer-info .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background-color: #483C2C; /* メインカラー */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
  text-align: center;
}

#footer-info .btn:hover {
  background-color: #2f261b; /* 濃いトーンでホバー効果 */
}

.shop-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-info li {
  margin-bottom: 14px;
  color: #3e3e3e;
  line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-box, .shop-box {
    width: 100%;
  }
  #footer-info h2 {
    text-align: center;
  }
}
/* =====================================
   🌿 メインテーマカラー + モバイル強化版
   ===================================== */

/* 全体 */
body {
  background-color: #f5f1e6;
  color: #483C2C;
  margin: 0;
  font-family: '游明朝体', 'Old Standard TT', serif;
  line-height: 1.8;
}

/* ====== ヘッダー ====== */
header {
  background-color: #483C2C;
  border-bottom: 2px solid #b4975a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left h1 {
  color: #fff;
  margin: 0;
}

.catch {
  font-size: 1em;
  color: #e3d5b8;
  margin-bottom: -5px;
}

/* ====== ナビゲーション ====== */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin: 0 10px;
}

nav a {
  text-decoration: none;
  color: #483C2C;
  background: #fffaf3;
  border: 1px solid #b4975a;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

nav a:hover {
  background-color: #b4975a;
  color: #fff;
}

/* ====== 電話ボタン（ヘッダー右） ====== */
.tel-btn {
  background: #b4975a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.tel-btn:hover {
  background: #fff;
  color: #483C2C;
}

/* ====== スマホ用 ハンバーガーメニュー ====== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f5f1e6;
    position: absolute;
    top: 60px;
    left: 0;
    border-top: 1px solid #b4975a;
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ====== 固定電話ボタン（スマホ画面下） ====== */
.fixed-tel-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #483C2C;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: background 0.3s, transform 0.2s;
}

.fixed-tel-btn:hover {
  background: #2f261b;
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .fixed-tel-btn {
    display: none; /* PCでは非表示 */
  }
}

.tel-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9999 !important;
}

nav ul {
  z-index: 500;
}

/* ===== メニュー展開時に電話ボタンが隠れないようにする ===== */
nav ul {
  z-index: 500 !important;
}

.tel-btn {
  z-index: 9999 !important;
  position: fixed !important;
}
.parking-info {
  background: #f9f3e7;        /* ほんのり目立つ背景 */
  border-left: 5px solid #c49b63;  /* 強調ライン */
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 6px;
  color: #4a3b2a;
  font-weight: 500;
  line-height: 1.6;
}
.notice-block {
  color: #b30000;
  font-weight: 700;
  line-height: 1.6;
}
.notice-text {
  text-align: center;
  line-height: 1.7;
}
.notice-text {
  text-align: center;
  background: #fff8d8;
  padding: 12px;
  border-radius: 6px;
}
.notice-text {
  text-align: center;
  color: #c43131;
}
.calendar-two {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.calendar-two iframe {
  width: 48%;
  min-width: 320px;
  height: 500px;
  border: 0;
}

@media (max-width: 768px) {
  .calendar-two iframe {
    width: 100%;
  }
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed #ccc;
  font-family: 'Georgia', serif;
  font-size: 16px;
}

.menu-name {
  margin-right: 10px;
}

.menu-price {
  font-weight: bold;
  white-space: nowrap;
}
/* メニューの数字を Segoe UI & 細めに調整 */
.menu-section .menu-price {
  font-family: "Segoe UI", sans-serif !important;
  font-weight: 250 !important; /* ← これで細くなる */
}
.map-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.map-item {
  flex: 1;
}

.map-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* スマホでは縦並びにする */
@media (max-width: 768px) {
  .map-container {
    flex-direction: column;
  }
}
html {
  scroll-behavior: smooth;
}

.photo-box {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 30px auto;
  background: #e8e2d6;              /* BARBERカラーに合う仮背景 */
  border: 2px dashed #b8a78a;       /* 写真枠の線 */
  border-radius: 12px;
}

.about-photo {
  width: 100%;
  max-width: 450px;   /* ← 画像の最大幅（おしゃれなサイズ） */
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;     /* ← 中央寄せ */
}
.style-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
}

.style-item img {
  width: 100%;
  max-width: 400px;   /* ← ここを固定することでズレない */
  height: auto;
  border-radius: 12px;
}

.style-text {
  flex: 1;
  max-width: 500px;
}

.concept {
  display: block !important;
  width: 100%;
  background-color: #fffaf0;
  padding: 60px 0;
}

.concept-inner {
  display: block !important;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 20px;
  box-sizing: border-box;
}

.style-item {
  width: 100%;
  box-sizing: border-box;
}


/* 共通レイアウト */
.style-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 50px 0;
}

.style-item img {
  width: 50%;
  object-fit: cover;
  border-radius: 8px;
}

.style-text {
  width: 50%;
  text-align: left;
  line-height: 1.8;
}

/* 左画像／右文章 */
.left-img {
  flex-direction: row;
}

/* 右画像／左文章 */
.right-img {
  flex-direction: row-reverse;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .style-item {
    flex-direction: column;
  }
  .style-item img,
  .style-text {
    width: 100%;
  }
}
/* コンセプト全体 */
.style-section {
  padding: 80px 20px;
}

.concept-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 1ブロック（写真＋文章） */
.style-item {
  display: flex;
  align-items: flex-start; /* ← ここを flex-start に！ */
  gap: 100px;
  margin-bottom: 80px;
}

/* 写真左パターン */
.style-item.left-img {
  flex-direction: row;
}

/* 写真右パターン */
.style-item.right-img {
  flex-direction: row-reverse;
}

/* 写真 */
.style-item img {
  width: 45%;
  max-width: 500px;
  border-radius: 12px;
}

/* 文章 */
.style-text {
  width: 55%;
  line-height: 1.8;
  font-size: 16px;
  margin-top: 40px;
}
