html,
body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Noto Sans JP", sans-serif;
    color: #222;
    background: #f6f3ee;
}

.page-hero,
.greeting-page,
.news-page,
.contact-page {
    padding: 120px 20px 80px;
    background: #f6f3ee;
}

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

.page-title,
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title span,
.section-title span,
.eyebrow {
    display: inline-block;
    color: #c9a86a;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.page-title h1,
.section-title h2 {
    font-size: 42px;
    color: #1f1f1f;
    margin: 0;
    position: relative;
}

.page-title h1::after,
.section-title h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #c9a86a;
    margin: 18px auto 0;
}

.card,
.greeting-card,
.news-card,
.contact-box,
.form-box {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(201, 168, 106, .25);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .07);
}

p {
    line-height: 2.2;
}

.btn,
button {
    border-radius: 999px;
    font-weight: 800;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
}

.footer-tel {
    background: #fff;
    color: #222;
}

.footer-line {
    background: #06c755;
    color: #fff;
}

.footer-contact {
    background: #c9a86a;
    color: #fff;
}

@media(max-width:768px) {

    .page-hero,
    .greeting-page,
    .news-page,
    .contact-page {
        padding: 90px 16px 60px;
    }

    .page-title h1,
    .section-title h2 {
        font-size: 30px;
    }

    p {
        font-size: 15px;
        line-height: 2;
    }
}

.menu-toggle {
    display: none;
}



@media (max-width: 768px) {
    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        width: 54px;
        height: 54px;
        border: 2px solid #c9a86a;
        background: #fff;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 10001;
    }

    .menu-toggle span {
        width: 24px;
        height: 3px;
        background: #0f5b6b;
        border-radius: 999px;
        transition: .3s;
    }

    .global-nav {
        display: none;
    }

    .global-nav.active {
        display: flex;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 14px;
        padding: 22px;
        background: #fff;
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
        z-index: 10000;
    }

    .global-nav.active a {
        padding: 14px;
        color: #0f5b6b;
        font-weight: 800;
        border-bottom: 1px solid #eee;
    }
}