/* ===== About Page Styles ===== */
.about-page-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.about-page-section h2 { /* 「教室案内」タイトル */
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #386641;
}

.about-details {
    background-color: #FFFFFF;
    padding: 30px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.about-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #E6EFE6; /* 薄いグリーン系の区切り線 */
}
.about-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-item h3 { /* 「名称」「指導者プロフィール」などの小見出し */
    font-family: 'Merriweather', serif;
    font-size: 1.8em;
    color: #386641;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.school-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #4A4A4A;
    margin-top: -10px; /* h3との間隔調整 */
}

.profile-content .profile-name {
    font-family: 'Merriweather', serif;
    font-size: 1.4em;
    font-weight: 700;
    color: #4A4A4A;
    margin-top: 0;
    margin-bottom: 10px;
}

.profile-content p,
.location-section p {
    font-size: 1em;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 1em;
}
.profile-content p:last-child {
    margin-bottom: 0;
}


.contact-info {
    font-size: 1em;
    line-height: 1.8;
}
.contact-info dt {
    font-weight: 700;
    color: #386641;
    margin-top: 15px;
}
.contact-info dt:first-of-type {
    margin-top: 0;
}
.contact-info dd {
    margin-left: 0;
    margin-bottom: 10px;
    color: #4A4A4A;
}
.contact-info dd a {
    color: #6A994E;
}
.contact-info dd a:hover {
    color: #A7C957;
}

/* ===== Access Section Styles (追加) ===== */
.access-section h3 { /* 「アクセス」タイトル */
    /* .about-item h3 のスタイルを基本的に継承 */
    margin-bottom: 25px; /* 微調整 */
}

.access-info p {
    font-size: 1em;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 0.8em;
}

.access-info .access-school-name {
    margin-bottom: 10px; /* 教室名と住所の間のスペース */
}

.access-info .access-school-name strong {
    font-size: 1.15em; /* 少し目立たせる */
    color: #386641; /* ダークグリーン */
    font-family: 'Merriweather', serif;
}

.access-info .access-method-title {
    font-family: 'Noto Sans JP', sans-serif; /* 本文と合わせるか、Merriweatherでも可 */
    font-size: 1.1em;
    font-weight: 700;
    color: #6A994E; /* やや明るいグリーン */
    margin-top: 20px;
    margin-bottom: 8px;
}
.access-info .access-method-detail {
    margin-bottom: 20px; /* 地図との間隔 */
}

/* Google Map Container (レスポンシブ対応) */
.map-container {
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (height / width) */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ----- スマートフォン向け調整 ----- */
@media (max-width: 768px) {
    .about-page-section {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .about-page-section h2 {
        font-size: 1.7em;
        margin-bottom: 25px;
    }

    .about-details {
        padding: 20px 15px;
    }

    .about-item {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .about-item h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .school-name {
        font-size: 1.1em;
    }

    .profile-content .profile-name {
        font-size: 1.25em;
    }

    .profile-content p,
    .location-section p {
        font-size: 0.95em;
        line-height: 1.75;
    }

    .contact-info {
        font-size: 0.95em;
    }
    .contact-info dt {
        margin-top: 12px;
    }
    .contact-info dd {
        margin-bottom: 8px;
    }

    /* Access Section (Phone) */
    .access-section h3 {
        margin-bottom: 20px;
    }
    .access-info p {
        font-size: 0.95em;
    }
    .access-info .access-school-name strong {
        font-size: 1.1em;
    }
    .access-info .access-method-title {
        font-size: 1.05em;
        margin-top: 15px;
    }
    .access-info .access-method-detail {
        margin-bottom: 15px;
    }

    .map-container {
        margin-top: 20px;
        /* padding-top: 75%; /* 4:3 for smaller screens if needed, or adjust as looks best */
    }
}