/* コンテンツ幅の基本設定 */
.container,
.section,
.img-t-m,
.form__wrap,
.story-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* テーブル幅の設定 */
.deal table,
.price-table {
    width: 100%;
    max-width: 1200px;
    /* テーブル幅を広げる */
    margin: 0 auto;
    box-sizing: border-box;
}

/* 狭いコンテンツ幅 */
.w-s {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1440px) {

    .container,
    .section,
    .img-t-m,
    .form__wrap,
    .story-content {
        padding: 0 30px;
    }
}

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

    .container,
    .section,
    .img-t-m,
    .form__wrap,
    .story-content {
        padding: 0 20px;
    }
}

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

    .container,
    .section,
    .img-t-m,
    .form__wrap,
    .story-content {
        padding: 0 15px;
    }

    .w-s {
        padding: 0 15px;
    }
}