/* -------------------------------
   Global Base Style - Village3
   ------------------------------- */

/* フォント設定 */
:root {
  --font-base: "Zen Maru Gothic","Noto Sans JP","Yu Gothic","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  --font-heading: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
}

/* ================================
   Header - Instagram icon (PC only)
   ================================ */

/* ロゴ＋SNS を横並びにまとめる */
.site-header__logo-group {
  display: flex;
  align-items: center;
  gap: 12px; /* ← ロゴとSNSの距離（自由に調整可） */
}

/* SNSボタン（PCのみ） */
.site-header__sns {
  display: none;
}

@media (min-width: 769px) {
  .site-header__sns {
    display: flex;
    align-items: center;
  }

  .site-header__sns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 1;
  }

  .site-header__sns img {
    width: 32px;
    height: 32px;
    border-radius:0;
    display: block; 
  }
}


/* ================================
   Hero Section
   ================================ */
.hero-section {
  width: 100%;
  height: 100vh;
  background-color: #f8f3ed;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

.hero-copy {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy .hero-copy-jp {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.4rem;
  line-height: 2.2;

  font-weight: 500;
  color: #3b2b1c;
  text-align: center;
}

.hero-visual {
  width: 70%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; /* 画像を縦中央に配置 */
}

.hero-img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* ================================
   Responsive (SP)
   ================================ */
@media (max-width: 768px) {
  .hero-section {
    height: calc(100vh - 72px);
  }

  .hero-inner {
    flex-direction: column;
    padding-top: 56px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 1.5rem 1rem ;
  }

  .hero-copy .hero-copy-jp {
    writing-mode: horizontal-tb;
    font-size:clamp(18px, 4.8vw, 24px);
    text-align: left;
    font-weight: 700;
  }

  .hero-visual {
    width: 100%;
    align-items: flex-start;
  }

  .hero-img {
    width: 95%;
    margin-left:5%;
    height: 55vh;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }

  .hero-copy-en {
    font-size: 1rem;
    padding: 1rem;
    text-align: right;
    width: 100%;
  }
}

/* ================================
   Common
   ================================ */

.section-title {
  font-weight: 700;
  font-size:clamp(24px, 6.8vw, 32px);
  margin-bottom: var(--space-xl);
  color: var(--color-accent-ink);
  text-align: center;
}

.section-lead{
  max-width: 640px;
  margin: 0 auto;
  line-height: 2;
  font-size: 1rem;
  color: var(--color-text);
  text-align: left;
}

/* ================================
   Concept Section
   ================================ */
.section-concept {
  padding: clamp(64px, 12vw, 128px) 0;
  background: var(--color-bg);
}

.concept__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
  display: flex;
  flex-direction: column;      /* 常時1カラム */
  gap: clamp(32px, 6vw, 40px);
}

/* テキストブロック */
.concept__text {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;         /* SP時の雰囲気をベースに */
}

.concept__description {
  width: 90%;
  margin: 24px auto 0;
  line-height: 2;
  font-size: 1rem;
}

.concept__description p{
  margin-bottom:18px;
}

/* 画像ブロック：上下共通（SPのサイズ感をキープ） */
.concept__image {
  width: 90%;
  max-width: 960px;            /* PCでは横長画像を大きめに見せる */
  margin: 0 auto;
}

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

/* PC幅でテキストだけ左寄せにしたい場合 */
@media (min-width: 769px) {
  .concept__text {
    text-align: left;
  }
  .concept__description {
    width: 90%;
    margin: 24px auto 0;
  }
}

/* ================================
  Recommend Section
   ================================ */
.section-recommend {
  padding: clamp(64px, 12vw, 128px) 0;
  background:#2F1800;
  color:#fff;
}

.recommend__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 40px);
}

/* テキストブロック */
.recommend__text {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.recommend__description {
  width: 90%;
  margin: 24px auto 0;
  line-height: 2;
  font-size: 1rem;
}

.recommend__description p{
  margin-bottom:18px;
}

.recommend__description ul{
  list-style: inside;
  padding:18px 12px;
  margin-bottom:18px;
  font-size:0.8rem;
  color:#f8f4ef;
  border-top:1px dotted #f8f4ef;
  border-bottom:1px dotted #f8f4ef;
}

.recommend__description ul li{
  margin-bottom:12px;
}


/* 画像ブロック：上下共通（SPのサイズ感をキープ） */
.recommend__image {
  width: 90%;
  max-width: 960px;            /* PCでは横長画像を大きめに見せる */
  margin: 0 auto;
}

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

/* PC幅でテキストだけ左寄せにしたい場合 */
@media (min-width: 769px) {
  .recommend__text {
    text-align: left;
  }
  .recommend__description {
    width: 90%;
    margin: 24px auto 0;
  }
}

/* ================================
   Menu Book Section (3 columns)
   ================================ */

.section-menu-book {
  display: flex;
  min-height: clamp(420px, 70vh, 620px);
  background: var(--color-bg);
  color: var(--color-text);
}

/* 3カラム共通 */
.section-menu-book__col {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  box-sizing: border-box;
}

/* 両サイド：背景画像でcover */
.section-menu-book__side {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 左右の画像はCSS側で指定しておく */
.section-menu-book__side--left {
  background-image: url("assets/img/recommend_01.jpg");
}

.section-menu-book__side--right {
  background-image: url("assets/img/recommend_04.jpg");
}

/* 中央カラム */
.section-menu-book__center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 40px);
}

.section-menu-book__inner {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.section-menu-book__lead {
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.9;
}

/* メニューブック画像＋TAPボタン */
.section-menu-book__book-wrap {
  position: relative;
  display: inline-block;
}

.section-menu-book__book {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

/* TAP ボタン（点滅） */
.menu-tap-button {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  animation: menuTapPulse 1.8s ease-out infinite;
}

.menu-tap-button__label {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ffffff;
}

/* TAP ボタンの点滅アニメーション */
@keyframes menuTapPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  60% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.section-menu-book__note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-muted, #776c5f);
}

/* ================================
   Menu Modal
   ================================ */

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}

.menu-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.menu-modal__content {
  position: relative;
  z-index: 1;
  max-width: min(900px, 96vw);
  width: 100%;
  margin: 0 auto;
  background: #111;
  border-radius: 12px;
  padding: 16px 20px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.menu-modal__figure {
  margin: 8px 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-modal__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 160px); /* 画面に収まる高さ */
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

/* “紙をめくる”イメージの軽めアニメーション */
@keyframes menuPageSimple {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.menu-modal__image.is-fading {
  animation: menuPageFade 0.35s ease-in-out;
}

.menu-modal__hint {
  margin-top: 10px;
  font-size: 12px;
  color: #f5f0e8;
  text-align: center;
}

/* ===================== Responsive ===================== */

@media (max-width: 959.98px) {
  .section-menu-book {
    flex-direction: column;
  }

  .section-menu-book__col {
    max-width: 100%;
    flex-basis: auto;
  }

  .section-menu-book__side {
    min-height: 220px;
  }

  .section-menu-book__inner {
    max-width: 360px;
  }

  .section-menu-book__book {
    max-width: 230px;
  }

  .menu-modal__content {
    width: 92vw;
    padding: 16px 12px 24px;
    border-radius: 10px;
  }
}



/* ================================
   Dogs Section
================================ */

.section-dogs {
  padding:clamp(64px, 12vw, 128px) 0;
  background: #E9E2D9;
}

.dogs__block,.dogs__block_revers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  max-width: var(--container);
  margin: 0 auto clamp(32px, 7vw, 80px) auto;
  padding:var(--space-md) 0 0 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {

  .section-dogs {
    margin:auto;
    padding:var(--space-xl) 0 0 0;
  }
  .dogs__block {
    flex-direction: column;
  }

  .dogs__block_revers{
    flex-direction: column-reverse;
  }

  .dogs__image img {
    border-radius: 0;
  }
}

.dogs__image {
  flex: 1;
  min-width: 280px;
}

@media (min-width: 769px) {
  .dogs__image {
    max-width: 580px;
  }
}

.dogs__image img {
  width: 100%;
  object-fit: cover;
}

.dogs__text {
  flex: 1;
  max-width: 540px;
}

.dogs__description {
  width: 90%;
  margin: auto;
  line-height: 2;
  font-size: 1rem;
}

.dogs__desc-list{
  width: 90%;
  margin:15px auto;
  padding-left:15px;
}

/* 2段目メニューブロック用 */

.dogs__food-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 auto clamp(24px, 4vw, 40px) auto;
  flex-wrap: wrap;
}

/* 丸く切り抜く個々の画像 */
.dogs__food-img {
  width: clamp(100px, 14vw, 120px);
  height: clamp(100px, 14vw, 120px);

  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;

  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* 画像本体 */
.dogs__food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dogs__block--menu {
  align-items: center;
}

/* 右側コンテンツ：メニュー2枚＋ギャラリー */
.dogs__menu-wrapper {
  flex: 1;
  max-width: 580px;
  display: flex;
  justify-content: center;
}

/* メニュー2枚を横並びに */
.dogs__menu-images {
  display: flex;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.dogs__menu-thumb {
  flex: 1 1 0;
  max-width: 260px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 9px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.dogs__menu-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 14px rgba(0, 0, 0, 0.35);
}

/* スマホ時の中央寄せ */
@media (max-width: 768px) {
  .dogs__food-wrapper {
    gap: 20px;
    justify-content: center;
  }

  .dogs__menu-images{
    width: 90%;
  }
}



/* ================================
   Event Booth Section
   ================================ */

.section-event-booth {
  padding: 80px 16px 96px;
  background-color: var(--color-bg, #f7efe6);
}

.section-event-booth__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-event-booth__header {
  text-align: center;
  margin-bottom: 40px;
}

/* スライダー全体 */
.event-booth {
  position: relative;
  padding: 0 56px;
}

/* Swiper コンテナ */
.event-booth__slider {
  overflow: visible;
}

/* スライド */
.event-booth__slide {
  height: auto;
}

.event-booth__slider .swiper-wrapper.is-single {
  justify-content: center;
}

.event-booth__slider .swiper-wrapper.is-single .swiper-slide {
  margin-right: 0 !important; 
}


.event-booth__card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

/* 画像（縦長カード） */
.event-booth__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

/* 画像キャプション */
.event-booth__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 10px 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0)
  );
}

/* ページネーション */
.event-booth__pagination {
  margin-top: 24px;
  text-align: center;
}

.event-booth__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d9cfc4;
  opacity: 1;
  margin: 0 4px !important;
}

.event-booth__pagination .swiper-pagination-bullet-active {
  background: #4a2b10;
}

/* 矢印ボタン */
.event-booth__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #4a2b10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.event-booth__nav span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.event-booth__nav--prev {
  left: 8px;
}

.event-booth__nav--prev span {
  transform: rotate(-135deg); /* 左矢印 */
}

.event-booth__nav--next {
  right: 8px;
}

.event-booth__nav--next span {
  transform: rotate(45deg); /* 右矢印 */
}

/* ----------------- Responsive ----------------- */

@media (max-width: 1023.98px) {
  .section-event-booth {
    padding: 64px 12px 80px;
  }

  .event-booth {
    padding: 0 40px;
  }
}

@media (max-width: 767.98px) {
  .section-event-booth {
    padding: 56px 12px 72px;
  }

  .event-booth {
    padding: 0 32px;
  }

  .event-booth__card {
    border-radius: 20px;
  }

  .event-booth__title {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .event-booth__nav {
    width: 34px;
    height: 34px;
  }
}


/* 3つの使い方 ----------------------------------- */
.event-usage {
  margin-top:clamp(50px, 12vw, 80px);
}

.event-usage__title {
  font-size: clamp(24px, 6.8vw, 32px);
  margin-bottom: 28px;
  text-align: center;
}

.event-usage__items {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.event-usage__item {
  flex: 1;
  background: #2F1800;
  border-radius: 12px;
  padding: 24px 20px;
}

.event-usage__label {
  font-size: clamp(14px, 4.5vw, 18px);
  font-weight: 600;
  text-align: center;
  color: #fff;
}

/* SP 調整 */
@media (max-width: 767.98px) {
  .event-usage__items {
    flex-direction: column;
  }
  .event-usage__item {
    padding: 22px 20px;
  }

}


/* ================================
   これまでの開催実績
================================ */
.event-records {
  margin-top: 56px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
}

.event-records__title {
  text-align: center;
  margin-bottom: 24px;
  font-weight:700;
  font-size: clamp(14px, 4.5vw, 18px);
}

.event-records__columns {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.event-records__columns ul {
  flex: 1;
  list-style: none;
  padding:0;
  margin: 0;
}

.event-records__columns li {
  display: flex;
  align-items: center;
  justify-content: center;   /* ← テキスト＋アイコンを中央寄せ */
  gap: 6px;                  /* アイコンと文字の余白 */
  font-size: 14px;
  padding: 6px 0;
  list-style: none;
  text-align: center;
}

.event-records__columns li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("assets/img/paws.webp") no-repeat center / contain;
  flex-shrink: 0;
}

/* SP 調整 */
@media (max-width: 767.98px) {
  .event-records__columns {
    flex-direction: column;
    gap: 0;
  }
}

.event-cta {
  text-align: center;
  margin-top: 48px;
  background-color: #776c5f;
  padding:32px;
  color:#fff;
  border-radius: 16px;
}

.event-cta__desc {
  font-size: 14px;
}

.event-cta__tel {
  font-size: 24px;
  font-weight: 700;
  margin: 12px 0 4px;
}

.event-cta__note {
  font-size: 14px;
}


/* ----------------- SP ----------------- */
@media (max-width: 767.98px) {

  .event-usage__items {
    flex-direction: column;
  }

  .event-records__columns {
    flex-direction: column;
  }
}

/* ================================
   treats Section
================================ */
.treats {
  padding: 96px 20px 120px;
  background-color: #f6eee4;
}

.treats__head{
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.treats__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.treats__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 64px;
}

/* ================================
   Treats Grid
================================ */
.treats-grid__title {
  font-size: clamp(24px, 2.9vw, 32px);
  font-weight: 700;
  text-align: center;
  color: #4a2b15;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.treats-grid {
  width: 100%;
  display: grid;
  gap: clamp(12px, 3vw, 24px);
}

/* ▼ SP：必ず3列（110px基準） */
@media (max-width: 767px) {
  .treats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ▼ PC：4列固定（最適バランス） */
@media (min-width: 768px) {
  .treats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* カード */
.treats-card {
  position: relative;
  aspect-ratio: 1 / 1; /* 正方形固定 */
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}

.treats-card:hover {
  transform: translateY(-4px);
}

.treats-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 名前オーバーレイ */
.treats-card__name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.85));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.treats-card:hover .treats-card__name {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {

  .treats-grid__title {
    margin-bottom: 20px;
  }

  .treats-card__name {
    opacity: 0;
  }

  .treats-card:active .treats-card__name,
  .treats-card:focus .treats-card__name {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 右側ポイント */
.treats__points {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 横3列 */
  gap: 24px;
  margin-bottom: 40px; /* グリッドとの間隔 */
}

.treats-point {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.treats-point__icon {
  flex: none;
  margin-bottom: 12px;
}

.treats-point__icon img {
  display: block;
  width: 72px;
  height: 72px;
}

/* テキスト */
.treats-point__body {
  flex: 1 1 auto;
}

.treats-point__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #4a2b15;
}

.treats-point__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #5a4a3a;
}

/* =========================
   SPレイアウト
========================= */

@media (max-width: 767px) {
  .treats {
    padding: 64px 16px 80px;
  }

  .treats__title {
    font-size: 22px;
  }

  .treats__lead {
    font-size: 12px;
    margin-bottom: 32px;
  }

  .treats__content {
    flex-direction: column;
    gap: 40px;
  }

  .treats__photo {
    flex-basis: auto;
    width: 100%;
  }

  .treats__points {
    grid-template-columns: 1fr; /* 1列 */
    gap: 32px;
  }

  .treats-point {
    padding: 20px;
  }

  .treats-point__icon img {
    width: 60px;
    height: 60px;
  }

  .treats-point__title {
    font-size: 15px;
  }

  .treats-point__text {
    font-size: 12px;
  }
}

/* ================================
   Treats Extra block
================================ */

.treats-extra {
  text-align: center;
  margin-top: 48px;
}

/* ---- ラインナップブロック ---- */
.treats-lineup {
  max-width: 960px;
  margin: 0 auto 48px auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  border: 1px solid #e5ded6;
}

/* 左側のタブ */
.treats-lineup__tab {
  background: #776c5f;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* 右側の横スクロールテキスト */
.treats-lineup__items {
  padding: 16px 24px;
  font-size: 14px;
  color: #4a2b10;
  white-space: nowrap;
  overflow-x: auto;
}

/* ---- キャッチコピー ---- */
.treats-extra__coming {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.treats_marker{
  background: linear-gradient(transparent 60%, #f6e48a 60%);
}

/* ---------------- SP ---------------- */
@media (max-width: 767px) {

  .treats-lineup {
    grid-template-columns: 1fr;
  }

  .treats-lineup__tab {
    width: 100%;
  }

  .treats-lineup__items {
    white-space: normal;
  }

  .treats-extra__coming {
    font-size: 18px;
  }

}

/* ================================
   Access Section
================================ */
.access {
  background-color: #fdf7f0;
  padding: 80px 0 0 0;
}

.access__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* 店舗情報 */
.access__info {
  flex: 1;
  min-width: 280px;
}

.access__info-logo{
  width:clamp(140px, 48vw, 180px);
  margin-bottom:28px;
}

.access__info-logo img{
  width: 100%;
}

.access__address,
.access__hours {
  font-size: 14px;
  color: #3d1f0f;
  margin-bottom: 10px;
}

.access__tel-label {
  font-size: 12px;
  color: #3d1f0f;
  margin-top: 10px;
}

.access__tel-number {
  font-size: 24px;
  font-weight: bold;
  color: #3d1f0f;
}

/* アクセス手段 */
.access__detail {
  flex: 1;
  min-width: 280px;
}

.access__detail h4 {
  font-size: 14px;
  font-weight: bold;
  color: #3d1f0f;
  margin-top: 16px;
  margin-bottom: 6px;
}

.access__detail p {
  font-size: 14px;
  color: #3d1f0f;
  margin-bottom: 6px;
}

/* Google Map */
.access__map {
  margin-top: 60px;
}

.access__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  vertical-align: bottom;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .access {
    padding: 80px 0 0 0;
  }

  .access__info-logo{
    margin:40px auto ;
  }

  .access__inner {
    flex-direction: column;
    gap: 32px;
    width: 90%;
  }

  .access__tel-number {
    font-size: 20px;
  }

  .access__map iframe {
    height: 300px;
  }
}

/* ================================
   Company Section
   ================================ */
.company{
  background: #f8f1e8;                 /* サイト基調色に近い薄ベージュ */
  padding: clamp(64px, 8vw, 96px) 20px;
}

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

.company__title{
  font-family: 'Playfair Display', serif; /* 見出しは高級感のある明朝系 */
  font-size: clamp(32px, 4.5vw, 56px);
  text-align: center;
  color: #3b210e;
  letter-spacing: .02em;
  margin: 0 0 .4em;
}

/* 定義リストを2カラムのテーブル風に */
.company__list{
  display: grid;
  grid-template-columns: 220px 1fr;   
  column-gap: clamp(24px, 4vw, 48px);
  row-gap: clamp(20px, 2.5vw, 28px);
  align-items: start;
  margin: 0;
}

.company__list dt{
  color: #3b210e;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.9;
  padding: 6px 0;
}

/* 縦の仕切り線は dd の左ボーダーで再現 */
.company__list dd{
  margin: 0;
  color: #2e2a26;
  font-size: 14px;
  line-height: 1.9;
  padding: 6px 0 6px clamp(24px, 3.2vw, 40px);
  border-left: 2px solid #d8cbbf;  
  min-height: 36px;
}

/* スマホ最適化：2カラムは維持して左幅を調整、行間を広めに */
@media (max-width: 768px){
  .company__inner{ max-width: 720px; }
  .company__list{
    grid-template-columns: 120px 1fr;  
    column-gap: 18px;
    row-gap: 22px;
  }
  .company__list dd{
    padding-left: 20px; 
    border-left-width: 2px;
  }
}

/* ================================
   floating nav
   ================================ */

.floating-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 26, 21, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.floating-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1001;
}

.floating-nav a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.floating-nav img {
    width: 100%; /* アイコンのサイズ調整 */
    border-radius: 0;
}

/* スマホのみ適用 */
@media (min-width: 769px) {
    .floating-nav {
        display: none;
    }
}