/* Store Info Section Styles */
#store-info {
    background-color: #FFFCDB;
    padding: 60px 0;
    text-align: center;
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
}

#store-item5 {
    padding: 20px;
    text-align: left;
    width: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 0;
}

.store-text {
    display: flex;
    flex-direction: column;
}

#store-item5 p {
    font-size: 18px;
    line-height: 1.4; /* 行間を調整 */
}

.store-text-container {
    font-size: 23px;
    font-weight: bold;
    text-align: left;
    margin-top: -15px;
    color: #000;
}

.map-container {
    width: 100%;
    height: 480px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* access.css のレスポンシブ対応 */

/* iPhoneサイズのスタイル */
@media (max-width: 480px) {

   
    #store-info {
        display: flex;
        flex-direction: column;
        background-color: #FFFCDB;
        padding: 20px;
        width: 100%; /* 横幅を100%に設定 */
        box-sizing: border-box; /* パディングを含む幅計算 */


    } .store-text-container h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 60px;
    }

    .english-title {
        display: block;
        margin-bottom: 5px; /* 上下の間隔を調整 */
    }

    .japanese-title {
        font-size: 25px;
        display: block;
    }

    .store-grid {
        display: flex;
        flex-direction: column; /* 縦並びに変更 */
        gap: 20px;
        width: 100%; /* 横幅を100%に設定 */
        box-sizing: border-box; /* パディングを含む幅計算 */
        align-items: center; /* 子要素を中央揃え */
    }

    #store-item5 {
        display: flex;
        flex-direction: column; /* 縦並びに変更 */
        width: 100%; /* 横幅を100%に設定 */
        box-sizing: border-box; /* パディングを含む幅計算 */
    }

    .map-container {
        width: 100%;
        height: 0;
        padding-bottom: 75%; /* アスペクト比を維持 */
        position: relative;
        margin-top: 20px; /* 上に余白を追加 */
        box-sizing: border-box; /* パディングを含む幅計算 */
    }

    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .store-text {
        margin-bottom: 20px;
        text-align: center;
        width: 100%; /* 横幅を100%に設定 */
        box-sizing: border-box; /* パディングを含む幅計算 */
    }

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

    .store-text h3 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .store-text p {
        margin-bottom: 10px;
    }
}
