/* ============================================
   アクセスページ専用スタイル
   ============================================ */

/* アクセスセクション */
.access {
    background-color: #EDEDEA;
    min-height: 100vh;
}

/* アクセスコンテンツ */
.access-content {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 32px;
}

/* 学校ロケーション */
.school-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 24px;
}

/* ロケーションタイトル */
.location-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 24px;
}

.location-title-line {
    flex: 1;
    height: 1px;
    background: #B10100;
}

.location-title-text {
    font-family: 'YuMincho', serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-align: center;
    color: #B10100;
    margin: 0;
    white-space: nowrap;
}

/* マップコンテナ */
.map-container {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px;
}

/* マップラッパー */
.map-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Googleマップを開くボタン */
.map-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    gap: 12px;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid #CCCCCC;
    border-radius: 40px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.map-button:hover {
    background-color: #F5F5F5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-button-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

.map-button-arrow {
    width: 6px;
    height: 12px;
    flex-shrink: 0;
}

/* 情報行 */
.info-row {
    display: flex;
    flex-direction: row;
    align-self: stretch;
    gap: 8px;
}

/* 情報アイコン */
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 24px;
    flex-shrink: 0;
}

.info-icon svg,
.info-icon img {
    width: 16px;
    height: 24px;
}


/* 情報コンテンツ */
.info-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}

/* 情報ラベル */
.info-label {

    font-family: 'YuGothic', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}

/* 情報テキスト */
.info-text {
    font-family: 'YuGothic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin: 0;
}

/* タブレット表示 */
@media (min-width: 768px) {
    .map-wrapper {
        height: 300px;
    }
}

/* デスクトップ表示 */
@media (min-width: 1024px) {
    .location-title-text {
        font-size: 28px;
    }

    .map-wrapper {
        height: 400px;
    }

    .map-button {
        align-self: flex-start;
        padding: 16px 48px;
        background: none;
    }

    .info-row {
        gap: 12px;
    }

    .info-icon {
        width: 20px;
        height: 24px;
    }


}

