/* ========== アクセス・ご予約セクション (reservation-section) ========== */
.reservation-section {
    background: #f5f3ef;
    padding: 80px 0;
}

.reservation-section .inner {
    max-width: 1000px; /* PCでは中央寄せ */
    margin: 0 auto;
    padding: 0 20px;
}

.reservation-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.map-wrapper {
    flex: 1 1 55%; /* Map takes more space */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px; /* Taller map */
    border: 0;
    filter: grayscale(80%) contrast(110%); /* Subtle grayscale for style */
}

.access-text {
    flex: 1 1 45%;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    font-family: 'Noto Serif JP', 'Yu Gothic', serif;
    text-align: left;
}

.access-text p {
    margin-bottom: 1em;
}

.reservation-section .address,
.reservation-section .tel {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0.8em;
    font-weight: 500;
}

.reservation-section .tel a {
    color: #5A4E3C;
    text-decoration: underline;
}
.reservation-section .tel a:hover {
    color: #7A6955;
}

.reservation-section .btn {
    margin-top: 2rem;
    padding: 14px 35px;
    background: #a0522d;
    color: white;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: background 0.3s ease, transform 0.2s ease;
}

.reservation-section .btn:hover {
    background: #874421;
    transform: translateY(-3px);
}

/* ===== スマホ用調整 ===== */
@media (max-width: 768px) {
    .reservation-section .inner {
        max-width: 100%;   /* スマホは全幅 */
        padding: 0 10px;   /* 左右の余白を少しだけ */
    }

    .reservation-section .section-title {
        font-size: 2.2rem;
    }

    .reservation-content {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .map-wrapper,
    .access-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .map-wrapper iframe {
        width: 100%;
        height: 300px;
    }

    .access-text {
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 5px;
    }

    .access-text .btn {
        display: inline-block;
        margin-top: 15px;
    }

    .reservation-section .btn {
        width: 90%;      /* スマホは大きめに */
        max-width: 400px;
        margin: 20px auto 0;
        display: block;
    }
}

