body {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    color: #4D594A;
    margin: 0;
}

/* ===== Header ===== */
.site-header {
    background: #fef9e8da;
    border-bottom: 1px solid #e5e1b5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    color: #D3D573;

}

.logo span {
    color: #6b7a3a;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #22331F;
    position: relative;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: #829e4a;
    /* ← ホバー時の色 */
}

.hero {
    position: relative;
    text-align: center;
    padding: 80px 0;
    background-color: #FEF3D0;
    overflow: hidden;
}

/* ===== 左イラスト ===== */
.hero::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 374px;
    height: 286px;
    background: url("/img/bg4.png") no-repeat bottom left / contain;
    opacity: 0.9;
    pointer-events: none;
}

/* ===== 右イラスト ===== */
.hero::before {
    content: "";
    position: absolute;
    bottom: -41px;
    right: -30px;
    width: 374px;
    height: 286px;
    background: url("/img/bg7.png") no-repeat bottom right / contain;
    opacity: 0.9;
    pointer-events: none;
}


/* ===== テキスト ===== */
.hero h1 {
    font-size: 50px;
    margin-bottom: 12px;
    color: #22331F;
    position: relative;
    z-index: 1;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4D594A;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ===== ボタン ===== */
.btn {
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #E3D8AB;
    text-decoration: none;
    color: #172613;
    font-weight: 600;
    font-size: 14px;
}

.btn.primary {
    background: #D3D573;
}

.section {
    margin: 0 auto;
    padding: 60px 205px;
    scroll-margin-top: 80px;
}

.section-1 {
    background-color: #FEF9E8;
}

.section-2 {
    background-color: #FCF7E2;
}

.section-3 {
    background-color: #FEF9E9;
}

.section-4 {
    background-color: #FCF7E3;
}

.section-5 {
    background-color: #fff7d6;
}

.section-6 {
    background-color: #FEF9E9;
}

.section-7 {
    background-color: #FFF5DC;
    padding-bottom: 0;
}

.section-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 32px;
    color: #22331F;
}

.card {
    background: #fffffc;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    width: 85%;
    margin: 32px auto 0;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #E3D8AB;
}

.card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #172613;
}

.icon {
    width: 18px;
    height: auto;
    display: block;
}

.mt {
    margin-top: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    background: #fffbe8;
    border: 1px solid #c6d3c5;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.feature-box strong {
    color: #D3D573;
    font-weight: bold;
    font-size: 25px;
}

.feature-box span {
    font-size: 15px;
}

/* ===== サービス内容 ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-box {
    position: relative;
    aspect-ratio: 4 / 4;
    padding: 14px 16px;
    background: #fffef5;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-size: 14px;
    line-height: 1.6;
    color: #22331F;
    text-align: center;
}

.service-box img {
    width: 155px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 12px;
}


.service-box p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #172613;
}

.service-text-row {
    display: flex;
}

.service-text {
    padding-right: 60px;
    font-weight: 600;
    color: #22331F;
}

.service-icon {
    width: 100px;
    height: 100px;
}

.service-staff {
    background: #fffde9;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    padding: 24px;
    font-size: 14px;
    line-height: 1.8;
}

.service-staff h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 12px;
}

.service-staff h3::before {
    content: "";
    width: 18px;
    height: 18px;
}

/* ===== 施設紹介 ===== */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.facility-box {
    background: #fffffc;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
    cursor: pointer;
}

.facility-box h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    color: #D3D573;
}

.facility-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    column-gap: 8px;
    align-items: start;
    margin: 6px 0;
}

.facility-row .icon {
    width: 14px;
    height: auto;
    margin-top: 2px;
}

.facility-row span {
    line-height: 1.6;
    color: #4D594A;
}

.facility-text-only {
    grid-column: 2 / 3;
}

.facility-detail {
    max-width: 760px;
    margin: 32px auto 0;
    background: #fffcf0;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 28px;
    font-size: 16px;
    line-height: 1.8;
}

.facility-detail h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-bottom: 27px;
    font-size: 16px;
    color: #22331F;
}

.facility-detail-group h4 {
    color: #22331F;
    margin: 0 0;
}

.facility-detail-group {
    margin-top: 16px;
}

.facility-detail-group p {
    margin: 0;
}

.facility-detail .icon {
    width: 18px;
    height: auto;
    display: block;
}

.facility-gallery {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.facility-gallery img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.back-link a {
    text-decoration: none;
    color: #172613;
    font-weight: 600;
}

/* ===== 1日の流れ ===== */
.day-flow-box {
    max-width: 760px;
    margin: 0 auto;
    background: #fffffc;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    padding: 24px;
    font-size: 16px;
}

.day-flow-row {
    display: grid;
    grid-template-columns: 18px 120px 1fr;
    column-gap: 12px;
    align-items: start;
    margin: 10px 0;
}

.day-flow-row .icon {
    width: 16px;
    margin-top: 2px;
}

.day-flow-row .time {
    color: #D3D574;
}

.day-flow-row .text {
    line-height: 1.6;
    padding-left: 15px;
}

.day-flow-note {
    margin-top: 12px;
    text-align: center;
}

.timeline p {
    margin: 8px 0;
}

/* ===== アクセス ===== */
.access-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fffffc;
    border-radius: 12px;
    border: 1px solid #e5e1b5;
    padding: 24px;
}

.access-box h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 16px;
}

.access-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.access-row .icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.access-text {
    line-height: 1.6;
    margin-top: -17px;
}

.access-row span {
    font-size: 14px;
    line-height: 1.6;
}

.company-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.map-wrap {
    width: 65%;
    margin: 20px auto;
}

.map-wrap iframe {
    width: 100%;
    height: 333px;
    border-radius: 10px;
    border: 0;
}

/* ===== Contact ===== */
.contact-section {
    padding: 80px 16px;
    background: #fff9df;
    text-align: center;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-lead {
    font-size: 14px;
    margin-bottom: 32px;
    text-align: center;
}

.contact-box {
    max-width: 560px;
    margin: 0 auto;
    background: #fffffa;
    border-radius: 14px;
    border: 1px solid #e5e1b5;
    padding: 32px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e1b5;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.contact-item .icon {
    width: 20px;
    margin-bottom: 8px;
}

.contact-head {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-head .icon {
    width: 18px;
    height: auto;
}

.contact-label {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.contact-main {
    font-size: 17px;
    font-weight: 700;
    color: #c7c84f;
    margin: -10px 0;
}

.contact-sub {
    font-size: 13px;
}

.contact-bg {
    display: block;
    margin: 40px auto 0;
    max-width: 80%;
    height: auto;
}

.site-footer {
    background: #fffcef;
    border-top: 1px solid #E3D8AB;
    padding: 48px 30px 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    color: #172613;
}

.footer-col p,
.footer-col li {
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

.footer-col ul {
    padding: 0;
    list-style: none;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-icon {
    width: 16px;
    height: auto;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-menu a {
    text-decoration: none;
    color: #4D594A;
    transition: color 0.2s;
}

.footer-menu a:hover {
    color: #829e4a;
}

.footer-copy {
    padding: 30px 0;
    border-top: 1px solid #E3D8AB;
    text-align: center;
    font-size: 12px;
}

.facility-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.facility-gallery:has(img:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 300px));
    justify-content: center;
}

.facility-gallery img {
    width: 100%;
    border-radius: 12px;
}

.facility-info {
    margin: 40px 0;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.facility-item:last-child {
    margin-bottom: 0;
}

.facility-icon {
    width: 16px;
    height: auto;
    flex-shrink: 0;
}

.facility-movie iframe {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    border: 0;
}

.back-link {
    margin-top: 32px;
    text-align: center;
}

.section-event {
    position: relative;
    text-align: center;
    background-color: #fff7d6;
    overflow: hidden;
}

.event-tree {
    position: absolute;
    left: 40px;
    bottom: -20px;
    width: 225px;
    max-width: 40vw;
    opacity: 0.9;
    pointer-events: none;
}

.section-lead {
    margin-bottom: 24px;
    color: #555;
}

.event-thumb-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.event-thumb-grid img {
    width: 260px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.event-more .btn {
    display: inline-block;
    padding: 12px 32px;
    background: #829e4a;
    color: #fff;
    border-radius: 24px;
    text-decoration: none;
}

.section-lead {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

/* ===== イベント（横並び）===== */
.event-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.event-bg {
    position: absolute;
    left: -180px;
    bottom: 0;
    width: 200px;
    z-index: 1;
    pointer-events: none;
}

.event-inner {
    flex: 1;
    text-align: center;
}

.event-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.event-item {
    width: 260px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.event-item img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.event-btn {
    display: inline-block;
    background-color: #8fa95b;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.event-btn:hover {
    background-color: #7c944e;
}

/* ===============================
   スマホ対応（〜768px）
================================ */
@media screen and (max-width: 768px) {

    /* ===== Header ===== */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner {
        padding: 10px 14px;
    }

    .logo {
        font-size: 13px;
    }

    .header-nav {
        gap: 5px;
    }

    .header-nav a {
        font-size: 8px;
    }

    /* ===== Hero ===== */
    .hero::before,
    .hero::after {
        bottom: -26px;
        top: auto;
        transform: none;
        width: 160px;
        height: 130px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 999px;
    }

    /* ===== Section ===== */
    .section {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 24px;
    }

    /* ===== Card ===== */
    .card {
        width: 100%;
        padding: 20px;
    }

    /* ===== Feature ===== */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-box strong {
        font-size: 15px;
    }

    .section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .service-grid,
    .service-grid * {
        min-width: 0 !important;
        box-sizing: border-box;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .service-box {
        aspect-ratio: auto !important;
        width: 100%;
        max-width: 100%;
        padding: 14px 10px;
    }

    .service-box img {
        width: auto !important;
        max-width: 100% !important;
        height: auto;
        display: block;
        margin: 0 auto 8px;
    }

    .service-box p {
        font-size: 13px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
        text-align: center;
    }

    .service-text-row {
        flex-direction: column;
    }

    .service-text {
        padding-right: 0;
        margin-bottom: 12px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
    }

    /* ===== Facility ===== */
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-box h4 {
        font-size: 18px;
    }

    .facility-detail {
        padding: 20px;
        font-size: 14px;
    }

    .facility-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ===== Day Flow ===== */
    .day-flow-box {
        padding: 20px;
        font-size: 14px;
    }

    .day-flow-row {
        grid-template-columns: 16px 80px 1fr;
        column-gap: 8px;
    }

    .day-flow-row .text {
        padding-left: 8px;
    }

    /* ===== Access ===== */
    .access-box {
        padding: 20px;
    }

    .access-row {
        gap: 6px;
    }

    .access-text {
        margin-top: 0;
    }

    .map-wrap {
        width: 100%;
    }

    .map-wrap iframe {
        height: 240px;
    }

    /* ===== Contact ===== */
    #contact.section {
        padding-bottom: 0;
    }

    .contact-bg {
        margin-top: 20px;
        max-width: 70%;
    }

    /* ===== Footer ===== */
    .site-footer {
        padding: 32px 12px 0;
    }

    .footer-inner {
        text-align: center;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer-col {
        font-size: 12px;
    }

    .footer-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-col p,
    .footer-col li {
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-row {
        gap: 6px;
    }

    .footer-icon {
        width: 13px;
        margin-top: 3px;
    }

    .footer-menu li {
        margin-bottom: 4px;
    }

    .footer-menu a {
        padding: 2px 0;
        display: inline-block;
    }

    .footer-copy {
        font-size: 10px;
        padding: 20px 0;
    }

    .facility-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 24px;
    }

    .facility-gallery:has(img:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
        justify-content: stretch;
    }

    .facility-gallery img {
        border-radius: 10px;
    }

    .facility-info {
        margin: 24px 0;
    }

    .facility-movie iframe {
        height: 220px;
        border-radius: 10px;
    }

    .back-link {
        margin-top: 24px;
    }

    /* ===== Event ===== */
    .event-wrap {
        padding: 0 16px;
    }

    .event-bg {
        display: none;
    }

    .event-title {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .event-lead {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .event-list {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 28px;
    }

    .event-item {
        width: 30%;
        border-radius: 10px;
    }

    .event-item img {
        height: 110px;
        object-fit: cover;
    }

    .event-btn {
        padding: 12px 26px;
        font-size: 13px;
    }
}