@charset "utf-8";
/* secForm */
.secForm{
    background:#f8f7f6;
    padding-bottom: 180px;
    padding: 237px 0 100px;
    margin-top: 200px;
    position: relative;
    font-weight: 500;
}
.secForm::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    left: calc(50% - 0.5px);
    top: -50px;
    background: var(--textColor);
}
.secForm .tit{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
@media only screen and (max-width:767px){
    .secForm{
        padding: 62px 0 40px;
        margin-top: 100px;
    }
    .secForm::after{
        height: 30px;
        top: -15px;
    }
    .secForm .tit{
        font-size: 20px;
    }
}

/* stepList */
.secForm .stepList{
    margin: 70px auto 0;
    display: flex;
    justify-content: center;
    position: relative;
}
.secForm .stepList::before{
    content: "";
    position: absolute;
    left: calc(50% - 100px);
    top: calc(50% - 1px);
    width: 200px;
    height: 2px;
    background-color: #d2d2d2;
}
.secForm .stepItem{
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size:14px;
    color: #b3b3b3;
    border: 1px solid #d2d2d2;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 50px;
}
.secForm .stepItem:last-child{
    margin-right: 0;
}
.secForm .stepItem.active{
    color: #fff;
    background: #282823;
    border-color: var(--textColor);
}
@media only screen and (max-width:767px){
    .secForm .stepList{
        margin: 30px auto 0;
    }
    .secForm .stepList::before{
        left: calc(50% - 85px);
        width: 170px;
    }
    .secForm .stepItem{
        width: 45px;
        height: 45px;
        font-size: 10px;
        margin-right: 30px;
    }
}

.secForm .topTxtBox{
    display: flex;
    margin-top: 69px;
}
.secForm .itemTxt{
    width: 280px;
    font-size: 14px;
    flex-shrink: 0;
}
.secForm .checkTxt{
    width: calc(100% - 200px);
    font-size: 14px;
    padding-left: 145px;
}
.secForm .spanRed{
    color: #ff0000;
}
@media only screen and (max-width:767px){
    .secForm .topTxtBox{
        flex-flow: column-reverse;
        margin-top: 21px;
    }
    .secForm .itemTxt{
        width: auto;
        font-size: 11px;
        text-align: left;
        margin-top: 30px;
    }
    .secForm .checkTxt{
        width: 100%;
        font-size: 11px;
        padding-left: 0;
        text-align: center;
        letter-spacing: normal;
    }
}

/* secFormTable */
.secFormTable{
    width: 100%;
    border-top: 1px solid var(--textColor);
    border-bottom: 1px solid var(--textColor);
    font-size: 16px;
    margin-top: 30px;
}
.secForm tr{ border-bottom:1px solid var(--textColor);}
.secForm tr:last-child{
    border-bottom: none;
}
.secForm th{
    width:280px;
    font-size:16px;
    line-height:26px;
    padding: 46px 0 30px;
    vertical-align:top;
    position:relative;
    font-weight: 700;
}
.secForm .must{
    color: #ff0000;
    padding-left: 5px;
}
.secForm td{
    width: calc(100% - 280px);
    padding: 30px 0;
}
.secForm .time td{
    padding-bottom: 24px;
}
@media only screen and (max-width:767px){
    .secFormTable{
        width: 100%;
        font-size: 12px;
        margin-top: 18px;
        border-bottom: none;
    }
    .secForm th{
        width:100%;
        display: block;
        font-size:12px;
        padding: 13px 0 0px;
    }
    .secForm .must{
        padding-left: 2px;
    }
    .secForm td{
        width:100%;
        display: block;
        padding: 8px 0 19px;
    }
    .secForm .time td{
        padding-bottom: 17px;
    }
}

.secForm input[type="checkbox"]{
    margin: 0;
    width:22px;
    height:22px;
    background:#fff;
    border-color: #eaecf0;
}
.secForm input[type="radio"]{
    margin:0;
    width: 22px;
    height:22px;
}
.secForm input[type="text"], 
.secForm input[type="tel"], 
.secForm input[type="email"], 
.secForm input[type="number"], 
.secForm input[type="password"], 
.secForm select{
    max-width: 100%;
    height:60px;
    border:none;
    font-size:16px;
    padding-left: 17px;
    background: #fff;
    border-radius: 5px;
    font-family:inherit;
    position: relative;
}
.secForm textarea{
    height:200px;
    border:none;
    font-size:16px;
    padding:15px;
    background: #fff;
    font-family:inherit;
    width:100%;
    vertical-align:middle;
}
@media only screen and (max-width:767px){
    .secForm input[type="checkbox"]{
        width:20px;
        height:20px;
    }
    .secForm input[type="radio"]{
        width:20px;
        height:20px;
    }
    .secForm input[type="text"], 
    .secForm input[type="tel"], 
    .secForm input[type="email"], 
    .secForm input[type="number"], 
    .secForm input[type="password"], 
    .secForm select{
        height:45px;
        font-size:16px;
        padding-left: 14px;
        color: var(--textColor);
    }
    .secForm textarea{
        height:150px;
    }
}
.secForm .txtError{
    color:#f00;
    font-size:12px;
    background:url(../img/common/iconError.png) left top no-repeat;
    background-size:14px;
    padding:0 0 0 17px;
    margin-top:10px;
    line-height:14px;
    text-align:left;
}
::placeholder{
    color: #b3b3b3;
}
/* 幅 */
.secForm .w100p{width:100%;min-width: 100%;}
.secForm .w680{width: 680px;}
.secForm .w580{width: 580px;}
.secForm .w480{width: 480px;}
.secForm .w250{width: 250px;}
.secForm .w200{width: 200px;}
.secForm .w100{width: 100px;}
@media only screen and (max-width:767px){
    .secForm .ws100p{
        width: 100%;
    }
    .secForm .ws_100{
        width: calc(100% - 100px);
    }
    .secForm .ws_120{
        width: calc(100% - 120px);
    }
    .secForm .ws_150{
        width: calc(100% - 150px);
    }
    .secForm .wsZip{
        width: calc(100% - 115px);
    }
    .secForm .ws120{width: 120px;}
}
.secForm .mr3{margin-right: 5px;}
.secForm .ml3{margin-left: 5px;}

/* calender */
.secForm .flexbox{
    display: flex;
}
.secForm .flexbox:nth-child(2){
    margin-top: 20px;
}
.secForm .dayBox{
    display: flex;
    align-items: center;
}
.secForm .dayTxt{
    font-size: 16px;
    margin-right: 27px;
    letter-spacing: 1px;
    white-space: nowrap;
}
.secForm .timebox{
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.secForm .timebox .txt{
    font-size:16px;
    margin-right: 12px;
    white-space: nowrap;
}
.secForm .calenderTxt{
    font-size: 13px;
    line-height: 1.69;
    text-align: left;
    margin-top: 17px;
}
@media only screen and (max-width:767px){
    .secForm .flexbox{
        display: block;
    }
    .secForm .timebox{
        padding-left: 0;
        position: relative;
        margin: 10px 0 0;
        justify-content: flex-end;
    }
    .secForm .dayTxt{
        font-size: 12px;
        margin-right: 10px;
        letter-spacing: normal;
        flex-shrink: 0;
    }
    .secForm .timebox .txt{
        font-size:12px;
        flex-shrink: 0;
        margin-right: 8px;
    }
    .secForm .calenderTxt{
        font-size: 10px;
        line-height: 1.5;
    }
    .secForm .flexbox:nth-child(2){
        margin-top: 25px;
        padding-top: 25px;
        border-top: solid 1px #d8d8d8;
    }
}
/* エラー文 */
.secForm .notetxt .red{
    color:#ff0000;
}
/* 郵便番号 */
.secForm .ziplist{
    display: flex;
    align-items: center;
}
.secForm .ziplist .zipbtn{
    width:120px;
    display: block;
    border-radius: 50px;
    font-size:14px;
    height: 44px;
    line-height: 26px;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    color: var(--textColor);
    background-color: #fff;
    border: 1px solid var(--textColor);
    margin-left: 20px;
}
@media only screen and (max-width:767px){
    .secForm .ziplist{
        display: flex;
    }
    .secForm .ziplist .zipbtn{
        width:100px;
        font-size:12px;
        margin-left: 15px;
    }
}
.secForm .addlist{
    display: flex;
}
.secForm .addlist #address,
.secForm .addlist .address{
    margin-left: 20px;
}
@media only screen and (max-width:767px){
    .secForm .addlist{
        display: block;
    }
    .secForm .addlist #address,
    .secForm .addlist .address{
        margin-left: 0px;
        margin-top: 10px;
    }
}

/* ラジオボックス */
.secFormTable .boxAreaList{
    line-height: 1;
}
.secFormTable .boxAreaList .item:nth-child(n+2){
    margin-top: 9px;
}
.secFormTable input[type="radio"],
.secFormTable .innerRadio::before{
    width: 24px;
    height: 24px;
}
.secFormTable input[type="radio"]{
    visibility: hidden;
    position: absolute;
    margin: 0;
}
.secFormTable .labelRadio{
    position: relative;
    display: inline-block;
    line-height: 1;
}
.secFormTable .itemRadio:nth-child(n+2){
    margin-top: 13px;
}
.secFormTable .innerRadio{
    display: inline-flex;
    align-items: center;
}
.secFormTable .innerRadio::before{
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background: #fff;
    border: solid 1px #dfe2e8;
    margin: 0 6px 0 0;
    position: relative;
    bottom: -2px;
}
.secFormTable input[type="radio"]:checked + .innerRadio::after{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 5px;
    background: #000;
    position: absolute;
    top: 9px;
    left: 7px;
}
.secFormTable .boxOther{
    margin-top: 19px;
}
@media only screen and (max-width:767px){
    .secFormTable .radioTh{
        padding-top: 20px;
    }
    .secFormTable .radioTd{
        padding: 20px 0;
        display: flex;
        flex-wrap: wrap;
    }
    .secFormTable .boxAreaList{
        line-height: 1;
    }
    .secFormTable .boxAreaList.wrapList{
        display: flex;
        flex-wrap: wrap;
    }
    .secFormTable .wrapList .item{
        width: 50%;
    }
    .secFormTable .innerRadio{
        line-height: 1.42;
        padding-left: 27px;
    }
    .secFormTable .innerRadio::before{
        flex-shrink: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
    }
    .secFormTable input[type="radio"]:checked + .innerRadio::after{
        top: 6px;
        left: 6px;
    }
    .secFormTable .boxAreaList .item:nth-child(n+2){
        margin-top: 8px;
    }
    .secFormTable .boxAreaList.wrapList .item:nth-child(2){
        margin-top: 0;
    }
    .secFormTable .boxAreaList .item.ws100p{
        width: 100%;
    }
    .secFormTable .boxOther{
        width: 100%;
        margin-top: 15px;
    }
}

.secForm .checkList .item{
    line-height: 22px;
}
.secForm .checkList input[type="checkbox"]{
    visibility: hidden;
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
}
.secForm .labelCheck{
    position: relative;
}
.secForm .txtCheck{
    font-size: 16px;
    padding-left: 29px;
    position: relative;
    display: inline-block;
}
.secForm .txtCheck::after{
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 1px solid #dfe2e8;
    background-color: #fff;
    border-radius: 5px;
}
.secForm input[type="checkbox"]:checked + .txtCheck::after{
    background: url(../img/common/iconCheckbox.png) center center / 12px auto no-repeat #fff;
}
.secForm .checkList .item:nth-child(n+2){
    margin-top: 10px;
}
@media only screen and (max-width:767px){
    .secForm .checkList .item{
        line-height: 22px;
    }
    .secForm .checkList input[type="checkbox"]{
        top: calc(50% - 10px);
    }
    .secForm .txtCheck{
        padding-left: 27px;
        font-size: 12px;
        line-height: 20px;
    }
    .secForm .txtCheck::after{
        width: 20px;
        height: 20px;
    }
    .secForm input[type="checkbox"]:checked + .txtCheck::after{
        background-size: 12px auto;
    }
    .secForm .checkList .item:nth-child(n+2){
        margin-top: 3px;
    }
}

/* privacyBox */
.secForm .privacyBox{
    margin-top: 53px;
}
.secForm .titPrivacy{
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    text-align: left;
}
.secForm .scrollarea{
    height: 280px;
    padding: 33px 40px;
    overflow-y:scroll;
    background: #fff;
    margin-top: 25px;
    position: relative;
}
.secForm .txtPrivacy{
    font-size:13px;
    line-height: 21px;
}
.secForm .checkbtn{
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-top: 76px;
}
.secForm .privacyBox .txtCheck::after{
    width: 30px;
    height: 30px;
    top: -6px;
}
.secForm .privacyBox .txtCheck{
    padding-left: 43px;
}
.secForm .privacyBox .txtError{
    display: inline-block;
    margin-top: 20px;
}
.secForm .privacyBox label{
    position: relative;
}
@media only screen and (max-width:767px){
    .secForm .privacyBox{
        margin-top: 33px;
    }
    .secForm .titPrivacy{
        font-size: 12px;
    }
    .secForm .scrollarea{
        height: 250px;
        padding: 17px 20px;
        margin-top: 12px;
    }
    .secForm .txtPrivacy{
        font-size:11px;
        line-height: 15px;
    }
    .secForm .checkbtn{
        display: block;
        margin-top: 34px;
    }
    .secForm .privacyBox .txtCheck::after{
        width: 22px;
        height: 22px;
        top: -2px;
    }
    .secForm .privacyBox .txtCheck{
        padding-left: 27px;
    }
    .secForm .privacyBox .txtError{
        margin-top: 10px;
    }
}


.secForm .btnForm.ok{
    opacity: 0.3;
    pointer-events: none;
}
.secForm .btnForm{
    display: block;
    text-decoration: none;
    width: 800px;
    color: var(--textColor);
    border-radius: 100px;
    margin: 0 auto;
    font-weight: bold;
    border: 1px solid var(--textColor);
    opacity: 1;
    pointer-events: all;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    padding: 19px 0;
    text-align: center;
    margin-top: 75px;
    max-width: 100%;
}
.secForm .btnPrev{
    display: block;
    text-decoration: none;
    width: 350px;
    color: var(--textColor);
    border-radius: 40px;
    font-weight: bold;
    opacity: 1;
    pointer-events: all;
    background: var(--textColor);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    padding: 19px 0;
    margin: 30px auto 0;
    text-align: center;
}
@media only screen and (max-width:767px){
    .secForm .btnForm{
        width: 100%;
        font-size: 14px;
        padding: 15px 0;
        margin-top: 25px;
    }
    .secForm .btnPrev{
        width: 80%;
        border-radius: 29px;
        font-size: 14px;
        padding: 15px 0;
        margin: 20px auto 0;
    }
}

/* formtxt */
.secForm .formtxt{
    max-width: 800px;
    margin: 0 auto;
    margin-top: 45px;
    padding: 0px 20px;
}
.secForm .formtxt .txt{
    font-size: 13px;
    line-height: 1.84;
    text-align: left;
}
.secForm .formtxt .txt .fbold{
    font-weight: bold;
}
@media only screen and (max-width:767px){
    .secForm .formtxt{
        width: 100%;
        margin-top: 27px;
        padding: 0px 10px;
    }
    .secForm .formtxt .txt{
        font-size: 11px;
        line-height: 1.54;
    }
}
#ui-datepicker-div{
    z-index: 992!important;
}

/* co */
.co.secForm,.ok.secForm{
    margin-top: 26px;
    padding: 130px 0;
}
.co.secForm tr {
    font-size: 16px;
    line-height: 24px;
}
.co.secForm th{
    padding: 30px 0;
    vertical-align: middle;
}
.co.secForm tr.time td{
    padding: 20px 0;
}
.co.secForm .inner{
    border-bottom: none;
    padding-bottom: 0;
}
.co.secForm .btnForm,.ok.secForm .btnForm{
    max-width: 500px;
}
.co .secFormTable{
    border-bottom: 1px solid var(--textColor);
}
.co.secForm .checkTxt{
    width: 100%;
    padding-left: 0;
    text-align: center;
    line-height: 1.7;
}
@media only screen and (max-width:767px){
    .co.secForm,.ok.secForm{
        padding: 60px 0 100px;
        margin-top: 0;
    }
    .co.secForm tr {
        font-size: 12px;
        line-height: 1.5;
    }
    .co.secForm .toptxt .txt{
        line-height: 1.5;
    }
    .co.secForm tr th{
        padding: 13px 0 0px;
    }
    .co.secForm tr.time td{
        padding: 8px 0 19px;
    }
    .co.secForm .inner{
        border-bottom: none;
        padding-bottom: 0;
    }
    .co .btnForm,.ok.secForm .btnForm{
        max-width: 100%;
    }
    .secFormTable.co .secFormTable{
        border-top: none;
    }
}
.secForm.ok .okTxt{
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin-top: 40px;
}
@media only screen and (max-width:767px){
    .secForm.ok .okTxt{
        font-size: 13px;
        line-height: 1.8;
        margin-top: 30px;
        text-align: left;
    }
}

.secForm tr.type01 th{
    padding: 30px 0;
    vertical-align: middle;
}
.secForm.co tr td{
    vertical-align: middle;
}

/*==============================
    datepicker
==============================*/
.ui-widget.ui-widget-content{
	z-index: 1000 !important;
}

/*==============================
    mailcomplete
==============================*/
.ui-menu-item-wrapper{
	font-size: 13px;
	padding: 10px 15px !important;
}

/*==============================
    btnSendCo
==============================*/
.btnSendCo.no_tap,
.btnSendCoBack.no_tap{
    opacity: 0.3 !important;
    pointer-events: none !important;
    transition: none !important;
}
.btnSendCo.no_tap{
    opacity: 1 !important;
    background: url(../img_form/common/iconLoader.png) center center / 32px auto no-repeat !important;
    color: transparent !important;
}

.secCmnForm .boxReserve{
	display: none;
}

/* 追記 co */
.co.secForm .tit{
    margin-top: 0;
}
.co .secFormQuestionnaire .btnQuestionnaire {
    position: relative;
    display: flex;
    width: 100%;
    height: 80px;
    margin: 40px auto 0;
    padding-top: 1px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background: #facd19;
    color: var(--textColor);
    font-size: 24px;
    transition: .5s;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 3px;
    box-shadow: inset 0px -1px 0px 0px rgba(108, 104, 5, 0.3);
}
.co .secFormTable.ann{
    margin-top: 40px;
}
@media only screen and (max-width:767px){
    .co .secFormQuestionnaire .btnQuestionnaire {
        height: 60px;
        margin: 22px auto 0;
        line-height: 20px;
        font-size: 12px;
    }
    .co .secFormTable.ann{
        margin-top: 22px;
    }
    .co.secForm .tit{
        margin-top: 0;
    }
}

.mt10{
    margin-top: 10px;
}

/* 追加240815 */
.secFormTable .txtSub{
    font-size: 13px;
    margin-top: 14px;
}
@media only screen and (max-width:767px){
    .secFormTable .txtSub{
        font-size: 11px;
        margin-top: 12px;
    }
}
@media only screen and (max-width:359px){
    .secFormTable .txtSub{
        font-size: 10px;
    }
}


/* 会員登録 */
.secForm .passIn{
    display: inline-block;
    position: relative;
}
.secForm .passIn .iconEye{
    position: absolute;
    right: 20px;
    top: calc(50% - 10px);
    width: 27px;
    height: 20px;
    text-align: center;
    cursor: pointer;
}
@media only screen and (max-width:767px){
    .secForm .passIn{
        width: 100%;
    }
    .secForm .passIn .iconEye{
        right: 10px;
        top: calc(50% - 8px);
        width: 22px;
        height: 16px;
    }
    .secForm .passIn input{
        padding-right: 35px;
    }
}

/*==============================
    mailcomplete
==============================*/
.ui-menu-item-wrapper{
	font-size: 13px;
	padding: 10px 15px !important;
}


.secForm .dayHope{
    margin-right: 12px;
}
@media only screen and (max-width:767px){
    .secForm .dayBox,.secForm .timebox{
        justify-content: flex-start;
    }
    .secForm .dayHope{
        margin-right: 8px;
        flex-shrink: 0;
    }
    .secForm .ws250{
        width: 250px;
    }
}
@media only screen and (max-width:359px){
    .secForm .ws250{
        width: 230px;
    }
}

/* 追記240823 */
.secFormTable .w80{
    width: 80px;
    margin-right: 10px;
}
.secFormTable .thMaker{
    padding: 30px 0;
}
.secFormTable .tdVertical{
    vertical-align: middle;
}
.secFormTable .flBox{
    display: flex;
    align-items: center;
    padding: 18px 0;
}
.secFormTable .flBox .txtIn{
    align-items: center;
}
.secFormTable .boxAreaList.flBox .item:nth-child(n+2){
    margin: 0 0 0 18px;
}
@media only screen and (max-width:767px){
    .secFormTable .thMaker{
        padding: 13px 0 0;
    }
    .secFormTable .flBox{
        padding: 0;
        display: block;
    }
    .secFormTable .boxAreaList.flBox .item:nth-child(n+2){
        margin: 8px 0 0;
    }
}