@charset "UTF-8";

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #d37042;
    /* Burnt Orange */
    --color-secondary: #e6b422;
    /* Gold/Yellow */
    --color-accent: #556b2f;
    /* Dark Olive Green */
    --color-text: #333333;
    --color-bg: #fdfcf8;
    /* Warm Off-white */
    --color-white: #ffffff;
    --font-main: 'Noto Sans JP', sans-serif;

    /* Shadows */
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.06);
    --shadow-float: 0 10px 25px rgba(0, 0, 0, 0.08);

    /* Spacing */
    --section-spacing-sp: 80px;
    --section-spacing-pc: 120px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from overlapping elements */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Utilities & Common
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section {
    margin-bottom: var(--section-spacing-sp);
    padding-top: 40px;
}

@media (min-width: 768px) {
    .section {
        margin-bottom: var(--section-spacing-pc);
    }
}

.section__header {
    text-align: center;
    /* background-size: cover; */
    /* background-position: center; */
    padding: 20px 0;
    margin-bottom: 40px;
    position: relative;
}

.section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border-bottom: 3px solid var(--color-secondary);
}

.section__lead {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-float);
    white-space: nowrap;
    /* Prevent line break */
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        /* Full width on SP */
        max-width: 320px;
        /* Optional constraint */
        padding: 15px 10px;
        /* Reduces padding if text is long */
    }
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    opacity: 1;
    /* Override opacity hover for buttons */
}

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

.btn--secondary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn--tel {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 100%;
    margin-bottom: 10px;
}

.btn--web {
    background-color: #00a040;
    /* Line/Web specific green often works well, or use secondary */
    color: var(--color-white);
    width: 100%;
}

/* ==========================================================================
   Broken Grid Layout System
   ========================================================================== */
.broken-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .broken-grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .broken-grid--reverse {
        flex-direction: row-reverse;
    }

    .broken-grid__img {
        width: 30%;
        position: relative;
        z-index: 1;
    }




    .broken-grid__content {
        width: 70%;
        /* Overlap width */
        z-index: 2;
        padding: 60px;
        background-color: var(--color-white);
        box-shadow: var(--shadow-soft);
        border-radius: 4px;
    }

    .broken-grid__content--overlap {
        margin-left: -5%;
        /* The overlap magic */
        margin-top: 40px;
        /* Slight offset */
    }

    .broken-grid--reverse .broken-grid__content--overlap {
        margin-left: 0;
        margin-right: -5%;
    }
}

/* SP Styles for Broken Grid */
@media (max-width: 767px) {
    .broken-grid__img img {
        width: 100%;
        border-radius: 4px;
        margin-bottom: -30px;
        /* Pull content up */
        position: relative;
        z-index: 1;
    }

    .broken-grid__content {
        background: var(--color-white);
        padding: 30px 20px;
        width: 90%;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        box-shadow: var(--shadow-soft);
        border-radius: 4px;
    }
}


/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.header__nav {
    display: none;
}

.header__btn-reserve {
    display: none;
}

/* PC Header */
@media (min-width: 768px) {
    .header__nav {
        display: block;
    }

    .header__list {
        display: flex;
        gap: 30px;
    }

    .header__list a {
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .header__btn-reserve {
        display: block;
        background-color: var(--color-primary);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 700;
    }

    .header__hamburger {
        display: none;
    }
}

/* Hamburger */
.header__hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1100;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 9px;
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* SP Menu */
.header__sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.header__sp-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.header__sp-list {
    text-align: center;
    margin-bottom: 40px;
}

.header__sp-list li {
    margin-bottom: 20px;
}

.header__sp-list a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.header__sp-cta {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    /* Ensure it fills screen vertically but respects aspect ratio */
    height: auto;
    overflow: hidden;
    margin-top: 70px;
    /* Header height */
}

.fv__swiper {
    width: 100%;
    height: auto;
}

.fv__swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    /* Maintain aspect ratio instructions */
}

.fv__scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==========================================================================
   SV / Banner
   ========================================================================== */


.sv__link {
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.sv__img {
    width: 100%;
    transition: transform 0.5s ease;
    /* Optionally enforce a max-height */
    max-height: 300px;
    object-fit: cover;
}

.sv__link:hover .sv__img {
    transform: scale(1.05);
}

.sv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
    background-color: rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    /* Prevent line break */
    width: auto;
    max-width: 90%;
    /* Ensure it doesn't overflow screen if very small */
}

/* ==========================================================================
   Sections Specifics
   ========================================================================== */


/* TV (Concept) */
.tv__heading {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.tv__list {
    margin-bottom: 30px;
}

.tv__list li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

.tv__list li::before {
    content: "✔";
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.tv__desc {
    line-height: 2;
}


/* About */
.about__text {
    margin-bottom: 20px;
}

/* Gallery */
.gallery {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0 0 60px;
}

.gallery__swiper {
    padding: 0 20px 50px;
    /* Space for pagination/buttons */
    overflow: hidden;
    /* Swiper inside container will take container width automatically */
}

/* PC: Grid layout */
@media (min-width: 768px) {
    .gallery__swiper {
        padding: 0 40px 50px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: flex;
        color: var(--color-primary);
    }
}

.gallery__item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.gallery__item img {
    transition: transform 0.3s;
    width: 100%;
    /* Ensure image fits */
}

.gallery__item:hover img {
    transform: scale(1.05);
}

/* Service */
.service__title {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 10px;
    display: inline-block;
}

/* Menu */
.menu {
    background-image: url('../img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-color: #f5f5f5;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    position: relative;
    /* Removed padding-top so overlay can cover from the very top */
}

.menu__overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 0;
}

.menu .section__header {
    margin-bottom: 20px;
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.menu__card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.menu__card--full {
    grid-column: 1 / -1;
    background: transparent;
    box-shadow: none;
    border-left: none;
    padding: 30px 0;
    text-align: center;
    color: #fff;
}

.menu__banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background: #e9e9e9; */
    /* border: 2px dashed #ccc; */
    /* padding: 40px; */
    margin: 60px auto;
    width: 90%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    /* border-radius: 8px; */
}

@media (max-width: 767px) {
    .menu__banner {
        width: 100%;
        max-width: 320px;
        padding: 20px;
    }
}

.menu__banner h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-white);
    padding: 5px 15px;
    display: inline-block;
}

.menu__banner h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.menu__banner p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.menu__img-area {
    margin-bottom: 15px;
}

.menu__img-area img {
    width: 100%;
    /* box-shadow: var(--shadow-soft);*/
}

.menu__name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu__name small {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    display: block;
    margin-top: 5px;
}

.menu__price {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
    text-align: right;
}

/* Menu List */
.menu__list-area {
    margin-top: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.menu__list {
    display: flex;
    flex-direction: column;
}

.menu__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
}

.menu__list-item:last-child {
    border-bottom: none;
}

.menu__list-name {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    flex: 1;
}

.menu__list-name small {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    display: block;
    margin-top: 5px;
}

.menu__list-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: 20px;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .menu__list-area {
        padding: 20px;
        margin-top: 40px;
    }

    .menu__list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .menu__list-price {
        margin-left: 0;
        margin-top: 10px;
        align-self: flex-end;
    }
}

/* Voice */
.voice__swiper {
    padding-bottom: 50px;
}

.voice__swiper .swiper-pagination {
    bottom: 0;
}

.voice__card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

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

.voice__icon {
    margin-bottom: 15px;
    color: #4285F4;
}

.voice__name {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.voice__text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.voice__meta {
    font-size: 0.8rem;
    color: #888;
}

.voice__btn {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-primary);
    border-bottom: 1px solid currentColor;
}

/* ==========================================================================
   SV / Banner
   ========================================================================== */
.sv {
    margin-top: 0;
    padding: 0 20px;
}

/* SP: Full width link */
@media (max-width: 767px) {
    .sv {
        padding: 0;
        max-width: 100%;
    }

    .sv__link {
        border-radius: 0;
    }

    .sv__img {
        max-height: 200px;
        /* Adjust height for mobile if needed */
    }
}

/* PC: Centered */
@media (min-width: 768px) {
    .sv {
        width: 100%;
        padding: 0;
    }
}

/* CTA Section (Inline) */
.cta-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
}

.cta-section .btn {
    width: 100%;
    /* Force full width in this section on SP */
    max-width: 400px;
    /* Sensible max width */
}

@media (min-width: 768px) {
    .cta-section {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
}

/* Access */
.access__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .access__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }
}

.access__map {
    width: 100%;
}

.access__map iframe {
    width: 100%;
    height: 300px;
    /* Reduced for better alignment */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.access__info {
    font-size: 0.95rem;
    margin-bottom: 0;
    /* Let grid handle gap */
}

.access__row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.access__row dt {
    width: 30%;
    font-weight: 700;
}

.access__row dd {
    width: 70%;
}



.access__sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.sns-btn {
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
}

.sns-btn--instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sns-btn--x {
    background: #000;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
}

/* ==========================================================================
   Fixed Elements
   ========================================================================== */
/* To Top */
.to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-text);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 900;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
    font-size: 0.8rem;
}

.to-top.show {
    opacity: 1;
    pointer-events: auto;
}

/* Floating CTA (SP Only) */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.floating-cta a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-weight: 700;
}

.floating-cta__tel {
    background-color: var(--color-primary);
}

.floating-cta__web {
    background-color: var(--color-secondary);
}

@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }

    .to-top {
        bottom: 30px;
    }
}

/* Modal Styling */
.modal {
    display: none;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal__container {
    background-color: #fff;
    padding: 10px;
    max-width: 50%;
    max-height: 90vh;
    border-radius: 4px;
    position: relative;
    overflow: auto;
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}