/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}

body {
font-family: "Noto Serif KR", "AppleMyungjo", "Apple Myungjo", "Nanum Myeongjo", "MS PMincho", serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: 400;
    margin: 0;
    padding: 0;
	color: #fff;
	background: #333;
	overflow-x: hidden;

}


html, body {
  overflow-x: hidden;
}


/************************************
content
************************************/

#lp_content{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding: 0;
	text-align: center;
	background: #f9f8f2;
	}


.content_area{
	width: 90%;
	margin: 0 auto;
padding:10% 0;
	text-align: center;
	
		}

/*タイトル*/

.title_area{
	margin: 0 auto;
	padding:0 0 10% 0;
}
.title_area h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  color: #575757;
  font-family: "Noto Serif KR", serif;
  font-weight: bold;
}
.title_area h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 30px;
  height: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #575757;
  border-radius: 2px;
}

.title_area p {
	  max-width: 700px;
	padding:5% 0 0 0;
    margin:0 auto;
    color: #878785;
    font-weight: 300; /* 細めのウェイト */
    font-size: 1rem;
    line-height: 1.8; /* 行間を広く */
    text-align:left;
    letter-spacing: -0.02em;
}

/************************************
ふわっと
************************************/
/* 表示前の共通設定 */
.fade-in {
  opacity: 0;
  transform: translateY(30px); /* 30px下に下げておく */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* 0.8秒かけてふわっと */
}

/* スクロールしてクラスがついた後の状態 */
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/************************************
FV
************************************/
.fv_area {
  width: 100%;
  position: relative;
  overflow: hidden;    
  background-color: #1a1a1a;
}

.fv_img {
  width: 100%;
  display: block;
}

.fv-text {
  position: absolute;
  top: 20%; 
  left: 50%;
  transform: translateX(-50%); 
  
  z-index: 2;
  width: auto;
  max-width: 90%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  flex-direction: column;
}

.fv-text h1 {
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 7vw, 2.2rem); 
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
  margin-left: 1.5rem; /* 左側に本文との隙間を作る */
 text-align: left;
}

.fv-text p {
  font-family: "Noto Serif KR", serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 3.5vw, 1rem);
  color: #fff;
  line-height: 1.8;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  white-space: nowrap; 
 text-align: left;
}

/************************************
content01
************************************/
.content01_area{
	width: 100%;
	background-image: url('../lp/img/back01.png');
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 90% auto;
	}


  /* --- セクション共通 --- */
  .unagi-item {
    margin-bottom: 5%;
  }

  /* --- 画像とラベルのエリア --- */
  .image-box {
position: relative;
  max-width: 700px;
  margin: 0 auto;
  /* 親要素で絶対にはみ出しを消さない */
  overflow: visible !important;
  }

/* --- コンテンツエリアの確認 --- */
#lp_content, .content_area {
  /* ここも念のため確認 */
  overflow: visible;
}

  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e0e0e0; /* 細いグレーの枠線 */
    padding: 6px; /* 枠線と画像の間の余白 */
    background-color: #fff;
  }

  /* --- 画像上のテキストラベル（共通） --- */
.image-label {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  opacity: 0; /* 最初は透明 */
  transition: transform 0.8s ease-out, opacity 0.8s ease-out; /* ここで動きの滑らかさを指定 */
}

/* 1行ずつのスタイル */
.text-line {
  display: inline-block; /* 文字の幅に背景を合わせる */
  background-color: #ffffff;
  color: #1a1a1a;
  font-weight: 800; /* 太く */
  font-size: 1.4rem;
  padding: 6px 12px;
  margin-bottom: 4px; /* 行ごとの絶妙な隙間 */
  width: fit-content; /* 中身の幅に依存させる */
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* --- 配置の調整 --- */

.label-1 {
  top: 40px;
  /* leftを-20pxから少し戻すか、transformの数値を小さくします */
  left: -15px; 
  align-items: flex-start;
  /* 逃がしすぎると消えるので -50px 程度に調整 */
  transform: translateX(-50px); 
  opacity: 0;
  z-index: 99; /* 他の要素より確実に上に */
}

.label-2 {
  bottom: 40px;
  right: -10px;
  align-items: flex-end;
  transform: translateX(100px); /* 右に待機 */
}

.label-2 .text-line {
  text-align: right;
}

/* 表示時（JSでクラスが付与されたとき） */
.image-label.is-visible {
  opacity: 1;
  transform: translateX(0);
}


  /* --- 下部の説明文 --- */
  .description-text {
	  max-width: 700px;
	padding: 3% 0 0 0;
    margin:0 auto;
    color: #878785;
    font-weight: 300; /* 細めのウェイト */
    font-size: 1rem;
    line-height: 1.8; /* 行間を広く */
    text-align:left;
    letter-spacing: -0.02em;
  }

/************************************
鰻メニュー
************************************/
.unagi_menu {
	margin: 0 auto 10% auto;
	padding: 0 0;
	
	  }

.unagi_menu img{
	width: 100%;
	
		  }
.unagi_menu h3{
  font-weight: 800; 
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  padding:5% 0;
  color: #575757;
		  }

.unagi_menu h3 span {
  display: block;
  font-size: 1rem;
  margin-bottom: 15px;
}

.unagi_menu p{
	  max-width: 700px;
	padding:0 0;
    margin:0 auto;
    color: #878785;
    font-weight: 300; /* 細めのウェイト */
    font-size: 1rem;
    line-height: 1.8; /* 行間を広く */
    text-align:left;
    letter-spacing: -0.02em;
  }

/************************************
店内雰囲気
************************************/
.ambience_base {
    position: relative;
    width: 100%;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
    padding: 60px 0;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    align-items: center;
    background-color: transparent;
	overflow: hidden;
}

/* 固定背景の設定 */
.ambience_base::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-image: url('../lp/img/back02.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    pointer-events: none;
}

/* タイトルエリア */
.ambience_title {
    width: 90%;
    margin: 0 auto 30px auto;
    text-align: center;
    z-index: 2;
}

.ambience_title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
    color: #fff;
    font-family: "Noto Serif KR", serif;
    font-weight: bold;
}

.ambience_title h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 30px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
}

.ambience_title p {
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- 【重要】ここが改善の肝：スクロールボックス --- */
.ambience_info_box {
    position: relative;
    z-index: 2;
    width: 85%; /* 少し横幅を絞って「枠」を意識させる */
    margin: 0 auto;
    
    /* 高さを「写真1枚分＋次の写真の頭」に設定 */
    /* これにより、必ず下に続きがあることが視覚的にわかります */
    height: 55vh; 
    height: 55dvh;
    overflow-x: hidden;
    overflow-y: auto; /* 縦スクロールを有効に */
    -webkit-overflow-scrolling: touch;

    /* スクロールバーのデザイン（高級感のあるゴールド） */
    scrollbar-width: thin;
    scrollbar-color: #b89a5b rgba(255, 255, 255, 0.1);
}

/* スクロールバーのカスタマイズ（Chrome / Safari） */
.ambience_info_box::-webkit-scrollbar {
    display: block; /* 消さずにあえて出す */
    width: 4px;
}

.ambience_info_box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.ambience_info_box::-webkit-scrollbar-thumb {
    background: #b89a5b; /* 電話ボタン等と同じゴールド */
    border-radius: 10px;
}

/* 写真エリア */
.ambience_area {
    width: 100%;
    margin-bottom: 15px; /* 写真同士の隙間を詰めて連続性を出す */
    text-align: center;
}

.ambience_area img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* 写真に影をつけて浮かせ、重なりを強調 */
}

/* 最後の要素の下に余白 */
.ambience_area:last-child {
    margin-bottom: 50px;
}

/* スクロールを促すヒントのスタイル */
.scroll-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 0 5px rgba(0,0,0,0.8);
    animation: bounce 2s infinite; /* 上下にふわふわ動かす */
}

.scroll-hint i {
    font-size: 1rem;
    margin-top: 2px;
}

/* ふわふわ動くアニメーション */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}
/************************************
アクセス
************************************/

.access_container {
    width: 100%;
    margin:0 auto;
    padding:0;
}

/* --- リスト全体のスタイル --- */
.access_list {
    list-style: none; /* デフォルトの「●」を消す */
    padding: 0;
    margin: 0;
	text-align: left;
}

/* --- 各リスト項目 (電車とバス) --- */
.access_list li {
    display: flex; /* アイコンとテキストを横並びにする */
    align-items: center; /* 縦方向の中央に揃える */
    margin-bottom: 25px; /* 電車とバスの間隔 */
    font-size: 1rem;
    line-height: 1.6;
	color: #878785;
  
}

.access_list li:last-child {
    margin-bottom: 0; /* 最後の項目は下に余白を作らない */
}

/* --- アイコンのスタイル --- */
.access_icon {
    width: 30px; /* アイコンの横幅を固定してテキストの開始位置を揃える */
    font-size: 1.2rem; /* アイコンの大きさ */
    margin-right: 15px; /* テキストとの間隔 */
}

/* --- テキストのスタイル --- */
.access_text {
    flex: 1; /* 残りの横幅をすべて使う */
}

/************************************
googlemap
************************************/

/* スマホで横いっぱいにし、モノクロにする設定 */
.map_container {
    position: relative;
    width: 100%;       /* 横幅いっぱい */
    padding-top: 75%;  /* スマホでの高さ（比率で指定） */
    overflow: hidden;
    
    /* モノクロ設定 */
    filter: grayscale(100%) contrast(1.1);
    -webkit-filter: grayscale(100%) contrast(1.1);
}

.map_container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.map_container:hover {
    filter: grayscale(0%);
    transition: 0.5s;
}

/* --- 固定ナビ全体のスタイル --- */
.footer_fixed_nav {
position: fixed;
    bottom: 0;
    left: 0;
    right: 0; 
    margin: 0;
    padding: 0;
    height: 70px;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    /* 枠線や余白が幅に含まれるように強制 */
    box-sizing: border-box;
}

/* --- 各ボタン共通のスタイル --- */
.nav_item {
    flex: 1; /* 画面を半分ずつ分ける */
    display: flex;
    flex-direction: column; /* アイコンと文字を縦に並べる */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: 0.3s;
}

/* アイコンのサイズ */
.nav_item i {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

/* --- 電話予約ボタンの色 --- */
.call_btn {
    background-color: #b89a5b; 
    color: #fff;
}

/* --- Google Mapボタンの色 --- */
.map_btn {
    background-color: #8b0000; 
    color: #fff;
    border-left: 1px solid rgba(255,255,255,0.2); /* 境界線 */
}

/* タップした時の反応 */
.nav_item:active {
    opacity: 0.8;
    background-color: #444;
}

/* --- ボタンのテキストが長くてはみ出すのを防ぐ --- */
.nav_item span {
    font-size: 0.75rem; 
    white-space: nowrap; 
    overflow: hidden;
    text-overflow: ellipsis; 
    /* width: 95% よりも max-width のほうが安全です */
    max-width: 90%; 
    display: block; /* block要素にして中央寄せを確実に */
    text-align: center;
}
