/* サイト全体の基本スタイル */
.container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

/* 各セクション共通 */
section {
    padding: 20px 0;
    background-color: #f9f9f9;
}

/* 見出し共通スタイル */
.section-title {
    font-size: 32px;
    color: #004d40;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

/* 内容記述共通スタイル */
.description {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* マップセクション */
.map-section iframe {
    width: 100%; /* レスポンシブ対応のため100%に設定 */
    height: 400px; /* 高さを400pxに固定 */
    border: none; /* ボーダーを削除 */
    margin-bottom: 20px; /* 下部に余白を設定 */
}

/* 駐車場案内セクション */
.parking-section img {
    width: 100%; /* 幅を100%に設定 */
    height: auto; /* 高さを自動調整 */
    object-fit: contain; /* アスペクト比を維持しつつコンテンツをフィットさせる */
    display: block; /* ブロック要素として扱う */
    margin: 0 auto; /* 中央寄せ */
}

/* レスポンシブデザイン対応 */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .map-section iframe {
        height: 300px; /* モバイルでは高さを300pxに調整 */
    }



    
}
