@charset "UTF-8";

/* ==========================================================================
   Pattern 10: Soft Neumorphism (柔和・ニューモーフィズム)
   Designer: "柔和で触覚的なUIクリエイター"
   Concept: 触れたくなるUI、ベージュの単色背景、光と影の凹凸(Box-shadow)、丸み
   ========================================================================== */

:root {
    /* 暖かみのあるベージュトーン */
    --bg-color: #E8E2D9;
    --shadow-light: #F9F5EF;
    --shadow-dark: #D1C9BE;

    --c-text-main: #5C5248;
    --c-text-sub: #8F8475;
    --c-accent: #A9937D;

    --font-en: 'Jost', sans-serif;
    --font-ja: 'Shippori Mincho', serif;

    /* Neumorphism Shadows */
    --neu-out: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
    --neu-in: inset 8px 8px 16px var(--shadow-dark), inset -8px -8px 16px var(--shadow-light);
    --neu-hover: 6px 6px 12px var(--shadow-dark), -6px -6px 12px var(--shadow-light);
    --neu-active: inset 6px 6px 12px var(--shadow-dark), inset -6px -6px 12px var(--shadow-light);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--c-text-main);
    font-family: var(--font-ja);
    line-height: 2;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.c-logo {
    font-family: var(--font-en);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 20px;
}

ul {
    list-style: none;
}

/* =========================================
   Neumorphism Utilities
========================================= */
.c-neu-out {
    background: var(--bg-color);
    box-shadow: var(--neu-out);
    border-radius: 30px;
}

.c-neu-in {
    background: var(--bg-color);
    box-shadow: var(--neu-in);
    border-radius: 30px;
    padding: 10px;
    /* 画像を入れる場合の余白 */
}

/* =========================================
   Components
========================================= */
.c-logo {
    font-size: 24px;
    letter-spacing: 0.2em;
    color: var(--c-text-main);
}

.c-section-title {
    font-size: 16px;
    letter-spacing: 0.2em;
    color: var(--c-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.c-tag {
    display: inline-block;
    padding: 8px 24px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--c-accent);
    border-radius: 50px;
}

.c-btn-neu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: var(--bg-color);
    box-shadow: var(--neu-out);
    border-radius: 50px;
    color: var(--c-text-main);
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: box-shadow 0.2s ease, color 0.2s;
}

.c-btn-neu:hover {
    box-shadow: var(--neu-hover);
    color: var(--c-accent);
}

.c-btn-neu:active,
.c-btn-neu--pressed {
    box-shadow: var(--neu-active);
}

/* =========================================
   Layout
========================================= */
.l-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.l-section {
    padding: 120px 0;
}

/* =========================================
   Header
========================================= */
.l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 40px;
    z-index: 100;
}

.l-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.l-header__nav a:not(.c-btn-neu) {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.l-header__nav a:not(.c-btn-neu):hover {
    color: var(--c-accent);
}

/* =========================================
   Hero
========================================= */
.p-hero {
    padding: 120px 0 80px;
}

.p-hero__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.p-hero__text {
    flex: 1;
    padding-left: 20px;
}

.p-hero__title {
    font-family: var(--font-ja);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--c-text-main);
}

.p-hero__desc {
    color: var(--c-text-sub);
    font-size: 16px;
}

.p-hero__img {
    flex: 1;
    aspect-ratio: 4/3;
}

.p-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* =========================================
   Concept
========================================= */
.p-concept {
    display: flex;
    align-items: center;
    gap: 100px;
}

.p-concept__images {
    flex: 6;
    display: flex;
    gap: 40px;
    position: relative;
}

.p-concept__img-wrap {
    flex: 1;
    padding: 15px;
    /* ネウモルフィズムの枠 */
}

.p-concept__img-wrap:nth-child(2) {
    margin-top: 80px;
    /* ずらして配置 */
}

.p-concept__img-wrap img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.p-concept__text {
    flex: 4;
    padding: 60px 50px;
}

.p-concept__text h4 {
    font-family: var(--font-ja);
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.p-concept__text p {
    color: var(--c-text-sub);
    font-size: 15px;
}

/* =========================================
   Menu
========================================= */
.p-menu__header {
    text-align: center;
    margin-bottom: 80px;
}

.p-menu__header p {
    color: var(--c-text-sub);
}

.p-menu__cards {
    display: flex;
    gap: 50px;
}

.c-neu-card {
    flex: 1;
    background: var(--bg-color);
    box-shadow: var(--neu-out);
    border-radius: 40px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.c-neu-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 18px;
    color: var(--c-accent);
    margin-bottom: 30px;
}

.c-neu-card__title {
    font-size: 22px;
    margin-bottom: 10px;
}

.c-neu-card__price {
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--c-accent);
    margin-bottom: 25px;
}

.c-neu-card__text {
    font-size: 14px;
    color: var(--c-text-sub);
    margin-bottom: 30px;
    flex: 1;
}

.c-neu-card__img {
    height: 200px;
}

.c-neu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* =========================================
   Footer & Reserve
========================================= */
.p-reserve {
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 100px;
}

.p-reserve h2 {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.p-reserve p {
    margin-bottom: 40px;
    color: var(--c-text-sub);
}

.p-reserve__btns {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.l-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 40px;
}

.l-footer__info p {
    color: var(--c-text-sub);
    font-family: var(--font-en);
    font-size: 14px;
    margin-top: 10px;
}

.l-footer__nav {
    display: flex;
    gap: 40px;
    font-family: var(--font-en);
    font-size: 14px;
}

.l-footer__nav a:hover {
    color: var(--c-accent);
}

.copyright {
    text-align: center;
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--c-text-sub);
}

/* =========================================
   Animations
========================================= */
.js-fade {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.js-fade.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 900px) {
    .l-wrapper {
        padding: 20px;
    }

    .l-header {
        padding: 15px 20px;
        top: 20px;
    }

    .l-header__nav {
        display: none;
    }

    .p-hero__inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .p-hero__text {
        padding-left: 0;
        text-align: center;
    }

    .p-hero__img {
        width: 100%;
        aspect-ratio: 1;
    }

    .p-concept {
        flex-direction: column;
        gap: 60px;
    }

    .p-concept__images {
        flex-direction: column;
        width: 100%;
    }

    .p-concept__img-wrap:nth-child(2) {
        margin-top: 0;
    }

    .p-concept__text {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .p-menu__cards {
        flex-direction: column;
    }

    .p-reserve {
        padding: 50px 20px;
    }

    .p-reserve__btns {
        flex-direction: column;
    }

    .l-footer__bottom {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 0;
    }
}

/* --- Hover Interaction Updates --- */
.c-neu-card { transition: transform 0.4s, box-shadow 0.4s; }
.c-neu-card:hover { transform: translateY(-3px); box-shadow: var(--neu-hover); }
.c-neu-card__img, .p-concept__img-wrap { overflow: hidden; }
.c-neu-card:hover .c-neu-card__img img, .p-concept__img-wrap:hover img { transform: scale(1.05); }
.c-neu-card__img img, .p-concept__img-wrap img { transition: transform 0.6s; }
