@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --text-color: #4A4543;
    --text-light: #8C8885;
    --bg-color: #FFF;
    --bg-accent: #EFEFEF;
    --primary-color: #9E896A;
    /* Soft Gold/Brown */
    --accent-color: #C0A884;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    opacity: 0.7;
}

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

h1,
h2,
h3 {
    margin: 0;
    font-weight: 500;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 32px;
}

/* ==========================================================================
   Components
   ========================================================================== */
.section-title {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    display: block;
    letter-spacing: 0.2em;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: all 0.4s;
}

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



/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    background-color: #FAF8F5;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Concept
   ========================================================================== */
.concept {
    background: #FAF8F5 url('../images/concept_bg.png') no-repeat left bottom;
    background-size: 100% auto;
    position: relative;
    overflow: hidden;
    padding: 0 0 50px;
}

.concept__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.concept__content {
    flex: 1;
    padding-right: 60px;
}

.concept__title {
    font-size: 1.5rem;
    color: #8B6F5C;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.concept__text p {
    font-size: 1rem;
    line-height: 2;
    color: #8B6F5C;
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
}

.concept__label {
    position: absolute;
    bottom: 0;
    right: 0;
    writing-mode: vertical-rl;
    font-size: 4.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #B8C89F;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    padding-left: 20px;
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu {
    background-color: #fff;
    padding: 40px 0;
}

.menu__title {
    font-size: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #6C2C2C;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.menu__subtitle {
    font-size: 0.9rem;
    color: #6C2C2C;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.menu__list {}

.menu__category {
    margin-bottom: 30px;
}

.menu__category:last-child {
    margin-bottom: 0;
}

.menu__category-title {
    font-size: 1.5rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #6C2C2C;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #CFDAA3;
    font-weight: 400;
    font-style: italic;
}

.menu__item {
    border-bottom: 1px solid #CFDAA3;
}

.menu__item:last-child {
    border-bottom: none;
}

.menu__item:first-child {
    padding-top: 0;
}

.menu__name {
    font-size: 1.125rem;
    font-family: var(--font-serif);
    font-weight: 600;
    color: #6C2C2C;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu__desc {
    font-size: 0.875rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: #6C2C2C;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.menu__options {
    margin: 0.5rem 0 1rem;
}

.menu__options p {
    font-size: 0.875rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    margin: 0.5rem 0;
}

.menu__price {
    font-size: 1rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    text-align: right;
    font-weight: 500;
}

/* ==========================================================================
   Products
   ========================================================================== */
.products {
    background: url('../images/products_bg.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    border-radius: 60px 60px 0 0;
}

.products__title {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    margin-bottom: 0.5rem;
}

.products__subtitle {
    font-size: 0.9rem;
    color: #6C2C2C;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.products__content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.products__text {
    flex: 1;
}

.products__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #6C2C2C;
    margin-bottom: 2rem;
}

.btn-products {
    display: inline-block;
    padding: 15px 40px;
    background-color: #6C2C2C;
    color: #FFFFFF;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.btn-products:hover {
    opacity: 0.8;
}

.products__image {
    flex: 1;
}

.products__image img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Voice
   ========================================================================== */
.voice {
    background-color: #FFFFFF;
    padding: 40px 0;
}

.voice .container {
    padding: 0;
}


.voice__title {
    padding: 0 20px;
    font-size: 2rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    margin-bottom: 0.5rem;
}

.voice__subtitle {
    padding: 0 20px;
    font-size: 0.9rem;
    color: #6C2C2C;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.voice-swiper {
    width: 100%;
    padding: 20px 0;
}

.voice__card {
    background-color: #FDF9F8;
    padding: 24px;
    text-align: center;
    height: auto;
}

.voice__avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.voice__customer {
    font-size: 1.1rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.voice__ratings {
    font-size: 0.85rem;
    color: #6C2C2C;
    margin-bottom: 1rem;
}

.voice__ratings p {
    margin: 0.25rem 0;
}

.voice__text {
    font-size: 0.95rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    line-height: 1.8;
    text-align: left;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    background-color: #FFF6F0;
    padding: 40px 0;
}

.faq__title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.faq__badge {
    display: block;
    color: #6C2C2C;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 0 1rem;
    width: fit-content;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    margin-bottom: 1.5rem;
}

.faq__question {
    background-color: #FAD5BB;
    color: #6C2C2C;
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.faq__answer {
    color: #6C2C2C;
    font-size: 0.875rem;
    line-height: 1.8;
    padding-left: 12px;
}

/* ==========================================================================
   Shop
   ========================================================================== */
.shop {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.shop__title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: #6C2C2C;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.shop__subtitle {
    font-size: 0.9rem;
    color: #6C2C2C;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
}

.shop__table {
    max-width: 800px;
    margin: 0 auto 3rem;
    width: 100%;
    border-collapse: collapse;
}

.shop__row {
    border-bottom: 1px solid #D0D0D0;
}

.shop__row:first-child {
    border-top: 1px solid #D0D0D0;
}

.shop__label {
    background-color: #F5F5F5;
    padding: 16px 20px;
    font-weight: 500;
    color: #6C2C2C;
    width: 200px;
    text-align: left;
    vertical-align: top;
}

.shop__value {
    background-color: #FFFFFF;
    padding: 16px 20px;
    color: #6C2C2C;
    line-height: 1.8;
    text-align: left;
    vertical-align: top;
}

.shop__map {
    max-width: 800px;
    margin: 0 auto;
}

.shop__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #333;
    color: rgba(255, 255, 255, 0.7);
    padding: 100px 0 30px;
    font-size: 0.9rem;
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer__nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

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


    .concept__bg {
        background-size: auto 50%;
        opacity: 0.3;
    }

    .concept__wrapper {
        flex-direction: column;
        padding-right: 0;
    }

    .concept__content {
        padding-right: 0;
    }

    .concept__label {
        font-size: 3rem;
        margin-top: 2rem;
        padding-left: 0;
    }

    .products__content {
        flex-direction: column;
    }

    .shop__row {
        grid-template-columns: 1fr;
    }

    .shop__label {
        border-bottom: none;
    }

    .shop__inner {
        padding: 30px 20px;
        margin-bottom: 0;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .footer {
        padding-top: 50px;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 15px;
    }

}