/* debag
* {
  outline: 1px solid red;
}
*/

/* デフォルト（PC用） */
.pc-content { display: block; }
.sp-content { display: none; }

/* スマホ用（画面幅が840px以下の場合） */
@media screen and (max-width: 840px) {
  .pc-content { display: none; }
  .sp-content { display: block; }
}


.pb50{
  padding-bottom: 50px;
}

.pb100{
  padding-bottom: 100px;
}

.mb50{
  margin-bottom: 50px;
}

.mb100{
  margin-bottom: 100px;
}




/* ===== Base ===== */
:root{
  --sidebar-w: 250px;         /* PSD見て調整OK */
  --bg: #f3f1ed;
  --paper: #f7f5f1;
  --ink: #111;
  --muted: #6b655c;
  --line: rgba(17,17,17,.12);
  --card: #ffffff;
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%;overflow-x: hidden; }
body{
  margin:0;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--ink);
  background: var(--bg);
  
}

/* スムーススクロール（好みで） */
html{ scroll-behavior: smooth; }

/* 画像 */
img{ max-width:100%; height:auto; display:block; }

/* アンカー位置（固定ヘッダー対策：SP） */
:target{ scroll-margin-top: 72px; }

/* ===== Layout ===== */
.sidebar{
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: #0f0f10;
  color: #fff;
  z-index: 20;
  font-family:"Zen Kaku Gothic New","Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP",sans-serif;
}

.sidebar__inner{
  height: 100vh;
  padding: 22px 18px;
  display:flex;
  flex-direction:column;
  gap: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  padding-bottom: 40px;
 

	/* Firefox */
	scrollbar-width: thin;
	scrollbar-color: #666 transparent;
}

/* Chrome / Edge / Safari */
.sideNav::-webkit-scrollbar {
	width: 4px;
}

.sideNav::-webkit-scrollbar-track {
	background: #1a1a1a;
}

.sideNav::-webkit-scrollbar-thumb {
	background: #666;
	border-radius: 4px;
}

.sideNav::-webkit-scrollbar-thumb:hover {
	background: #888;
}

.sidebar__inner::-webkit-scrollbar {
  width: 4px;
}

.sidebar__inner::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 10px;
}

.sidebar__inner::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar__brand{
  text-decoration:none;
  color:#fff;
  display:block;
  padding: 6px 4px;
}
.sidebar__brandSub{
  display:block;
  font-size: 12px;
  letter-spacing: .12em;
  opacity:.8;
}
.sidebar__brandMain{
  display:block;
  font-size: 26px;
  letter-spacing: .12em;
  margin-top: 8px;
}
.sidebar__nav{
  display:flex;
  flex-direction:column;
  gap: 20px;
  margin-top: 8px;
  font-weight: 600;
}
.sidebar__nav a{
  color:#fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: .12em;
  opacity:.88;
}
.sidebar__nav a:hover{ opacity:1; }

.sidebar__cta{
  padding-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .70);
  padding-bottom: 20px;
}

.sidebar__btn{
  display:block;
  width:100%;
  padding: 10px 12px;
  text-decoration:none;
  font-size: 13px;
  letter-spacing:.08em;
  text-align:center;
}
.snsMini{ color:#fff; text-decoration:none; font-size: 12px; opacity:.8; }
.snsMini:hover{ opacity:1; }

.site{
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== SP Header / Menu ===== */
.spHeader{
  display:none;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247,245,241,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  align-items:center;
  justify-content:space-between;
}
.spHeader__brand{
  text-decoration:none;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.spHeader__sub{ display:block; font-size: 16px; letter-spacing:.12em; color: var(--muted);margin-right: 10px; }
.spHeader__main{ display:block; font-size: 24px; letter-spacing:.12em; margin-top: 2px; }


.spHeader__logo{
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.hamburger{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 6px 8px;
  cursor: pointer;

  display: grid;
  grid-template-columns: 32px auto;
  grid-template-rows: repeat(3, 4px);
  column-gap: 8px;
  row-gap: 4px;
  align-items: center;
}

.hamburger__line{
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
  grid-column: 1;
}

.hamburger__label{
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;

  font-size: 10px;
  letter-spacing: .12em;
  color: #fff;
}


/* Off-canvas */
.no-scroll{ overflow:hidden; }
.spMenu{
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events:none;
}
.spMenu__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
  border:0;
  opacity:0;
  transition: opacity .25s ease;
}
.spMenu__panel{
  position:absolute;
  top:0; left:0;
  width: min(86vw, 340px);
  height: 100%;
  background: #111;
  color:#fff;
  padding: 22px 18px;
  transform: translateX(-102%);
  transition: transform .32s ease;
  outline:none;
  display:flex;
  flex-direction:column;
  gap: 18px;
  z-index: 2;
}
.spMenu__nav{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.spMenu__nav a{
  color:#fff;
  text-decoration:none;
  font-size: 14px;
  letter-spacing:.10em;
  opacity:.9;
}
.spMenu__nav a:hover{ opacity:1; }
.spMenu__foot{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.spMenu.is-open{ pointer-events:auto; }
.spMenu.is-open .spMenu__backdrop{ opacity:1; }
.spMenu.is-open .spMenu__panel{ transform: translateX(0); }


.spMenu__backdrop{
  z-index: 1;
}


@media (min-width: 841px){
  .spMenu{
    display: none;
  }
}

/* ===== Common ===== */
.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.section{
  position: relative;
  padding: 70px 0;
}

.con{
  padding: 110px 0 80px;
}

.section--concept::before,
.section--recommend::before,
.section--menu::before{
  content:"";
  position:absolute;
  inset: 0;
  background-image: url("/assets/img/brush_gold.png");
  background-repeat: no-repeat;
  background-size: 520px auto;
  opacity: .22;
  pointer-events:none;
  transform: translateY(12px);
}
.section--concept::before{ background-position: 10% 18%; }
.section--recommend::before{ background-position: 88% 70%; }
.section--menu::before{ background-position: 15% 80%; }

.vertical{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .14em;
  line-height: 1.8;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-size: 13px;
  letter-spacing:.08em;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn__arrow{ font-size: 18px; line-height: 1; }
.btn--dark{
  background: #111;
  color:#fff;
}
.btn--light{
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--light:hover{ border-color: rgba(17,17,17,.28); }

.btn i {
  margin-left: 12px;
  font-size: 18px;
}


.card{
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px;
}
.card__title{
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: .10em;
}

/* ===== HERO ===== */
.hero{
	position: relative;
	background: var(--bg);
	padding: 18px 50px 0;
}


/* 写真エリア */
.hero__media{
	position: relative;
	height: 680px;
	overflow: hidden;
	border-radius: 26px;
}


/* 各スライド*/
.hero__slide{
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .3s ease;
	
}

.hero__slide.is-active{
	opacity: 1;
}



/* スライド画像 */
.hero__slide img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}


/* 中央ロゴ */
.hero__logo{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	width: 415px;
	pointer-events: none;
}

.hero__logo img{
	display: block;
	width: 100%;
	height: auto;
}


/* 魚 */
.hero__fish{
	position: absolute;
	right: 25px;
	bottom: -85px;
	width: 300px;
	z-index: 5;
	pointer-events: none;
	animation: fishFloat 4s ease-in-out infinite;
}

@keyframes fishFloat {

	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}

	25% {
		transform: translate(-18px, -18px) rotate(-2deg);
	}

	50% {
		transform: translate(-50px, -6px) rotate(0deg);
	}

	75% {
		transform: translate(-16px, 15px) rotate(2deg);
	}

}

.hero__fish img{
	width: 100%;
	height: auto;
	display: block;
}

/* ===== HERO SLIDER ===== */

.hero__slider,
.hero__slider .splide__track,
.hero__slider .splide__list,
.hero__slider .splide__slide {
	width: 100%;
	height: 100%;
}

.hero__slider .splide__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero__slider .splide__slide {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero__slider .splide__slide::marker {
	content: "";
}

.hero__slider .splide__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* =========================
   TABLET
========================= */

@media (max-width: 980px){

	.hero__fish{
		width: 150px;
		bottom: -14px;
		right: 16px;
	}

}


/* =========================
   SP
========================= */

@media screen and (max-width: 840px){

	.spHeader__logo{
		font-size: 18px;
		letter-spacing: 0.08em;
		color: #fff;
		white-space: nowrap;
		line-height: 1;
	}


	.hero{
		position: relative;
		padding: 20px 0 0px;
	}


	.hero__media{
		width: 92%;
		height: 220px;
		margin: 0 auto;
		border-radius: 20px;
		overflow: hidden;
		position: relative;
		z-index: 2;
	}


    .hero__slider,
    .hero__slider .splide__track,
    .hero__slider .splide__list,
    .hero__slider .splide__slide {
        height: 100%;
    }


    .hero__slider .splide__slide {
        overflow: hidden;
        border-radius: 20px;
    }
    
	.hero__slider .splide__slide img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}


	.hero__logo{
		position: absolute;
		left: 50%;
		top: 130px;
		transform: translate(-50%, -50%);
		width: 180px;
		z-index: 4;
	}


	.hero__fish{
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: 190px;
		margin: 12px auto 0;
		z-index: 5;
		pointer-events: none;
	}

	.hero__fish img{
		width: 100%;
		display: block;
	}

}



/* ===== CONCEPT ===== */
.concept{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  align-items:center;
}
.concept__catch{
  margin:0;
  font-size: clamp(26px, 2vw, 32px);
  color: var(--ink);
  /*font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;*/
  font-family: "Hiragino Mincho ProN","Noto Serif JP", "游明朝", "Yu Mincho", serif;
  padding-right: 0.4em;
  font-weight: 600;
  letter-spacing: 0.5rem;
}
.concept__frame{
  position: relative;
  height: 535px;          /* ← 写真と同じ高さにする */
  border-radius: 26px;
  overflow: hidden;       /* ← はみ出した黒を切る */
  background: transparent;
}
.concept__photo,
.concept__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept__overlay{
  background: linear-gradient(
    to right,
    rgba(0,0,0,.12),
    rgba(0,0,0,0)
  ); /* ← “奥行き”だけ残す */
}
.concept__copy{
  background: rgba(0,0,0,.10); /* ← 0.18より薄く */
  padding: 12px 12px;
}

/* ===== RECOMMEND ===== */
.recommend{
  display:grid;
  grid-template-columns: 1.4fr 0.55fr;
  gap: 40px;
  align-items:center;
}
.recommend__photo{
  border-radius: 26px;
  overflow:hidden;
  /*border: 1px solid var(--line);*/
  /*background:#000;*/
}
.recommend__photo img{
  width:100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.recommend__body{
  display:flex;
  flex-direction:column;
  gap: 16px;
  align-items:flex-end;
}
.recommend__title{
  margin:0;
  font-size: clamp(26px, 2vw, 32px);
  color: var(--ink);
  /*font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;*/
  font-family: "Hiragino Mincho ProN","Noto Serif JP", "游明朝", "Yu Mincho", serif;
  padding-right: 0.4em;
  font-weight: 600;
  letter-spacing: 0.5rem;
}


/* ボタンを写真と右側にまたがる位置へ */
.recommend .btn{
  position: absolute;
  right: 70px;
  bottom: -35px;
  z-index: 3;
  
  width: 360px;
  height: 68px;
  padding: 0 26px 0 34px;
  
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  
  background: #080808;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  
  font-size: 18px;
  letter-spacing: .12em;
  
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  font-weight: 500;
  
  transition:
  transform .35s ease,
  box-shadow .35s ease,
  background .35s ease;
}

/* 矢印 */
.recommend .btn i{
  font-size: 20px;
  transition: transform .35s ease;
}

/* hover */
.recommend .btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
  background: #151515;
}

.recommend .btn:hover i{
  transform: translateX(6px);
}




/* ===== MENU CARDS ===== */
.menuGridHead{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 18px;
}
.menuGridHead__title{
  margin:0;
  font-size: 18px;
}
.menuCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menuCard{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid var(--line);
  /*background:#000;*/
  text-decoration:none;
}
.menuCard img{
  width:100%;
  height: 220px;
  object-fit: cover;
  opacity:.92;
  transition: transform .35s ease, opacity .35s ease;
}
.menuCard:hover img{
  transform: scale(1.04);
  opacity:.86;
}
.menuCard__label{
  position:absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.62);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing:.10em;
}

/* ===== INFO ===== */
.infoGrid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
  align-items:start;
}
.calendarBox{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background:#fff;
}
.infoList{
  margin:0;
  display:grid;
  gap: 12px;
}
.infoList__row{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(17,17,17,.14);
}
.infoList__row:last-child{ border-bottom: 0; padding-bottom: 0; }
.infoList dt{
  font-size: 12px;
  letter-spacing:.10em;
  color: var(--muted);
}
.infoList dd{
  margin:0;
  font-size: 13px;
  line-height: 1.7;
}
.infoList a{ color: var(--ink); }


/* ===== ACCESS ===== */
.accessGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:stretch;
}
.mapBox{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background:#fff;
  height: 320px;
}
.mapBox iframe{
  width:100%;
  height:100%;
  border:0;
}
.accessSide{
  display:flex;
  flex-direction:column;
  gap: 16px;
  position:relative;
  overflow:hidden;
}
.accessSide__brand img{
  width: 160px;
}
.accessSide__btns{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.small{ font-size: 12px; color: var(--muted); }

/* ===== Footer ===== */
.footer{
  padding: 40px 0;
  /*border-top: 1px solid var(--line);*/
  background-color: #000;
  /*margin-top: 100px;*/
}
.footer__inner{
  text-align:center;
  color: #fff;
  font-size: 14px;
  letter-spacing:.06em;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  :root{ --sidebar-w: 220px; }
  .concept{ grid-template-columns: 140px 1fr; }
  .menuCard img{ height: 200px; }
}

@media (max-width: 840px){
  /* SP切替 */
  .sidebar{ display:none; }
  .spHeader{ display:flex; }
  .site{ margin-left: 0; }

  .section{ padding: 54px 0; }
  .concept{
    grid-template-columns: 1fr;
  }
  .concept__catch{
    writing-mode: horizontal-tb;
    letter-spacing:.08em;
    line-height:1.8;
    font-size: 30px;
    text-align: center;
  }
  .concept__photo img{ height: 260px; }
  .concept__copy{
    writing-mode: horizontal-tb;
    letter-spacing:.06em;
    line-height:1.9;
    font-size: 13px;
  }

  .recommend{
    grid-template-columns: 1fr;
  }
  .recommend__body{
    align-items:flex-start;
  }
  .recommend__title{
    writing-mode: horizontal-tb;
    letter-spacing:.08em;
    line-height:1.8;
  }

  .menuGridHead__title{
    writing-mode: horizontal-tb;
    letter-spacing:.08em;
    line-height:1.8;
  }
  .menuCards{
    grid-template-columns: 1fr;
  }
  .menuCard img{ height: 220px; }

  .infoGrid{
    grid-template-columns: 1fr;
  }
  .accessGrid{
    grid-template-columns: 1fr;
  }
  .mapBox{ height: 280px; }

    .section--concept {
        padding-top: 25px;
    }
}

/* =========================
   金の輪っか：共通設定
   ========================= */

.has-ring{
  position: relative;
}

/* 中身は前へ */
.has-ring > *{
  position: relative;
  z-index: 1;
}

/* 輪っか共通（まだ表示しない） */
.has-ring::before,
.has-ring::after{
  content: "";
  position: absolute;
  width: 642px;
  height: 480px;
  background: url("../img/gold_ring.webp") no-repeat center / contain;
  opacity: .7;
  pointer-events: none;
  z-index: 0;
  display: none; /* ← ここ重要 */
}
/* 左側に輪っか */
.ring-left::before{
  display: block;
  left: -60px;
  top: 240px;
  transform: rotate(-10deg);
}
/* 右側に輪っか */
.ring-right::after{
  display: block;
  right: -60px;
  bottom: 40px;
  transform: rotate(12deg);
}
/* 横並びの親 */
.menuRow{
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 縦書きタイトル */
.menuRow__title{
  line-height: 1.8;
  flex-shrink: 0; /* 潰れ防止 */
  writing-mode: vertical-rl;
  margin:0;
  font-size: clamp(26px, 2vw, 32px);
  color: var(--ink);
  /*font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;*/
  font-family: "Hiragino Mincho ProN","Noto Serif JP", "游明朝", "Yu Mincho", serif;
  padding-right: 0.4em;
  font-weight: 600;
  letter-spacing: 0.5rem;
}

/* 画像3枚 */
.menuCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.menuCard{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.menuCard img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ラベル */
.menuCard__label{
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
}
@media (max-width: 768px){
  .menuRow{
    flex-direction: column;
    align-items: flex-start;
  }

  .menuRow__title{
    writing-mode: horizontal-tb;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .menuCards{
    grid-template-columns: 1fr;
  }
}

/* =========================
   INFOセクション：カード装飾を外す
   ========================= */
.section--info .card{
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.section--info .infoGrid{
  display: grid;
  grid-template-columns: 1.2fr .8fr; /* 左広め */
  gap: 56px;
  align-items: start;
}

.section--info .card__title{
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0 0 18px;
}

.section--info .calendarBox{
  margin-top: 6px;
}

.section--info .calendarBox img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px; /* ほんのり */
}

.section--info .infoList{
  margin: 0;
}

.section--info .infoList__row{
  padding: 0;
  border: 0;
  margin: 0 0 18px; /* 行間を見本寄せ */
}

.section--info .infoList__row dt{
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .08em;
}

.section--info .infoList__row dd{
  margin: 0;
  line-height: 1.9;
  opacity: .9;
}

.section--info .sns{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
}

@media (max-width: 768px){
  .section--info .infoGrid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =========================
   CALENDAR / INFO（見本寄せ）
   - カード枠なし
   - 左：カレンダー / 右：店舗情報
   ========================= */

.section--info{
  padding: 72px 0; /* 見本の“余白感” */
}

/* 2カラムの並びと間隔 */
.section--info .infoGrid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 左やや広め */
  gap: 64px;
  align-items: start;
}

/* ここだけカードを完全に無効化 */
.section--info .card{
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* 見出し（営業日カレンダー / 店舗情報） */
.section--info .card__title{
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .12em;
}

/* カレンダー画像：ただ置いてる感じに（枠なし） */
.section--info .calendarBox img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右側：店舗情報の“段落感” */
.section--info .infoList{
  margin: 0;
}

/* dl直下にdivを入れてるので、ブロックとして扱う */
.section--info .infoList__row{
  margin: 0 0 22px; /* 見本の行間 */
  padding: 0;
  border: 0;
}

.section--info .infoList__row dt{
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: .10em;
}

.section--info .infoList__row dd{
  margin: 0;
  line-height: 1.9;
}

/* 公式SNS：ピル（見本っぽい軽いボタン） */
.section--info .sns{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
}

.section--info .sns__ico{
  display: inline-block;
  line-height: 1;
}

/* スマホ：縦並び */
@media (max-width: 768px){
  .section--info{
    padding: 48px 0;
  }

  .section--info .infoGrid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== 見本寄せ：第二段 ===== */

/* セクション全体の余白（上が足りない） */
.section--info{
  padding-top: 96px;
  padding-bottom: 96px;
}

/* 左右のバランス：右を少し広げる */
.section--info .infoGrid{
  grid-template-columns: 1fr 1fr; /* まず同幅に寄せる */
  gap: 80px;
}

/* 見出しを少し下げて、文字を少し大きく */
.section--info .card__title{
  font-size: 20px;
  margin-bottom: 22px;
  letter-spacing: .14em;
}

.section--info .card__title{
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}


/* 右側の行間をもう少しゆったり */
.section--info .infoList__row{
  margin-bottom: 26px;
}
.section--info .infoList__row dd{
  line-height: 2.0;
  font-size: 15px;
}

/* 右側の dt を見本っぽく（見出し感） */
.section--info .infoList__row dt{
  font-size: 16px;
  margin-bottom: 10px;
}

/* カレンダーの横幅を少し抑える（見本は少し小さめに見える） */
.section--info .calendarBox{
  max-width: 520px;
}

/* =========================
   section--info：見本寄せ（最終）
   ========================= */

.section--info{
  padding: 96px 0;              /* 見本は上下余白が大きい */
}

/* 2カラムのバランス（見本は右がやや広く見える） */
.section--info .infoGrid{
  display: grid;
  grid-template-columns: 685px 1fr; /* 左：固定幅で小さめに見せる */
  gap: 20px;
  align-items: start;
}

/* カード装飾は全部OFF */
.section--info .card{
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* 左：営業日カレンダーの見出し */
.section--info .card:first-child .card__title{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .25em;
  margin: 0 0 18px;
}

/* 左：カレンダー画像は少し小さめ＆ブロック */
.section--info .calendarBox{
  max-width: 750px;  /* 見本のサイズ感に寄せる */
}
.section--info .calendarBox img{
  width: 100%;
  height: auto;
  display: block;
}

/* 右：「店舗情報」大見出しは見本に無いので消す */
.section--info .card:last-child > .card__title{
  display: none;
}

/* 右：各ブロックの余白 */
.section--info .infoList{
  margin: 0;
}
.section--info .infoList__row{
  margin: 0 0 10px;  /* 見本は段落感が強い */
  padding: 0;
  border: 0;
}

/* 右：小見出し（営業時間/定休日/お問い合わせ/公式SNS） */
.section--info .infoList__row dt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .10em;
  margin: 0 0 10px;
}

/* 右：本文 */
.section--info .infoList__row dd{
  margin: 0;
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 0.1em;
}

/* お問い合わせのリンク（見本っぽく） */
.section--info .infoList__row a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 公式SNS：ピルボタン（複数並んでもOK） */
.section--info .sns{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  margin-right: 12px; /* ボタン同士の間隔 */
}

/* SP */
@media (max-width: 900px){
  .section--info .infoGrid{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section--info .calendarBox{
    max-width: 560px;
  }
  .section--info{
    padding: 50px 0;              /* 見本は上下余白が大きい */
  }
}

/* =========================
   section--info 右側：表レイアウトを解除して縦積みにする
   ========================= */

.section--info .infoList__row{
  display: block !important;     /* ← 横並び(grid/flex)を潰す */
}

.section--info .infoList__row dt,
.section--info .infoList__row dd{
  display: block;
  width: auto !important;
  float: none !important;
}

.section--info .infoList__row dt{
  margin: 0 0 10px !important;   /* 見出し→本文の余白 */
  font-weight: 600;
  letter-spacing: .10em;
  font-size: 24px;
  color: #000;
}

.section--info .infoList__row dd{
  margin: 0 0 26px !important;   /* 次の項目までの余白 */
  line-height: 2.0;
}


/* 公式SNSだけ上書き */
.section--info .snsWrap{
  display: flex !important;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.section--info .snsWrap .instagramBtn{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
}

.section--info .snsWrap .instagramBtn img{
  width: 100%;
  display: block;
  object-fit: contain;
}

.section--info .snsWrap .instagramBtn:hover{
  transform: translateY(-2px);
  opacity: .8;
  transition: .3s;
}

/* =========================
   ACCESS 左右レイアウト
========================= */

.accessLayout{
  display: grid;
  grid-template-columns: 520px 560px; /* 左を広く、地図を少し小さく */
  gap: 60px;
  align-items: start;
}

.accessText{
  padding-top: 10px;
}

.accessTitle{
  font-weight: 400;
  font-size: 38px;
  margin-bottom: 40px;
  letter-spacing: .08em;
  font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;

}

.accessBlock{
  margin-bottom: 36px;
}

.accessLabel{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 14px;
}

.accessDesc{
  font-size: 16px;
  line-height: 2;
}

.accessMap{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.accessMap img{
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.accessText{
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.accessItem{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: start;
}

.accessLabel{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 38px;
  padding: 8px 18px;

  border: 1px solid #111;
  background: rgba(255,255,255,.25);

  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
}

.accessIcon{
  font-size: 15px;
  line-height: 1;
}

.accessDesc{
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
  font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

.accessDesc p{
  margin: 0 0 14px;
}

.accessDesc small{
  font-size: 12px;
  letter-spacing: .05em;
}

.num{
  color: #c94b4b;
  font-weight: 600;
  margin-right: 4px;
}


@media (max-width: 840px){

  html,
  body{
    background: #000;
  }
  .section,
  .hero{
    background: var(--bg);
  }
  .site{
    background: #000;
    margin-left: 0;
  }

  .spHeader{
    background: #000 !important;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .spHeader__brand,
  .spHeader__sub,
  .spHeader__main,
  .hamburger__label{
    color: #fff !important;
  }

  .hamburger__line{
    background: #fff !important;
  }

  .footer{
    background: #000 !important;
    color: #fff;
    padding: 20px 0;
    margin-top: 0px;
  }

}


@media screen and (max-width: 840px){

  .section--recommend{
    padding: 0px 0 15px;
  }

  .section--recommend .container{
    padding: 0 18px;
  }

  .recommend{
    display: block;
    position: relative;
  }

  .recommend__photo{
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
  }

  .recommend__photo img{
    width: 100%;
    height: auto;
    display: block;
  }

  .recommend__body{
    position: relative;
    display: block;
    margin-top: 22px;
  }

  .recommend__title{
    writing-mode: horizontal-tb;
    line-height: 1.6;
    letter-spacing: .1em;
    font-size: 20px;
    text-align: center;
    margin: 0 0 18px;
  }

  .recommend .btn{
    position: static;
    width: 100%;
    height: 75px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 16px;
  }

  .recommend .btn i{
    font-size: 16px;
  }
}

.pcOnly{
  display: inline;
}

@media screen and (max-width: 840px){
  .pcOnly{
    display: none;
  }
}

@media screen and (max-width: 840px){
   .section--info .infoList__row {
       margin: 0 0 30px;
       padding: 0;
       border: 0;
   }
  .section--info .infoList__row dt{
    margin: 0 0 10px !important;   /* 見出し→本文の余白 */
    font-weight: 600;
    letter-spacing: .10em;
    font-size: 24px;
    color: #000;
  }
  .section--info .infoList__row dd{
    margin: 0 0 26px !important;   /* 次の項目までの余白 */
    line-height: 1.5;
    font-size: 17px;
  }
  .section--info .calendarBox{
    width: 100%;
    max-width: none;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  .section--info .calendarBox iframe{
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
  }
}

@media screen and (max-width: 840px){

  .snsWrap{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
  }

  .snsWrap .instagramBtn{
    display: block;
    width: 100%;
  }

  .section--info .snsWrap .instagramBtn img{
    display: block;
    width: 90%;
    height: auto;
  }
}

@media screen and (max-width: 840px){
  .mart80{
    margin-top: 80px;  
  }

  .accessLayout{
    display: block;
    grid-template-columns: 520px 560px; /* 左を広く、地図を少し小さく */
    gap: 60px;
    align-items: start;
  }
  .accessText{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .accessItem{
    display: block;
    padding-bottom: 30px;
  }

  .accessLabel{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    max-width: 200px;
    height: 42px;
    border: 1px solid #222;
    font-size: 17px;
    margin-bottom: 12px;
  }

	.accessTitle {
	    font-weight: 400;
	    font-size: 30px;
	    margin-bottom: 40px;
	    letter-spacing: .08em;
	    font-family: "UD デジタル 教科書体 N", "UD Digi Kyokasho N-R", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
	}

  .accessIcon{
    font-size: 14px;
    line-height: 1;
  }

  .accessDesc{
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .0em;
  }

  .accessDesc small{
    display: block;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.8;
  }

  .accessDesc p{
    margin: 0 0 10px;
  }

  .accessDesc .num{
    margin-right: 4px;
    color: #b33;
    font-weight: 600;
  }
}
@media screen and (max-width: 840px){

  .spMenu__panel{
    width: 82vw;
    max-width: 340px;
    padding: 84px 26px 36px;
    background: #0b0b0b;
    overflow-y: auto; /* 追加 */
  }

  .spMenu__nav{
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .spMenu__nav a{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.16);

    color: #fff;
    font-size: 16px;
    letter-spacing: .12em;
    text-decoration: none;
  }

  .spMenu__nav a::after{
    content: "›";
    font-size: 22px;
    line-height: 1;
    opacity: .7;
    margin-left: 12px;
  }

  .spMenu__foot{
    margin-top: 34px;
    gap: 16px;
    margin-top: 40px;
  }

  .spMenu__foot .btn{
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 13px;
    letter-spacing: .12em;
  }

  .spMenu__foot .snsMini{
    display: block;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    letter-spacing: .1em;
    text-decoration: none;
  }
}

/* 開いた時に × にする */
.hamburger{
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger__line{
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s ease;
}

/* 3本線の位置 */
.hamburger__line:nth-child(1){
  transform: translateY(-6px);
}

.hamburger__line:nth-child(2){
  transform: translateY(0);
}

.hamburger__line:nth-child(3){
  transform: translateY(6px);
}

/* MENU文字 */
.hamburger__label{
  position: absolute;
  right: -18px;
  font-size: 10px;
  letter-spacing: .08em;
  color: #fff;
}

.sidebarMenu {
    margin-bottom: 5px;
}

.sidebarMenu__title {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebarMenu__sub {
    padding-left: 10px;
}

.sidebarMenu__sub a {
    display: block;
    padding: 4px 0;
    font-size: 13px;
    opacity: .8;
}

.menuItem__image {
	cursor: pointer;
}

.imageModal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.imageModal.is-open {
	display: block;
}

.imageModal__bg {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .75);
}

.imageModal__content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: min(650px, 90vw);
	max-height: 85vh;
}

.imageModal__img {
	display: block;
	width: 100%;
	max-height: 80vh;
	object-fit: contain;
}

.imageModal__close {
	position: absolute;
	right: -10px;
	top: -45px;
	border: 0;
	background: none;
	color: #fff;
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1;
	cursor: pointer;
}


.reserveFloat {
	position: fixed;
	right: 32px;
	bottom: 32px;
	z-index: 1000;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	min-width: 180px;
	height: 58px;
	padding: 0 28px;

	background: #9bd95b;
	color: #111;
	border: 2px solid #111;
	border-radius: 999px;

	font-size: clamp(14px, 1vw, 16px);
	font-weight: 700;
	letter-spacing: .08em;
	text-decoration: none;

	box-shadow: 5px 5px 0 #111;
	transition: .25s;
}

.reserveFloat:hover {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 #111;
}

.reserveFloat i {
	font-size: clamp(16px, 1.2vw, 20px);
}

@media screen and (max-width: 767px) {

	.reserveFloat {
		right: 16px;
		left: 16px;
		bottom: 16px;

		width: auto;
		min-width: 0;
		height: 54px;

		font-size: clamp(14px, 4vw, 16px);
	}
}
.sideReserve {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: calc(100% - 30px);
	margin: 22px auto 14px;
	padding: 12px 8px;

	background: #b51f24;
	border: 2px solid #b51f24;
	color: #fff;

	font-size: clamp(13px, .9vw, 15px);
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none;

	transition: .25s;
}

.sideReserve i {
	font-size: clamp(15px, 1vw, 17px);
}

.sideReserve:hover {
	background: #fff;
	color: #b51f24;
}
