


/* =====================================
   ふわふわハート（全画面散布ver）
===================================== */
/* ===== 通常PC版 ===== */
.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ff7fae;
  transform: rotate(45deg);
  border-radius: 2px;
  opacity: 0.9;
  animation: floatUp 12s linear infinite, sway 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,120,170,0.4));
}
.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: inherit;
  border-radius: 50%;
}
.heart::before {
  top: -10px;
  left: 0;
}
.heart::after {
  top: 0;
  left: -10px;
}

/* ===== スマホ最適化（ハート比率補正） ===== */
@media (max-width: 768px) {
  .heart {
    width: 14px;
    height: 14px;
    border-radius: 1.5px;
    filter: drop-shadow(0 0 3px rgba(255,120,170,0.4));
  }

  .heart::before,
  .heart::after {
    width: 14px;
    height: 14px;
  }

  /* 丸の位置をサイズ比に合わせて調整（←これが肝！） */
  .heart::before {
    top: -7px;
    left: 0;
  }
  .heart::after {
    top: 0;
    left: -7px;
  }
}


/* ランダム配置＋大きさ＆速度バラバラ */
.heart:nth-child(1)  { left: 5%;  top: 80%; animation-delay: 0s;   animation-duration: 14s; transform: scale(1) rotate(45deg); }
.heart:nth-child(2)  { left: 20%; top: 60%; animation-delay: 2s;   animation-duration: 10s; transform: scale(0.6) rotate(45deg); }
.heart:nth-child(3)  { left: 40%; top: 90%; animation-delay: 1s;   animation-duration: 12s; transform: scale(1.4) rotate(45deg); }
.heart:nth-child(4)  { left: 60%; top: 70%; animation-delay: 3s;   animation-duration: 11s; transform: scale(0.8) rotate(45deg); }
.heart:nth-child(5)  { left: 80%; top: 85%; animation-delay: 0.5s; animation-duration: 15s; transform: scale(1.2) rotate(45deg); }
.heart:nth-child(6)  { left: 10%; top: 27%; animation-delay: 1.8s; animation-duration: 9s;  transform: scale(0.9) rotate(45deg); }
.heart:nth-child(7)  { left: 30%; top: 20%; animation-delay: 4s;   animation-duration: 13s; transform: scale(1.5) rotate(45deg); }
.heart:nth-child(8)  { left: 50%; top: 50%; animation-delay: 2.3s; animation-duration: 10s; transform: scale(0.7) rotate(45deg); }
.heart:nth-child(9)  { left: 70%; top: 30%; animation-delay: 1.5s; animation-duration: 12s; transform: scale(1) rotate(45deg); }
.heart:nth-child(10) { left: 90%; top: 10%; animation-delay: 3.7s; animation-duration: 11s; transform: scale(1.3) rotate(45deg); }
.heart:nth-child(11) { left: 15%; top: 10%; animation-delay: 0.6s; animation-duration: 14s; transform: scale(1.1) rotate(45deg); }
.heart:nth-child(12) { left: 35%; top: 85%; animation-delay: 2.6s; animation-duration: 13s; transform: scale(0.8) rotate(45deg); }
.heart:nth-child(13) { left: 55%; top: 15%; animation-delay: 1.1s; animation-duration: 12s; transform: scale(1.4) rotate(45deg); }
.heart:nth-child(14) { left: 75%; top: 55%; animation-delay: 3.5s; animation-duration: 10s; transform: scale(1) rotate(45deg); }
.heart:nth-child(15) { left: 95%; top: 35%; animation-delay: 0.9s; animation-duration: 11s; transform: scale(0.9) rotate(45deg); }
.heart:nth-child(16) { left: 25%; top: 75%; animation-delay: 4.2s; animation-duration: 13s; transform: scale(1.3) rotate(45deg); }
.heart:nth-child(17) { left: 45%; top: 65%; animation-delay: 1.7s; animation-duration: 10s; transform: scale(1) rotate(45deg); }
.heart:nth-child(18) { left: 65%; top: 45%; animation-delay: 2.8s; animation-duration: 12s; transform: scale(1.2) rotate(45deg); }
.heart:nth-child(19) { left: 85%; top: 25%; animation-delay: 3.9s; animation-duration: 9s;  transform: scale(0.7) rotate(45deg); }
.heart:nth-child(20) { left: 50%; top: 95%; animation-delay: 0s;   animation-duration: 15s; transform: scale(1.5) rotate(45deg); }

/* 浮遊モーション */
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(45deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-40vh) rotate(45deg); opacity: 0; }
}

/* ゆらゆらモーション */
@keyframes sway {
  0%,100% { transform: translateX(0) rotate(45deg); }
  50%     { transform: translateX(20px) rotate(45deg); }
}
/* =============================
   スマホサイズの最適化
============================= */
@media (max-width: 768px) {

  /* スマホではハートの数を減らして軽量化 */
  .heart:nth-child(n+11) {
    display: none; /* 11番目以降は非表示 */
  }

  /* スマホで全体の動きも少しゆっくり */
  @keyframes floatUp {
    0%   { transform: translateY(0) rotate(45deg); opacity: 0; }
    10%  { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(45deg); opacity: 0; }
  }
}


/* ------------------------
  リセット & 基本設定
------------------------ */
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden; /* 横スクロール禁止 */
  font-family: 'Noto Serif JP', serif;
  font-weight: 100;
  background: #000;
  line-height: 1.7;
}
h1,h2,h3,h4,h5 { font-weight: 100; }
* { box-sizing: border-box; }

@media (max-width:1024px) {
	p{
    font-size: 0.8em;
    text-align: left;
	}
}

/* ------------------------
 ヘッダー
------------------------ */
.head_box {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 30px 0 20px;
}
.head_box img { width: 150px; }
.head_box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 10px;
  background: linear-gradient(to right, #f8d3d3, #d9c8ee);
}
@media (max-width:1024px) {
  .head_box { padding: 20px 0 10px; }
  .head_box img { width: 100px; }
}

/* ------------------------
 TOP
------------------------ */

.hero-container {
  position: relative;
  overflow: hidden;
}

/* テキストを上部に固定表示 */
.hero-text-top {
  position: absolute;
  top: 1%; /* ← ここで上からの距離を調整（例：5〜15%） */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10; /* ハートより上に */
}

.hero-text-top h1 {
  font-size: 10em;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.3em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
	 font-family: 'Alex Brush', cursive;
}

.hero-text-top p {
    font-size: 2em;
    opacity: 0.9;
    margin-top: 200px;
	     white-space: nowrap; /* ← これで改行しない！ */
}

/* スマホ調整 */
@media (max-width: 768px) {
.hero-text-top {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}
  .hero-text-top h1 {
    font-size: 4em;
 font-family: 'Alex Brush', cursive;
  }
  .hero-text-top p {
	      white-space: nowrap; /* ← これで改行しない！ */
	   margin-top: 4em; /* ← 文字を下げる（数値を上げるほど下に） */
    font-size: 0.9em;
  }
}

.container_first {
  padding: 0 20px;
  margin-top: 30px;
}
.spacer-top { height: 50vh; }
.top_main1 {
  position: relative;
  height: 10vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-container {
  position: relative;
  width: 100%;
  max-height: 1500px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  transition: transform .5s ease;
}
.hero-image.shrink {
  transform: scale(.95);
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}
.hero-text-center,
.hero-text-left,
.hero-text-right {
  position: absolute;
  top: 30%;
  z-index: 10;
  padding: 10px;
}
.hero-text-center { left: 50%; transform: translateX(-50%); text-align: center; }
.hero-text-left { left: 5%; text-align: left; }
.hero-text-right { right: 5%; text-align: right; }
.hero-text h4 {
  font-size: 1.3em; opacity: .8; color: rgba(255,255,255,.43);
  font-style: italic; margin: 0 0 10px;
}
.hero-text h2 {
  font-size: 5em; margin: 30px 0 10px;
  color: #fff; line-height: 1.3em;
}
.hero-text h2 span { font-size: 2em; }
.hero-text h3 {
  font-size: 2.6em; margin: 20px 0 0;
  color: #bbb; opacity: .8;
}
@media (max-width:1024px) {
  .container_first { padding: 0px; margin-top: 0px;}
  .hero-text h4 { font-size: .5em; }
  .hero-text h2 { font-size: 1.6em; }
  .hero-text h3 { font-size: 1em; }
  .hero-container { max-height: 600px; }
.hero-image {border-radius: 0px;}	
}

/* ------------------------
バレンタイン
------------------------ */

.valentine-desc {
  position:relative;
  max-width:800px;
  margin: 60px auto;
  padding: 40px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg,#14151b,#0d0e14);
  color:#f5f2e9;
  box-shadow: 0 0 24px rgba(0,0,0,.6);
  text-align:center;
  overflow:hidden;
}

/* ゴールド枠 */
.valentine-desc::before {
  content:"";
  position:absolute; inset:-1px;
  border-radius:22px; padding:2px;
  background:linear-gradient(140deg,#ffdf8a,#d4af37 40%,#b88900);
  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  pointer-events:none;
  z-index:2;
}

/* ====== Star Sparkles ====== */
.star {
  position:absolute;
  width:3px; height:3px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 0 6px 2px rgba(255,255,200,.8);
  animation: twinkle 2.5s infinite ease-in-out;
  opacity:0;
  z-index:1;
}
@keyframes twinkle {
  0%, 100% { opacity:0; transform:scale(0.5);}
  50% { opacity:1; transform:scale(1.3);}
}

/* 星をランダム配置（例:40個） */
.star:nth-child(1){ top:10%; left:15%; animation-delay:.1s;}
.star:nth-child(2){ top:20%; left:40%; animation-delay:.5s;}
.star:nth-child(3){ top:5%; left:70%; animation-delay:.9s;}
.star:nth-child(4){ top:30%; left:25%; animation-delay:1.2s;}
.star:nth-child(5){ top:40%; left:80%; animation-delay:1.8s;}
.star:nth-child(6){ top:15%; left:55%; animation-delay:.6s;}
.star:nth-child(7){ top:50%; left:10%; animation-delay:2.2s;}
.star:nth-child(8){ top:60%; left:35%; animation-delay:.4s;}
.star:nth-child(9){ top:75%; left:60%; animation-delay:1.5s;}
.star:nth-child(10){ top:85%; left:20%; animation-delay:2.8s;}
.star:nth-child(11){ top:12%; left:85%; animation-delay:.3s;}
.star:nth-child(12){ top:25%; left:50%; animation-delay:.7s;}
.star:nth-child(13){ top:65%; left:75%; animation-delay:1.9s;}
.star:nth-child(14){ top:45%; left:45%; animation-delay:2.3s;}
.star:nth-child(15){ top:70%; left:30%; animation-delay:1.1s;}
.star:nth-child(16){ top:80%; left:85%; animation-delay:2.5s;}
.star:nth-child(17){ top:35%; left:15%; animation-delay:.8s;}
.star:nth-child(18){ top:90%; left:55%; animation-delay:1.6s;}
.star:nth-child(19){ top:5%; left:5%; animation-delay:2.1s;}
.star:nth-child(20){ top:55%; left:90%; animation-delay:.2s;}
.star:nth-child(21){ top:18%; left:65%; animation-delay:1.3s;}
.star:nth-child(22){ top:38%; left:5%; animation-delay:1.7s;}
.star:nth-child(23){ top:58%; left:25%; animation-delay:2.7s;}
.star:nth-child(24){ top:68%; left:50%; animation-delay:.9s;}
.star:nth-child(25){ top:78%; left:70%; animation-delay:1.4s;}
.star:nth-child(26){ top:88%; left:40%; animation-delay:2s;}
.star:nth-child(27){ top:8%; left:95%; animation-delay:1.8s;}
.star:nth-child(28){ top:28%; left:75%; animation-delay:2.2s;}
.star:nth-child(29){ top:48%; left:15%; animation-delay:2.6s;}
.star:nth-child(30){ top:68%; left:95%; animation-delay:.6s;}
.star:nth-child(31){ top:15%; left:35%; animation-delay:2.4s;}
.star:nth-child(32){ top:25%; left:95%; animation-delay:.7s;}
.star:nth-child(33){ top:55%; left:65%; animation-delay:1.2s;}
.star:nth-child(34){ top:65%; left:5%; animation-delay:2.9s;}
.star:nth-child(35){ top:85%; left:60%; animation-delay:1.5s;}
.star:nth-child(36){ top:95%; left:80%; animation-delay:2.1s;}
.star:nth-child(37){ top:20%; left:20%; animation-delay:.4s;}
.star:nth-child(38){ top:40%; left:60%; animation-delay:1.9s;}
.star:nth-child(39){ top:60%; left:40%; animation-delay:1.3s;}
.star:nth-child(40){ top:80%; left:10%; animation-delay:.5s;}

.v-img{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.v-img img{
	    width: 100%;
}

@media(max-width:1024px){

.valentine-desc {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	}}

/* ------------------------
 料金表
------------------------ */

/* 最後の1行だけ下線を消す */
.menu-block li:last-child {
  border-bottom: none;
	 padding-bottom: 0; /* ← 下の余白も消す */
  margin-bottom: 0;  /* ← 万一ブラウザが勝手に入れる余白も消す */
}
.menu-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.menu-container {
  max-width: 800px;
  margin: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,215,128,0.3);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 0 25px rgba(255,215,128,0.1);
}

.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2em;
  color: #ffdc80;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.menu-lead {
  font-size: 1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.menu-block {
  margin-bottom: 40px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-block h3 {
  font-size: 1.4em;
  color: #ffdc80;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}

.note {
  font-size: 0.4em;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  line-height: 1.6;
}

.menu-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-block li {
  font-size: 1em;
  color: #ddd;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
}

/* フォントの指定 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap');

@media (max-width: 768px) {
  .menu-container {
    padding: 30px 20px;
    text-align: center;
  }
  .menu-title {
    font-size: 1.6em;
  }
  .menu-block h3 {
    font-size: 1.2em;
  }
	
	.menu-lead {
    font-size: 0.8em;
    text-align: center;
	}
	
	.price {
    text-align: center;
		  font-size: 1em;
}
	
	.note{
		text-align: center;
	}
}


/* ------------------------
  スライダー
------------------------ */
.slider_box{
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
}
@media screen and (max-width:1024px) {
.slider_box{
	width: 100%;
}
}
.slider {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* スムーズスクロール */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.card-list {
  display: flex; /* ← これが一番重要 */
  gap: 20px; /* カード同士の隙間 */
  overflow-x: scroll; /* 横スクロールを有効に */
  scroll-behavior: smooth;
  padding: 20px;
  scrollbar-width: none; /* Firefoxのスクロールバー非表示 */
  cursor: grab;
}
.card-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-behavior: smooth;
  padding: 10px;
}
.card {
  position: relative; /* ← これがキー！ */
  flex: 0 0 auto;
  width: 300px;
  cursor: grab;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* ← これ追加！ */
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
/* ★ 半透明レイヤー */
.card::before {
  content: '';
  position: absolute;
  pointer-events: none; /* ←★これがないとクリックできんようになる！ */
  inset: 0;
  z-index: 1;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 57.96%, rgba(0, 0, 0, 0.66) 100%);
  background-image: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 57.96%, rgba(0, 0, 0, 0.66) 100%);
  background-image: -o-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 57.96%, rgba(0, 0, 0, 0.66) 100%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 57.96%, rgba(0, 0, 0, 0.66) 100%);
}
/* ★ 文字ボックス */
.card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #000;
  z-index: 2; /* ← レイヤーの上に出す */
}
.card-list.active {
  cursor: grabbing;
}
.slider p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #818181;
  margin-top: 100px;
  margin-bottom: 80px;
  font-size: 1.5em;
  font-style: italic;
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  .slider p {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1em;
  }
  .card {
     width: 90vw;
    max-width: none;
  }
	
}
/* ------------------------
  カード基本スタイル
------------------------ */
.card {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.card img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
}
/* ------------------------
  カード内テキスト配置
------------------------ */
.card-text {
  position: absolute;
  padding: 30px;
  z-index: 2;
  pointer-events: none;
	
}
.card-text h2, .card-text h3 {
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.card-text h3 {
  font-size: 1.5em;
  color: hsla(0, 0%, 100%, 0.70);
}
.card-text h2 {
  font-size: 3em;
  line-height: 1em;
  color: hsla(0, 0%, 100%, 1.00);
}
/* ------------------------
  モバイル対応（1024px以下）
------------------------ */
@media screen and (max-width: 1024px) {
  .card-text {
    padding: 20px;
  }
  .card-text h3 {
    font-size: 0.9em;
    margin-left: 5px;
  }
  .card-text h2 {
    font-size: 1.7em;
    line-height: 1em;
  }
}
/* ------------------------
  白文字カード用クラス
------------------------ */
.white h3 {
  color: hsla(0, 0%, 100%, 0.70);
}
.white h2 {
  color: hsla(0, 0%, 100%, 1.00);
}
/* ------------------------
  テキスト位置バリエーション
------------------------ */
.position-bottom-left .card-text {
  bottom: 10px;
  left: 10px;
  text-align: left;
}
.position-bottom-right .card-text {
  bottom: 10px;
  right: 10px;
  text-align: right;
}
.position-top-left .card-text {
  top: 10px;
  left: 10px;
  text-align: left;
}
.position-top-right .card-text {
  top: 10px;
  right: 10px;
  text-align: right;
}
.position-center .card-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
/* ------------------------
  フルスクリーン表示領域
------------------------ */
.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
  overflow-y: auto;
}
.fullscreen.show {
  display: block;
}
#fullImage {
  position: absolute;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
  z-index: 1;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}
/* ------------------------
  オーバーレイ（テキストと背景）
------------------------ */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #000;
  background: rgba(255, 255, 255, 0);
  z-index: 2;
  margin: 0;
  pointer-events: none;
  opacity: 0;
  transition: background 0.8s ease, opacity 0.3s ease-in-out;
}
.overlay.show {
  opacity: 1;
}
.overlay.bg-white {
  background: rgba(255, 255, 255, 1);
}
.overlay h4 {
  font-size: 0.9em;
  margin: 60px 0 10px 5px;
  padding: 0;
  pointer-events: auto;
  line-height: 1em;
  color: hsla(0, 0%, 100%, 0.59);
}
.overlay h1 {
  font-size: 1.5em;
  margin: 0;
  padding: 0 0 20px 0;
  pointer-events: auto;
  line-height: 1em;
}

/* ------------------------
  閉じるボタン
------------------------ */
.closeBtn {
  margin: 20px 20px 20px 0;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8em;
  color: #333;
  cursor: pointer;
  pointer-events: auto;
}
/* ------------------------
  テキストボックス
------------------------ */
.main_txt_box {
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: auto;
    padding: 0;
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    background-color: #FFFFFF;	
}
.overlay .txt_box {
  padding: 0 20px;
}
.main_txt_box .txt_box {
  padding: 9px;
}
/* ------------------------
  デスクトップ対応（1025px以上）
------------------------ */
@media screen and (min-width: 1025px) {
  .fullscreen.show, #fullImage, .overlay {
    max-width: 700px;
    margin: 0 auto;
    left: 0;
    right: 0;
    background-color: hsla(0,0%,0%,0.28);
  }
}
/* ------------------------
  モーダルタイトル
------------------------ */

/* 追加：モーダルを最前面に出す */
.profile-modal {
  z-index: 10000 !important; /* contact-fixed-bar より上に */
}
#modalTitle {
  opacity: 0.6;
}
#modalHeader {
  position: relative;
  z-index: 1;
}
#modalHeader .text-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  background-image: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 41.83%, rgba(0, 0, 0, 0.83) 98.67%);
  background-image: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 41.83%, rgba(0, 0, 0, 0.83) 98.67%);
  background-image: -o-linear-gradient(270deg, rgba(0, 0, 0, 0.00) 41.83%, rgba(0, 0, 0, 0.83) 98.67%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 41.83%, rgba(0, 0, 0, 0.83) 98.67%);
}
/* h4やh1も前面に */
#modalTitle, #modalSub, .closeBtn {
  position: relative;
  z-index: 1;
}
.fclose {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 100px;
}
.fclose button {
  margin-right: auto;
  margin-left: auto;
}
/* ------------------------
 FAQ
------------------------ */
.faq-section {
  background:#f9f9f9;
  padding:70px 20px;
}
.faq-section_box {
  max-width:800px; margin:40px auto;
}
.accordion-item { border-bottom:1px solid #ddd; }
.accordion-button {
  background:none; border:none; width:100%;
  padding:15px; font-size:1rem; font-weight:bold;
  cursor:pointer; text-align:left;
}
.accordion-button::after {
  content:'+'; float:right;
}
.accordion-button.active::after { content:'-'; }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding: 0 15px;
     
}
.accordion-content p { margin:15px 0; color:#555; }
	
	@media(max-width:1024px){
		.faq-section h2{
font-size: 1.2em;
		 text-align: center;  
			
			
		}
		    .accordion-button {
       
        font-size: 0.8em;
      
    }

	}

/* ------------------------
 店舗情報
------------------------ */
.container_shop {
  text-align:center;
  padding:50px 20px;
  background:#000;
}
.container_shop h2 { color:#fff; font-size:2em; margin-bottom:12px; }
.container_shop p { color:#666; margin:6px 0; }
.container_shop iframe {
  margin-top:30px; width:100%; height:450px;
}
	
	@media(max-width:1024px){
		.container_shop h2 {font-size:1.2em;}
		.container_shop p { color:#666; margin:6px 0; }
	}

/* ------------------------
 プロフィール
------------------------ */
.profile-header { text-align:center; margin-bottom:20px; }
.profile-header h1 {
	font-size: 26px;
	text-align: center;
	margin-top: 25px;
	margin-bottom: 25px;
}
.profile-card img { width:100%; display:block; }
table { width:100%; border-collapse:collapse; margin-top:20px; }
table td { padding:10px 8px; border-bottom:1px solid #eee; }
table td:first-child { font-weight:bold; color:#b2856f; width:40%; }
.message{
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-bottom: 50px;
	font-size: 0.9em;
}
@media screen and (max-width:1024px) {
.profile-header{}
}
/* ------------------------
 フッター
------------------------ */
footer {
  text-align:center;
  padding:100px 20px;
}
footer p { color:#aaa; font-size:.7em; }

/* ------------------------
  下部固定ボタン
------------------------ */
.contact-fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  background: rgba(0,0,0,0.7); /* 背景つけて目立たせる */
  z-index: 9999;
}

.contact-fixed-bar p {
    margin: 0 0 6px;
    font-size: 0.8em;
    color: #ddd;
    text-align: center;	
}

.contact-fixed-btn {
    display: inline-block;
    background-color: hsla(311,97%,54%,1.00);
    font-size: 1em;
    padding: 12px 50px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: opacity 0.3s ease;
}
.contact-fixed-btn:hover {
  opacity: 0.85;
}


/* ===== モーダル上部は10pxだけに詰める ===== */
.overlay {
  padding: 10px !important;           /* 上部10pxだけ */
}

/* 旧ヘッダー風の余分なレイヤは殺す */
#modalHeader,
#modalHeader .text-bg-layer {
  display: none !important;
}

/* ===== 左上：閉じるボタンを重ねる ===== */
.closeBtn {
  position: absolute !important;
  top: 10px; 
  left: 10px;
  margin: 0 !important;
  z-index: 3;               /* 文字より上 */
  pointer-events: auto;     /* 押せるまま維持 */
}

/* ===== 左下：タイトル群を重ねる ===== */
.meta-box {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  pointer-events: none;      /* タイトルはクリック不要なら無効化 */
}

.meta-box #modalTitle,
.meta-box #modalSub {
  margin: 0;                 /* 余白ゼロで詰める */
  padding: 0;
  line-height: 1.1;
}

/* 字間など微調整したければここで */
.meta-box #modalTitle { font-size: 0.9em; opacity: .7; }
.meta-box #modalSub   { font-size: 1.5em; }

/* 必要なら本文ボックスの余白もお好みで */
.main_txt_box .txt_box { padding: 10px; }

/* ===== モーダル内の本文を“だけ”縦スクロール可能にする ===== */

/* モーダル背景（全体） */
.fullscreen {
  overflow: hidden;                 /* 本体のスクロールは止めて */
  touch-action: none;               /* 下のページがスクロールしないように */
}

/* 文字レイヤ（画像の上に白を被せる層） */
.overlay {
  pointer-events: auto;             /* スクロールやタップを受け取る */
  position: absolute;
  inset: 0;                         /* top/right/bottom/left:0 の省略 */
  padding: 10px !important;         /* 要望どおり上部は10pxだけ */
  display: block;                   /* 念のため */
}

/* 左上：閉じる（最前面） */
.closeBtn {
  position: absolute !important;
  top: 10px;
  left: 10px;
  z-index: 5;
}

/* 左下：タイトル（最前面・固定） */
.meta-box {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 4;
  pointer-events: none;             /* ここはクリック不要なら無効化 */
}
.meta-box #modalTitle,
.meta-box #modalSub { margin: 0; line-height: 1.1; }

/* ====== 縦スクロールの主役：本文ボックス ====== */
.main_txt_box {
  position: absolute;
  /* 上は閉じるの高さ分あける。ボタンの高さ + 余白ぶんを確保 */
  top: 54px;                        /* 8pxボタン高 + 余白のイメージ。必要なら微調整 */
  left: 0;
  right: 0;
  /* 下は左下タイトルにかぶらないよう余白を確保 */
  bottom: 70px;                     /* タイトルの高さ + 余白ぶんを確保（調整可） */

  overflow-y: auto;                 /* ← これで中身だけスクロール */
  -webkit-overflow-scrolling: touch;/* iOSの慣性スクロール */
  background: #fff;                 /* ここは白でOKならこのまま */
  z-index: 3;                       /* タイトルより下に潜らせる */
  pointer-events: auto;             /* スクロールを受け取る */
  border-radius: 0;                 /* 好みで */
  padding: 0;                       /* 内側の余白は下の .txt_box で調整 */
}

/* 本文の内側余白（見やすさ用） */
.main_txt_box .txt_box {
  padding: 12px;                    /* お好みで */
}

/* 画像（背面） */
#fullImage {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: auto;
  z-index: 1;                       /* 本文より後ろ */
}

.sp-br { display:none; }
@media (max-width: 768px){
  .sp-br { display:inline; }
}
