@charset "UTF-8";


/* 交通アクセス専用 スタイル（完全中央揃え・独立設計） */
.access-wrapper {
    background-color: #fbf9f6;
    padding-bottom: 80px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", serif;
    color: #333;
}

/* ページ見出し */
.page-title-area {
    text-align: center;
    padding: 40px 20px 40px;
}

.main-title {
    font-size: 2.2rem;
    color: #8b1d1d;
    margin: 0 0 8px;
    font-weight: normal;
    letter-spacing: 0.15em;
}

.sub-title {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: #a38258;
    margin: 0;
    font-family: sans-serif;
}

/* 全体の中央揃えコンテナ（最大幅1100px） */
.access-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 基本情報カード（白背景・角丸・シャドウ） */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #ede8e1;
    margin-bottom: 60px;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.info-text-col {
    flex: 1 1 420px;
}

.map-col {
    flex: 1 1 420px;
    min-height: 320px;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.shrine-name {
    font-size: 1.6rem;
    color: #2b3935;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #a38258;
}

.ruby {
    font-size: 0.95rem;
    color: #666;
    font-weight: normal;
}

.info-dl {
    display: grid;
    grid-template-columns: 110px 1fr;
    row-gap: 18px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

.info-dl dt {
    color: #777;
    font-weight: bold;
}

.info-dl dd {
    margin: 0;
    color: #222;
}

.tel-link {
    color: #8b1d1d;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
    font-family: sans-serif;
}

/* 各セクション見出し */
.section-block {
    margin-bottom: 60px;
}

.block-heading {
    text-align: center;
    font-size: 1.6rem;
    color: #2b3935;
    margin-bottom: 35px;
    position: relative;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.block-heading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #a38258;
    margin: 12px auto 0;
}

/* お越し方法 3カラム */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.method-box {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #ede8e1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.method-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: #f4ece1;
    color: #8b1d1d;
    font-weight: bold;
    font-size: 0.95rem;
    border-radius: 50%;
    margin-bottom: 15px;
    font-family: sans-serif;
}

.method-box h3 {
    font-size: 1.2rem;
    color: #2b3935;
    margin: 0 0 15px;
}

.method-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.note-text {
    display: inline-block;
    font-size: 0.82rem;
    color: #888;
    margin-top: 8px;
}

/* 駐車場カード */
.parking-section {
    margin-bottom: 40px;
}

.parking-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #ede8e1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.parking-badge {
    display: inline-block;
    background: #a38258;
    color: #fff;
    padding: 6px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.parking-main-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.parking-caution {
    background: #fdfaf6;
    border: 1px dashed #d9cfc1;
    border-radius: 6px;
    padding: 12px 20px;
    display: inline-block;
}

.parking-caution p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* スマホ対応（レスポンシブ） */
@media (max-width: 768px) {
    .info-card {
        padding: 25px 20px;
    }
    .info-grid {
        flex-direction: column;
        gap: 25px;
    }
    .info-dl {
        grid-template-columns: 90px 1fr;
        font-size: 0.95rem;
    }
    .map-col {
        min-height: 260px;
    }
    .map-frame {
        min-height: 260px;
    }
}
