.container {
    width: 80%;
    margin: 0 auto;
    padding: 100px 0;
}

h1 {
    font-size: 2.4em;
    margin-bottom: 1em;
    text-align: center;
}

.info-table {
    width: 80%; /* ボックスの横幅を調整 */
    margin: 0 auto 1.5em auto; /* ボックスを中央に配置 */
    background-color: #ffffff;
    padding: 0.5em;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 1.5em 0; /* 項目の上下に余裕を持たせる */
    align-items: center; /* 垂直方向を中央に揃える */
    justify-content: space-between; /* 項目と内容を左右に配置 */
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    flex: 1;
    font-weight: bold;
    font-size: 18px;
    padding-left: 1em; /* 左側に余裕を持たせる */
    text-align: left; /* テキストを左揃え */
}

.info-value {
    flex: 2;
    font-size: 18px;
    text-align: left; /* 内容を左揃えに */
    padding-left: 1em;
}

.info-value ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* リスト項目は左揃えに */
}

.map-container {
    text-align: center;
}

.map-container p {
    text-align: center;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-section h2 {
    text-align: center; /* アクセスマップの文字を中央に配置 */
    font-size: 2.4em;
    padding-top: 1em;
    margin-bottom: 1em;
}

@media screen and (max-width: 428px) {

    .info-table{
        width: 90%;
    }

    .info-label {
        font-size: 13px;
    }

    .info-value {
        font-size: 13px;
    }
    
    .map-container iframe {
        width: auto;
        height: 300px;
    }
}