@charset "utf-8";

/*-----------------------------------------------
    secForm
-----------------------------------------------*/
.secForm{
    position: relative;
    margin-top: 8rem;
    padding-top: 16rem;
}
.secForm:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 8rem;
    background-color: var(--greenColor);
}
@media only screen and (max-width:1215px){
    .secForm{
        margin-top: 6rem;
        padding-top: 5rem;
    }
    .secForm:after{
        height: 3rem;
    }
}


/*-----------------------------------------------
    secFormTit
-----------------------------------------------*/
.secFormTit{
    text-align: center;
}
.secFormTit .txt{
    font-size: var(--pcFS16);
    line-height: var(--pcLHS16_32);
    margin-top: 4.5rem;
}
.secForm .boxMainTit .titJp{
    letter-spacing: var(--pcLS40_50);
}
@media only screen and (max-width:1215px){
    .secFormTit .txt{
        font-size: var(--spFS13);
        line-height: var(--spLHS13_22);
        margin-top: 1.3rem;
    }
    .secForm .boxMainTit .titJp{
        letter-spacing: var(--spLS_0);
        line-height: var(--spLHS20_28);
    }
}


/* boxFormStep */
.secFormTit .boxFormStep{
    position: relative;
    counter-reset: number 0;
    margin: 5rem auto 0;
    display: flex;
    justify-content: center;
    gap: 10rem;
    z-index: 1;
}
.secFormTit .itemStep{
    position: relative;
    padding-top: 5.5rem;
    width: 4rem;
    font-size: var(--pcFS14);
    letter-spacing: var(--pcLS14_50);
}
.secFormTit .itemStep::before{
    position: absolute;
    counter-increment: number 1;
    content: counter(number);
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    background-color: var(--brownColor);
    color: var(--greenColor);
    z-index: 2;
}
.secFormTit .itemStep:not(:last-child)::after{
    position: absolute;
    content: '';
    margin: auto;
    top: 2rem;
    left: 5rem;
    width: 8rem;
    height: 2px;
    background: var(--brownColor);
}
.secFormTit .itemStep.active::after{
    background: linear-gradient(to right, var(--greenColor) 50%, var(--brownColor) 50%);
}
.secFormTit .itemStep.active::before{
    background-color: var(--greenColor);
    color: var(--whiteColor);
}
@media only screen and (max-width:1215px){
    .secFormTit .boxFormStep{
        margin-top: 3rem;
        gap: 6rem;
    }
    .secFormTit .itemStep{
        padding-top: 4.5rem;
        width: 3.5rem;
        font-size: var(--spFS13);
        letter-spacing: var(--spLS_0);
    }
    .secFormTit .itemStep::before{
        width: 3.5rem;
        height: 3.5rem;
    }
    .secFormTit .itemStep:not(:last-child)::after{
        top: 1.6rem;
        left: 4.6rem;
        width: 4rem;
    }
}

/*-----------------------------------------------
    secCmnForm
-----------------------------------------------*/
.secCmnForm{
    margin-top: 6rem;
    padding: 6rem 0 var(--footerPc);
    background-color: var(--brownColor);
}
@media only screen and (max-width:1215px){
    .secCmnForm{
        margin-top: 3rem;
        padding: 0 0 var(--footerSp);
        background-color: var(--whiteColor);
        border-top: 1px solid var(--grayColor2);
    }
}


/*-----------------------------------------------
    secFormTop
-----------------------------------------------*/
.secFormTop{
    border-radius: 1rem;
    padding: 2.8rem 6rem 6rem;
    background-color: var(--whiteColor);
    box-shadow: var(--shadowColor);
}
.secFormQuestionnaire .secFormTop{
    padding-top: 1rem;
}
@media only screen and (max-width:1215px){
    .secFormTop{
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }
}

/*-----------------------------------------------
    must/opt
-----------------------------------------------*/
.secCmnForm .must,
.secCmnForm .opt{
    font-size: var(--pcFS11);
    background-color: color-mix(in srgb, var(--noticeColor) 10%, transparent);
    color: var(--noticeColor);
    border-radius: 0.3rem;
    padding: 6px 7px 4px;
    font-weight: bold;
}
.secCmnForm .opt{
    background-color: color-mix(in srgb, var(--blueColor) 10%, transparent);
    color: var(--blueColor);
}
@media only screen and (max-width:1215px){
    .secCmnForm .must,
    .secCmnForm .opt{
        font-size: var(--spFS11);
        padding: 4px 5px 3px;
        border-radius: 0.3rem;
    }
}

/*-----------------------------------------------
    secFormWrap
-----------------------------------------------*/
.secFormWrap{
    font-size: 0;
}
.secFormWrap .secFormTable{
    width: 100%;
}
.secForm tr{
    display: block;
    padding: 3rem 0 0;
    width: 100%;
}
.secForm tr:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.secForm th,
.secForm td{
    position: relative;
    display: block;
    width: 100%;
}
.secForm tr .boxTit{
    display: flex;
    justify-content: space-between;
    font-size: 0;
    padding-bottom: 1.5rem;
}
.secForm th .boxTit{
    border-bottom: 1px solid var(--grayColor2);
}
.secForm td .boxTit{
    margin: 3.5rem 0 0 1rem;
}
.co .secForm td .boxTit{
    margin: 1.7rem 0 0 1rem;
}
.secForm .boxTit .tit{
    font-size: var(--pcFS16);
    line-height: var(--pcLHS16_22);
    font-weight: bold;
}
.co .secForm td .boxTit .tit{
    font-weight: normal;
}
.secForm .boxTit .txt{
    font-size: var(--pcFS14);
    margin-left: 1rem;
}
@media only screen and (max-width:1215px){
    .secFormWrap{
        margin-top: 1rem;
    }
    .secForm tr{
        padding: 2.3rem 0 0;
        border: none;
    }
    .secForm tr .boxTit{
        align-items: flex-start;
        padding-bottom: 0.8rem;
    }
    .secForm td .boxTit{
        margin-top: 1.3rem;
    }
    .co .secForm td .boxTit{
        margin: 1.7rem 0 0 1rem;
    }
    .secForm .boxTit .tit{
        font-size: var(--spFS14);
        line-height: var(--spLHS14_18);
        width: calc(100% - 5rem);
    }
    .secForm .boxTit .txt{
        font-size: var(--spFS12);
        margin-left: 0.5rem;
    }
}



/* 入力ボックス */
.secFormWrap input[type="text"],
.secFormWrap input[type="tel"],
.secFormWrap input[type="email"],
.secFormWrap input[type="number"],
.secFormWrap input[type="password"],
.secFormWrap select,
.secFormWrap textarea {
    position: relative;
    height: 6.2rem;
    font-size: var(--pcFS16);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    background: var(--brownColor);
    color: inherit;
    font-family: inherit;
    border: none;
    outline: none;
}
.secFormWrap select {
    padding: 1rem 3rem;
}
.secFormWrap textarea {
    width: 100%;
    height: 18rem;
    line-height: var(--pcLHS16_22);
    padding: 3rem;
}
.secFormWrap select::placeholder,
.secFormWrap textarea::placeholder,
.secFormWrap input::placeholder {
    color: color-mix(in srgb, var(--textColor) 50%, transparent);
}
.secFormWrap select:focus::placeholder,
.secFormWrap textarea:focus::placeholder,
.secFormWrap input:focus::placeholder {
    color: transparent!important;
}
.boxItem,
.boxCheck,
.boxRadio,
.box_input,
.box_select{
    margin-top: 1.7rem;
}
.box_input + .box_select,
.box_select + .box_input{
    margin-top: 1rem;
}
.boxCheck + .box_input{
    margin-top: 0.6rem;
}
/* box_select */
.box_select{
    position: relative;
}
.box_select::before{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.1rem 0.6rem 0 0.6rem;
    border-color: var(--grayColor) transparent transparent transparent;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto;
    z-index: 1;
}
.box_select select {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}
@media only screen and (max-width:1215px){
    .secFormWrap input[type="text"],
    .secFormWrap input[type="tel"],
    .secFormWrap input[type="email"],
    .secFormWrap input[type="number"],
    .secFormWrap input[type="password"],
    .secFormWrap select,
    .secFormWrap textarea {
        height: 5rem;
        font-size: max(16px, var(--spFS16));
        padding: 1rem 1.4rem;
        border-radius: 0.4rem;
    }
    .secFormWrap select {
        padding: 1rem 1.4rem;
    }
    .secFormWrap textarea {
        height: 15.6rem;
        line-height: var(--spLHS16_24);
        padding: 1.5rem;
    }
    .secFormWrap select::placeholder,
    .secFormWrap textarea::placeholder,
    .secFormWrap input::placeholder {
        font-size: max(16px, var(--spFS16));
    }
    .boxItem,
    .boxCheck,
    .boxRadio,
    .box_select,
    .box_input{
        margin-top: 1.3rem;
    }
    .box_input + .box_select,
    .boxCheck + .box_input{
        margin-top: 0.8rem;
    }
    .box_select::before{
        border-width: 0.6rem 0.4rem 0 0.4rem;
    }
    .box_row .txt,
    .box_col .txt,
    .txt_input .txt{
        font-size: var(--spFS16);
        line-height: var(--spLHS16_24);
    }
}


/* 調整 */
.secFormWrap .w100p{
    width: 100%;
}
.secFormWrap .w100{
    width: 10rem;
}
.secFormWrap .w200{
    width: 20rem;
}
.secFormWrap .w600{
    width: 60rem;
}
@media only screen and (max-width:1215px){
    .secFormWrap .ws70{
        width: 7rem;
    }
    .secFormWrap .ws90{
        width: 9rem;
    }
    .secFormWrap .w600,
    .secFormWrap .ws100p{
        width: 100%;
    }
}

/*-----------------------------------------------
    boxRadio/boxCheck
-----------------------------------------------*/
.secFormWrap .boxRadio,
.secFormWrap .boxCheck{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.7rem;
}
.secFormWrap .boxCheck.boxCol.isInline{
    flex-direction: row;
    gap: 0.8rem 3rem;
}
.secFormWrap .boxCheck.boxCol + .boxCol{
    margin-top: 1rem;
}
.secFormWrap .boxCheck.boxCol.isInline .itemCheck{
    width: auto !important;
}
.secFormWrap .labelRadio input[type="radio"],
.secFormWrap .txtRadio::before,
.secFormWrap input[type="checkbox"],
.secFormWrap .txtCheck::before{
    width: 2rem;
    height: 2rem;
}
.secFormWrap .labelRadio input[type="radio"],
.secFormWrap input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.secFormWrap .itemCheck,
.secFormWrap .itemRadio{
    text-align: left;
    font-size: 0;
}
.secFormWrap .labelRadio,
.secFormWrap .labelCheck{
    position: relative;
    width: 100%;
    display: inline-block;
    font-size: 0;
}
.secFormWrap .txtRadio,
.secFormWrap .txtCheck{
    width: 100%;
    display: inline-flex;
    align-items: center;
    font-size: 0;
}
.secFormWrap .txtRadio::before,
.secFormWrap .txtCheck::before{
    content: "";
    border-radius: 0.3rem;
    background: var(--whiteColor);
    margin-right: 0.6rem;
    border: 1px solid var(--grayColor2);
}
.secFormWrap .txtCheck::before{
    background: center center / 0.9rem no-repeat, var(--whiteColor);
}
.secFormWrap .txtRadio::before{
    border-radius: 100%;
}
.secFormWrap input[type="checkbox"]:checked + .txtCheck::before{
    background-image: url(../img/common/iconCheckbox.gif);
}
.secFormWrap input[type="radio"]:checked + .txtRadio::after{
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 100%;
    background: var(--textColor);
    position: absolute;
    top: -0.1rem;
    left: 0.6rem;
    bottom: 0;
    margin: auto;
}
.secFormWrap .boxCheck .txt{
    max-width: calc(100% - 5rem);
    white-space: nowrap;
}
.secFormWrap .boxRadio .txt,
.secFormWrap .boxCheck .txt{
    font-size: var(--pcFS14);
    line-height: var(--pcLHS14_20);
}
.secFormWrap .itemRadio_input,
.secFormWrap .itemCheck_input{
    display: flex;
    align-items: center;
}
@media only screen and (max-width:1215px){
    .secFormWrap .boxRadio,
    .secFormWrap .boxCheck{
        flex-direction: column;
        gap: 1rem;
        text-align: left;
        margin-bottom: 0.3rem;
    }
    .secFormWrap .boxCheck.boxCol.isInline{
        gap: 0.8rem 1.8rem;
    }
    .secFormWrap .boxCheck.boxCol + .boxCol{
        margin-top: 0.8rem;
    }
    .secFormWrap .labelRadio input[type="radio"],
    .secFormWrap .txtRadio::before,
    .secFormWrap input[type="checkbox"],
    .secFormWrap .txtCheck::before{
        width: 2rem;
        height: 2rem;
        margin-right: 1rem;
    }
    .secFormWrap .itemRadio,
    .secFormWrap .itemCheck{
        width: 100%!important;
    }
    .secFormWrap .txtCheck::before{
        margin-right: 0.6rem;
    }
    .secFormWrap input[type="checkbox"]:checked + .txtCheck::before{
        background-size: 1.4rem auto;
    }
    .secFormWrap .boxRadio .txt,
    .secFormWrap .boxCheck .txt{
        max-width: calc(100% - 2.6rem);
        font-size: var(--spFS13);
        line-height: var(--spLHS13_20);
    }
    .secFormWrap .boxSaveLogin .boxCheck .txt{
        font-size: var(--spFontSize12);
    }
    .secFormWrap input[type="radio"]:checked + .txtRadio::after{
        top: 0;
        left: 0.6rem;
        width: 0.8rem;
        height: 0.8rem;
        border: 0.8rem solid var(--ColorWhite);
    }
}

/*-----------------------------------------------
    boxPrivacy
-----------------------------------------------*/
.boxPrivacy{
    padding: 0 6rem;
    margin-top: 5.5rem;
}
/* チェックボックス */
.boxPrivacy .boxCheck{
    text-align: center;
    margin-top: 4rem;
}
.boxPrivacy .itemCheck{
    width: auto !important;
    margin: 0 auto;
}
.boxPrivacy input[type="checkbox"],
.boxPrivacy .txtCheck::before{
    width: 2.4rem;
    height: 2.4rem;
}
.boxPrivacy input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.boxPrivacy .labelCheck{
    position: relative;
    font-size: var(--pcFS14);
    display: inline-block;
}
.boxPrivacy .txtCheck{
    display: inline-flex;
    align-items: center;
}
.boxPrivacy .txtCheck::before{
    content: "";
    margin-right: 0.5rem;
    border: 1px solid var(--grayColor2);
    border-radius: 0.3rem;
    background: center center / 0.9rem no-repeat,var(--whiteColor);
}
.boxPrivacy input[type="checkbox"]:checked + .txtCheck::before{
    background-image: url(../img/common/iconCheckbox.gif);
}
.boxPrivacy .txtCheck a{
    color: var(--linkColor);
    text-decoration: underline;
}
@media only screen and (max-width:1215px){
    .boxPrivacy{
        border-top: 1px solid var(--grayColor2);
        margin-top: 2.5rem;
        padding: 2rem 0 0 0;
    }
    .boxPrivacy .boxTxt{
        height: 38rem;
        padding: 1.5rem 1rem;
    }
    .boxPrivacy .boxTxt .tit,
    .boxPrivacy .boxTxt .txt{
        font-size: var(--spFS12);
        line-height: var(--spLH12_18);
    }
    .boxPrivacy .boxTxt .txt{
        padding: 2.5rem 0;
    }
    /* チェックボックス */
    .boxPrivacy .boxCheck{
        margin-top: 2rem;
    }
    .boxPrivacy input[type="checkbox"],
    .boxPrivacy .txtCheck::before{
        width: 2.2rem;
        height: 2.2rem;
    }
    .boxPrivacy .labelCheck{
        font-size: var(--spFS14);
    }
}

/*-----------------------------------------------
	txtMemo
-----------------------------------------------*/
.txtMemo {
	font-size: var(--pcFS12);
	line-height: var(--pcLHS12_26);
    font-weight: bold;
}
.fRed {
    color: var(--noticeColor);
}
@media only screen and (max-width:1215px){
    .txtMemo {
        font-size: var(--spFS11);
        line-height: var(--spLHS11_20);
        font-weight: normal;
    }
}

/*-----------------------------------------------
	boxFormBtn
-----------------------------------------------*/
.boxFormBtn{
    margin-top: 4rem;
    text-align: center;
}
.boxFormBtn .link{
    position: relative;
    width: 58rem;
    height: 9.5rem;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6rem;
    background-color: var(--keyColor);
    box-shadow: var(--shadowColor);
    padding-top: 3px;
}
.boxFormBtn .txt{
    position: relative;
    display: inline-block;
    color: var(--whiteColor);
    font-size: var(--pcFS20);
    font-weight: bold;
}
.boxFormBtn .btnSendCoBack{
    font-size: var(--pcFS18);
    font-weight: bold;
    color: var(--linkColor);
    text-decoration: underline;
    margin-top: 7rem;
    display: inline-block;
}
.boxFormBtn .btnSend.isArrow::after{
    right: 5rem;
}

.btnSendCo.no_tap,
.btnSendCoBack.no_tap{
    opacity: 0.3!important;
    pointer-events: none!important;
    transition: none!important;
}
.btnSendCo.no_tap{
    background: url(../img_form/iconLoader.png) center center / 32px auto no-repeat,var(--greenColor)!important;
}
.btnSendCo.no_tap .txt{
    font-size: 0!important;
}
@media only screen and (max-width:1215px){
    .boxFormBtn{
        margin-top: 2rem;
    }
    .boxFormBtn .link{
        width: 88.06%;
        height: 5.5rem;
        margin-top: 2rem;
        border-radius: 2.75rem;
        padding-top: 0;
    }
    .boxFormBtn .txt{
        font-size: var(--spFS14);
    }
    .boxFormBtn .btnSendCoBack{
        font-size: var(--spFS13);
        margin-top: 5rem;
    }
    .isArrow::after{
        right: 2rem;
    }
}


/*-----------------------------------------------
	isFormCo
-----------------------------------------------*/
.isFormCo:not(.isFormOk) .secCmnHead{
    padding-top: 4rem;
    background: transparent;
}
.isFormCo:not(.isFormOk) .secCmnHead::before{
    display: none;
}
.isFormCo:not(.isFormOk) #formLink{
    padding-bottom: var(--footerPc);
}
.isForm:not(.isFormOk) + #menu + #btnNavi + #fNavi{
    display: none!important;
}
@media only screen and (max-width:1215px){
    .isFormCo:not(.isFormOk) .secCmnHead{
        padding-top: 2rem;
    }
    .isFormCo:not(.isFormOk) #formLink{
        padding-bottom: var(--footerSp);
    }
}

/*-----------------------------------------------
	secTel
-----------------------------------------------*/
.secTel{
    margin-top: 10rem;
    width: 100%;
}
.secTel .link{
    width: 100%;
    border: 1px solid var(--grayColor);
    border-radius: 1rem;
    padding: 9rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}
.secTel .tit{
    font-size: var(--pcFS28);
    font-weight: bold;
}
.secTel .tel{
    font-size: var(--pcFS56);
    letter-spacing: var(--pcLH56_50);
    color: var(--greenColor);
}
.secTel .txt{
    font-size: var(--pcFS18);
    letter-spacing: var(--pcLS18_50);
}
@media only screen and (max-width:1215px){
    .secTel{
        margin-top: 5rem;
    }
    .secTel .link{
        border-radius: 0.5rem;
        padding: 3.5rem 1rem;
        gap: 1.5rem;
    }
    .secTel .tit{
        font-size: var(--spFS16);
    }
    .secTel .tel{
        font-size: var(--spFS30);
        letter-spacing: var(--spLS30_50);
    }
    .secTel .txt{
        font-size: var(--spFS12);
        letter-spacing: var(--spLS12_0);
    }
}



/*-----------------------------------------------
	boxMerit
-----------------------------------------------*/
.boxMerit{
    margin-top: 7rem;
    text-align: center;
}
.boxMerit .tit{
    position: relative;
    font-size: var(--pcFS18);
    letter-spacing: var(--pcLS18_50);
    font-weight: bold;
    display: inline-block;
    z-index: 0;
}
.boxMerit .tit:before{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.8rem;
    background-color: var(--yellowColor);
    z-index: -1;
}
.boxMerit .boxList{
    margin-top: 4.2rem;
    display: flex;
    justify-content: center;
    gap: 9rem;
    margin-left: 3rem;
}
.boxMerit .boxList .item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.boxMerit .boxList .itemL{
    margin-left: -3rem;
}
.boxMerit .boxList .img{
    position: relative;
    width: 16rem;
}
.boxMerit .boxList img{
    border-radius: 100%;
    overflow: hidden;
}
.boxMerit .item:not(:last-child) .img::after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    bottom: 0;
    right: -5rem;
    width: 1.4rem;
    height: 0.7rem;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="7" viewBox="0 0 14 7"><path d="M0,3 H10 V0 L14,3.5 L10,7 V4 H0 Z" fill="%23000000"/></svg>') center top / cover no-repeat;
}
.boxMerit .txt{
    width: 100%;
    font-size: var(--pcFS14);
    line-height: var(--pcLHS14_20);
    margin-top: 2.5rem;
}
@media only screen and (max-width:1215px){
    .boxMerit{
        margin-top: 2.5rem;
    }
    .boxMerit .tit{
        font-size: var(--spFS14);
        line-height: var(--spLHS14_26);
        letter-spacing: var(--spLS_0);
    }
    .boxMerit .tit:before{
        right: 0;
        bottom: 0.5rem;
        margin: auto;
        height: 0.5rem;
        width: calc(100% - 2rem);
    }
    .boxMerit .boxList{
        margin-top: 2.5rem;
        justify-content: space-between;
        gap: 0;
        margin-left: 0;
    }
    .boxMerit .boxList .item{
        width: 29.556%;
        justify-content: flex-start;
    }
    .boxMerit .boxList .itemL{
        margin-left: 0;
    }
    .boxMerit .boxList .img{
        width: 100%;
    }
    .boxMerit .item:not(:last-child) .img::after{
        right: -5rem;
        width: 1.4rem;
        height: 0.7rem;
    }
    .boxMerit .txt{
        font-size: var(--spFS13);
        line-height: var(--spLHS13_20);
        margin-top: 1rem;
    }
}

/*-----------------------------------------------
	btnQuestionnaire
-----------------------------------------------*/
.btnQuestionnaire .link{
    position: relative;
    width: 56rem;
    height: 6.5rem;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6rem;
    background-color: var(--textColor);
    box-shadow: var(--shadowColor);
}
.btnQuestionnaire .link:after{
    position: absolute;
    content: '';
    margin: auto;
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 3rem;
    margin: auto;
    width: 3rem;
    height: 2rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(var(--textColor), var(--textColor)) center / 7px 1px no-repeat,
        linear-gradient(var(--textColor), var(--textColor)) center / 1px 7px no-repeat,
        var(--whiteColor);
}
.btnQuestionnaire.active .link:after{
    background:
        linear-gradient(var(--textColor), var(--textColor)) center / 7px 1px no-repeat,
        var(--whiteColor);
}
.btnQuestionnaire .txtQuestionnaire{
    position: relative;
    display: inline-block;
    color: var(--whiteColor);
    font-size: var(--pcFS14);
    font-weight: bold;
}
@media only screen and (max-width:1215px){
    .btnQuestionnaire .link{
        width: 100%;
        height: 5.5rem;
        margin-top: 2.5rem;
        padding-left: 2.4rem;
        border-radius: 2.75rem;
        justify-content: flex-start;
    }
    .btnQuestionnaire .link:after{
        right: 2.5rem;
        width: 2.5rem;
        border-radius: 0.95rem;
    }
    .btnQuestionnaire .txtQuestionnaire{
        font-size: var(--spFS14);
    }
}
/* boxQuestionnaire */
#boxQuestionnaire {
    display: none;
    font-size: 35px;
    margin-top: 6rem;
}
#boxQuestionnaire.on{
    display: block;
    animation: fadeIn 0.6s linear 0s;
}
.checkQuestionnaire {
    display: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.secFormQuestionnaire .titQuestionnaire {
    background-color: var(--textColor);
    color: var(--whiteColor);
    font-size: var(--pcFS16);
    font-weight: bold;
    text-align: left;
    padding: 3rem 4rem;
    border-radius: 1rem 1rem 0 0;
}
@media only screen and (max-width:1215px){
    #boxQuestionnaire {
        margin-top: 6rem;
    }
    .secFormQuestionnaire .titQuestionnaire {
        font-size: var(--spFS15);
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

}
.checkQuestionnaire {
    display: none;
}

/*-----------------------------------------------
    co/ok
-----------------------------------------------*/
.co:not(.ok) #container{
    padding-top: 0;
}
.co #boxQuestionnaire{
    display: block;
}
.co #footer{
    margin-top: 0;
}
.ok .secFormWrap{
    padding-top: 5rem;
    margin-bottom: var(--footerPc);
}
.ok .secFormTit .txt {
    line-height: var(--pcLHS16_22);
}
@media only screen and (max-width:1215px){
    .co .secForm .boxTit .tit {
        width: 100%;
    }
    .ok .secFormWrap{
        padding-top: 2rem;
        margin-bottom: var(--footerSp);
    }
    .ok .secFormTit .txt {
        line-height: var(--spLHS13_22);
        text-align: left;
    }
}