@charset "UTF-8";

/* --- タイトルエリア --- */
.title {
    height: 310px;
    font-size: 30px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
    padding-top: 100px;
}

.main h2 {
    font-size: 25px;
    font-weight: bold;
    line-height: 30px;
    padding-top: 30px;
    text-align: center;
}

.main h2::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    background-color: #333; /* 線が見えるように色を追加 */
    margin: 20px auto 0;    /* 中央寄せ */
}

/* --- 地図エリア --- */
.map {
    width: 900px;
    max-width: 100%;
    margin: 75px auto 0;
    text-align: center;
}

.map iframe {
    display: block;
    width: 100%;
    height: 320px;
    margin-top: 25px;
}

/* --- お問い合わせフォームエリア --- */
.contact {
    width: 930px;
    max-width: 90%;
    margin: 75px auto 0;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: center;
}



/* --- レスポンシブ (スマホ表示) --- */
@media (max-width: 768px) {
    .map,
    .contact {
        width: 100%;
        margin-top: 45px;
    }

}