:root {
    --color-primary: #8D6E63;
    --color-secondary: #FDFBF7;
    --color-accent: #4E6E58;
    --color-text: #4A4A4A;
    --color-white: #FFFFFF;
    --color-line: #06C755;
    --color-line-hover: #05b04b;
    --color-muted: #7E7E7E;
    
    --font-serif: 'Kaushan Script', 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(141, 110, 99, 0.15);
    --shadow-lg: 0 15px 35px rgba(141, 110, 99, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: var(--color-primary);
}

h1 {
    font-family: var(--font-serif);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Common Layout Elements */
section {
    padding: 7rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 500;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.warning-text {
    color: #C62828;
    font-size: 0.85rem;
    font-weight: 500;
}

.icon-svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

/* Utility for actual images replacing placeholders */
.img-actual {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: opacity 0.5s ease;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(253, 251, 247, 0.0);
    padding: 1.2rem 2rem;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(253, 251, 247, 0.98);
    padding: 0.8rem 2rem;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-white);
    letter-spacing: 1px;
    position: absolute;
    top: 1.2rem;
    left: 2rem;
    z-index: 1001;
}

header.scrolled .logo {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

header.scrolled .nav-menu a {
    color: var(--color-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-nav-btn {
    background-color: var(--color-line);
    color: var(--color-white) !important;
}

.line-nav-btn:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-2px);
}

.hp-nav-btn {
    background-color: #FF5A73;
    color: var(--color-white) !important;
}

.hp-nav-btn:hover {
    background-color: #E03E58;
    transform: translateY(-2px);
}

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: var(--transition);
}

header.scrolled .menu-toggle span {
    background-color: var(--color-primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #5D4037; /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    padding: 0 1.5rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
}

.hero-lead {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.primary-cta {
    background-color: #FF5A73;
    color: var(--color-white);
}

.primary-cta:hover {
    transform: translateY(-3px);
    background-color: #E03E58;
    box-shadow: 0 6px 20px rgba(255, 90, 115, 0.3);
}

.line-cta {
    background-color: var(--color-line);
    color: var(--color-white);
}

.line-cta:hover {
    transform: translateY(-3px);
    background-color: var(--color-line-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.arrow-line {
    width: 1px;
    height: 40px;
    background-color: var(--color-white);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.arrow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    animation: scrollLine 2s infinite;
}

/* Concept Section */
.concept {
    text-align: center;
    background-image: linear-gradient(rgba(253, 251, 247, 0.85), rgba(253, 251, 247, 0.85)), url('concept_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--color-secondary);
}

.concept-lead {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-family: var(--font-serif);
    font-weight: 500;
}

.concept-content {
    max-width: 800px;
    margin: 0 auto 5rem;
}

.concept-content p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    line-height: 2.1;
    color: var(--color-text);
}

/* Owner Bio */
.owner-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(141, 110, 99, 0.08);
}

.owner-image-wrapper {
    width: 250px;
    height: 330px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.owner-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D7CCC8 0%, #B0BEC5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: bold;
}

.owner-info {
    flex-grow: 1;
}

.owner-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.owner-name {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.owner-message {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #555;
}

/* LINE Integration Banner */
.line-intro-banner {
    margin-top: 5rem;
    background: linear-gradient(135deg, #F1F8E9 0%, #DCEDC8 100%);
    border-radius: 35px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 199, 85, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.line-intro-banner::before {
    content: '💬';
    position: absolute;
    font-size: 8rem;
    bottom: -2rem;
    right: -1rem;
    opacity: 0.06;
}

.line-intro-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.line-intro-banner h4 {
    font-size: 1.4rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-weight: bold;
}

.line-intro-banner p {
    font-size: 0.95rem;
    color: #4E5E50;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.line-btn-large {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-line);
    color: var(--color-white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    animation: gentlePulse 2.5s infinite;
}

.line-btn-large:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

/* Menu & Services Section */
.menu-section {
    background-color: var(--color-white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: var(--color-secondary);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(141, 110, 99, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 110, 99, 0.2);
}

.tag {
    align-self: flex-start;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.menu-time {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.menu-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-label {
    font-size: 0.75rem;
    color: #D32F2F;
    background-color: #FFEBEE;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D32F2F;
}

.normal-price {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-decoration: line-through;
}

.menu-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.detail-btn {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: block;
    width: 100%;
    margin-top: auto;
}

.detail-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.menu-footer-cta {
    text-align: center;
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: 35px;
    border: 1px dashed rgba(141, 110, 99, 0.3);
}

.menu-footer-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    color: #555;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(141, 110, 99, 0.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0D4CE 0%, #C7B5AD 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-align: center;
    padding: 1rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(78, 110, 88, 0.85); /* Accent Green */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 5;
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.zoom-icon {
    display: none !important;
}

/* Booking & Inquiry Double CTA Section */
.inquiry-section {
    background-image: linear-gradient(rgba(141, 110, 99, 0.03), rgba(141, 110, 99, 0.03));
}

.inquiry-container {
    max-width: 950px;
    margin: 0 auto;
}

.inquiry-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.inquiry-subtitle {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 4rem;
}

.cta-cards {
    display: flex;
    gap: 3rem;
}

.cta-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 3.5rem 3rem;
    border-radius: 35px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(141, 110, 99, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cta-card.line-card h3 {
    color: var(--color-line);
}

.cta-card.hp-card h3 {
    color: var(--color-primary);
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-button.hp-btn {
    background-color: #FF5A73;
    color: var(--color-white);
}

.card-button.hp-btn:hover {
    background-color: #E03E58;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 90, 115, 0.25);
}

.card-button.line-btn {
    background-color: var(--color-line);
    color: var(--color-white);
}

.card-button.line-btn:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.2);
}

/* Info & Access Section */
.access-section {
    background-color: var(--color-white);
}

.access-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.info-table-container {
    background: var(--color-secondary);
    box-shadow: var(--shadow-sm);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(141, 110, 99, 0.08);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1.4rem 1.8rem;
    border-bottom: 1px solid rgba(141, 110, 99, 0.08);
    text-align: left;
    font-size: 0.92rem;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    width: 25%;
    background-color: rgba(141, 110, 99, 0.05);
    color: var(--color-primary);
    font-weight: 600;
    vertical-align: top;
    white-space: nowrap;
}

.info-table td {
    color: var(--color-text);
}

.map-container {
    height: 100%;
}

.map-iframe-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(141, 110, 99, 0.08);
    min-height: 400px;
}

.map-iframe-wrapper iframe {
    display: block;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 1.5rem;
    text-align: center;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.footer-container .sns-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.85rem;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sns-icon.line {
    background-color: var(--color-line);
    color: var(--color-white);
}

.sns-icon.line:hover {
    background-color: var(--color-line-hover);
    transform: translateY(-2px);
}

.sns-icon.hotpepper {
    background-color: #FF5A73;
    color: var(--color-white);
}

.sns-icon.hotpepper:hover {
    background-color: #E03E58;
    transform: translateY(-2px);
}

/* Instagram Banners */
.insta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white) !important;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.insta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.insta-button.whitening {
    background: linear-gradient(45deg, #fff0f5 0%, #ffb6c1 50%, #ff69b4 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.insta-button.whitening:hover {
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.insta-account-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.insta-account-id {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 99;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Modals System (Common Overlay) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(141, 110, 99, 0.5); /* Soft cocoa brown overlay */
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-modal {
    background-color: var(--color-secondary);
    border-radius: 35px;
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(141, 110, 99, 0.1);
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    display: none;
}

.modal-overlay.show .menu-modal.active {
    transform: scale(1);
    display: block;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: var(--color-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-accent);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    border-bottom: 1px dashed rgba(141, 110, 99, 0.15);
    padding-bottom: 1.5rem;
}

.modal-tag {
    display: inline-block;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-header h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.modal-price {
    font-size: 1.4rem;
    color: #D32F2F;
    font-weight: bold;
}

.modal-price .tax-in {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: normal;
}

.modal-body-content h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.modal-body-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2rem;
}

.modal-body-content h5 {
    font-size: 1rem;
    color: var(--color-primary);
    border-left: 3px solid var(--color-accent);
    padding-left: 0.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.modal-body-content ul,
.modal-body-content ol {
    margin-bottom: 2.2rem;
    padding-left: 1.5rem;
}

.modal-body-content li {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 0.6rem;
}

.modal-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.modal-cta-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.modal-cta-btn.hp-btn {
    background-color: #FF5A73;
    color: var(--color-white);
}

.modal-cta-btn.hp-btn:hover {
    background-color: #E03E58;
}

.modal-cta-btn.line-btn {
    background-color: var(--color-line);
    color: var(--color-white);
}

.modal-cta-btn.line-btn:hover {
    background-color: var(--color-line-hover);
}

/* Lightbox System (Photo Zoom) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 20, 15, 0.95);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    opacity: 0.5;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.lightbox-caption {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--color-white);
    font-size: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 251, 247, 0.1);
    color: var(--color-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 2.5rem; }
.lightbox-next { right: 2.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--color-accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(6, 199, 85, 0.6);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
    }
}

/* Scroll Fade In Interaction Classes (Intersection Observer) */
.scroll-trigger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-trigger.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .map-iframe-wrapper {
        min-height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Header & Mobile Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 1050;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2.2rem;
    }
    
    .nav-menu a {
        color: var(--color-text) !important;
        font-size: 1.15rem;
    }
    
    .header-ctas {
        flex-direction: column;
        width: 80%;
        gap: 1.2rem;
    }
    
    .header-ctas .nav-btn {
        width: 100%;
        padding: 0.8rem;
    }
    
    /* When mobile menu is active, change toggle icon */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--color-primary);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
        background-color: var(--color-primary);
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-lead {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
    }
    
    /* Concept & Owner */
    .owner-container {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .owner-image-wrapper {
        width: 200px;
        height: 260px;
    }
    
    .owner-info {
        text-align: center;
    }
    
    /* Booking CTA Cards */
    .cta-cards {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-card {
        padding: 2.5rem 2rem;
    }
    
    /* Info Table */
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
        padding: 1rem 1.2rem;
    }
    
    .info-table th {
        background-color: rgba(141, 110, 99, 0.08);
        border-bottom: none;
    }
    
    /* Modals & Lightbox */
    .menu-modal {
        padding: 2.5rem 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .lightbox-prev { left: 0.8rem; }
    .lightbox-next { right: 0.8rem; }
    .lightbox-close { top: 1.2rem; right: 1.5rem; font-size: 2.5rem; }

    .logo {
        top: 0.8rem;
        left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container .sns-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .sns-icon {
        width: 100%;
        max-width: 250px;
    }
}

/* Specific visibility helpers */
@media (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

/* Media Coverage Section */
.media-section {
    background-color: var(--color-white);
    padding: 7rem 1.5rem;
}

.media-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    text-align: left;
}

.media-card-custom {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(141, 110, 99, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.media-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 110, 99, 0.15);
}

.media-badge {
    align-self: flex-start;
    background-color: rgba(78, 110, 88, 0.1);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.media-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

.media-card-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.media-link-btn {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 2px;
    transition: var(--transition);
}

.media-link-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .media-card-custom {
        padding: 2rem 1.5rem;
    }
    .media-container {
        margin-top: 4rem;
        padding: 0 1rem;
    }
}

/* Static Gallery Caption */
.gallery-item {
    text-align: center;
    margin-bottom: 20px;
}
.gallery-caption-static {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #5D4037;
    font-weight: 500;
}
