@charset "UTF-8";
/*!
 * Theme Name:  mitsuwa
 * Description:  オリジナルテーマ、みつわのRequestページのCSSになります。
 * ress.css • v2.0.1
 * MIT License
 * github.com/filipelinhares/ress
 */
/* パンくず requestページのみ*/
.breadcrumbs {
    top: 0;
    color: #2d2d2d;
    z-index: 1;
}

.breadcrumbs a {
    color: #2d2d2d;
}
/* 共通セクション */
.section-container {
    width: 100%;
    min-width: 960px;
    max-width: 960px;
    margin: auto;
}

/*MV部分--------------------------------------------------------  */
.request-top {
    width: 100%;
    min-width: 960px;
    padding: 40px 0 0 0;
    margin: 0 0 20px 0;
}

.request-top__title {
    text-align: center;
    font-size: 32px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.request-top__title::after {
    content: "";
    width: 80px;
    height: 2px;
    background-color: #b03671;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.request-top__bg {
    width: 100%;
    min-width: 960px;
    background-color: #fff4f4;
    border-top: 1px #ff7674 solid;
    border-bottom: 1px #ff7674 solid;
}

.request-top__img {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 0 auto;
}

.request-top__comment {
    width: 100%;
    max-width: 960px;
    font-size: 14px;
    letter-spacing: -0.034em;
    margin: 5px auto 0 auto;
}

/*仮会員登録とは--------------------------------------------------------  */

/* 共通タイトルここから */
.section__title {
    font-size: 32px;
    border-bottom: solid 1px #ff7675;
}

.section__title--accent {
    font-weight: bold;
    color: #ff7675;
}

.section__title.sp {
    display: none;
}
.section__title.pc {
    display: block;
}

.sp__inline {
    display: none;
}
.pc__inline {
    display: block;
}
/*お申し込みの流れ*/
.request-flow .section__title {
    border: none;
    margin-bottom: 13px;
}

/* 共通タイトルここまで */

.request-member__box {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 50px 0;
}

.request-member__box--left {
    width: 566px;
    border-right: 1px #dddddd dashed;
    padding-right: 20px;
}

.request-member__box--head {
    line-height: 1.5;
    margin-bottom: 16px;
}
.request-member__box--txt {
    font-size: 14px;
    line-height: 1.5;
    background-image: url("../img/request/member-icon@2x.png");
    background-repeat: no-repeat;
    background-position: left 175px center;
    background-size: auto 33px;
}

.request-member__box--accent {
    font-weight: bold;
}

.request-member__box--right {
    flex: 1;
    display: block;
    margin-left: 25px;
}

/* お電話一本で今すぐに登録-------------------------------------------------------- */
.request-tel {
    margin-bottom: 30px;
}

.request-tel__link {
    display: block;
    width: 100%;
    max-width: 615px;
    margin-top: 24px;
}

.request-plan--comment {
    color: red;
    font-size: 16px;
    margin-top: 5px;
}

/*みつわ会員様なら、もしもの時に安心--------------------------------------------------------  */

.request-plan__img {
    margin-top: 47px;
}
.request-plan__img:first-of-type {
    margin-top: 40px;
}

/*お申し込みの流れ--------------------------------------------------------  */
.request-flow {
    margin-bottom: 70px;
}

.request-flow input[type="radio"] {
    display: none;
}

.request-flow__tab {
    display: flex;
    justify-content: space-between;
}

.request-flow__tab label {
    display: block;
    /* width: calc(98.78% / 4); ４列の場合*/
    width: calc(99.39% / 3);
    text-align: center;
    font-size: 20px;
    background-color: #eaeaea;
    padding: 9px 0;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    -moz-border-radius: 8px 8px 0 0;
    -ms-border-radius: 8px 8px 0 0;
    -o-border-radius: 8px 8px 0 0;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}

.tab_panel {
    display: none;
}

#tab1:checked ~ .request-flow__tab .tab1_label,
#tab2:checked ~ .request-flow__tab .tab2_label,
#tab3:checked ~ .request-flow__tab .tab3_label,
#tab4:checked ~ .request-flow__tab .tab4_label {
    background: #ff7675;
    color: #fff;
}
#tab1:checked ~ .request-flow__box #panel1,
#tab2:checked ~ .request-flow__box #panel2,
#tab3:checked ~ .request-flow__box #panel3,
#tab4:checked ~ .request-flow__box #panel4 {
    display: block;
    animation: tabAnim ease 0.6s forwards;
    -ms-animation: tabAnim ease 0.6s forwards;
}

@keyframes tabAnim {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        opacity: 1;
    }
}

.request-flow__box {
    border: 1px solid #ff7675;
    overflow: hidden;
    padding: 45px 40px 35px 40px;
}

/* WEB登録フォームから */
.request-flow__web--discription {
    font-size: 18px;
    line-height: 1.5;
    width: 100%;
    padding: 7px 14px 7px 14px;
    margin-bottom: 37px;
    background-color: #fff4f4;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border: 2px solid #ff7675;
}

.request-flow__web--discription.tel {
    padding: 7px 5px 7px 5px;
}

.request-flow__web--list:not(:last-of-type) {
    margin-bottom: 37px;
}

.request-flow__web--head {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-left: 21px;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #dddddd;
}

.request-flow__web--head::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0c8";
    font-size: 15px;
    position: absolute;
    top: 35%;
    left: 0px;
    transform: translateY(-50%);
}
.request-flow__web--head.icon::after {
    vertical-align: top;
    display: inline-block;
    content: "粗品 + 金券プレゼント";
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    background-color: #ff7675;
    padding: 5px 11px 2px 11px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    margin: 4px 0 0 25px;
}

.request-flow__web--txt {
    font-size: 16px;
    line-height: 1.5;
}

.request-flow__web--txt01 {
    font-size: 12px;
}

.request-flow__web--link {
    text-decoration: underline;
    color: #ff7675;
}
.request-flow__web--attention {
    margin-top: 24px;
    font-size: 16px;
}

/* 銀行口座 */
.request-flow__kouza {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px;
    background-color: #fff4f4;
    margin-top: 10px;
    padding: 11px 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.request-flow__kouza span {
    font-weight: bold;
}
.request-flow__kouza--bank {
    width: 25%;
}
.request-flow__kouza--branch {
    width: 21%;
}
.request-flow__kouza--type {
    width: 17%;
}
.request-flow__kouza--name {
    width: 30%;
}
.request-flow__kouza--txt {
    margin-left: 8px;
}

.request-flow__send {
    border-top: 1px dashed #dddddd;
    padding-top: 25px;
    display: flex;
    text-align: start;
}
.request-flow__send--title {
    width: 9%;
}
.request-flow__send--address {
    flex: 1;
}
/* ダウンロード部分 */
.dl-list {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dl-list__txt {
    font-size: 18px;
    line-height: 1.722;
    width: 450px;
}
.request-flow__head--dl {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #5364d0;
    width: 100%;
    line-height: 66px;
    height: 66px;
    max-width: 360px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    box-shadow: 0px 4px 0px 0px #2234a2;
    position: relative;
}

.request-flow__head--dl::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    content: "\f019";
    margin-right: 17px;
}
.request-flow__head--dl:hover {
    color: #fff;
    top: -3px;
    box-shadow: 0px 7px 0px 0px #2234a2;
}
.request-from__head--dl:active {
    color: #fff;
    top: 4px;
    box-shadow: none;
}

/*仮登録フォーム--------------------------------------------------------  */
.request-from {
    margin-bottom: 60px;
}

.request-from__head {
    margin: 20px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.request-from__head--txt {
    font-size: 18px;
    width: 100%;
    margin-bottom: 20px;
}

.request-from__head--tel {
    display: block;
    width: 100%;
    max-width: 607px;
}

.request-from__head--dl {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #5364d0;
    width: 100%;
    line-height: 66px;
    height: 66px;
    max-width: 317px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    box-shadow: 0px 4px 0px 0px #2234a2;
    position: relative;
}

.request-from__head--dl::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    content: "\f019";
    margin-right: 17px;
}
.request-from__head--dl:hover {
    color: #fff;
    top: -3px;
    box-shadow: 0px 7px 0px 0px #2234a2;
}
.request-from__head--dl:active {
    color: #fff;
    top: 4px;
    box-shadow: none;
}

.request-from__table {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin-bottom: 40px;
}
.request-from__table dt {
    width: 21%;
    background-color: #f7f7f7;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
}
.request-from__table dt:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
}

.request-from__table .form__sex {
    justify-content: center;
    padding-left: 2px;
}

.request-from__table .form__sex span {
    font-weight: normal;
}
.request-from__table .form__sex .error {
    font-weight: bold;
}
.request-from__table .form__sex .wpcf7-list-item{
    margin: 0;
}
.request-from__table .form__sex .wpcf7-list-item:nth-of-type(n+2){
    margin-left: 10px;
}

.request-from__table .form__sex .wpcf7-list-item label{
    padding-left: 0;
}

.request-from__table label {
    display: block;
    font-size: 16px;
    line-height: 70px;
    padding-left: 24px;
}

.request-from__table dd {
    width: 79%;
    border-right: 1px solid #cccccc;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* エラー位置 */
.request-from__table dd .error {
    font-size: 12px;
    position: absolute;
    bottom: 6px;
    left: -23%;
}

.request-from__table dd:not(:last-of-type) {
    border-bottom: 1px solid #cccccc;
}

.request-from__table .input_border {
    display: block;
    width: 100%;
    padding: 7px;
    border: 1px solid #cccccc;
}

.request-from__table .input_border:focus {
    outline: 1px solid #ff7675;
}
/* 送信ボタン */
.request-from__main--send {
    display: block;
    width: 100%;
    max-width: 786px;
    margin: 0 auto 24px auto;
    padding: 8px 0 5px 0;
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    background-color: #ff7675;
    box-shadow: 0px 4px 0px 0px #d35a59;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: relative;
}
.request-from__main--send:hover {
    top: -3px;
    box-shadow: 0px 7px 0px 0px #d35a59;
}
.request-from__main--send:active {
    top: 4px;
    box-shadow: none;
}
/* プライバシーエラーログ */
.request-from .addmit .error {
    font-size: 12px;
    font-weight: bold;
}
/* プライバシー */
.form_privacy {
    margin: 20px 0 40px;
    padding: 20px;
    width: 960px;
    height: 180px;
    text-align: left;
    border: 1px solid #9a9a9a;
    overflow: auto;
}
.form_privacy dt {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
}
.form_privacy dd {
    margin: 0 0 30px;
    padding: 0;
}
.form_privacy dd:last-child {
    margin: 0;
}
.form_privacy dd ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.form_privacy dd ul.nest {
    margin: 0 0 10px;
    padding: 0 0 0 10px;
    list-style: none;
}
.wpcf7-form-control-wrap{
    width: 90%;
}
.request-from__table dt .required{
    font-weight: 600;
    font-size: 12px;
    margin-left: 4px;
}

@media screen and (max-width: 640px) {
    .wpcf7{
        margin-top: 30px;
    }
    .wpcf7-form-control-wrap{
        width: 100%;
    }
    /* パンくず requestページのみ*/
    .breadcrumbs {
        display: none;
    }
    /* 共通セクション */
    .section-container {
        width: 100%;
        min-width: initial;
        max-width: initial;
        padding: 0 2.667vw;
    }

    /*MV部分--------------------------------------------------------  */
    .request-top {
        padding: 0;
        margin-bottom: 0;
        min-width: initial;
    }

    .request-top__title {
        text-align: center;
        font-size: 8.533vw;
        margin-bottom: 8vw;
        position: relative;
    }

    .request-top__title::after {
        content: "";
        width: 21.333vw;
        height: 2px;
    }

    .request-top__bg {
        min-width: initial;
        border-top: 1px #ff7674 solid;
        border-bottom: 1px #ff7674 solid;
        background-color: #fff4f4;
    }

    .request-top__img {
        max-width: initial;
        margin: 0 auto 0 auto;
    }

    .request-top__comment {
        max-width: initial;
        margin: 5px auto 0 auto;
        font-size: 2.933vw;
        letter-spacing: -0.044em;
    }

    /*仮会員登録とは--------------------------------------------------------  */
    /* 共通タイトルここから */

    .section__title {
        font-size: 7.467vw;
        padding-bottom: 2.667vw;
        text-align: center;
        border: none;
        position: relative;
    }
    .section__title::after {
        content: "";
        width: 21.333vw;
        height: 1px;
        background-color: #ff7675;
        position: absolute;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
    }
    /* お電話のみ */
    .request-tel .section__title::after {
        display: none;
    }
    .request-tel .section__title {
        padding: 0;
        font-weight: bold;
    }

    /* *みつわ会員様なら、もしもの時に安心のみ */
    .request-plan .section__title {
        line-height: 1.286;
        margin-top: 6.384vw;
    }
    .section__title--accent {
        font-weight: bold;
        color: #ff7675;
    }
    .section__title.sp {
        display: block;
        margin-top: 6.384vw;
    }
    .section__title.pc {
        display: none;
    }
    .sp__inline {
        display: block;
    }
    .pc__inline {
        display: none;
    }
    /* 共通タイトルここまで */

    .request-member__box {
        flex-direction: column;
        margin: 3.467vw 0 0 0;
    }

    .request-member__box--left {
        width: 100%;
        padding: 0;
        margin-bottom: 2.667vw;
        border-right: none;
    }

    .request-member__box--head {
        font-size: 4.267vw;
    }

    .request-member__box--marker {
        font-weight: bold;
        background: linear-gradient(to bottom, transparent 50%, #fffb8b 50%, #fffb8b 80%, transparent 80%);
    }
    .request-member__box--txt {
        display: none;
    }

    .request-member__box--right {
        margin-left: 0;
    }
    /* お電話一本で今すぐに登録-------------------------------------------------------- */
    .request-tel {
        margin-bottom: 5.333vw;
    }

    .request-tel__link {
        max-width: initial;
        margin-top: 1.333vw;
    }

    .request-tel__link--img {
        border-radius: 7px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -ms-border-radius: 7px;
        -o-border-radius: 7px;
        box-shadow: 0px 4px 0px 0px #d35a59;
    }
    /*みつわ会員様なら、もしもの時に安心--------------------------------------------------------  */
    .request-plan__img {
        margin-top: 6.4vw;
    }
    .request-plan__img:first-of-type {
        margin-top: 5.867vw;
    }

    .request-plan--comment {
        font-size: 4.267vw;
    }
    /*お申し込みの流れ--------------------------------------------------------  */
    .request-flow {
        margin-bottom: 7.467vw;
    }
    .request-flow.section-container {
        padding: 0;
    }
    .request-flow .section__title {
        display: none;
    }
    .request-flow__tab label {
        font-size: 15px;
        line-height: 1.25;
        width: calc(97.8% / 3);
        padding: 4px 0 2px 0;
        position: relative;
    }
    .tab4_label span,
    .tab3_label span {
        white-space: nowrap;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .request-flow__box {
        border: 1px solid #ff7675;
        overflow: hidden;
        padding: 5.333vw 2.667vw;
    }

    .request-flow__web--discription,
    .request-flow__web--discription.tel {
        font-size: 4.267vw;
        width: 100%;
        padding: 1.867vw 3.733vw 1.867vw 3.733vw;
        margin-bottom: 3.2vw;
    }
    .request-flow__web--list:not(:last-of-type) {
        margin-bottom: 5.867vw;
    }

    .request-flow__web--head {
        font-size: 4.8vw;
        padding: 0;
        margin-bottom: 2.133vw;
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .request-flow__web--head::before {
        display: none;
    }
    .request-flow__web--head.icon::after {
        margin: 0 0 0.8vw 0;
        padding: 1.6vw 1.867vw 1.067vw 1.867vw;
        font-size: 3.733vw;
        color: #fff;
        background-color: #ff7675;
    }
    .request-flow__web--txt {
        font-size: 4.267vw;
        text-align: start;
    }

    .request-flow__web--attention {
        margin-top: 3.2vw;
        padding: 0 2.667vw;
    }
    .request-flow__web--attention .request-flow__web--txt {
        position: relative;
        padding-left: 4.267vw;
    }
    .request-flow__web--attention .request-flow__web--txt:not(:last-of-type) {
        margin-bottom: 2.667vw;
    }
    .request-flow__web--circle {
        position: absolute;
        top: 0;
        left: 0;
    }

    .request-flow__kouza {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 2.667vw;
        padding: 2.933vw 2.667vw;
    }
    .request-flow__kouza--txt,
    .request-flow__kouza--name,
    .request-flow__kouza--type,
    .request-flow__kouza--bank,
    .request-flow__kouza--number,
    .request-flow__kouza--price,
    .request-flow__kouza--branch {
        width: 100%;
        font-size: 4.267vw;
        text-align: start;
    }
    .request-flow__kouza--price {
        margin-bottom: 2.133vw;
    }
    .request-flow__kouza--txt {
        font-size: 3.733vw;
        margin-left: 0;
        padding: 0 0 0 5.867vw;
        position: relative;
    }
    .request-flow__kouza--txt span {
        position: absolute;
        top: 0;
        left: 2.4vw;
    }
    .dl-list {
        flex-direction: column;
    }

    .dl-list__txt {
        font-size: 4vw;
        width: 100%;
        padding: 0 2.667vw;
        margin-bottom: 5.867vw;
    }

    .request-flow__send {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .request-flow__send--title,
    .request-flow__send--address {
        width: 100%;
        text-align: start;
    }
    .request-flow__send--address {
        padding-left: 2.667vw;
        margin-bottom: 5.867vw;
    }
    /*仮登録フォーム--------------------------------------------------------  */
    .request-from {
        margin-bottom: 60px;
    }

    .request-from__head {
        margin: 5.333vw 0 6.4vw 0;
        flex-direction: column;
        justify-content: center;
    }

    .request-from__head--txt {
        font-size: 4.267vw;
        margin-bottom: 2.667vw;
    }

    .request-from__head--tel {
        width: 100%;
        max-width: initial;
        /* margin-bottom: 24px; */
    }

    .request-from__head--dl {
        font-size: 5.067vw;
        max-width: initial;
        line-height: 17.067vw;
        height: 17.067vw;
    }

    .request-from__head--dl::before {
        margin-right: 4.533vw;
    }

    .request-from__table {
        flex-direction: column;
        border: none;
        margin-bottom: 6.4vw;
    }
    .request-from__table dt .required{
        font-weight: 600;
        font-size: 12px;
        margin-left: 4px;
    }
    .request-from__table dt {
        width: 100%;
        background-color: transparent;
        border: none;
    }
    .request-from__table dt:not(:last-of-type) {
        border: none;
    }
    .wpcf7-list-item.first{
        margin-left: 0;
    }
    .request-from__table label {
        font-size: 4.267vw;
        line-height: 1.5;
        padding-left: 0;
    }


    .request-from__table dd {
        width: 100%;
        border: none;
    }
    /* エラー位置 */
    .request-from__table dd .error {
        font-size: 3.2vw;
        top: -5.6vw;
        right: 0;
        bottom: auto;
        left: auto;
    }

    .request-from__table dd:not(:last-of-type) {
        border: none;
        margin-bottom: 4.267vw;
    }

    .request-from__table .input_border {
        width: 100%;
        padding: 1.333vw;
    }

    /* 送信ボタン */
    .request-from__main--send {
        margin: 0 auto 25px auto;
        padding: 3.2vw 0 2.4vw 0;
        font-size: 6.4vw;
    }
    .addmit {
        position: relative;
        font-size: 4.8vw;
    }

    .addmit span {
        text-align: center;
        font-weight: bold;
    }
    .addmit.active span {
        font-weight: normal;
    }

    .addmit #must-1 {
        transform: scale(1.5);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
    }

    .addmit .mwform-checkbox-field label {
        margin: 0 25px;
    }

    .addmit-discription {
        font-size: 3.467vw;
        color: red;
        text-align: center;
        margin-top: 4vw;
    }

    /* プライバシーエラーログ */
    .request-from .addmit .error {
        font-size: 3.2vw;
        width: 24vw;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 44px;
    }

    /* プライバシー */
    .form_privacy {
        margin: 8vw 0 8vw;
        padding: 2.667vw;
        width: 100%;
        height: 48vw;
        text-align: left;
        border: 1px solid #9a9a9a;
        overflow: auto;
    }
    .form_privacy dt {
        margin: 0;
        padding: 0;
        font-size: 4.8vw;
        font-weight: 700;
    }
    .form_privacy dd {
        margin: 0 0 8vw;
        padding: 0;
    }
    .form_privacy dd:last-child {
        margin: 0;
    }
    .form_privacy dd ul {
        margin: 5.333vw 0 0;
        padding: 0;
        list-style: none;
    }
    .form_privacy dd ul.nest {
        margin: 0 0 2.667vw;
        padding: 0 0 0 2.667vw;
        list-style: none;
    }
}
