@charset "UTF-8";

/* ============================================================
   アクセスページ（Access）2カラム決定版スタイル
   ============================================================ */

.access-page {
    background-color: #fcfaf5;
    padding: 180px 0 120px; /* ヘッダー被り対策 */
    font-family: 'Zen Maru Gothic', sans-serif;
}

.access-outer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- タイトルエリア --- */
.access-page .section-title {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-page .section-title .title-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 24px;
    font-weight: 900;
    color: #4a3728;
    line-height: 1;
}

.access-page .section-title .title-inner::before,
.access-page .section-title .title-inner::after {
    content: "";
    width: 6px;
    height: 32px;
    background-color: #08A66C;
    border-radius: 10px;
}

.access-page .section-title span:not(.title-inner) {
    display: block;
    font-size: 12px;
    color: #08A66C;
    margin-top: 10px;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* --- 住所表記 --- */
.address-info {
    text-align: center;
    margin-bottom: 60px;
}

.address-main {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #333;
    margin-bottom: 5px;
}

.address-garden {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #4a3728;
}

/* --- 2カラムレイアウト --- */
.access-flex-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左：地図サイド */
.access-map-side {
    flex: 1.2; /* 地図を少し広めに */
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(93, 64, 55, 0.08);
    background: #fff;
    padding: 10px; /* 白枠効果 */
    aspect-ratio: 1 / 1;
}

.access-map-side iframe {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: block;
}

/* 右：情報サイド */
.access-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.info-subtitle {
    font-size: 18px;
    font-weight: 900;
    color: #4a3728;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-subtitle::before {
    content: "";
    width: 4px;
    height: 18px;
    background-color: #e67e22; /* アクセントのオレンジ */
    border-radius: 10px;
}

.info-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-weight: bold;
}

.info-desc strong {
    color: #08A66C;
}

/* 電話リンク */
.tel-link {
    color: #08A66C;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
}

/* Googleマップボタン */
.map-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #08A66C;
    color: #fff !important;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(8, 166, 108, 0.2);
}

.map-link-btn:hover {
    transform: translateY(-3px);
    background-color: #068a5a;
    box-shadow: 0 12px 25px rgba(8, 166, 108, 0.3);
}

/* ============================================================
   スマホ・タブレット用：レスポンシブ最適化
   ============================================================ */
@media screen and (max-width: 768px) {

    .access-page {
        padding: 120px 0 80px; /* 上部ヘッダー被り調整 */
    }

    .access-outer-container {
        padding: 0 20px;
    }

    /* タイトルエリア調整 */
    .access-page .section-title {
        margin-bottom: 25px;
    }
    .access-page .section-title .title-inner {
        font-size: 20px;
        gap: 15px;
    }
    .access-page .section-title .title-inner::before,
    .access-page .section-title .title-inner::after {
        height: 24px;
        width: 5px;
    }

    /* 住所表記：スマホではさらに読みやすく */
    .address-info {
        margin-bottom: 40px;
    }
    .address-main {
        font-size: 15px;
    }
    .address-garden {
        font-size: 18px;
        margin-top: 5px;
    }

    /* 2カラムレイアウトを解除して縦並びに */
    .access-flex-layout {
        flex-direction: column;
        gap: 30px;
    }

    /* 地図サイドの調整 */
    .access-map-side {
        width: 100% !important;
        aspect-ratio: auto !important; /* 正方形を解除 */
        height: 300px; /* スマホで見やすい高さに固定 */
        border-radius: 30px;
        padding: 6px; /* 白枠を少し細く */
    }
    .access-map-side iframe {
        border-radius: 24px;
    }

    /* 情報サイドの調整 */
    .access-info-side {
        width: 100% !important;
        gap: 20px;
    }

    .info-block {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .info-subtitle {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .info-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 電話リンク：タップしやすいよう強調 */
    .tel-link {
        font-size: 22px;
        display: block;
        margin-top: 5px;
    }

    /* Googleマップボタン：横幅を広げて押しやすく */
    .map-link-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    /* さらに小さい画面用 */
    .access-map-side {
        height: 250px; /* 高さを少し抑える */
    }
    .address-garden {
        font-size: 17px;
    }
    .info-block {
        padding: 20px 15px;
    }
}