:root{
  --maxw: 480px;
  --gold: #c99a2a;
  --black: #070707;
  --wine: #c95d59;
  --navy: #121a3a;
}

/* ===== Base ===== */
*{ box-sizing: border-box; }
html, body{
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.7;
  overflow: hidden; /* 背景固定＋中身だけスクロール */
  -webkit-text-size-adjust: 100%;
}
img{ max-width:100%; height:auto; display:block; }

/* ===== BG fixed ===== */
.background{
  position: fixed;
  inset: 0;
  background: url('../img/main-visual.jpg') center/cover no-repeat;
  z-index: 0;
  filter: saturate(1.05);
}
.background::after{
  content:"";
  position:absolute;
  inset:0;
  /*背景黒のせ*/
  /*background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.55));*/
}

/* ===== Scroll area ===== */
.content{
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;

  /* ★中央寄せの本体 */
  display: flex;
  justify-content: center;
}

/* ===== Center paper ===== */
.inner{
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: #fff;

  /* ★ここ重要 */
  box-shadow: 0 0 40px rgba(0,0,0,.25);
}

/* ===== Section common ===== */
.sec{ padding: 26px 18px; }
.center{ text-align:center; }

/* ===== image title ===== */
.imgTitle{
  margin: 0 0 14px;
  display: grid;
  place-items: center;
}
.imgTitle img{
  width: min(430px, 100%);
  height: auto;
}
.imgTitle--onBlack img{ filter: drop-shadow(0 10px 18px rgba(0,0,0,.35)); }
.imgTitle--onWine img{ filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }

/* ===== Hero (3 columns) ===== */
.hero{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:0;
}
.hero__cell{
  aspect-ratio: 1 / 1;
  overflow:hidden;
  background:#ddd;
}
.hero__cell img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== Kodawari (gold) ===== */
.kodawari{
  background: var(--gold);
  color:#1a1a1a;
}
.circlePhoto{
  width: 100%;
  margin: 10px auto 10px;
}
.circlePhoto img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.kodawari__lead{
  margin: 0 0 14px;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}
.noteBox{
  /*background: rgba(255,255,255,.35);*/
  border-radius: 10px;
  padding: 12px 12px;
}
.noteBox p{
  writing-mode: vertical-rl;   /* 右から左へ縦書き */
  text-orientation: upright;   /* 英数字も立てる */
  font-family: "Noto Serif JP", sans-serif;
  line-height: 2.2rem;
  font-size: 1.2em;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding: 1.2em 0;
}
.noteBox img{
  width: 100%;
  height: auto;
}
.kodawari__shop{
  margin: 14px 0 0;
  /*border-radius: 10px;*/
  overflow:hidden;
  /*box-shadow: 0 10px 25px rgba(0,0,0,.18);*/
  letter-spacing: 0.05em;
  text-align: center;
}

/* ===== Osusume (black) ===== */

.recommendTitleArea {
  position: relative;
  height: 150px;
  margin: -30px 0 48px;
  text-align: center;
  overflow: hidden;
  background: transparent;
}

.recommendTitleArea::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -250px;
  transform: translateX(-50%);
  width: 350px;
  height: 370px;
  background: #c99a2a;
  border-radius: 50%;
  z-index: 1;
}

.recommendTitle {
  position: relative;
  z-index: 2;
  margin: 0;
  padding-top: 62px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.2;
  white-space: nowrap;
}

.osusume{
  position: relative;
  background: var(--black);
  color:#fff;
  overflow: hidden;
}
.menuItem{
  padding: 20px 0 24px;
  /*border-top: 1px solid rgba(255,255,255,.12);*/
}
.menuItem:first-of-type{
  border-top:0;
  padding-top:0;
}
.menuItem__no{
  font-size: 44px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  opacity: .95;
}
.menuItem__name{
  margin: 8px 0 14px;
}
.menuItem__nameImg{
  width: min(240px, 100%);
  height: auto;
}

/* 金リング（ブラシ画像） */
.ringPhoto{
  position: relative;
  display:grid;
  place-items: center;
  margin: 0 0 14px;
  padding: 10px 0;
}
.ringPhoto__brush{
  position:absolute;
  width: 270px;         /* ブラシ画像の大きさ */
  max-width: 86%;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.45));
}
.ringPhoto__img{
  max-width: 100%;
}

.menuItem__desc{
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.82);
  font-family: serif;
}

/* 魚アイコン（装飾） */
.osusume__fish{
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 110px;
  opacity: .85;
  pointer-events: none;
  user-select: none;
}

/* ===== Teiban (wine) ===== */


.teibanIntro {
  position: relative;
  background: linear-gradient(
    to bottom,
    #070707 0%,
    #070707 42%,
    #c95d59 42%,
    #c95d59 100%
  );
  color: #fff;
  padding: 54px 18px 36px;
}

.teibanIntro__inner {
  position: relative;
  min-height: 270px;
}

.teibanIntro__title {
  position: absolute;
  right: 28px;
  top: 0;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.teibanIntro__text {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 28px;
  padding-right: 90px;
}

.teibanIntro__text p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 2.1;
  letter-spacing: 0.18em;
}

.teiban {
  position: relative;
  background: var(--wine);
  color: #fff;
  padding-bottom: 85px;
}

.teibanFish {
  position: absolute;
  right: 10px;
  bottom: -120px; /* ←かなり下げる */
  width: 180px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
}

.teibanGrid{
  display:grid;
  gap: 60px;
}

.teibanCard{
  position:relative;
  display:block;
  border-radius: 10px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.teibanCard img{
  width:100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
}

.teibanCard__label{
  position:absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  font-size: 12px;
  letter-spacing: .08em;
  white-space: nowrap;
}

/* ===== Shop ===== */
.shop{
  position: relative;
  background: #000;
  color: #fff;
  padding-bottom: 40px;
  overflow: hidden;
}

.shopFish {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 170px;
  height: auto;
  z-index: 3;
  pointer-events: none;
  user-select: none;
  opacity: 0.95;
}

.shopCard{
  background: var(--navy);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  margin: 100px 0 0; /* ←ここ追加 */
  position: relative; 
  z-index: 2;
}

.shopList{ margin:0; }

.shopRow{
  display:grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.shopRow:last-child{ border-bottom:0; }

.shopRow dt{
  font-size: 12px;
  opacity: .85;
  letter-spacing: .12em;
}
.shopRow dd{
  margin:0;
  font-size: 13px;
  line-height: 1.7;
}
.shopRow a{ color:#fff; text-decoration:none; }

.follow{
  margin-top: 16px;
  display:grid;
  gap: 10px;
  place-items:center;
}
.follow__ttl{
  font-style: italic;
  letter-spacing: .12em;
  opacity: .9;
}
.follow__btn{
  display:inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
}

.brandEnd{
  margin-top: 18px;
  display:grid;
  place-items:center;
  gap: 10px;
}
.brandEnd img{ width: 160px; }
.copyright{
  font-size: 11px;
  opacity: .55;
  padding-bottom: 10px;
}


.shopInfo {
  background: #000;
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.shopInfoCard {
  width: min(530px, 90%);
  margin: 0 auto;
  padding: 48px 36px;

  border-radius: 18px;

  background: linear-gradient(
    to bottom,
    #101d5a 0%,
    #14246a 55%,
    #d9d9dd 100%
  );

  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.shopInfoBlock {
  margin-bottom: 42px;
}

.shopInfoTitle {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.shopInfoBlock p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shopInfoTel {
  font-size: 24px;
  font-weight: 700;
}

.shopInfoLink {
  display: inline-block;
  margin-top: 10px;

  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.shopInfoFollow {
  text-align: center;
  margin-top: 50px;
}

.followTitle {
  margin: 0 0 18px;
  font-size: 54px;
  font-style: italic;
  font-weight: 500;
  color: #f2dd63;
  font-family: "Times New Roman", serif;
}

.instagramBtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #333;
  text-decoration: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}

.instagramBtn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


/* ===== Responsive small ===== */
@media (max-width: 360px){
  .menuItem__no{ font-size: 40px; }
  .ringPhoto__img{ width: 100%; }
  .osusume__fish{ width: 96px; }
}


.recommendBack{
  position:fixed;
  top:20px;
  left:20px;
  z-index:999;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.floatingMenuBtn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* スマホ */
@media (max-width: 768px) {
  .shopInfoCard {
    padding: 36px 24px;
  }

  .shopInfoTitle {
    font-size: 28px;
  }

  .shopInfoBlock p {
    font-size: 16px;
  }

  .followTitle {
    font-size: 42px;
  }

  /* 縦書き文章を中央へ */
  .noteBox {
  	width: 100%;
  	padding: 12px 0;
  	overflow: hidden;
  }

  .noteBox p {
  	width: 100%;
  	max-width: 100%;
  	margin: 0 auto;

  	font-size: 1.05em;
  	line-height: 2.05rem;
  	letter-spacing: 0.14em;

  	box-sizing: border-box;
  }
	
  /* TOPへ戻る */
  .recommendBack {
      top: 12px;
      left: 12px;
      padding: 8px 10px;
      background: rgba(0, 0, 0, .7);
      font-size: 12px;
      line-height: 1;
      border-radius: 2px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  }
  .floatingMenuBtn {
     right: auto;
     left: 50%;
     bottom: 16px;
     transform: translateX(-50%);
     width: calc(100% - 32px);
     max-width: 360px;
     padding: 14px 20px;
     text-align: center;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: .1em;
     background: rgba(17, 17, 17, .95);
     box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
  }
  .recommendTitleArea {
  	margin-top: -26px;
  }
  .menuItem__desc br {
  	display: none;
  }

  .teibanIntro {
  	padding: 50px 14px 15px;

  	/* 黒い部分を少し短く */
  	background: linear-gradient(
  		to bottom,
  		#070707 0%,
  		#070707 32%,
  		#c95d59 32%,
  		#c95d59 100%
  	);
  }
  .teibanIntro__inner {
  	min-height: 300px;
  }

	/* 定番メニュー */
	.teibanIntro__title {
		right: 8px;
		top: 0px;
		font-size: 35px;
		line-height: 1.15;
		letter-spacing: .12em;
	}

	/* 説明文 */
	.teibanIntro__text {
		justify-content: center;
		gap: 7px;

		/* タイトル分だけ右側を空ける */
		padding-right: 50px;
	}
	.teibanIntro__text p {
		font-size: 18px;
		line-height: 1.8;
		letter-spacing: .12em;
	}

   .instagramBtn img {
       width: 60px;
       height: 60px;
       object-fit: contain;
   }
}
