/* TSA LOCK 説明書全体のコンテナ */
.tsa-container {
    width: 800px;
    font-size: 1.4rem;
    background-color: #f1f1f1;
    line-height: 2.3rem;
    padding: 45px 40px;
    margin: 60px auto 110px;
    box-sizing: border-box;
    /* パディングを含めた幅に固定 */
}

/* メインタイトル */
.tsa-main-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
}

/* セクションの見出し（日本語、英語、中国語） */
.tsa-section-title {
    font-size: 1.6rem;
    font-weight: 900;
}

/* 英語・中国語見出し用の少し小さめのサイズ（元の1.5remを適用） */
.tsa-section-title-sub {
    font-size: 1.5rem;
    font-weight: 900;
}

/* 画像コンテナ */
.tsa-image-wrapper {
    width: 500px;
    margin: 0 auto 20px;
}

.tsa-image-wrapper img {
    max-width: 100%;
    height: auto;
}

/* 太字の強調（番号や「ご注意」など） */
.tsa-bold {
    font-weight: 900;
}

/* 区切り線 */
.tsa-divider {
    border: 0;
    border-top: 1px solid #ccc;
    /* hr */
    width: 100%;
    margin: 60px auto;
}

/* 90%幅の区切り線 */
.tsa-divider-narrow {
    width: 90%;
}






/*
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

$$ ギャレリア各EC共通 ピックアップ Media Queries for smartphone

////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (max-width: 736px) {


    /* TSA LOCK 説明書全体のコンテナ */
    .tsa-container {
        width: 100vw;
        font-size: 1.4rem;
        background-color: #f1f1f1;
        line-height: 2.3rem;
        padding: 10vw 3vw 15vw;
        margin: 5vw auto 12vw;
        box-sizing: border-box;
        /* パディングを含めた幅に固定 */
    }

    /* メインタイトル */
    .tsa-main-title {
        font-size: 1.8rem;
        font-weight: 900;
        margin-bottom: 20px;
    }

    /* セクションの見出し（日本語、英語、中国語） */
    .tsa-section-title {
        font-size: 1.6rem;
        font-weight: 900;
    }

    /* 英語・中国語見出し用の少し小さめのサイズ（元の1.5remを適用） */
    .tsa-section-title-sub {
        font-size: 1.5rem;
        font-weight: 900;
    }

    /* 画像コンテナ */
    .tsa-image-wrapper {
        width: 100%;
        margin: 0 auto 20px;
    }

    .tsa-image-wrapper img {
        max-width: 100%;
        height: auto;
    }

    /* 太字の強調（番号や「ご注意」など） */
    .tsa-bold {
        font-weight: 900;
    }

    /* 区切り線 */
    .tsa-divider {
        border: 0;
        border-top: 1px solid #ccc;
        /* hr */
        width: 100%;
        margin: 60px auto;
    }

    /* 90%幅の区切り線 */
    .tsa-divider-narrow {
        width: 100%;
    }

}