@charset "UTF-8";

/*2*/
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) , print { /*PC&TB*/
}

/* contentsWidth */
@media screen and (max-width:767px) { /*SP*/
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
}
@media screen and (min-width:1120px) , print { /*PC*/
}

/************************************************************/
/*   ヘッダー   */
/************************************************************/
.HD_kv_set{
    width: 100%;
    height: 100vh;
    background-image: url(/img/kv01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:767px) { /*SP*/
    .HD_logo{
        width: 25%;
        max-width: 120px;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    .HD_logo{
        width: 120px;
    }
}

.HD_logo_anim{
    opacity: 0;
    animation: logoAnim 1.0s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s 1 normal;animation-fill-mode: forwards;
}
@keyframes logoAnim {
      0% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

/************************************************************/
/*   フッター   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    #footer{
        background-color: #3C3026;
        padding: 60px 0;
    }
    .FT_logo{
        width: 40%;
        max-width: 200px;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    #footer{
        background-color: #3C3026;
        /* padding: 90px 0; */
        padding: 8.04vw 0;
    }
    .FT_logo{
        /* width: 200px; */
        width: 17.86vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    #footer{
        background-color: #3C3026;
        padding: 90px 0;
    }
    .FT_logo{
        width: 200px;
    }
}

/************************************************************/
/*   ページトップボタン   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    #pagetop{
        position: fixed;
        z-index: 100;
        bottom: 20px;
        right: 15px;
        opacity: 0.7;
    }
    #pagetop span{
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        border: 1px solid #000;
        background-color: #fff;
        display: grid;
        justify-items: center;
        gap: 5px;
        font-size: var(--font10);
    }
    #pagetop span::before{
        content: '';
        width: 10px;
        height: 10px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        transform: translate(0, 15px) rotate(-45deg);
    }
    #pagetop:hover{
        opacity: 1;
    }
}
@media screen and (min-width:768px) , print { /*PC&TB*/
    #pagetop{
        position: fixed;
        z-index: 100;
        bottom: 40px;
        right: 30px;
        opacity: 0.7;
    }
    #pagetop span{
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        border: 1px solid #000;
        background-color: #fff;
        display: grid;
        justify-items: center;
        gap: 5px;
        font-size: 10px;
    }
    #pagetop span::before{
        content: '';
        width: 10px;
        height: 10px;
        border-top: 1px solid #000;
        border-right: 1px solid #000;
        transform: translate(0, 15px) rotate(-45deg);
    }
    #pagetop:hover{
        opacity: 1;
    }
}


/************************************************************/
/*   共通   */
/************************************************************/
/* 余白 */
@media screen and (max-width:767px) { /*SP*/
    .section_padding{
        padding: 60px 0;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .section_padding{
        /* padding: 100px 0 120px; */
        padding: 8.93vw 0 10.71vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .section_padding{
        padding: 100px 0 120px;
    }
}

/* 背景色 */
.bgColor-type01{
    background-color: #FAF9F3;
}
.bgColor-le_un{
    background-color: #F3F2EB;
}
.bgColor-asanohakkouda{
    background-color: #EDF2E3;
}

/* セクションタイトル */
@media screen and (max-width:767px) { /*SP*/
    .section_title_set{
        width: 100%;
        display: grid;
        justify-items: center;
        padding: 0 0 40px;
    }
    .section_title_en{
        margin: 0 0 10px;
        font-size: var(--font20);
        font-weight: 500;
        letter-spacing: 0.1rem;
        position: relative;
        z-index: 1;
    }
    .section_title_en::before{
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100px;
        height: 1px;
        background-color: #DBDAD5;
        transform: rotate(-30deg);
    }
    .section_title_ja{
        font-size: var(--font12);
        font-weight: 200;
        letter-spacing: 0.1rem;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .section_title_set{
        width: 100%;
        display: grid;
        justify-items: center;
        /* padding: 0 0 60px; */
        padding: 0 0 5.36vw;
    }
    .section_title_en{
        /* margin: 0 0 10px; */
        margin: 0 0 0.89vw;
        font-size: var(--font23);
        font-weight: 500;
        letter-spacing: 0.1rem;
        position: relative;
        z-index: 1;
    }
    .section_title_en::before{
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        /* width: 120px; */
        width: 10.71vw;
        /* height: 1px; */
        height: 0.09vw;
        background-color: #DBDAD5;
        transform: rotate(-30deg);
    }
    .section_title_ja{
        font-size: var(--font14);
        font-weight: 200;
        letter-spacing: 0.1rem;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .section_title_set{
        width: 100%;
        display: grid;
        justify-items: center;
        padding: 0 0 60px;
    }
    .section_title_en{
        margin: 0 0 10px;
        font-size: var(--font23);
        font-weight: 500;
        letter-spacing: 0.1rem;
        position: relative;
        z-index: 1;
    }
    .section_title_en::before{
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 120px;
        height: 1px;
        background-color: #DBDAD5;
        transform: rotate(-30deg);
    }
    .section_title_ja{
        font-size: var(--font14);
        font-weight: 200;
        letter-spacing: 0.1rem;
    }
}

/************************************************************/
/*   わたしたちについて   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .about_title{
        text-align: center;
        margin: 0 0 40px;
        font-size: var(--font24);
        font-weight: 600;
    }
    .about_set{
        width: 100%;
        display: grid;
        justify-items: center;
        gap: 30px;
    }
    .about_box{
        width: 100%;
        display: grid;
        gap: 20px;
    }
    .about_sign_set{
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 10px;
        font-size: var(--font18);
    }
    .about_sign_img{
        width: 40%;
        max-width: 184px;
    }
    .about_img{
        width: 70%;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .about_title{
        text-align: center;
        /* margin: 0 0 90px; */
        margin: 0 0 8.04vw;
        font-size: var(--font30);
        font-weight: 600;
    }
    .about_set{
        /* width: 940px; */
        width: 83.93vw;
        display: grid;
        /* grid-template-columns: 1fr 300px; */
        grid-template-columns: 1fr 26.79vw;
        /* gap: 80px; */
        gap: 7.14vw;
    }
    .about_box{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-between;
        /* gap: 10px; */
        gap: 0.89vw;
    }
    .about_sign_set{
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: flex-end;
        /* gap: 20px; */
        gap: 1.79vw;
        font-size: var(--font18);
    }
    .about_sign_img{
        /* width: 184px; */
        width: 16.43vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .about_title{
        text-align: center;
        margin: 0 0 90px;
        font-size: var(--font30);
        font-weight: 600;
    }
    .about_set{
        width: 940px;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 80px;
    }
    .about_box{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: space-between;
        gap: 10px;
    }
    .about_sign_set{
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 20px;
        font-size: var(--font18);
    }
    .about_sign_img{
        width: 184px;
    }
}

/************************************************************/
/*   Le un;（ル・アン）   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .le_un_logo{
        width: 40%;
        max-width: 228px;
    }
    .le_un_title{
        text-align: center;
        margin: 0 0 20px;
        font-size: var(--font24);
        font-weight: 600;
    }
    .le_un_text_box{
        text-align: center;
    }
    .le_un_kv{
        width: 100%;
        padding: 40px 0;
    }
    .le_un_img_set{
        width: 100%;
        padding: 40px 0 0;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap:10px;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .le_un_logo{
        /* width: 228px; */
        width: 20.36vw;
    }
    .le_un_title{
        text-align: center;
        /* margin: 0 0 20px; */
        margin: 0 0 1.79vw;
        font-size: var(--font30);
        font-weight: 600;
    }
    .le_un_text_box{
        text-align: center;
    }
    .le_un_kv{
        width: 100%;
        /* padding: 90px 0; */
        padding: 8.04vw 0;
    }
    .le_un_img_set{
        width: 100%;
        /* padding: 90px 0 0; */
        padding: 8.04vw 0 0;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        /* gap: 20px; */
        gap: 1.79vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .le_un_logo{
        width: 228px;
    }
    .le_un_title{
        text-align: center;
        margin: 0 0 20px;
        font-size: var(--font30);
        font-weight: 600;
    }
    .le_un_text_box{
        text-align: center;
    }
    .le_un_kv{
        width: 100%;
        padding: 90px 0;
    }
    .le_un_img_set{
        width: 100%;
        padding: 90px 0 0;
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 20px;
    }
}

/************************************************************/
/*   朝の八甲田   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .asanohakkouda_logo{
        width: 45%;
        max-width: 288px;
    }
    .asanohakkouda_title{
        text-align: center;
        margin: 0 0 20px;
        font-size: var(--font24);
        font-weight: 600;
    }
    .asanohakkouda_text_box{
        text-align: center;
    }
    .asanohakkouda_kv{
        width: 100%;
        padding: 40px 0;
    }
    .asanohakkouda_img_set{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .asanohakkouda_logo{
        /* width: 288px; */
        width: 25.71vw;
    }
    .asanohakkouda_title{
        text-align: center;
        /* margin: 0 0 20px; */
        margin: 0 0 1.79vw;
        font-size: var(--font30);
        font-weight: 600;
    }
    .asanohakkouda_text_box{
        text-align: center;
    }
    .asanohakkouda_kv{
        width: 100%;
        /* padding: 90px 0; */
        padding: 8.04vw 0;
    }
    .asanohakkouda_img_set{
        width: 100%;
        display: grid;
        /* grid-template-columns: repeat(4,240px); */
        grid-template-columns: repeat(4,21.43vw);
        /* gap: 10px; */
        gap: 0.89vw;
        justify-content: space-between;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .asanohakkouda_logo{
        width: 288px;
    }
    .asanohakkouda_title{
        text-align: center;
        margin: 0 0 20px;
        font-size: var(--font30);
        font-weight: 600;
    }
    .asanohakkouda_text_box{
        text-align: center;
    }
    .asanohakkouda_kv{
        width: 100%;
        padding: 90px 0;
    }
    .asanohakkouda_img_set{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4,240px);
        gap: 10px;
        justify-content: space-between;
    }
}

/* EC */
.asanohakkouda_ec_link{
    width: 100%;
}

/************************************************************/
/*   店舗情報   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .shop_set{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1,85%);
        justify-content: center;
        gap: 60px;
    }
    .shop_img{
        width: 100%;
        margin: 0 0 20px;
    }
    .shop_box{
        width: 100%;
        text-align: center;
    }
    .shop_name{
        font-size: var(--font20);
        font-weight: 600;
        border-bottom: 1px solid #000;
        padding: 0 0 10px;
        margin: 0 0 15px;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .shop_set{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,minmax(auto,480px));
        /* gap: 60px; */
        gap: 5.36vw;
        justify-content: space-between;
    }
    .shop_img{
        width: 100%;
        /* margin: 0 0 30px; */
        margin: 0 0 2.68vw;
    }
    .shop_box{
        width: 100%;
        text-align: center;
    }
    .shop_name{
        font-size: var(--font25);
        font-weight: 600;
        /* border-bottom: 1px solid #000; */
        border-bottom: 0.09vw solid #000;
        /* padding: 0 0 10px; */
        padding: 0 0 0.89vw;
        /* margin: 0 0 20px; */
        margin: 0 0 1.79vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .shop_set{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2,minmax(auto,480px));
        gap: 60px;
        justify-content: space-between;
    }
    .shop_img{
        width: 100%;
        margin: 0 0 30px;
    }
    .shop_box{
        width: 100%;
        text-align: center;
    }
    .shop_name{
        font-size: var(--font25);
        font-weight: 600;
        border-bottom: 1px solid #000;
        padding: 0 0 10px;
        margin: 0 0 20px;
    }
}

/************************************************************/
/*   会社情報   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .company_set{
        width: 100%;
        border-top: 1px solid #000;
        display: grid;
        grid-template-columns: 120px 1fr;
    }
    .company_set dt{
        background-color: #FAF9F3;
        border-bottom: 1px solid #000;
        padding: 15px 20px;
        text-align:justify;
        text-align-last:justify;
        font-size: var(--font15);
    }
    .company_set dd{
        border-bottom: 1px solid #000;
        padding: 15px 20px;
        font-size: var(--font15);
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .company_set{
        /* width: 580px; */
        width: 51.79vw;
        /* border-top: 1px solid #000; */
        border-top: 0.09vw solid #000;
        display: grid;
        /* grid-template-columns: 180px 1fr; */
        grid-template-columns: 16.07vw 1fr;
    }
    .company_set dt{
        background-color: #FAF9F3;
        /* border-bottom: 1px solid #000; */
        border-bottom: 0.09vw solid #000;
        /* padding: 15px 50px; */
        padding: 1.34vw 4.46vw;
        text-align:justify;
        text-align-last:justify;
        font-size: var(--font16);
    }
    .company_set dd{
        /* border-bottom: 1px solid #000; */
        border-bottom: 0.09vw solid #000;
        /* padding: 15px 50px; */
        padding: 1.34vw 4.46vw;
        font-size: var(--font16);
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .company_set{
        width: 580px;
        border-top: 1px solid #000;
        display: grid;
        grid-template-columns: 180px 1fr;
    }
    .company_set dt{
        background-color: #FAF9F3;
        border-bottom: 1px solid #000;
        padding: 15px 50px;
        text-align:justify;
        text-align-last:justify;
        font-size: var(--font16);
    }
    .company_set dd{
        border-bottom: 1px solid #000;
        padding: 15px 50px;
        font-size: var(--font16);
    }
}

/************************************************************/
/*   お問い合わせ   */
/************************************************************/
@media screen and (max-width:767px) { /*SP*/
    .contact_text{
        text-align: center;
        margin: 0 0 40px;
    }
    .contact_form_wrap{
        width: 100%;
        background-color: #fff;
        padding: 30px 15px;
        display: grid;
        justify-items: center;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .contact_text{
        text-align: center;
        /* margin: 0 0 60px; */
        margin: 0 0 5.36vw;
    }
    .contact_form_wrap{
        width: 100%;
        background-color: #fff;
        /* padding: 100px 60px; */
        padding: 8.93vw 5.36vw;
        display: grid;
        justify-items: center;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .contact_text{
        text-align: center;
        margin: 0 0 60px;
    }
    .contact_form_wrap{
        width: 100%;
        background-color: #fff;
        padding: 100px 60px;
        display: grid;
        justify-items: center;
    }
}

/* フォーム枠組み */
#form{
    max-width: 780px;
}
@media screen and (max-width:767px) { /*SP*/
    .form_set{
        width: 100%;
        display: grid;
        gap: 10px;
    }
    .form_box_L{
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        font-size: var(--font15);
    }
    .form_box_R{
        padding: 0 0 20px;
        font-size: var(--font15);
    }
    .form_required{
        width: 40px;
        height: 26px;
        display: grid;
        justify-items: center;
        align-items: center;
        background-color: #DE5858;
        border-radius: 4px;
        font-size: var(--font14);
        color: #fff;
        line-height: 1;
    }
    .form_name_wrap{
    }
    .form_name_set{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .form_name_box{
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 0 10px;
        justify-items: flex-end;
        align-items: center;
    }
    .form_name_box .form_error{
        grid-column: 1 / 3;
        justify-self: start;
        padding: 0 0 0 45px;
    }
    .form_radio_set{
        display: grid;
        gap: 10px;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .form_set{
        width: 100%;
        display: grid;
        /* grid-template-columns: 230px 1fr; */
        grid-template-columns: 20.54vw 1fr;
        /* gap: 30px 40px; */
        gap: 2.68vw 3.57vw;
    }
    .form_box_L{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        font-size: var(--font16);
    }
    .form_box_R{
        /* padding: 0 0 0 50px; */
        padding: 0 0 0 4.46vw;
        font-size: var(--font16);
    }
    .form_required{
        /* width: 50px; */
        width: 4.46vw;
        /* height: 26px; */
        height: 2.32vw;
        display: grid;
        justify-items: center;
        align-items: center;
        background-color: #DE5858;
        /* border-radius: 4px; */
        border-radius: 0.36vw;
        font-size: var(--font14);
        color: #fff;
        line-height: 1;
    }
    .form_name_wrap{
        padding: 0;
    }
    .form_name_set{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        /* gap: 30px; */
        gap: 2.68vw;
    }
    .form_name_box{
        display: grid;
        /* grid-template-columns: 40px 1fr; */
        grid-template-columns: 3.57vw 1fr;
        /* gap: 0 10px; */
        gap: 0 0.89vw;
        justify-items: flex-end;
        align-items: center;
    }
    .form_name_box .form_error{
        grid-column: 1 / 3;
        justify-self: start;
        /* padding: 0 0 0 50px; */
        padding: 0 0 0 4.46vw;
    }
    .form_radio_set{
        display: grid;
        grid-template-columns: 60% 1fr;
        /* gap: 10px 30px; */
        gap: 0.89vw 2.68vw;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .form_set{
        width: 100%;
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 30px 40px;
    }
    .form_box_L{
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        font-size: var(--font16);
    }
    .form_box_R{
        padding: 0 0 0 50px;
        font-size: var(--font16);
    }
    .form_required{
        width: 50px;
        height: 26px;
        display: grid;
        justify-items: center;
        align-items: center;
        background-color: #DE5858;
        border-radius: 4px;
        font-size: var(--font14);
        color: #fff;
        line-height: 1;
    }
    .form_name_wrap{
        padding: 0;
    }
    .form_name_set{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }
    .form_name_box{
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 0 10px;
        justify-items: flex-end;
        align-items: center;
    }
    .form_name_box .form_error{
        grid-column: 1 / 3;
        justify-self: start;
        padding: 0 0 0 50px;
    }
    .form_radio_set{
        display: grid;
        grid-template-columns: 60% 1fr;
        gap: 10px 30px;
    }
}

/* フォーム設定 */
#form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
#form textarea{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px;
    background-color: #F4F4F3;
    border: none;
    border-radius: 3px;
    font-size: var(--font18);
    color: #000;
}
#form input[type="radio"] + label{
    font-size: var(--font16);
    padding-left: 25px;
    position: relative;
    cursor: pointer;
}
#form input[type="radio"] + label::before,
#form input[type="radio"] + label::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
#form input[type="radio"] + label::before{
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    left: 0;
}
#form input[type="radio"] + label::after{
    background-color: #000;
    border-radius: 50%;
    opacity: 0;
    width: 8px;
    height: 8px;
    left: 4px
}
#form input[type="radio"]:checked + label::after {
    opacity: 1;
}

/* input css none */
.visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}

/* エラーテキスト */
.form_error{
    font-weight: bold;
    color: #DE5858;
}

/* プライバシーポリシー */
@media screen and (max-width:767px) { /*SP*/
    .form_privacy_box{
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        width: 100%;
        height: 150px;
        padding: 15px;
        background-color: #F4F4F3;
        border-radius: 3px;
        display: grid;
        gap: 20px;
    }
    .form_privacy_key{
        font-size: var(--font15);
    }
    .form_privacy_tx{
        font-size: var(--font15);
    }
    .form_privacy_check{
        width: 100%;
        text-align: right;
        padding: 10px 0 0;
    }
    .form_privacy_check label{
        padding-left: 5px;
        font-size: var(--font15);
    }
    .form_privacy_check input:hover,
    .form_privacy_check label:hover{
        cursor: pointer;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .form_privacy_box{
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        width: 100%;
        /* height: 180px; */
        height: 16.07vw;
        /* padding: 15px; */
        padding: 1.34vw;
        background-color: #F4F4F3;
        /* border-radius: 3px; */
        border-radius: 0.27vw;
        display: grid;
        /* gap: 20px; */
        gap: 1.79vw;
    }
    .form_privacy_key{
        font-size: var(--font16);
    }
    .form_privacy_tx{
        font-size: var(--font16);
    }
    .form_privacy_check{
        width: 100%;
        text-align: right;
        /* padding: 10px 0 0; */
        padding: 0.89vw 0 0;
    }
    .form_privacy_check label{
        /* padding-left: 5px; */
        padding-left: 0.45vw;
        font-size: var(--font16);
    }
    .form_privacy_check input:hover,
    .form_privacy_check label:hover{
        cursor: pointer;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .form_privacy_box{
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        width: 100%;
        height: 180px;
        padding: 15px;
        background-color: #F4F4F3;
        border-radius: 3px;
        display: grid;
        gap: 20px;
    }
    .form_privacy_key{
        font-size: var(--font16);
    }
    .form_privacy_tx{
        font-size: var(--font16);
    }
    .form_privacy_check{
        width: 100%;
        text-align: right;
        padding: 10px 0 0;
    }
    .form_privacy_check label{
        padding-left: 5px;
        font-size: var(--font16);
    }
    .form_privacy_check input:hover,
    .form_privacy_check label:hover{
        cursor: pointer;
    }
}

/* 送信ボタン */
@media screen and (max-width:767px) { /*SP*/
    .form_submit_set{
        width: 100%;
        padding: 10px 0 0;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    .form_submit_box{
        width: 100%;
    }
    .form_submit_box input{
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 3px;
        font-size: var(--font18);
        font-weight: bold;
        color: #fff;
        transition: 0.3s ease;
    }
    .form_submit_box input:hover{
        cursor: pointer;
        opacity: 0.8;
    }
}
@media screen and (min-width:768px) and ( max-width:1119px) { /*TB*/
    .form_submit_set{
        width: 100%;
        /* padding: 60px 0 0; */
        padding: 5.36vw 0 0;
        display: flex;
        justify-content: center;
        /* gap: 30px; */
        gap: 2.68vw;
    }
    .form_submit_box{
        width: 100%;
    }
    .form_submit_box input{
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        /* padding: 15px; */
        padding: 1.34vw;
        border: none;
        /* border-radius: 3px; */
        border-radius: 0.27vw;
        font-size: var(--font18);
        font-weight: bold;
        color: #fff;
        transition: 0.3s ease;
    }
    .form_submit_box input:hover{
        cursor: pointer;
        opacity: 0.8;
    }
}
@media screen and (min-width:1120px) , print { /*PC*/
    .form_submit_set{
        width: 100%;
        padding: 60px 0 0;
        display: flex;
        justify-content: center;
        gap: 30px;
    }
    .form_submit_box{
        width: 100%;
    }
    .form_submit_box input{
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 3px;
        font-size: var(--font18);
        font-weight: bold;
        color: #fff;
        transition: 0.3s ease;
    }
    .form_submit_box input:hover{
        cursor: pointer;
        opacity: 0.8;
    }
}
.form_submit_box._submitBack input{background-color: #808080;}
.form_submit_box._submitNext input{background-color: #000;}

/* 同意するにチェックを入れる前 */
.form_submit_box input[type="submit"]:disabled{
    background-color: #ccc;
    pointer-events: none;
}
