/* 全体 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
    line-height: 1.6;
  }
/* メイン */

.guidance-all{
    margin: 20px;
}

.image-container {
    position: relative;
    width: 100%;
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    opacity: 0.6; /* 画像の透明度を設定 */
  }
  
  .title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
  }

.sub-title {
    margin: 20px auto;
    font-size: 24px;
    text-align: center; /* タイトルを中央揃え */
}

.addoress {
    margin: 10px auto;
    font-size: 16px;
    text-align: center;
}

/* コンテナ */
.container {
    display: flex;
    flex-wrap: wrap; /* モバイルで縦並びになるよう設定 */
    justify-content: center;
    gap: 20px; /* 子要素の間に余白を追加 */
    margin-top: 40px;
    margin-bottom: 20px;
}

.googlemapDetail,
.googlemapExterior {
    width: 100%; /* 幅を親要素に合わせる */
    max-width: 600px; /* 最大幅を設定 */
    aspect-ratio: 16 / 9; /* 横16:縦9の比率を設定 */
    border: 0;
}

.course-title {
    background: #e74c3c;
    color: white;
    padding: 10px;
    text-align: center;
    margin: 0;
  }
  
  .course-title span {
  text-decoration: underline;
  }

/* フッター */
footer {
    background-color: rgb(173, 231, 249);
    color: rgb(0, 0, 0);
    padding: 20px 10px;
    text-align: center;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
}

.footer-menu-list li {
    display: inline-block;
    margin: 0 10px;
}

.footer-menu-list a {
    text-decoration: none;
    color: #333;
}

.copyright {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}

/* レスポンシブ対応 */
/* iPadPro */
@media (max-width: 1024px) {
    .sub-title {
        font-size: 24px;
    }

    .addoress {
        font-size: 18px;
    }

    .googlemapDetail,
    .googlemapExterior {
        margin-top: 20px;
    }

    footer {
        font-size: 12px;
    }
}

/* iPadMini */
@media (max-width: 768px) {
    .sub-title {
        font-size: 20px;
    }

    .addoress {
        font-size: 14px;
    }

    .container {
        flex-direction: column; /* モバイルでは縦並び */
        align-items: center; /* 子要素を中央揃え */
    }

    .googlemapDetail,
    .googlemapExterior {
        width: 90%; /* モバイルでは幅を90%に縮小 */
        margin-top: 30px;
    }

    footer {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 16px;
    }

    .sub-title {
        font-size: 18px;
    }

    .addoress {
        font-size: 12px;
    }

    .footer-menu-list li {
        display: block; /* フッターメニューを縦並びに */
        margin: 5px 0;
    }
}
