@charset "utf-8";

/*
* フォーム基本設定
* --------------------------------------------------
*/
form {
    width: 100%;
}

li {
    list-style: none;
}

::placeholder {
    color: #bbbbbb;
}

.v2-form-title {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 60px;
    container-type: inline-size;
}

.v2-form-title h2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    font-size: 3cqi;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 3cqi;
    color: #333333;
    justify-content: center;
    word-break: auto-phrase;
    position: relative;
}

.v2-form-title h2:before {
    position: absolute;
    content: '';
    bottom: -15px;
    height: 1px;
    background: #333333;
    display: inline-block;
    width: 10cqi;
}

.v2-form_progress {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px;
    gap: 15px;
    container-type: inline-size;
}

.v2-form_progress div {
    display: flex;
    flex-wrap: wrap;
    color: #000000;
    width: calc((100% - 30px) / 3);
    padding: 2cqi 0px;
    font-size: 1.4cqi;
    letter-spacing: 0.2cqi;
    line-height: 1;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
}

.v2-form_progress div.on {
    background: #900000;
    color: #ffffff;
}

.v2-form-table {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 15px;
    container-type: inline-size;
}

.v2-form-table .th {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    font-size: 1.2cqi;
    line-height: 1.5;
    letter-spacing: 0.1cqi;
    font-weight: 700;
    padding: 3cqi 10.7cqi 3cqi 0px;
    justify-content: start;
    align-items: center;
    border-top: 1px solid #cccccc;
    position: relative;
}

.v2-form-table .th div {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    font-size: 1.2cqi;
    line-height: 1.5;
    letter-spacing: 0.1cqi;
    font-weight: 700;
}

.v2-form-table .th span {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    font-size: 1.1cqi;
    line-height: 1;
    letter-spacing: 0.1cqi;
    font-weight: 400;
    padding: 0.8cqi;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 3cqi;
    border-radius: 0.5cqi;
}

.v2-form-table .th span.required {
    color: #900000;
    background: #f6e5e3;
}

.v2-form-table .th span.optional {
    color: #478cb8;
    background: #dae8f1;
}

.v2-form-table .th span.question {
    color: #666666;
    background: #cccccc;
}

.v2-form-table .td {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    font-size: 1.2cqi;
    line-height: 1.5;
    letter-spacing: 0.2cqi;
    padding: 3cqi 0px;
    align-items: center;
    border-top: 1px solid #cccccc;
}

.v2-form-table>div:nth-of-type(1),
.v2-form-table>div:nth-of-type(2) {
    border: none !important;
}

.v2-form-table div.w20,
.v2-form-table div.w25,
.v2-form-table div.w40,
.v2-form-table div.w50,
.v2-form-table div.w100 {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2cqi;
    line-height: 1;
    padding: 1cqi 0px 1cqi 1cqi;
    align-items: center;
    position: relative;
}

.v2-form-table div.w20 {
    width: calc(100% * 0.2);
}

.v2-form-table div.w25 {
    width: calc(100% * 0.2);
}

.v2-form-table div.w40 {
    width: calc(100% * 0.4);
}

.v2-form-table div.w50 {
    width: calc(100% * 0.5);
}

.v2-form-table div.w100,
.v2-form-enquete .td div.w100 {
    width: 100%;
}

.v2-form-table_text {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1.5cqi;
    font-weight: 600;
    line-height: 1.5;
    padding: 0px 1cqi;
    letter-spacing: 0.1cqi;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 30px;
}

.v2-form-table .td p {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1cqi;
    line-height: 1.5;
    padding: 0px 1cqi;
    letter-spacing: 0.1cqi;
    justify-content: left;
}

.v2-form-table a {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    font-size: 1.2cqi;
    line-height: 1;
    letter-spacing: 0.1cqi;
    color: #00396b;
}

.v2-form-table label {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    height: auto;
    font-size: 1.2cqi;
    line-height: 1;
    letter-spacing: 0.1cqi;
    align-items: center;
    padding: 1cqi 0px 0px 0px;
}

.v2-form-table .td.confirm {
    font-size: 1.5cqi;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .v2-form-title {
        padding: 30px 0;
    }

    .v2-form-title h2 {
        font-size: 5cqi;
    }

    .v2-form_progress {
        padding: 2cqi 15px;
        font-size: 3cqi;
        gap: 5px;
    }

    .v2-form_progress div {
        width: calc((100% - 10px) / 3);
        padding: 5cqi 0px;
        font-size: 3cqi;
        letter-spacing: 0.2cqi;
        line-height: 1;
    }

    .v2-form-table a {
        font-size: 3.5cqi;
        line-height: 1;
        letter-spacing: 0.1cqi;
    }

    .v2-form-table label {
        font-size: 3.5cqi;
        line-height: 1;
        letter-spacing: 0.1cqi;
        margin: 1cqi 3cqi 1cqi 0px;
    }

    .v2-form-table .th,
    .v2-form-table .td {
        width: 100%;
        font-size: 4cqi;
        line-height: 1.5;
        letter-spacing: 0.1cqi;
        padding: 4cqi 12cqi 4cqi 0px;
    }

    .v2-form-table .th div {
        font-size: 4cqi;
        line-height: 1.5;
        letter-spacing: 0.1cqi;
    }

    .v2-form-table .td {
        border: none;
        padding: 0px 0px 4cqi 0px;
    }

    .v2-form-table .th span {
        width: auto;
        font-size: 3cqi;
        line-height: 1;
        letter-spacing: 0.1cqi;
        font-weight: 700;
        padding: 2cqi;
        right: 0px;
        border-radius: 1cqi;
    }

    .v2-form-table_text {
        margin-top: 65px;
        margin-bottom: 15px;
        font-size: 5cqi;
        font-weight: 400;
        line-height: 1.2;
    }

    .v2-form-table div.w20,
    .v2-form-table div.w40,
    .v2-form-table div.w50,
    .v2-form-table div.w100 {
        width: 100%;
        font-size: 3.5cqi;
        line-height: 1;
        padding: 1cqi;
    }

    .v2-form-table .td div.sw50 {
        width: 50%;
        font-size: 3.5cqi;
        line-height: 1;
        padding: 1cqi;
    }

    .v2-form-table .td p {
        font-size: 3cqi;
        padding: 0px 1cqi;
        line-height: 1.5;
    }

    .v2-form-table .td.confirm {
        font-size: 3cqi;
        line-height: 1.2;
    }
}

/*
* フォーム入力エリア設定
* --------------------------------------------------
*/
.v2-form-table input[type="text"],
.v2-form-table input[type="email"],
.v2-form-table input[type="tel"],
.v2-form-table input[type="number"],
.v2-form-table select,
.v2-form-table textarea {
    width: 100%;
    font-size: 1.4cqi;
    line-height: 1;
    letter-spacing: 0.2cqi;
    padding: 1cqi;
    border: 1px solid #cccccc;
    background: #ffffff;
}

#form input:required,
#form select:required,
#form textarea:required {
    background: #ffeeee;
}

.v2-form-table input[name="reserve_date"]:not(:placeholder-shown),
.v2-form-table input[name="reserve_time"]:not(:placeholder-shown),
.v2-form-table input[name="reserve_date2"]:not(:placeholder-shown),
.v2-form-table input[name="reserve_time2"]:not(:placeholder-shown),
.v2-form-table input[name="reserve_date3"]:not(:placeholder-shown),
.v2-form-table input[name="reserve_time3"]:not(:placeholder-shown),
.v2-form-table input[name="first_name"]:not(:placeholder-shown),
.v2-form-table input[name="last_name"]:not(:placeholder-shown),
.v2-form-table input[name="first_kana"]:not(:placeholder-shown),
.v2-form-table input[name="last_kana"]:not(:placeholder-shown),
.v2-form-table input[name="tel"]:not(:placeholder-shown),
.v2-form-table input[name="email"]:not(:placeholder-shown),
.v2-form-table input[name="enq_12[area]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_12[size]"]:not(:placeholder-shown),
.v2-form-table select[name="enq_12[yosan]"]:valid,
.v2-form-table input[name="enq_21"]:not(:placeholder-shown),
.v2-form-table select[name="enq_30[year]"]:valid,
.v2-form-table select[name="enq_30[month]"]:valid,
.v2-form-table input[name="enq_111[land]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_111[floor]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_111[oldAge]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_111[cost]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_112[month]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_112[bonus]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_112[debt]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_113[duration]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_113[rent]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_113[parking]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_113[housing]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_113[cost]"]:not(:placeholder-shown),
.v2-form-table select[name="enq_150[floor]"]:valid,
.v2-form-table select[name="enq_150[rand]"]:valid,
.v2-form-table input[name="enq_150[madori]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_170[total]"]:not(:placeholder-shown),
.v2-form-table input[name="enq_180[amount]"]:not(:placeholder-shown),
.v2-form-table select[name="enq_190"]:valid,
.v2-form-table input[name="enq_200"]:not(:placeholder-shown),
.v2-form-table select[name="enq_220"]:valid {
    background: #ffffff !important;
}

.v2-form-table input[type="checkbox"],
.v2-form-table input[type="radio"] {
    width: 1.5cqi;
    height: 1.5cqi;
    margin-right: 0.5cqi;
}

.v2-form-table input:disabled,
.v2-form-table select:disabled {
    color: #dddddd !important;
    border: 1px solid #dddddd !important;
    background: #f5f5f5 !important;
}

.v2-form_ipt20 {
    width: 20% !important;
}

.v2-form_ipt75 {
    width: 75% !important;
}

@media (max-width: 767px) {

    .v2-form-table input[type="text"],
    .v2-form-table input[type="email"],
    .v2-form-table input[type="tel"],
    .v2-form-table input[type="number"],
    .v2-form-table select,
    .v2-form-table textarea {
        font-size: 3.5cqi;
        line-height: 1;
        letter-spacing: 0.2cqi;
        padding: 2cqi;
    }

    .v2-form-table input[type="checkbox"],
    .v2-form-table input[type="radio"] {
        width: 5cqi;
        height: 5cqi;
        margin-right: 1cqi;
    }

    .v2-form_ipt25 {
        width: 50% !important;
    }
}

/*
* フォーム個別設定
* --------------------------------------------------
*/

/* 場所 */
.v2-form-place select[name="area"] {
    margin-bottom: 1cqi;
}

/* 希望日 */
.picker {
    left: 15%;
}

.picker__holder {
    container-type: inline-size;
    right: 0px;
}

.reserve_box_1,
.reserve_box_2,
.reserve_box_3 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.reserve_box_1 .title,
.reserve_box_2 .title,
.reserve_box_3 .title {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2cqi;
    letter-spacing: 0px;
    line-height: 1;
    padding: 1cqi 0px 1cqi 1cqi;
    justify-content: center;
    align-items: center;
    width: calc(100% * 0.2);
}

.reserve_box_1 .date,
.reserve_box_2 .date,
.reserve_box_3 .date {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8cqi;
    line-height: 1;
    padding: 1cqi 0px 1cqi 1cqi;
    align-items: center;
    width: calc(100% * 0.4);
    position: relative;
}

.reserve_box_1 .time,
.reserve_box_2 .time,
.reserve_box_3 .time {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.8cqi;
    line-height: 1;
    padding: 1cqi 0px 1cqi 1cqi;
    align-items: center;
    width: calc(100% * 0.4);
    position: relative;
}

/* 住所 */
.v2-form_address select {
    margin: 1cqi 0px;
}

.v2-form_address input[name="zip_code"] {
    width: 40% !important;
    height: 4.5cqi;
    margin-left: 1cqi;
}

.v2-form_address select[name="region"] {
    width: 40% !important;
    height: 4.5cqi;
    margin-left: 1cqi;
}

/* きっかけ */
.v2-form_howknow label:nth-child(1) {
    width: 100%;
}

.v2-form_howknow label:nth-child(19) {
    width: 100%;
}

.v2-form_howknow input[type="text"],
.v2-form_howknow select {
    margin-top: 1cqi;
}

@media (max-width: 767px) {

    /* 場所 */
    .v2-form-place select[name="area"] {
        margin-bottom: 2cqi;
    }

    /* 日時 */
    .picker {
        left: 0px;
    }

    .picker__holder {
        right: auto;
    }

    .reserve_box_1 .title,
    .reserve_box_2 .title,
    .reserve_box_3 .title {
        width: 100%;
        font-size: 3.5cqi;
        line-height: 1;
        padding: 1cqi;
        justify-content: start;
    }

    .reserve_box_1 .date,
    .reserve_box_2 .date,
    .reserve_box_3 .date,
    .reserve_box_1 .time,
    .reserve_box_2 .time,
    .reserve_box_3 .time {
        width: 50%;
        font-size: 3.5cqi;
        line-height: 1;
        padding: 1cqi;
    }

    .v2-form_address input[name="zip_code"] {
        height: 9cqi;
    }

    .v2-form_address select[name="region"] {
        height: 9cqi;
    }
}

/*
* カタログ
* --------------------------------------------------
*/
.catalog-title {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #900000;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.v2-form-catalog {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding: 15px;
    gap: 15px;
    background: #efefef;
}

.v2-form-catalog li {
    display: flex;
    flex-wrap: wrap;
    width: calc((100% - 30px) / 3);
    height: auto;
    position: relative;
    background: #ffffff;
    padding: 3cqi;
    gap: 15px;
    flex-direction: column;
}

.v2-form-catalog h4 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 2cqi;
    line-height: 1.5;
    letter-spacing: 0px;
    height: auto;
    word-break: auto-phrase;
}

.v2-form-catalog p {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1cqi;
    line-height: 1.5;
    letter-spacing: 0px;
    height: auto;
    word-break: auto-phrase;
    flex-grow: 1;
}

.v2-form-catalog .img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.v2-form-catalog .img img {
    width: 100%;
    height: auto;
}

.v2-form-catalog input[type="checkbox"] {
    display: inline-block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
}

.v2-form-catalog .button {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 5.2cqi;
    font-size: 1.2cqi;
    margin-bottom: 0px;
    line-height: 1;
    letter-spacing: 0px;
    padding: 2cqi;
    background: #333333;
    color: #ffffff;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.v2-form-catalog input[type="checkbox"]:checked~.button {
    font-size: 0;
    color: #ffffff;
    background: #900002;
}

.v2-form-catalog input[type="checkbox"]:checked~.button::before {
    content: '選択中';
    font-size: 1.2cqi;
    color: #ffffff;
}

@media (max-width: 767px) {}

/*
* アンケート
* --------------------------------------------------
*/


.enqueteForm {
    cursor: pointer;
    display: flex;
    width: calc(100% - 30px);
    margin: 0px auto;
    height: 60px;
    background: #900000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    animation: fuwafuwa 2s infinite ease-in-out alternate;
    justify-content: center;
    align-items: center;
    position: relative;
}

.enqueteForm.active:after {
    content: "回答をやめる";
    display: flex;
    width: 100%;
    height: 45px;
    justify-content: center;
    align-items: center;
    background: #777777;
    font-size: 16px;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
}

#enquete_checkbox {
    display: none;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -5px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.v2-form-table .sub-tit {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2cqi;
    line-height: 1;
    letter-spacing: 0.1cqi;
    background: #333333;
    color: #ffffff;
    width: 100%;
    padding: 1.5cqi;
    margin-top: 1.5cqi;
}

.v2-form-table .sub-enquete {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 1.5cqi;
    background: #f3f3f3;
}

.v2-form-table .sub-q {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1.2cqi;
    line-height: 1;
    letter-spacing: 0.1cqi;
    align-items: center;
    padding: 0px 0px 1.5cqi 0px;
}

.v2-form-exterior,
.v2-form-interior {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    gap: 2cqi;
}

.v2-form-exterior li,
.v2-form-interior li {
    display: flex;
    flex-wrap: wrap;
    width: calc((100% - 4cqi) / 3);
    aspect-ratio: 157/102;
    height: auto;
    position: relative;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.v2-form-exterior p,
.v2-form-interior p {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-wrap: wrap;
    width: auto !important;
    height: auto;
    font-size: 1.5cqi;
    line-height: 1;
    background: rgba(144, 0, 2, 0.6);
    color: #ffffff;
    padding: 0.5cqi;
}

.v2-form-exterior li.order1 .mark:after,
.v2-form-interior li.order1 .mark:after {
    content: "1";
}

.v2-form-exterior li.order2 .mark:after,
.v2-form-interior li.order2 .mark:after {
    content: "2";
}

.v2-form-exterior li.order3 .mark:after,
.v2-form-interior li.order3 .mark:after {
    content: "3";
}

.v2-form-exterior span:after,
.v2-form-interior span:after {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    font-size: 2cqi;
    line-height: 1;
    letter-spacing: 0px;
    background-color: #900000;
    color: #ffffff;
    top: calc(50% - 2cqi);
    left: calc(50% - 2cqi);
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 1000px;
    width: 4cqi;
    height: 4cqi;
}

.v2-form-exterior input[type="checkbox"],
.v2-form-interior input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    cursor: pointer;
}

.enquete21 input[type="number"] {
    width: 30%;
}

.enquete30 label,
.enquete111 label,
.enquete112 label,
.enquete113 label,
.enquete150 label,
.enquete170 label,
.enquete180 label,
.enquete200 label,
.enquete210 label,
.enquete230 label {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
}

.enquete160 label {
    display: flex;
    flex-wrap: nowrap;
    width: 50%;
    height: auto;
}

.enquete150 input[type="number"],
.enquete170 input[type="number"],
.enquete180 input[type="number"],
.enquete200 input[type="number"],
.enquete210 input[type="number"],
.enquete230 input[type="number"] {
    width: 30%;
}

.enquete160 input[type="number"] {
    width: 25%;
}

.enquete12 input[type="number"],
.enquete12 input[type="text"],
.enquete12 select,
.enquete111 input[type="number"],
.enquete112 input[type="number"],
.enquete113 input[type="number"],
.enquete30 select,
.enquete150 select,
.enquete190 select,
.enquete220 select {
    width: 50%;
}

@media (max-width: 767px) {
    .v2-form-table .sub-tit {
        font-size: 3.5cqi;
        line-height: 1.5;
        letter-spacing: 0.1cqi;
    }

    .v2-form-table .sub-q {
        font-size: 3.5cqi;
        line-height: 1.5;
        letter-spacing: 0.1cqi;
    }

    .v2-form-exterior li,
    .v2-form-interior li {
        width: calc((100% - 2cqi) / 2);
        aspect-ratio: 157/102;
    }

    .v2-form-exterior p,
    .v2-form-interior p {
        padding: 1cqi !important;
    }

    .v2-form-exterior span:after,
    .v2-form-interior span:after {
        font-size: 4cqi;
        top: calc(50% - 4cqi);
        left: calc(50% - 4cqi);
        width: 8cqi;
        height: 8cqi;
    }

    .enquete160 label {
        width: 100%;
    }

    .enquete160 input[type="number"],
    .enquete170 input[type="number"],
    .enquete180 input[type="number"],
    .enquete200 input[type="number"],
    .enquete210 input[type="number"],
    .enquete230 input[type="number"] {
        width: 50%;
    }

}

/*
* 送信
* --------------------------------------------------
*/
.v2-form-submit {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 30px 15px 15px 15px;
    gap: 45px;
    justify-content: center;
    container-type: inline-size;
}

.v2-form-submit p {
    display: inline;
    width: 100%;
    height: auto;
    padding: 15px;
    background: #efefef;
    font-size: 1.2cqi;
    line-height: 1.5;
    letter-spacing: 0.1cqi;
    word-break: break-word;
    border: 1px solid #cccccc;
}

.v2-form-submit p span {
    display: inline;
    font-size: 1.2cqi;
    line-height: 1.5;
    color: #ff0000;
    letter-spacing: 0.1cqi;
    font-weight: 500;
}

.btnForm {
    background: #900002;
    border-radius: 10px;
    color: #ffffff;
    display: flex;
    font-size: 1.4cqi;
    height: auto;
    letter-spacing: 0.5cqi;
    border: none;
    justify-content: center;
    padding: 2cqi 0px;
    width: 40%;
}

.cmnBtn {
    background: #333333;
}

@media (max-width: 767px) {
    .v2-form-submit p {
        font-size: 3cqi;
    }

    .v2-form-submit p span {
        font-size: 3cqi;
    }

    .btnForm {
        font-size: 3.5cqi;
        padding: 4cqi 0px;
        width: calc((100% - 15px) / 2);
    }
}

/*
* エラー
* --------------------------------------------------
*/
.v2-form-table label.error {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 0px 0px 1cqi;
    font-size: 1.2cqi;
    letter-spacing: 0px;
    line-height: 1;
    color: #ff0000;
    position: absolute;
    left: 0px;
    top: -0.5cqi;
}

.v2-form-exterior label.error,
.v2-form-interior label.error {
    top: -2cqi !important;
    left: -1.5cqi !important;
    bottom: unset !important;
}

.v2-form-table #agree-error {
    position: static;
}

@media (max-width: 767px) {
    .v2-form-table label.error {
        font-size: 3.5cqi;
        bottom: auto;
        top: -4cqi;
    }

    .v2-form-exterior label.error,
    .v2-form-interior label.error {
        top: -5cqi !important;
        left: -1.5cqi !important;
        bottom: unset !important;
    }
}

.banner-amazon {
    width: 100%;
    max-width: 100vw;
}