@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #5c365d;
    /* 紫 */
    --color-accent: #8b6b5d;
    --color-text: #4a3b32;
    /* 文字色: ブラウン */
    --color-bg: #fff;
    --color-light-bg: #f9f7f4;
    --font-main: 'Noto Serif JP', serif;

    --spacing-sp: 80px;
    --spacing-pc: 120px;

    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* リッチなシャドウ */
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 2.0;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
p {
    margin: 0;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1000px;
    /* PCでの制限 */
    margin: 0 auto;
}

.section {
    margin-bottom: 0;
    position: relative;
    padding: 60px 0;
    /* 少し広げて背景色の余白を確保 */
}

/* 背景色のリズム (偶数セクションに色付け) */
.section:nth-of-type(even):not(.section--recommend) {
    background-color: var(--color-light-bg);
    /* 境界線に和紙のような繊細なラインを追加 */
    border-top: 1px solid rgba(92, 54, 93, 0.05);
    border-bottom: 1px solid rgba(92, 54, 93, 0.05);
}

/* 特定セクションの調整 */
/* Recommendは画像背景なので背景色なし */
.section--recommend {
    background-color: transparent !important;
    padding: 80px 0;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Times New Roman', serif;
    /* 英語フォント */
    z-index: 2;
}

.section__title .jp {
    display: block;
    font-size: 1rem;
    font-family: var(--font-main);
    margin-top: 10px;
    color: var(--color-primary);
    font-weight: 400;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-img {
    width: 100%;
    max-width: 400px;
    /* 画像の最大幅 */
    height: 100px;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    opacity: 0.8;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0;
    /* 角丸なし */
    font-size: 1rem;
}

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

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.header__logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
}

.header__nav {
    display: none;
    /* SPデフォルト非表示 */
}

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

.header__hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: 0.4s;
}

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

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

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

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

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

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

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

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

.sp-menu__nav ul li {
    text-align: center;
    margin-bottom: 25px;
}

.sp-menu__nav ul li a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
}

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

.sp-menu__sns img {
    width: 40px;
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    /* 画面いっぱい */
    overflow: hidden;
}

.fv-slider {
    width: 100%;
    height: 100%;
}

.fv-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fv__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    animation: scrollBadge 2s infinite;
}

.fv__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: #fff;
    margin: 10px auto 0;
}

@keyframes scrollBadge {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 10px);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}



/* ==========================================================================
   Scene (Overlay Box Design)
   ========================================================================== */
.section--scene {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/section_tv.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.section--scene::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.scene-box {
    position: relative;
    z-index: 2;
    background: #ffffff30;
    padding: 40px 20px;
    color: var(--color-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    /* すりガラス効果を追加で見やすく */
}

.scene-header {
    text-align: center;
    margin-bottom: 30px;
}

.scene-title {
    color: var(--color-primary);
    font-size: 30px;
    font-family: 'Times New Roman', serif;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.scene-title .jp {
    display: block;
    font-size: 1rem;
    color: #ddd;
    margin-top: 5px;
    font-family: 'Noto Serif JP', serif;
}

.scene-list {
    list-style: none;
}

.scene-list li {
    margin-bottom: 20px;
    padding-left: 2.5em;
    position: relative;
    line-height: 1.8;
    font-size: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    font-weight: 500;
}

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

/* ゴールドのチェックアイコン */
.scene-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Service
   ========================================================================== */
.service-item {
    margin-bottom: 60px;
}

.service-item__img {
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.service-item__content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-text);
    padding-bottom: 10px;
    display: inline-block;
}

/* ==========================================================================
   Recommend
   ========================================================================== */
/* ==========================================================================
   Menu (Integrated & Fixed BG)
   ========================================================================== */
.section--fixed-bg {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background: #222;
    overflow: hidden;
}

.fixed-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../img/section_recommend.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* パララックス */
    filter: brightness(0.6);
}

.fixed-bg img {
    display: none;
}

.section--fixed-bg .section__inner {
    position: relative;
    z-index: 1;
}

.section--fixed-bg .section__title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section--fixed-bg .section__title .jp {
    color: #ddd;
    text-shadow: none;
}

/* Recommend Block */
.menu-recommend {
    background: #fff;
    color: var(--color-text);
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.menu-recommend__img {
    width: 100%;
    height: 300px;
}

.menu-recommend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-recommend__content {
    padding: 30px;
}

.menu-recommend h3 {
    font-size: 25px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.menu-recommend .price {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Times New Roman', serif;
}

.recommend-badge {
    display: inline-block;
    background: #b59b7d;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    gap: 40px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: var(--color-text);
}

.menu-item__thumb {
    width: 100%;
    height: 200px;
}

.menu-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item__info {
    padding: 20px;
}

.menu-item__info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.menu-item-sub {
    font-size: 14px;
    color: #555;
    font-weight: normal;
}

.menu-example {
    font-size: 14px;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.menu-desc {
    font-size: 0.9rem;
    color: #666;
}

.note,
.note-text {
    font-size: 12px;
    color: #666;
}

/* ==========================================================================
   Voice
   ========================================================================== */
/* ==========================================================================
   Voice
   ========================================================================== */
.voice-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
    /* SP: 1カラム */
}

.voice-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.voice-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.voice-card__name {
    font-weight: bold;
    color: var(--color-text);
    font-size: 0.95rem;
}

.voice-card__star {
    color: #d4af37;
    /* Gold */
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.voice-card__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.voice-footer {
    text-align: center;
    margin-top: 40px;
}

.voice-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 40px;
    transition: all 0.3s;
    color: var(--color-text);
    font-weight: 500;
}

.voice-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.voice-icon {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4285F4;
}

/* PC Media Query for Voice Grid */
@media (min-width: 768px) {
    .voice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* ==========================================================================
   Access
   ========================================================================== */
.access-box {
    background: var(--color-light-bg);
    padding: 30px;
}

.access-info dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.access-info dt {
    font-weight: bold;
    color: var(--color-primary);
}

.btn-sns {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 5px 15px;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--color-text);
    color: #fff;
    padding: 20px 0 80px;
    /* SPの固定CTA分空ける */
    text-align: center;
    font-size: 0.8rem;
}

/* ==========================================================================
   Fixed Elements
   ========================================================================== */
.page-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--color-primary);
    color: #fff;
    padding: 10px;
    font-size: 0.8rem;
    z-index: 90;
    writing-mode: vertical-rl;
    opacity: 0.8;
}

.sp-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
}

.sp-fixed-cta a {
    display: block;
    width: 50%;
    text-align: center;
    padding: 15px 0;
    color: #fff;
    font-weight: bold;
}

.sp-fixed-cta__tel {
    background: #333;
}

.sp-fixed-cta__web {
    background: var(--color-primary);
}




/* ==========================================================================
   PC Responsive (min-width: 768px)
   ========================================================================== */
@media (min-width: 768px) {
    .section {
        margin-bottom: 0;
        padding: 80px 0;
    }

    /* Header */
    .header__hamburger {
        display: none;
    }

    .header__inner {
        justify-content: flex-start;
    }

    .header__nav {
        display: flex !important;
        /* SPでnoneなのでimportant、またはdisplay指定 */
        flex: 1;
        align-items: center;
        justify-content: flex-end;
        /* fallback */
    }

    .header__list {
        display: flex;
        gap: 30px;
        margin: 0 auto;
        /* ナビゲーションを中央配置 */
    }

    .header__cta {
        margin-left: 0;
    }

    .sp-fixed-cta {
        display: none;
    }

    .footer {
        padding-bottom: 20px;
    }

    /* Scene Section PC Layout */
    .scene-box {
        max-width: 600px;
        margin-left: 0;
        /* 左寄せ */
        padding: 60px;
    }



    /* Broken Grid (Clean 2-Column for PC) */
    .broken-grid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        min-height: auto;
    }

    .broken-grid__img {
        width: 48%;
        margin: 0;
    }

    .broken-grid__content {
        position: static;
        width: 48%;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }

    /* 左右配置の切り替え */
    .broken-grid--right {
        flex-direction: row-reverse;
    }

    /* 上書きリセット */
    .broken-grid--right .broken-grid__img,
    .broken-grid--right .broken-grid__content {
        margin: 0;
        left: auto;
        right: auto;
    }

    /* Service */
    .service-item {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-item__img {
        width: 50%;
        margin-bottom: 0;
    }

    .service-item__content {
        width: 50%;
    }

    /* Menu */
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Access */
    .access-box {
        display: flex;
        gap: 40px;
    }

    .access-info {
        width: 40%;
    }

    .access-map {
        width: 60%;
    }

    /* Animation classes (Add via JS) */
    .js-fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s, transform 0.8s;
    }

    .js-fade-up.is-show {
        opacity: 1;
        transform: translateY(0);
    }

    /* About Section Vertical Layout */
    .section--about .broken-grid {
        display: block;
        text-align: center;
    }

    .section--about .broken-grid__img {
        width: 100%;
        max-width: 900px;
        margin: 0 auto 40px;
    }

    .section--about .broken-grid__content {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        background: transparent;
        box-shadow: none;
    }

    /* Menu Recommend 2-Column (PC) */
    .menu-recommend {
        flex-direction: row;
        align-items: stretch;
    }

    .menu-recommend__img {
        width: 55%;
        height: auto;
        min-height: 350px;
    }

    .menu-recommend__content {
        width: 45%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

}