@charset "UTF-8";

/* ==========================================================
   01. RESET & VARIABLES (共通設定と変数)
   ========================================================== */
:root {
    --color-bg: #0b1016; 
    --color-text: #f0f0f0; 
    --color-accent: #e65100; 
    --color-gold: #c5a365; 
    --color-gray: #1f252e; 
    
    --font-jp: 'Zen Old Mincho', serif;
    --font-en: 'Cormorant Garamond', serif;
    
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--color-bg); color: var(--color-text);
    font-family: var(--font-jp); line-height: 1.8; overflow-x: hidden; transition: opacity 0.3s ease;
}

/* ==========================================================
   02. TYPOGRAPHY & UTILITIES
   ========================================================== */
h1, h2, h3, h4, h5, h6 { font-weight: 400; }
.en { font-family: var(--font-en); letter-spacing: 0.05em; }
.jp { font-family: var(--font-jp); }
.vertical-text { writing-mode: vertical-rl; text-orientation: upright; letter-spacing: 0.2em; }

body.lang-jp .en { display: none !important; }
body.lang-en .jp { display: none !important; }

.btn-line { display: inline-block; margin-top: 1rem; color: #fff; border: 1px solid #fff; padding: 10px 20px; text-decoration: none; transition: background 0.3s, color 0.3s; border-radius: 2px; }
.btn-line:hover { background: #fff; color: #000 !important; border-color: #fff; }
.btn-solid { display: inline-block; background: var(--color-accent); color: white; padding: 15px 40px; text-decoration: none; margin-top: 20px; font-weight: bold; border-radius: 2px; transition: background 0.3s, transform 0.3s; }
.btn-solid:hover { background: #ff6d00; transform: translateY(-3px); color: #fff; }
.btn-box { display: inline-block; background: var(--color-gold); color: #000; padding: 12px 30px; text-decoration: none; margin-top: 20px; font-weight: bold; align-self: flex-start; border-radius: 2px; transition: transform 0.3s; }
.btn-box:hover { transform: translateY(-3px); }
.link-arrow { display: inline-block; margin-top: 15px; color: var(--color-gold); text-decoration: none; font-weight: bold; transition: color 0.3s; }
.link-arrow::after { content: '→'; margin-left: 5px; transition: margin-left 0.3s; }
.link-arrow:hover { color: #fff; }
.link-arrow:hover::after { margin-left: 10px; }

/* ==========================================================
   03. HEADER & LOADER & NAV
   ========================================================== */
.loader { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--color-bg); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__img { width: 80px; height: auto; animation: fadePulse 2s infinite; }

.header { position: fixed; top: 0; width: 100%; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; z-index: 100; }
.header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 150%; background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); z-index: -1; pointer-events: none; }
body.subpage .header { background: linear-gradient(to bottom, rgba(11, 16, 22, 0.95), transparent); }

.logo { display: inline-flex; align-items: center; transition: transform 0.3s; }
.logo:hover { transform: scale(1.05); }
.header__logo { height: 65px; width: auto; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6)); }
@media (max-width: 767px) { .header__logo { height: 48px; } }

.header__controls { display: flex; gap: 20px; align-items: center; }
.lang-btn { background: none; border: 1px solid #fff; color: #fff; padding: 5px 10px; font-family: var(--font-en); cursor: pointer; font-size: 0.8rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.menu-btn { background: none; border: none; cursor: pointer; width: 30px; height: 20px; position: relative; z-index: 102; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); }
.menu-btn__line { position: absolute; width: 100%; height: 2px; background: #fff; left: 0; transition: transform 0.3s var(--ease-out); }
.menu-btn__line:nth-child(1) { top: 0; }
.menu-btn__line:nth-child(2) { bottom: 0; }
body.menu-open .menu-btn__line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
body.menu-open .menu-btn__line:nth-child(2) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(11, 16, 22, 0.98); z-index: 101; opacity: 0; pointer-events: none; transition: opacity 0.5s ease; overflow-y: auto; padding: 80px 0 40px; }
body.menu-open .nav-overlay { opacity: 1; pointer-events: auto; }
.nav-inner { min-height: 100%; display: flex; justify-content: center; align-items: center; padding: 20px; }
.nav-list { list-style: none; text-align: center; width: 100%; max-width: 600px; }
.nav-item { margin-bottom: 1.5rem; }
.nav-link, .nav-group-title { display: block; color: #fff; text-decoration: none; font-size: 1.8rem; font-family: var(--font-en); transition: color 0.3s; line-height: 1.2; }
.nav-link:hover, .nav-group-title:hover { color: var(--color-gold); }
.nav-sublist { list-style: none; margin-top: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.8rem; }
.nav-sublink { display: block; color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 1.1rem; font-family: var(--font-jp); transition: color 0.3s, transform 0.3s; }
.nav-sublink:hover { color: var(--color-gold); transform: translateX(5px); }
.nav-sublink .en { font-family: var(--font-en); margin-left: 0.5em; font-size: 1rem; opacity: 0.8; }
.nav-item:last-child .nav-sublist { border-bottom: none; }

/* ==========================================================
   04. COMMON SECTIONS & MAP & ANIMATIONS
   ========================================================== */
.section { padding: 100px 20px; position: relative; }
.section--dark { background: var(--color-bg); }
.section--gray { background: var(--color-gray); }
.section.no-padding { padding: 0; }
.section-margin-top { margin-top: 60px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-title { font-size: 2.5rem; margin-bottom: 2rem; line-height: 1; color: #fff; }
.section-title::before { content: '◆'; color: var(--color-accent); font-size: 1rem; display: block; margin-bottom: 10px; }
.section-title span { display: block; }
.section-title .en { font-size: 1rem; color: var(--color-gold); margin-bottom: 0.5rem; }
.section-title.center { text-align: center; }
.section-title.center::before { margin-left: auto; margin-right: auto; }

.media-wrapper { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; border-radius: 4px; }
.parallax-img, .zoom-img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
video.zoom-img { transform-origin: center; }
.media-wrapper:hover .parallax-img { transform: scale(1.05); }

/* マップラッパー (トップページ・店舗案内共通) */
.map-wrapper { width: 100%; margin-top: 40px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); aspect-ratio: 21 / 9; min-height: 300px; overflow: hidden; position: relative; border-radius: 4px; }
@media (max-width: 768px) { .map-wrapper { aspect-ratio: 16 / 9; } }
.map-wrapper iframe { width: 100%; height: 100%; position: absolute; top: 0; left: 0; border: 0; filter: grayscale(40%) contrast(110%) opacity(0.9); transition: filter 0.5s ease; }
.map-wrapper:hover iframe { filter: grayscale(0%) contrast(100%) opacity(1); }

[data-scroll] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-scroll].in-view { opacity: 1; transform: translateY(0); }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }
@keyframes fadePulse { 0% { opacity: 0.3; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } 100% { opacity: 0.3; transform: scale(0.95); } }

/* ==========================================================
   05. FOOTER
   ========================================================== */
.footer { background: #000; padding: 80px 20px 20px; text-align: center; }
.footer__cta { margin-bottom: 60px; }
.footer__title { font-size: 2rem; margin-bottom: 20px; }
.footer__tel { display: block; font-size: 3rem; font-family: var(--font-en); color: var(--color-text); text-decoration: none; margin-bottom: 20px; }
.copyright { font-size: 0.7rem; color: #555; margin-top: 40px; }

/* ==========================================================
   06. TOP PAGE STYLES (トップページ固有レイアウト)
   ========================================================== */
.hero { position: relative; height: 100svh; width: 100%; overflow: hidden; display: flex; justify-content: center; align-items: center; background: #0b1016; }
.hero__video-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transform: scale(1.1); }
#steamCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; mix-blend-mode: screen; }
.hero__content { position: relative; z-index: 10; text-align: center; }
.hero__title { font-size: clamp(3rem, 10vw, 6rem); line-height: 1.1; display: flex; flex-direction: column; align-items: center; text-shadow: 0 10px 30px rgba(0,0,0,0.5); color: #fff; }
.hero__scroll { position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%); font-family: var(--font-en); letter-spacing: 0.2em; font-size: 0.8rem; opacity: 0.7; animation: bounce 2s infinite; z-index: 10; }
.hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.6)); z-index: 3; }

.philosophy-header { text-align: center; margin-bottom: 60px; }
.philosophy-body { max-width: 800px; margin: 0 auto; }
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 900px; margin: 0 auto 60px; }
@media (min-width: 768px) { .comparison-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.comparison-item { background: rgba(255,255,255,0.05); padding: 50px 40px 40px; border: 1px solid #333; text-align: center; position: relative; transition: transform 0.3s; border-radius: 4px; }
.comparison-item.highlight { border-color: var(--color-accent); background: linear-gradient(to bottom, rgba(230, 81, 0, 0.1), rgba(0,0,0,0)); transform: scale(1.05); z-index: 2; }
.comp-icon { font-size: 3rem; margin-bottom: 1rem; }
.comp-title { font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-en); color: #fff; }
.comp-title .jp { font-size: 1rem; margin-left: 10px; color: #aaa; font-family: var(--font-jp); }
.comp-desc { font-size: 0.95rem; line-height: 1.8; color: #eee; }
.badge-tag { display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: bold; font-family: var(--font-en); letter-spacing: 0.1em; position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); z-index: 10; white-space: nowrap; border-radius: 20px; }
.badge-standard { background: #3498db; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.badge-exclusive { background: var(--color-accent); color: #fff; box-shadow: 0 0 10px rgba(230, 81, 0, 0.5); }
.marker-blue { border-bottom: 2px solid #3498db; color: #fff; }
.marker-red { border-bottom: 2px solid var(--color-accent); font-weight: bold; color: #fff; }
.stamp-only { position: absolute; top: -15px; right: -15px; background: var(--color-gold); color: #000; width: 80px; height: 80px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; transform: rotate(15deg); box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.stamp-only .en { font-size: 0.6rem; letter-spacing: 0; }
.philosophy-footer { text-align: center; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.philosophy-footer .en { font-size: 1.5rem; color: var(--color-gold); margin-bottom: 1rem; }

.chef-container { max-width: 600px; margin-left: auto; margin-right: auto; }
.chef-wrapper { aspect-ratio: 4 / 3; border-radius: 8px; box-shadow: 0 15px 40px rgba(0,0,0,0.4); }

.menu-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
.menu-item { position: relative; height: 60vh; background: #000; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.menu-item__bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.menu-item__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 2; transition: background 0.5s; }
.menu-item__content { position: relative; z-index: 3; padding: 2rem; }
.menu-item__title { font-size: 2rem; margin-bottom: 1rem; color: #fff; }
.menu-item:hover .zoom-img { transform: scale(1.1); }
.menu-item:hover .menu-item__overlay { background: rgba(0,0,0,0.2); }

.section--ocean { position: relative; overflow: hidden; background: transparent; }
.bg-video-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.bg-video { width: 100%; height: 100%; object-fit: cover; }
.bg-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 16, 22, 0.8); z-index: 1; }
.split-layout { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 900px) { .split-layout { flex-direction: row; align-items: center; } .split-layout > * { flex: 1; } }
.boat-text-wrapper { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 40px; max-width: 600px; }
.glass-effect { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 8px; }
.feature-block { border-left: 2px solid rgba(255,255,255,0.2); padding-left: 20px; }
.feature-title { font-size: 1.2rem; margin-bottom: 15px; color: var(--color-gold); font-family: var(--font-en); display: flex; align-items: center; gap: 10px; }
.feature-title .jp { font-size: 1rem; color: #fff; font-family: var(--font-jp); }
.highlight-text { color: #fff; font-weight: bold; border-bottom: 1px dotted #fff; }
.boat-visual { position: relative; height: 50vh; width: 100%; z-index: 2; margin-top: 40px; }
@media (min-width: 900px) { .boat-visual { height: 70vh; margin-top: 0; } }
.visual-card { position: absolute; width: 75%; aspect-ratio: 4/3; overflow: hidden; border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-radius: 4px; }
.visual-card img, .visual-card video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.visual-card:hover img, .visual-card:hover video { transform: scale(1.1); }
.visual-card .caption { position: absolute; bottom: 0; left: 0; background: rgba(0,0,0,0.7); color: #fff; padding: 5px 15px; font-size: 0.8rem; font-family: var(--font-en); }
.visual-card--boat { top: 0; right: 0; z-index: 1; }
.visual-card--tank { bottom: 0; left: 0; z-index: 2; border-color: var(--color-gold); }

/* --- 【復元】トップページ固有のLOCATIONエリア --- */
.info-grid { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 768px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-card { border: 1px solid #333; padding: 40px; text-align: center; transition: background 0.3s; border-radius: 4px; }
.info-card:hover { background: rgba(255,255,255,0.05); }
.info-card__title { font-family: var(--font-en); font-size: 1.5rem; color: var(--color-gold); margin-bottom: 1rem; }

/* --- 【復元】トップページ固有のTOURISMエリア --- */
.tourism-layout { display: grid; gap: 40px; }
@media (min-width: 768px) { .tourism-layout { grid-template-columns: 1fr 2fr; align-items: start; } }
.link-list li { list-style: none; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.2); font-size: 1.2rem; display: flex; align-items: baseline; gap: 10px; color: #fff; }
.link-list .en { font-size: 0.9rem; color: #aaa; }
.tourism-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; gap: 15px; }
.gallery-item { position: relative; overflow: hidden; width: 100%; height: 100%; border-radius: 4px; margin: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.gallery-item:hover img { transform: scale(1.1); }
.item-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
.item-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.item-3 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-4 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-5 { grid-column: 3 / 4; grid-row: 2 / 3; }
@media (max-width: 767px) {
    .tourism-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
    .item-1 { grid-column: 1 / 3; height: 200px; }
    .item-2 { grid-column: 1 / 2; height: 150px; }
    .item-3 { grid-column: 2 / 3; height: 150px; }
    .item-4 { grid-column: 1 / 3; height: 200px; }
    .item-5 { grid-column: 1 / 3; height: 200px; }
}

/* --- 【復元】トップページ固有のINSTAGRAMエリア --- */
.instagram-wrapper { overflow-x: auto; padding: 20px 0; }
.snapwidget-placeholder { width: 100%; height: 200px; background: rgba(255,255,255,0.05); border-radius: 4px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 1px dashed rgba(255,255,255,0.2); color: #ccc; }


/* ==========================================================
   07. SUBPAGE COMMON (下層ページ共通)
   ========================================================== */
.subpage-hero { position: relative; height: 50vh; min-height: 400px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.subpage-hero__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11, 16, 22, 0.7); }
.subpage-hero__content { position: relative; z-index: 2; text-align: center; }
.subpage-title { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.1em; color: #fff; }
.subpage-title .en { display: block; color: var(--color-gold); font-size: 1.2rem; margin-bottom: 10px; font-family: var(--font-en); letter-spacing: 0.2em; }

/* ==========================================================
   08. GREETING PAGE (ごあいさつ・店主紹介)
   ========================================================== */
.story-section { padding: 100px 20px; background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat; }
.story-block { display: flex; flex-direction: column; gap: 50px; max-width: 1000px; margin: 0 auto 100px; }
@media (min-width: 900px) { .story-block { flex-direction: row; align-items: center; } .story-block--reverse { flex-direction: row-reverse; } .story-block > * { flex: 1; } }
.chapter-num { display: block; font-family: var(--font-en); font-size: 1.8rem; color: var(--color-accent); margin-bottom: 15px; font-weight: bold; }
.story-title { font-size: 2rem; line-height: 1.4; margin-bottom: 30px; padding-left: 0; color: #fff; }
.story-title .jp { display: block; font-weight: 700; }
.story-title .en { display: block; font-size: 1rem; color: var(--color-gold); margin-top: 10px; }
.story-text p.jp { line-height: 2.2; color: #eee; font-size: 1.05rem; }
.story-text p.en { color: #999; font-size: 0.95rem; font-style: italic; margin-top: 15px; }

.chapter-num.sumo-icon { position: relative; padding-left: 40px; }
.chapter-num.sumo-icon::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background: var(--color-accent); mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C20 0, 0 20, 0 50 C0 80, 20 100, 50 100 L50 70 L50 70 C80 70, 100 50, 100 30 C100 10, 80 0, 50 0 Z"></path></svg>'); -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0 C20 0, 0 20, 0 50 C0 80, 20 100, 50 100 L50 70 L50 70 C80 70, 100 50, 100 30 C100 10, 80 0, 50 0 Z"></path></svg>'); mask-size: contain; -webkit-mask-size: contain; mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat; opacity: 0.8; }
.history-gallery-container.banzuke-frame { padding: 20px; border: 10px double var(--color-gold); background: rgba(197, 163, 101, 0.05); position: relative; border-radius: 4px; }
.history-gallery-container.banzuke-frame::before, .history-gallery-container.banzuke-frame::after { content: '◆'; position: absolute; color: var(--color-gold); font-size: 1.2rem; }
.history-gallery-container.banzuke-frame::before { top: 5px; left: 5px; } .history-gallery-container.banzuke-frame::after { bottom: 5px; right: 5px; }
.history-gallery { position: relative; height: 300px; width: 100%; }
.history-photo { position: absolute; width: 60%; border: 8px solid #fff; box-shadow: 0 10px 25px rgba(0,0,0,0.8); border-radius: 2px; transition: transform 0.4s ease, z-index 0s; }
.history-photo:hover { transform: scale(1.1) rotate(0deg) !important; z-index: 10; }
.photo-left { top: 10%; left: 0; transform: rotate(-8deg); z-index: 2; } .photo-center { top: 0; left: 20%; transform: rotate(3deg); z-index: 3; width: 65%; } .photo-right { top: 20%; right: 0; transform: rotate(10deg); z-index: 1; }
.sumo-divider { text-align: center; margin: 80px 0; opacity: 0.5; }
.sumo-divider img { max-width: 300px; width: 100%; height: auto; filter: grayscale(80%) contrast(120%); mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent); }

.story-image-container { display: flex; justify-content: center; align-items: center; width: 100%; }
.small-img-wrap { max-width: 350px; width: 100%; margin: 0 auto; }
.story-image-wrap { aspect-ratio: 4 / 3; overflow: hidden; position: relative; border-radius: 4px; }
.framed-img { border: 1px solid rgba(255,255,255,0.2); padding: 15px; background: rgba(255,255,255,0.05); }
.story-img { width: 100%; height: 100%; object-fit: cover; }
.signature-block { text-align: center; max-width: 800px; margin: 120px auto 0; padding-top: 80px; border-top: 1px solid rgba(255,255,255,0.1); }
.signature-block > p.jp { font-size: 1.4rem; line-height: 2; color: #eee; }
.signature-profile { display: inline-flex; align-items: center; gap: 30px; text-align: left; position: relative; margin-top: 40px; }
.signature-img-wrap { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; border: 3px solid var(--color-gold); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.signature-img { width: 100%; height: 100%; object-fit: cover; }
.signature-name .role { display: block; font-size: 0.9rem; color: #aaa; }
.signature-name .name { display: block; font-size: 2.2rem; font-weight: 900; margin-bottom: 5px; letter-spacing: 0.2em; color: #fff; }
.signature-name .en-name { display: block; font-family: var(--font-en); color: var(--color-gold); letter-spacing: 0.1em; }
.hanko-stamp { position: absolute; right: -60px; top: 50%; transform: translateY(-50%) rotate(-5deg); width: 50px; height: 50px; background: #b71c1c; color: #fff; font-family: 'Zen Old Mincho', serif; font-weight: 900; font-size: 1.1rem; line-height: 1.1; display: flex; align-items: center; justify-content: center; text-align: center; border-radius: 5px; border: 2px solid rgba(255,255,255,0.5); box-shadow: inset 0 0 5px rgba(0,0,0,0.5), 0 5px 10px rgba(0,0,0,0.5); writing-mode: vertical-rl; letter-spacing: 2px; opacity: 0.9; }

/* ==========================================================
   09. MENU PAGE (おしながき)
   ========================================================== */
.menu-intro { padding: 80px 20px; text-align: center; }
.menu-intro-text { max-width: 800px; margin: 0 auto; }
.menu-intro-title { font-size: 2rem; line-height: 1.5; margin-bottom: 30px; color: var(--color-gold); }
.menu-intro-text p { line-height: 2; color: #eee; margin-bottom: 20px; }
.menu-anchor-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 50px; }
.anchor-btn { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 280px; padding: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; text-decoration: none; color: #fff; transition: all 0.3s ease; }
.anchor-btn:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(230, 81, 0, 0.4); }
.anchor-btn .jp { font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }
.anchor-btn .en { font-family: var(--font-en); font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.menu-category-section { padding: 100px 20px; }
.menu-divider { text-align: center; margin-bottom: 50px; }
.menu-divider img { max-width: 300px; width: 100%; height: auto; }
.menu-category-header { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.category-desc { line-height: 2; color: #eee; }

.crab-main-video { max-width: 1000px; margin: 0 auto 60px; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 2px solid var(--color-gold); }
.crab-main-video .main-vid { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.trust-banner.large { display: flex; flex-direction: column; max-width: 1000px; margin: 0 auto 80px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
@media (min-width: 900px) { .trust-banner.large { flex-direction: row; } }
.trust-banner.large .trust-banner__img { flex: 1.2; }
.trust-banner.large .trust-banner__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-banner.large .trust-banner__text { flex: 1; padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.trust-banner.large .trust-banner__text h3 { color: var(--color-accent); font-size: 1.8rem; line-height: 1.4; margin-bottom: 20px; font-weight: 900; }
.trust-banner.large .trust-banner__text p { color: #333; font-size: 1.05rem; line-height: 2; }
.highlight-jika { color: #b71c1c; font-size: 1.3em; font-weight: 900; padding: 0 5px; }
.banzuke-ranks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px dashed #ccc; }
.rank-tag { background: #b71c1c; color: #fff; padding: 8px 15px; font-family: var(--font-jp); font-weight: bold; font-size: 1.1rem; border-radius: 4px; letter-spacing: 0.1em; box-shadow: 2px 2px 5px rgba(0,0,0,0.2); }

.menu-list { display: flex; flex-direction: column; gap: 80px; max-width: 1000px; margin: 0 auto; }
.menu-item-block { display: flex; flex-direction: column; gap: 20px; }
.menu-item-header { text-align: center; max-width: 800px; margin: 0 auto; }
.menu-item-badge { display: inline-block; background: var(--color-accent); color: #fff; font-size: 0.8rem; font-weight: bold; padding: 5px 15px; border-radius: 20px; margin-bottom: 15px; }
.menu-item-name { font-size: 2rem; margin-bottom: 15px; line-height: 1.2; color: #fff; }
.menu-item-name .en { display: block; font-size: 1rem; color: var(--color-gold); font-family: var(--font-en); margin-top: 5px; }
.menu-item-text { line-height: 1.8; color: #eee; margin-bottom: 10px; }
.menu-note { font-size: 0.85rem; color: #bbb; }

.menu-item-gallery { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 15px; width: 100%; padding: 20px; background: #0b1016; border-radius: 8px; }
.menu-item-gallery img { width: 100%; max-width: 260px; height: auto; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: transform 0.4s ease; }
.menu-item-gallery img:hover { transform: scale(1.05); z-index: 10; position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }

.menu-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.menu-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, background 0.3s; }
.menu-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.08); border-color: var(--color-gold); }
.menu-card__img { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card__img img { transform: scale(1.05); }
.menu-card__body { padding: 25px 20px; display: flex; flex-direction: column; flex: 1; }
.menu-card__title { font-size: 1.4rem; color: var(--color-gold); margin-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 10px; }
.menu-card__text { font-size: 0.95rem; color: #ddd; line-height: 1.8; margin-bottom: 20px; }
.menu-card__price { margin-top: auto; font-size: 1.8rem; font-weight: bold; color: #fff; text-align: right; }
.menu-card__price-split { margin-top: auto; display: flex; flex-direction: column; gap: 5px; text-align: right; font-size: 1.5rem; font-weight: bold; color: #fff; }
.size-label { display: inline-block; background: #333; color: #fff; font-size: 0.8rem; padding: 2px 8px; border-radius: 4px; vertical-align: middle; margin-right: 10px; }
.currency { font-size: 1rem; margin-left: 2px; }
.tax { font-size: 0.8rem; font-weight: normal; color: #888; margin-left: 5px; }

/* ==========================================================
   10. LOCATION & ACCESS PAGE (店舗案内・アクセス)
   ========================================================== */
.store-intro-layout { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 900px) { .store-intro-layout { flex-direction: row; align-items: center; } .store-intro-layout > * { flex: 1; } }
.store-intro-text .section-title { border-left: none; padding-left: 0; }
.store-intro-text p { color: #eee; line-height: 2; }
.store-intro-img img { width: 100%; height: auto; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.seating-section { padding: 100px 20px; }
.seating-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.seating-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; flex-direction: column; transition: transform 0.3s ease; }
.seating-card:hover { transform: translateY(-5px); }
.seating-card__img { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
.seating-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.seating-card:hover .seating-card__img img { transform: scale(1.05); }
.seating-card__body { padding: 30px 25px; display: flex; flex-direction: column; flex: 1; }
.seating-card__title { font-size: 1.5rem; color: var(--color-bg); margin-bottom: 15px; font-weight: bold; border-bottom: 2px solid var(--color-accent); padding-bottom: 10px; display: inline-block; }
.seating-card__text { font-size: 0.95rem; color: #444; line-height: 1.8; }

.access-layout { display: flex; flex-direction: column; gap: 50px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .access-layout { flex-direction: row; align-items: flex-start; } .access-info { flex: 1; } .access-directions { flex: 1.5; } }
.info-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; }
.info-table th, .info-table td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.info-table th { width: 30%; color: var(--color-gold); font-weight: bold; white-space: nowrap; }
.info-table td { color: #eee; line-height: 1.8; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.tel-number { font-size: 1.5rem; font-weight: bold; font-family: var(--font-en); letter-spacing: 0.1em; color: #fff; }
.tel-sub { font-size: 1rem; color: #aaa; }
.direction-block { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 30px; margin-bottom: 20px; }
.direction-block h4 { font-size: 1.3rem; color: #fff; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.direction-route { margin-bottom: 25px; } .direction-route:last-child { margin-bottom: 0; }
.direction-route h5 { color: var(--color-gold); font-size: 1.1rem; margin-bottom: 10px; }
.direction-route p { color: #ccc; font-size: 0.95rem; margin-bottom: 10px; padding-left: 10px; }
.direction-route ul { list-style: none; padding-left: 10px; }
.direction-route ul li { color: #eee; font-size: 0.95rem; line-height: 1.8; margin-bottom: 5px; position: relative; padding-left: 1.5em; }
.direction-route ul li::before { content: '・'; position: absolute; left: 0; color: var(--color-accent); }
.direction-route ul li strong { color: #fff; }

/* ==========================================================
   11. BANQUET & GROUP PAGE (団体・ご宴会)
   ========================================================== */
.banquet-intro-layout { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 900px) { .banquet-intro-layout { flex-direction: row; align-items: center; } .banquet-intro-layout > * { flex: 1; } }
.banquet-intro-text .section-title { border-left: none; padding-left: 0; }
.banquet-intro-text p { color: #eee; line-height: 2; }
.banquet-intro-img img { width: 100%; height: auto; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.banquet-plan-section { padding: 100px 20px; }
.banquet-plan-grid { display: flex; flex-direction: column; gap: 50px; max-width: 1000px; margin: 0 auto; }
.banquet-plan-card { display: flex; flex-direction: column; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
@media (min-width: 800px) { .banquet-plan-card { flex-direction: row; } .banquet-plan-card > * { flex: 1; } }
.plan-card__img { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.plan-card__img > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.banquet-plan-card:hover .plan-card__img > img { transform: scale(1.05); }
.plan-season-badge { position: absolute; top: 20px; left: -10px; background: var(--color-accent); color: #fff; font-weight: bold; padding: 8px 20px 8px 30px; font-family: var(--font-jp); letter-spacing: 0.1em; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 10; }
.plan-season-badge.badge-blue { background: #3498db; }
.plan-collage { display: flex; flex-direction: column; height: 100%; width: 100%; }
.plan-collage img { width: 100%; height: 50%; object-fit: cover; transition: transform 0.5s ease; }
.banquet-plan-card:hover .plan-collage img { transform: scale(1.05); }
.plan-card__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.plan-card__title { font-size: 1.8rem; color: #000; margin-bottom: 20px; font-weight: bold; }
.plan-card__text { font-size: 1rem; color: #444; line-height: 1.8; margin-bottom: 20px; }
.plan-card__body .btn-line:hover { background: #000; color: #fff !important; }

.kanji-support { max-width: 800px; margin: 80px auto 0; padding: 3px; background: linear-gradient(135deg, var(--color-gold), transparent); border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.kanji-support__inner { background: #fdfaf5; padding: 40px; border-radius: 5px; text-align: center; }
.kanji-title { font-size: 1.5rem; color: #b71c1c; margin-bottom: 20px; font-weight: bold; }
.kanji-support__inner p { color: #333; line-height: 1.8; margin-bottom: 30px; }
.kanji-contact { display: inline-flex; flex-direction: column; align-items: center; background: #fff; border: 1px solid #ddd; padding: 20px 40px; border-radius: 4px; }
.kanji-contact span { font-size: 0.9rem; color: #666; margin-bottom: 10px; }
.kanji-tel { font-size: 2.5rem; font-weight: bold; font-family: var(--font-en); color: #000; text-decoration: none; letter-spacing: 0.05em; transition: color 0.3s; }
.kanji-tel:hover { color: var(--color-accent); }

/* ==========================================================
   12. BOAT PAGE (幸進丸・漁業)
   ========================================================== */
.video-hero { overflow: hidden; }
.hero-bg-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 0; object-fit: cover; }

.boat-intro-section { padding-top: 120px; }
@media (max-width: 767px) { .boat-intro-section { padding-top: 80px; } }
.boat-intro-layout { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin: 0 auto 80px; }
@media (min-width: 900px) { .boat-intro-layout { flex-direction: row; align-items: center; } .boat-intro-layout > * { flex: 1; } }
.boat-intro-text .section-title { border-left: none; padding-left: 0; }
.boat-intro-text p { color: #eee; line-height: 2; }
.boat-intro-img { aspect-ratio: 4 / 3; }
.boat-intro-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.fishing-calendar { max-width: 900px; margin: 0 auto; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 40px; }
.calendar-title { text-align: center; font-size: 1.5rem; color: var(--color-gold); margin-bottom: 30px; border-bottom: 1px dashed rgba(255,255,255,0.2); padding-bottom: 15px; }
.calendar-grid { display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 768px) { .calendar-grid { flex-direction: row; } .calendar-card { flex: 1; border-right: 1px solid rgba(255,255,255,0.1); padding-right: 30px; } .calendar-card:last-child { border-right: none; padding-right: 0; padding-left: 30px; } }
.calendar-card h4 { font-size: 1.3rem; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.season-icon { font-size: 1.5rem; }
.catch-list { list-style: none; padding: 0; }
.catch-list li { color: #eee; font-size: 1.05rem; line-height: 2; margin-bottom: 10px; position: relative; padding-left: 20px; }
.catch-list li::before { content: '🐟'; position: absolute; left: 0; font-size: 0.9rem; }
.catch-list li small { color: var(--color-accent); font-weight: bold; margin-left: 5px; }

.daily-catch-section { padding: 100px 20px; }
.catch-story-grid { display: flex; flex-direction: column; gap: 40px; max-width: 1000px; margin: 0 auto; }
@media (min-width: 800px) { .catch-story-grid { flex-direction: row; align-items: flex-start; } }
.catch-step { flex: 1; display: flex; flex-direction: column; position: relative; }
.catch-step__img { position: relative; aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); margin-bottom: 20px; border: 2px solid #fff; }
.catch-step__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.catch-step:hover .catch-step__img img { transform: scale(1.08); }
.step-badge { position: absolute; top: 10px; left: 10px; background: var(--color-bg); color: #fff; padding: 5px 15px; font-weight: bold; border-radius: 20px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.2); }
.catch-step__text { color: #eee; line-height: 1.8; font-size: 0.95rem; }
@media (min-width: 800px) { .arrow-step::before { content: '▶'; position: absolute; left: -30px; top: 35%; font-size: 1.5rem; color: #aaa; } }


/* ==========================================================
   13. TOURISM PAGE (越前を巡る)
   ========================================================== */
.tourism-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; }
.tourism-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.tourism-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.tourism-card__img { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
.tourism-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tourism-card:hover .tourism-card__img img { transform: scale(1.05); }
.tourism-card__body { padding: 25px; display: flex; flex-direction: column; }
.tourism-card__body h3 { font-size: 1.3rem; color: var(--color-gold); margin-bottom: 10px; font-weight: bold; }
.tourism-card__body p { font-size: 0.95rem; color: #eee; line-height: 1.8; }

.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: rgba(255,255,255,0.2); }
@media (max-width: 767px) { .timeline::before { left: 20px; } }
.timeline-item { position: relative; margin-bottom: 60px; width: 100%; display: flex; justify-content: flex-end; }
.timeline-item:nth-child(even) { justify-content: flex-start; }
@media (max-width: 767px) { .timeline-item { justify-content: flex-end !important; } }
.timeline-dot { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: var(--color-gold); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-jp); font-weight: bold; z-index: 2; box-shadow: 0 0 0 5px var(--color-bg); }
@media (max-width: 767px) { .timeline-dot { left: 20px; width: 40px; height: 40px; font-size: 0.8rem; } }
.timeline-content { width: 45%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
@media (max-width: 767px) { .timeline-content { width: calc(100% - 60px); } }
.timeline-img { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.timeline-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.timeline-content:hover .timeline-img img { transform: scale(1.05); }
.timeline-text { padding: 25px; }
.event-month { display: inline-block; color: var(--color-accent); font-family: var(--font-en); font-size: 1.2rem; font-weight: bold; margin-bottom: 5px; }
.timeline-text h3 { font-size: 1.4rem; color: #fff; margin-bottom: 10px; }
.timeline-text p { font-size: 0.95rem; color: #eee; line-height: 1.8; }

.fishing-layout { display: flex; flex-direction: column; gap: 50px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .fishing-layout { flex-direction: row; align-items: center; } .fishing-text { flex: 1; } .fishing-gallery { flex: 1.2; } }
.fishing-title { font-size: 1.8rem; color: #fff; margin-bottom: 20px; line-height: 1.4; }
.fishing-text p { color: #eee; line-height: 2; }
.fishing-gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 150px; gap: 10px; }
.fishing-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.4s ease; }
.fishing-gallery img:hover { transform: scale(1.05); z-index: 10; position: relative; }
.fg-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.fg-2 { grid-column: 3 / 4; grid-row: 1 / 2; }
.fg-3 { grid-column: 3 / 4; grid-row: 2 / 3; }
.fg-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
.fg-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
.fg-6 { grid-column: 3 / 4; grid-row: 3 / 4; }
@media (max-width: 767px) {
    .fishing-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
    .fg-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
    .fg-2 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .fg-3 { grid-column: 2 / 3; grid-row: 3 / 4; }
    .fg-4 { grid-column: 1 / 2; grid-row: 4 / 5; }
    .fg-5 { grid-column: 2 / 3; grid-row: 4 / 5; }
    .fg-6 { grid-column: 1 / 3; grid-row: 5 / 6; }
}
/* ==========================================================
   14. RESERVATION PAGE (ご予約・お問い合わせフォーム)
   ========================================================== */

/* --- お電話予約ブロック --- */
.tel-reserve-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3px;
    background: linear-gradient(135deg, var(--color-gold), transparent);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.tel-reserve-inner {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 5px;
    text-align: center;
}
.tel-number-large {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    font-family: var(--font-en);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
    margin-bottom: 10px;
    line-height: 1;
}
.tel-number-large:hover {
    color: var(--color-accent);
}
.tel-hours {
    color: #aaa;
    font-size: 1rem;
}

/* --- Web予約フォーム --- */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
@media (max-width: 767px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-row {
    display: flex;
    gap: 20px;
}
@media (max-width: 767px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}
.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.required {
    background: #b71c1c;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: normal;
    letter-spacing: 0.05em;
}
.optional {
    background: #888;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: normal;
    letter-spacing: 0.05em;
}

/* 入力エリアのスタイル */
.reserve-form input[type="text"],
.reserve-form input[type="tel"],
.reserve-form input[type="email"],
.reserve-form input[type="date"],
.reserve-form input[type="number"],
.reserve-form select,
.reserve-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fafafa;
    font-family: var(--font-jp);
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s, background 0.3s;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}

/* 人数の入力欄用 */
.input-with-unit {
    display: flex;
    align-items: center;
    gap: 10px;
}
.input-with-unit input {
    width: 100px !important;
}

/* 送信ボタンエリア */
.form-submit {
    margin-top: 20px;
    text-align: center;
    border-top: 1px dashed #ddd;
    padding-top: 30px;
}
.privacy-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}
.submit-btn {
    width: 100%;
    max-width: 300px;
    font-size: 1.2rem;
    padding: 18px 40px;
    cursor: pointer;
    border: none;
}
/* --- 予約に関する重要事項ブロック --- */
.important-note {
    background: #fdfaf5;
    border-left: 4px solid #b71c1c;
    padding: 25px;
    margin-bottom: 25px;
    text-align: left;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.important-note h4 {
    color: #b71c1c;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.important-note p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.important-note p:last-child {
    margin-bottom: 0;
}
.important-note strong {
    color: #b71c1c;
    font-size: 1rem;
}