:root {
    --primary-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #333333;
    --bg-color: #0a0a0a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition-speed: 0.8s;
}

/* Localization Utilities */
.en-sm {
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 5px;
    font-family: var(--font-sans);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.en-block {
    display: block;
    font-size: 0.4em;
    /* Relative to the parent heading */
    opacity: 0.6;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 400;
}

.en-sub-inline {
    display: inline-block;
    font-size: 0.8em;
    margin-left: 10px;
    opacity: 0.8;
}


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

body {
    font-family: var(--font-sans);
    color: var(--primary-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    /* Solid dark background for readability */
}

.logo {
    font-family: var(--font-serif);
    font-size: 21px;
    /* 24px -> 21px (-3pt) */
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(0px) !important;
}

.logo img {
    height: 50px;
    /* Larger logo */
    width: auto;
    filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 1px #fff);
    /* White edge as background is black */
    transform: translateY(-2px) !important;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    /* Japanese and English stacked */
    align-items: center;
    /* Center horizontally */
    line-height: 1.2;
}

.nav-links li a .en-sm {
    margin-left: 0;
    /* Clear previous margin */
    margin-top: 2px;
    display: block;
    text-align: center;
    font-size: 0.6em;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Full Screen Slider */
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-speed) ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for text readability */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.4s;
}

.slide-subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.6s;
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease 0.8s;
    /* Delayed appearance */
    opacity: 0;
    transform: translateY(20px);
}

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

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .navbar {
        padding: 20px;
    }

    /* Mobile Menu Styles */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.95);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .nav-links.active li {
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Store Page Styles */
.menu-gallery {
    background-color: #1a1a1a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.gallery-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    text-align: left;
    padding: 0 5px;
}

.store-page {
    background-color: #111;
}

.store-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.section {
    padding: 80px 20px;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 20px;
}

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

.concept-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #ccc;
}

.menu-list {
    text-align: left;
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.menu-list li:last-child {
    border-bottom: none;
}

.map-placeholder,
.instagram-feed-placeholder {
    margin-top: 30px;
    background: #111;
    padding: 40px;
    border: 1px solid #222;
    color: #555;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.instagram-feed-placeholder:hover {
    border-color: var(--accent-color);
}

.access-info p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Main Footer Styles */
.main-footer {
    background-color: #000;
    color: #ccc;
    padding: 60px 20px 20px;
    border-top: 1px solid #222;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.company-info h3 {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.company-info .company-details {
    margin-bottom: 20px;
}

.company-info .co-name {
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.company-info .co-address {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.company-info p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h3 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    /* Vertical flow: Col1 (Home, ESQUINA, HACHI), Col2 (WhiskeyCat, Toshiya, Contact) */
    gap: 15px 40px;
}

.footer-links li {
    margin-bottom: 0;
    text-align: left;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        text-align: left;
    }
}

/* =========================================
   Menu Slider Styles (Final 1:1 Square, strict 3 columns)
   ========================================= */
:root {
    --card-bg: #111111;
}

.swiper {
    width: 100%;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.menu-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensure card takes full height of swiper slide */
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Fixed 1:1 Square Ratio */
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Ensure images are centered */
    transition: transform 0.6s ease;
}

.menu-card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 30px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Items start from top */
}

.menu-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.3;
}

.menu-name-sub {
    font-family: var(--font-sans);
    display: block;
    font-size: 0.75rem;
    margin-top: 5px;
    color: #aaaaaa;
    /* Muted tone */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Title Override for MENU with Subtitle */
.section-title.dual-lang {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.section-title .en-block {
    display: block;
    font-size: 1rem;
    margin-top: 2px;
    font-weight: normal;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    color: var(--accent-color);
    /* Matches Concept gold */
}

.menu-price {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    /* Increased size (approx 1.15x) */
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
    /* Bolder */
    letter-spacing: 0.5px;
}

.menu-desc-full {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

.en-desc {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #aaaaaa;
    /* Muted tone to match subtitile */
    font-style: italic;
    line-height: 1.6;
}

/* Swiper Navigation (Arrows) */
.swiper-button-next,
.swiper-button-prev {
    --swiper-theme-color: var(--accent-color);
    --swiper-navigation-color: var(--accent-color);
    color: var(--accent-color) !important;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #333;
    z-index: 10;
}

/* Position adjustments */
.swiper-button-prev {
    left: 0px;
}

.swiper-button-next {
    right: 0px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--accent-color);
    color: #000 !important;
    border-color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Swiper Pagination (Dots) */
.swiper-pagination-bullet {
    background: #444;
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .swiper {
        padding-left: 0;
        padding-right: 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .card-body {
        padding: 25px 20px;
    }

    .menu-name {
        font-size: 1.3rem;
    }

    .menu-desc-full {
        font-size: 0.9rem;
    }
}


.footer-link-highlight {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-link-highlight:hover {
    opacity: 0.8;
}

.profile-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    margin: 20px 0;
    text-align: left;
}

.profile-list dt {
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.profile-list dd {
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin: 0;
}

/* Store List Section (Top Page) */
.store-list {
    background-color: #0a0a0a;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.store-card {
    background: #111;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.store-card-image {
    height: 200px;
    overflow: hidden;
}

.store-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .store-card-image img {
    transform: scale(1.1);
}

.store-card-content {
    padding: 25px;
    text-align: left;
}

.store-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.store-card-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-text:hover {
    border-bottom-color: var(--accent-color);
    letter-spacing: 2px;
}

/* Contact Page Styles */
.page-header {
    height: 25vh;
    /* Reduced from 40vh */
    min-height: 200px;
    /* Ensure decent height on small screens */
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    /* Offset for fixed navbar */
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 5px;
    /* Reduced from 10px */
    line-height: 1.1;
    /* Tighter line height */
}

.page-header p {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
}

.contact-form-section {
    background-color: #f9f9f9;
    /* Light background for contrast */
    padding: 40px 20px;
    /* Reduced top/bottom padding from 80px */
    color: #333;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Confirmation Modal */
/* Confirmation Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}

.modal-content p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.conf-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.conf-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.conf-value {
    display: block;
    color: #555;
    word-break: break-all;
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.btn-secondary {
    background-color: #ccc;
    color: #333;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    flex: 1;
}

.btn-secondary:hover {
    background-color: #bbb;
}

.modal-actions .btn-submit {
    flex: 1;
    margin-top: 0;
    /* Reset margin from form style */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #cc0000;
    margin-left: 3px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    /* Thin gray border */
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
}

.checkbox-text {
    font-size: 0.9rem;
}

.btn-submit {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #bfa140;
    /* Darker shade */
    transform: translateY(-2px);
}

.error-message {
    color: #ff0000;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    /* Hidden by default */
}

/* Thanks Page Styles */
.thanks-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a;
}

.thanks-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

/* Responsive Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Sticky Mobile Call Button */
.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-color);
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-call-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .sticky-call-btn {
        display: block;
    }

    body {
        padding-bottom: 60px;
        /* Space for the sticky button */
    }
}

/* Common Components */
.ig-notice {
    text-align: center;
    margin: 30px 0;
    font-size: 0.95rem;
    color: #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.ig-notice .ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    border: 1px solid #444;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.ig-notice .ig-link:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

.contact-cta {
    margin: 40px auto;
    padding: 30px;
    border: 1px solid var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
    text-align: center;
    max-width: 800px;
}

.contact-cta h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.call-btn-pc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 4px;
    margin-left: 20px;
    transition: transform 0.2s ease, background 0.3s;
    text-transform: uppercase;
}

.call-btn-pc:hover {
    transform: scale(1.05);
    background: #e5c14d;
}

.tel-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .call-btn-pc {
        display: none;
    }

    .tel-link {
        font-size: 1.8rem;
        display: block;
        margin-top: 10px;
    }
}

/* ギャラリーセクションの調整 */
.gallery-item {
    margin-bottom: 40px;
    /* 項目ごとの間隔を広げる */
}

.gallery-item img {
    width: 100%;
    /* 横幅いっぱいまで広げる */
    max-width: 800px;
    /* 最大サイズをこれまでより大きく設定 */
    height: auto;
    border-radius: 8px;
    /* 角を少し丸くして柔らかい印象に */
    display: block;
    margin: 0 auto 15px;
    /* 中央寄せにして下に余白を作る */
}

.gallery-item p {
    font-size: 1.2rem;
    /* 文字を大きく（標準が1なら1.2倍） */
    line-height: 1.8;
    /* 行間を広げてゆったりと */
    text-align: center;
    /* 文章を中央寄せに */
    max-width: 800px;
    margin: 0 auto;
}

/* 既存のグリッド（4枚並び）の設定を上書きして2枚並びに変更 */
.gallery-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    justify-content: center !important;
}

/* 1つずつの項目を横幅45%（2枚並び）にする */
/* 1つずつの項目（黒ベタをなくしてスッキリさせる） */
.gallery-item {
    width: 45% !important;
    min-width: 300px;
    background: transparent !important;
    /* 背景を透明に */
    border: none !important;
    /* 枠線を消す */
    padding: 0 !important;
    /* 余白をゼロにして黒い枠を消す */
    margin-bottom: 40px !important;
    /* 下の項目との間隔を広げる */
    flex: 0 1 auto !important;
}

/* 写真のサイズを調整 */
.gallery-img {
    width: 100% !important;
    height: 400px !important;
    /* 写真をさらに大きく */
    object-fit: cover !important;
    border-radius: 4px;
    /* 写真の角をほんの少し丸める（お好みで） */
    margin-bottom: 15px !important;
}

/* 説明文を整える */
.gallery-desc {
    font-size: 1.0rem !important;
    /* 文字を少しだけ抑えて上品に */
    color: #ccc !important;
    /* 真っ白より少しグレーにして落ち着かせる */
    line-height: 1.6 !important;
    text-align: center !important;
    padding: 0 10px !important;
    /* 左右に少し隙間を作る */
}

/* スマホ表示では1枚ずつ（100%）にする */
@media (max-width: 768px) {
    .gallery-item {
        width: 100% !important;
    }

    .gallery-img {
        height: 250px !important;
    }
}

/* 1. 「お問い合わせ」見出し下のスペースを詰める */
#contact h2 {
    margin-bottom: 20px !important;
    /* 余白を大幅にカット */
}

/* 2. 入力項目（名前、メール、メッセージ等）ごとの間隔を広げる */
.form-group {
    margin-bottom: 35px !important;
    /* 項目間の余白をゆったり確保 */
}

/* 3. 入力欄自体の高さや中の余白を調整して、より高級感を出す */
.form-group input,
.form-group textarea {
    padding: 15px !important;
    /* 入力欄の中の余白を増やしてゆったり */
    background-color: rgba(255, 255, 255, 0.05) !important;
    /* ほんのり背景色をつけて見やすく */
    border: 1px solid #444 !important;
    margin-top: 8px !important;
    /* ラベルとの間隔 */
}

/* 4. ラベル（「お名前」などの文字）の調整 */
.form-group label {
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

/* お問い合わせセクション全体の上下余白を小さくする */
#contact {
    padding-top: 10px !important;
    /* 上の余白（元の半分以下） */
    padding-bottom: 20px !important;
    /* 下の余白 */
}

/* タイトル（CONTACT）のすぐ下の余白をさらに詰める */
#contact .text-4xl {
    margin-bottom: 10px !important;
    /* タイトルとフォームの間の距離 */
}

/* タイトルの中の英語と日本語の間隔も調整したい場合 */
.en-block {
    margin-top: 2px !important;
    /* 英語（CONTACT）と日本語の隙間を最小限に */
}

/* お問い合わせセクションの上下余白を最小限にする */
#contact {
    padding-top: 10px !important;
    /* 上の余白をさらに詰めました */
    padding-bottom: 10px !important;
    /* 下の余白をさらに詰めました */
}

/* タイトル自体の上下の余白もリセットする */
#contact h2 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    /* タイトルと入力欄の間も最小限に */
    line-height: 1.2 !important;
}

/* もしタイトルの上にまだ隙間がある場合は、コンテナの余白も調整 */
#contact .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* ヘッダー全体の上下余白を強制的にゼロにする */
.page-header {
    padding-top: 20px !important;
    /* ゼロに近いくらい（お好みで0にしてもOK） */
    padding-bottom: 0 !important;
    /* 下側は完全にゼロ */
    margin-bottom: 0 !important;
    min-height: auto !important;
    /* 高さを自動にして余白を詰めやすくする */
}

/* ヘッダー内の文字（お問い合わせ）の上下余白も詰める */
.header-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* ヘッダー直下のフォームセクションの上の余白を消す */
.contact-form-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* タイトルとサブテキスト（ご予約・ご相談など〜）の間隔も少し詰める */
.header-content h1 {
    margin-bottom: 5px !important;
}

.header-content p {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
}

/* 1. 「ご予約・ご相談など〜」の下の黒い余白を半分にする */
.page-header {
    height: auto !important;
    /* 高さを固定せず中身に合わせる */
    padding-bottom: 30px !important;
    /* 下の余白を詰めました */
}

/* 2. 送信ボタンを少し上に上げる（お問い合わせ内容との間隔を詰める） */
.contact-form {
    padding-bottom: 30px !important;
    /* フォーム内の下の余白を詰める */
}

.btn-submit {
    margin-top: 10px !important;
    /* ボタンの上の余白を小さくして上に引き上げる */
}

/* 3. 【追加調整】黒いエリアと白いフォームの間の隙間をなくす */
.contact-form-section {
    padding-top: 0 !important;
}

/* プライバシーポリシー同意部分のデザイン */
.privacy-agreement {
    text-align: center;
    margin-bottom: 25px;
    /* 送信ボタンとの間隔 */
    color: #ccc;
    font-size: 0.95rem;
}

.agreement-label {
    display: inline-flex;
    align-items: center;
    /* 垂直方向の中央揃え（ズレを解消） */
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    /* ボックスと文字の間隔 */
}

/* チェックボックス自体の微調整 */
.agreement-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    /* ブラウザによる微妙な浮きを抑える */
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* 送信ボタンの上の余白をさらに調整 */
.btn-submit {
    margin-top: 10px !important;
}

/* 1. 「お問い合わせ」の文字をヘッダーの下にしっかり出す */
.page-header {
    margin-top: 100px !important;
    /* 被らないように上に余裕を持たせる */
    padding-top: 40px !important;
    /* 黒いエリア内の上の余白 */
    padding-bottom: 20px !important;
}

/* 2. 入力項目同士の間隔を少しだけ戻す（窮屈さを解消） */
.form-group {
    margin-bottom: 22px !important;
    /* 15pxから少し広げて22pxへ */
}

/* 3. ラベル（お名前など）の上の余白を調整 */
.form-group label {
    margin-bottom: 8px !important;
}

/* 4. 入力欄のサイズを標準的に戻す */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px !important;
    /* 少し高さを戻して高級感を出す */
}

/* 5. チェックボックスのズレ解消（これは維持） */
.checkbox-group {
    margin: 25px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.checkbox-group label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
}

/* 6. 送信ボタンとフッターの距離を適正にする */
.btn-submit {
    margin-top: 15px !important;
    padding: 15px 60px !important;
    /* ボタンも少ししっかりめに */
}

/* 7. 下側の余白を増やしてフッターが余裕を持ちすぎないようにする */
.contact-form-section {
    padding-bottom: 60px !important;
    /* 20pxから60pxへ増やしました */
}

/* 1. ヘッダー（お問い合わせ文字）をナビバーのすぐ下に配置 */
.page-header {
    margin-top: 70px !important;
    /* 100pxから70pxに詰め、被りを防ぎつつ上に上げる */
    padding-top: 30px !important;
    /* 黒いエリア内の上余白をスリムに */
    padding-bottom: 15px !important;
    height: auto !important;
}

/* 2. 入力項目同士の間隔を「適度」に詰める */
.form-group {
    margin-bottom: 18px !important;
    /* 項目間の隙間を少し短縮 */
}

/* 3. チェックボックスのズレを完全に直し、送信ボタンに近づける */
.checkbox-group {
    margin: 15px 0 !important;
    /* 上下の余白をギュッと詰める */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.checkbox-group label {
    display: inline-flex !important;
    align-items: center !important;
    /* □と文字の芯を合わせる */
    gap: 8px;
    line-height: 1 !important;
}

.checkbox-group input[type="checkbox"] {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
    cursor: pointer;
}

/* 4. 送信ボタン下の白背景と、フッター上の黒い隙間を最小化 */
.contact-form {
    padding-bottom: 25px !important;
    /* 白いエリアの終わりをボタンに近づける */
}

.contact-form-section {
    padding-bottom: 0 !important;
    /* セクション自体の下余白をカット */
}

.main-footer {
    padding-top: 20px !important;
    /* フッター内の上の余白を詰める */
}

/* 5. 送信ボタン自体の調整 */
.btn-submit {
    margin-top: 5px !important;
    padding: 12px 60px !important;
}

/* 1. ヘッダーの縦幅を元に戻し、ロゴと文字を「真横」に並べる */
.navbar {
    height: 70px !important;
    /* ヘッダーの太さを固定 */
    display: flex;
    align-items: center;
}

.logo {
    display: flex !important;
    align-items: center !important;
    /* アイコンと文字の垂直中心を合わせる */
    gap: 10px !important;
    /* アイコンと文字の間の距離 */
}

.logo img {
    height: 40px !important;
    /* アイコンのサイズ（適宜調整してください） */
    width: auto !important;
}

.logo span {
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.2rem;
    /* 文字の大きさ */
}

/* 2. 店舗ページ（八など）のタイトルをオレンジ枠の位置（中央）へ */
.hero {
    height: 50vh !important;
    /* 以前より少し高さを抑えて中央感を出します */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content {
    padding: 0 !important;
    margin-top: 50px !important;
    /* ナビバー分だけ少し下に下げて中央に */
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem !important;
    margin-bottom: 10px !important;
}

/* 3. お問い合わせの文字が被らないための最終ライン */
.page-header {
    margin-top: 70px !important;
    /* ナビバーの高さ分だけ空ける */
    padding: 40px 0 20px 0 !important;
}

/* 1. ヘッダーロゴ：画像と文字を横に並べ、高さを完璧に合わせる */
.logo {
    display: flex !important;
    flex-direction: row !important;
    /* 強制的に横並び */
    align-items: center !important;
    /* 垂直方向の中央揃え */
    gap: 12px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    /* 折り返しを禁止 */
}

.logo img {
    height: 40px !important;
    /* ロゴのサイズ */
    width: auto !important;
    margin: 0 !important;
}

.logo span {
    font-size: 1.25rem !important;
    /* 少し大きく */
    font-weight: bold !important;
    color: #fff !important;
    line-height: 1 !important;
    /* ロゴに対して文字が下がって見えるのを防ぐ（微調整） */
    transform: translateY(-2px) !important;
}

/* 2. ストアページ：日本語と英語を一直線に、かつ英語をセンターへ */
.hero-content p {
    display: flex !important;
    align-items: center !important;
    /* 垂直中央で並べる */
    justify-content: center !important;
    gap: 15px !important;
    /* 日本語と英語の間隔 */
    margin-top: 15px !important;
}

/* ストアページ共通の英語表記スタイル */
.hero-content p .en-text,
.hero-content p span {
    font-size: 1.15rem !important;
    /* 1ポイント大きく */
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    /* 日本語の重心に合わせて英語を少し持ち上げる */
    position: relative !important;
    top: -1px !important;
    opacity: 0.9;
}

/* 3. 「寿や」のページで他店のコピーが混ざるのを防ぐためのリセット */
/* HTMLで直接文字を書いてしまっている場合、余計な疑似要素を消去 */
.hero-content p::after {
    content: none !important;
}

/* 1. ロゴの親要素（ヘッダー内）のレイアウトを強制固定 */
.navbar .container,
.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

/* 2. ロゴ部分：絶対に横並びを崩さず、垂直中央に配置 */
.logo {
    display: flex !important;
    flex-direction: row !important;
    /* 強制的に横並び */
    align-items: center !important;
    /* 垂直方向の芯を合わせる */
    white-space: nowrap !important;
    /* 文字の折り返しを禁止 */
    text-decoration: none !important;
    min-width: fit-content !important;
    /* 中身に合わせて幅を確保 */
}

.logo img {
    height: 40px !important;
    /* ロゴの高さ */
    width: auto !important;
    margin-right: 15px !important;
    /* 画像と文字の間の距離 */
    flex-shrink: 0 !important;
    /* 画像が潰れるのを防ぐ */
}

.logo span {
    display: block !important;
    font-size: 1.3rem !important;
    font-weight: bold !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    /* オレンジ枠の高さに合わせるための微調整 */
    transform: translateY(-4px) !important;
}

/* 3. ストアページ：日本語と英語を一直線に並べる（寿やの混じりも防止） */
.hero-content p {
    display: flex !important;
    flex-wrap: nowrap !important;
    /* 折り返し禁止 */
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

.hero-content p::after {
    content: none !important;
    /* 余計な文字を消去 */
}

.hero-content p span,
.hero-content p .en-text {
    font-size: 1.15rem !important;
    position: relative !important;
    top: -2px !important;
    /* 英語を少し持ち上げてセンター合わせ */
}

/* ============================================================
   1. ナビバー・ロゴの完全な横並びと垂直中央揃え
   ============================================================ */
.navbar {
    height: 75px !important;
    /* 高さを固定 */
    display: flex !important;
    align-items: center !important;
    padding: 0 40px !important;
}

.logo {
    display: flex !important;
    flex-direction: row !important;
    /* 強制横並び */
    align-items: center !important;
    /* 垂直中央 */
    gap: 12px !important;
    /* ロゴと文字の間隔 */
    height: 100% !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.logo img {
    height: 45px !important;
    /* ロゴサイズを適正化 */
    width: auto !important;
    margin: 0 !important;
    display: block !important;
}

.logo span {
    font-family: var(--font-serif);
    font-size: 1.4rem !important;
    /* 文字の大きさ調整 */
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin: 0 !important;
    /* ロゴ画像との視覚的な重心を合わせる微調整 */
    transform: translateY(-2px) !important;
}

/* ============================================================
   2. ストアページ（ヒーローセクション）の見出し一列配置
   ============================================================ */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.hero-content h1 {
    font-size: 3.5rem !important;
    margin-bottom: 10px !important;
}

/* 日本語と英語を横一行に並べる設定 */
.hero-content p {
    display: flex !important;
    flex-direction: row !important;
    /* 横並び */
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    /* 日本語と英語の間隔 */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* 他店のテキストが疑似要素(::after等)で混ざるのを防ぐ */
.hero-content p::after,
.hero-content p::before {
    content: none !important;
    display: none !important;
}

/* 英語テキストのスタイリング */
.hero-content p .en-text,
.hero-content p span {
    font-size: 1.2rem !important;
    /* 英語を少し強調 */
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    /* 日本語の重心に合わせる微調整 */
    position: relative !important;
    top: -1px !important;
}

/* ============================================================
   3. お問い合わせセクションの余白と被り解消
   ============================================================ */
.page-header {
    margin-top: 75px !important;
    /* ナビバーの高さ分を確実に空ける */
    padding: 40px 0 20px 0 !important;
    height: auto !important;
    min-height: auto !important;
}

/* ============================================================
   4. モバイル対応（スマホでのロゴ・文字サイズ調整）
   ============================================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px !important;
        height: 65px !important;
    }

    .logo img {
        height: 35px !important;
    }

    .logo span {
        font-size: 1.1rem !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        flex-direction: column !important;
        /* スマホでは読みやすさ優先で縦並び */
        gap: 5px !important;
    }

    .hero-content p .en-text,
    .hero-content p span {
        font-size: 0.9rem !important;
    }
}

/* ナビバー全体の高さ固定 */
.navbar {
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 30px !important;
}

/* ロゴのリンクエリアをFlex化 */
.logo a {
    display: flex !important;
    flex-direction: row !important;
    /* 横並び強制 */
    align-items: center !important;
    /* 垂直中央 */
    text-decoration: none !important;
    color: #ffffff !important;
    gap: 15px !important;
    /* 画像と文字の間隔 */
    font-family: var(--font-serif);
    font-size: 20px !important;
    /* 文字サイズ固定 */
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    line-height: 1 !important;
}

/* ロゴ画像自体のサイズ調整 */
.logo a img {
    height: 50px !important;
    /* 前回の指示に合わせ大きく */
    width: auto !important;
    margin: 0 !important;
    display: block !important;
}

/* ヒーローエリアの中央揃え */
.hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

/* 「八」や「寿や」の見出し */
.hero-content h1 {
    font-size: 3.5rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
}

/* サブテキスト（日本語＋英語）を一直線に */
.hero-content p {
    display: flex !important;
    flex-direction: row !important;
    /* 横並び */
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    white-space: nowrap !important;
    /* 絶対に改行させない */
}

/* 他の店の文字が混ざらないように余計な要素を消去 */
.hero-content p::after,
.hero-content p span.en-sm {
    /* ここで以前の負の遺産をカット */
    font-size: 1.1rem !important;
    opacity: 0.8 !important;
}

.page-header {
    margin-top: 80px !important;
    /* ナビバーの高さ分 */
    padding: 40px 0 !important;
    background-color: #111 !important;
}

/* 文字が span で囲まれていない場合、aタグの中のテキストのみを対象にする設定 */
.logo a {
    display: flex !important;
    align-items: center !important;
    font-size: 22.5px !important;
}

/* 画像と文字の並びを「底辺」ではなく「中心」で合わせた上で、
   文字だけを少し押し下げる調整 */
.logo a img {
    margin-bottom: 0 !important;
}

/* transformの値を調整して「あと2mm」を実現します */
/* 正の値（3px〜5px程度）にすると下に下がります */
.logo a {
    column-gap: 15px !important;
}

/* --- 全ページ共通：フッター統一設定 --- */
footer {
    background-color: #000 !important;
    padding: 60px 0 30px !important;
    color: #fff !important;
    font-family: 'Montserrat', 'Noto Sans JP', sans-serif !important;
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 5% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
}

/* 左側：会社情報エリア */
.footer-info {
    flex: 1 !important;
    min-width: 300px !important;
    margin-bottom: 40px !important;
}

.footer-info h3 {
    font-size: 24px !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
    font-family: 'Playfair Display', serif !important;
}

.footer-info p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-bottom: 10px !important;
    color: #ccc !important;
}

/* 右側：メニューエリア */
.footer-nav-container {
    display: flex !important;
    gap: 60px !important;
    /* MENUと各項目の間隔 */
}

.footer-nav-group h4 {
    color: #d4af37 !important;
    /* 金色のMENU見出し */
    font-size: 16px !important;
    margin-bottom: 20px !important;
    letter-spacing: 1px !important;
}

.footer-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    /* 2列に並べる */
    gap: 15px 40px !important;
}

.footer-nav-list li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: opacity 0.3s !important;
}

.footer-nav-list li a:hover {
    opacity: 0.7 !important;
}

/* コピーライト */
.footer-bottom {
    text-align: center !important;
    margin-top: 50px !important;
    padding-top: 20px !important;
    border-top: 1px solid #333 !important;
    font-size: 12px !important;
    color: #666 !important;
}

/* スマホ対応：縦に並べる */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column !important;
    }

    .footer-nav-container {
        gap: 30px !important;
    }

    .footer-nav-list {
        grid-template-columns: 1fr !important;
        /* スマホでは1列 */
    }
}

/* フッター全体の基準設定 */
footer {
    background-color: #000 !important;
    color: #fff !important;
    padding: 60px 0 30px !important;
    width: 100% !important;
}

/* コピーライトエリアの修正 */
.footer-bottom {
    width: 100% !important;
    margin-top: 50px !important;
    padding-top: 20px !important;
    border-top: 1px solid #333 !important;

    /* 中央揃えのための必須設定 */
    display: block !important;
    text-align: center !important;
    clear: both !important;
}

.footer-bottom p {
    display: block !important;
    margin: 0 auto !important;
    font-size: 12px !important;
    color: #666 !important;
    letter-spacing: 1px !important;
    /* 左右に余計なpaddingやmarginが当たっているのをリセット */
    padding: 0 !important;
}

/* --- フッター：SS2枚目のデザインを完全再現 --- */

/* 1. MENUの見出しをゴールドにする */
.footer-nav .menu-title {
    color: #d4af37 !important;
    /* 落ち着いたゴールド */
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    letter-spacing: 2px !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* 2. ナビゲーションを2列に配置する */
.nav-lists {
    display: flex !important;
    gap: 80px !important;
    /* 列と列の間の広めの余白 */
}

.nav-lists ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-lists ul li {
    margin-bottom: 15px !important;
}

.nav-lists ul li a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
}

.nav-lists ul li a:hover {
    color: #d4af37 !important;
    /* ホバー時もゴールドに */
}

/* 3. 左側の会社情報とのバランス調整 */
.footer-container {
    display: flex !important;
    justify-content: space-around !important;
    /* 左右に程よく広げる */
    align-items: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.footer-info h3 {
    font-size: 26px !important;
    margin-bottom: 20px !important;
    letter-spacing: 2px !important;
}

/* 4. コピーライトの絶対中央（ズレの完全修正） */
.footer-bottom {
    border-top: 1px solid #333 !important;
    margin-top: 60px !important;
    padding: 30px 0 !important;
    width: 100% !important;
    text-align: center !important;
}

.footer-bottom p {
    font-size: 12px !important;
    color: #888 !important;
    margin: 0 !important;
}

/* --- フッター全体の余白を半分に凝縮 --- */
footer {
    background-color: #000 !important;
    /* 上下の余白 60px→30px に削減。Copyrightを見えやすくします */
    padding: 30px 0 15px !important;
    width: 100% !important;
}

/* 会社名とMENUの間のレイアウト調整 */
.footer-container {
    max-width: 1100px !important;
    /* 少し幅を絞って中央に寄せる */
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: flex-start !important;
    padding: 0 5% !important;
}

/* --- MENUエリア：2列配置を維持しつつ調整 --- */
.footer-nav {
    margin-top: 0 !important;
    /* 上の余白を徹底排除 */
}

.footer-nav .menu-title {
    color: #d4af37 !important;
    font-size: 18px !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    /* 見出し下の隙間も少し詰める */
}

.nav-lists {
    display: flex !important;
    gap: 60px !important;
    /* 2列の間隔 */
}

/* --- Copyright（footer-bottom）を画面内に引き上げる --- */
.footer-bottom {
    margin-top: 20px !important;
    /* フッター上部との間隔を 60px→20px に */
    padding-top: 15px !important;
    border-top: 1px solid #333 !important;
    width: 100% !important;
    text-align: center !important;
}

.footer-bottom p {
    font-size: 11px !important;
    color: #666 !important;
    margin: 0 !important;
}

/* --- フッター全体の余白をさらに削減 --- */
footer {
    padding-top: 30px !important;
    /* 上部の余白をさらに詰めました */
    padding-bottom: 20px !important;
    /* 底部の余白も最小限に */
}

/* 1. MENUエリアと下のラインの間の「オレンジ枠」の余白を削る */
.footer-container {
    margin-bottom: 20px !important;
    /* MENUと境界線の間隔を大幅カット */
    padding-bottom: 0 !important;
}

/* 2. 下のライン（境界線）とCopyrightエリアの調整 */
.footer-bottom {
    margin-top: 0 !important;
    /* ラインの上の余白をゼロに */
    padding-top: 10px !important;
    /* ラインから文字までの距離を微調整 */
    border-top: 1px solid #333 !important;
    width: 100% !important;
    text-align: center !important;
}

/* 3. MENU自体の上下の余白も微調整 */
.footer-nav {
    margin-bottom: 0 !important;
}

.footer-nav .menu-title {
    margin-bottom: 15px !important;
}

.nav-lists ul li {
    margin-bottom: 10px !important;
    /* 2列の行間も少し詰めました */
}

/* --- フッター全体の余白を適正化 --- */
footer {
    padding-top: 40px !important;
    /* 上部のゆとりを少し戻しました */
    padding-bottom: 30px !important;
}

/* 1. MENUエリア自体の高さを自動にし、下の余白を確保 */
.footer-container {
    margin-bottom: 40px !important;
    /* ここでラインまでの「理想的な余白」を作ります */
    padding-bottom: 0 !important;
    height: auto !important;
}

/* 2. MENUリストの行間を少し広げて読みやすく（SS2枚目の再現） */
.nav-lists ul li {
    margin-bottom: 12px !important;
}

/* 3. 下線とCopyrightの位置を「食い込み」から「適正な配置」へ */
.footer-bottom {
    /* マイナスマージンを撤廃し、正の数値でラインとの距離を離します */
    margin-top: 0 !important;
    padding-top: 25px !important;
    /* ラインからCopyright文字までの余白 */
    border-top: 1px solid #333 !important;
    width: 100% !important;
    text-align: center !important;
    clear: both !important;
}

/* 4. もし左側の詳細情報のせいでラインが下がっている場合の対策 */
.footer-info {
    margin-bottom: 0 !important;
}

/* --- Copyrightの文字位置だけを上に上げる最終調整 --- */

.footer-bottom {
    margin-top: 0 !important;
    padding-top: 10px !important;
    /* 25pxから10pxに減らし、文字をラインに近づけました */
    border-top: 1px solid #333 !important;
    width: 100% !important;
    text-align: center !important;
}

.footer-bottom p {
    font-size: 11px !important;
    color: #666 !important;
    margin: 0 !important;
    /* もしこれでもまだ下げ止まっている場合は、わずかに持ち上げます */
    transform: translateY(-2px) !important;
}

/* モーダルの表示状態を強制する */
#companyProfileModal.active,
#companyProfileModal[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* モーダルの基本設定（念のため） */
.modal {
    display: none;
    /* 初期状態は非表示 */
    position: fixed !important;
    z-index: 10000 !important;
    /* 何よりも上に表示 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8) !important;
    align-items: center;
    justify-content: center;
}

/* トップページの店舗一覧画像を大きくする */
.store-card-image img {
    height: 350px !important;
    object-fit: cover;
}

/* 店舗一覧カード全体の調整 */
.store-card {
    background: #000;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* 高さを揃える */
}

/* 1. 写真の縦幅をぐっと広げる */
.store-card-image {
    width: 100%;
    height: 350px !important;
    /* ここを大きく（300px〜400px）することで写真が主役になります */
    overflow: hidden;
}

.store-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 写真が歪まないように調整 */
}

/* 2. テキストエリアの余白を極限まで詰める */
.store-card-content {
    padding: 10px 15px !important;
    /* 上下の余白（10px）を大幅に削減 */
    text-align: left;
}

/* 3. 店名（h3）の上の余白を消す */
.store-card-content h3 {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
    font-size: 1.4rem;
    color: #fff;
}

/* 4. 紹介文の行間と余白を詰める */
.store-card-content p {
    margin-bottom: 8px !important;
    /* 文章とボタンの間の距離を詰める */
    line-height: 1.4;
    /* 行間を少しタイトに */
    font-size: 0.95rem;
    color: #ccc;
}

/* 5. 詳細を見る（ボタン）を少し下げる（文章と被らない程度に） */
.btn-text {
    display: inline-block;
    margin-top: 5px !important;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

/* 写真とテキストの「中間」の黄金バランス調整 */

/* 1. 写真の高さ：350px(大きすぎ)と280px(小さすぎ)の間、315pxに設定 */
.store-card-image {
    width: 100%;
    height: 315px !important;
    overflow: hidden;
}

/* 2. 黒ベタ全体の余白：30px(広すぎ)と10px(狭すぎ)の間、20pxに設定 */
.store-card-content {
    padding: 20px 20px !important;
    text-align: left;
}

/* 3. 店名の下の余白：15pxから10pxへ少しだけ詰める */
.store-card-content h3 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    font-size: 1.4rem;
}

/* 4. 紹介文の余白と行間：ここも「中間」に微調整 */
.store-card-content p {
    margin-bottom: 15px !important;
    line-height: 1.5;
    /* 1.4と1.6の間 */
    font-size: 0.95rem;
}

/* 5. 詳細を見るボタン */
.btn-text {
    display: inline-block;
    margin-top: 0;
}