/**************************************

common.css

***************************************/



/* ==================== 共通 ==================== */

.c-container{
	width: 800px;
	margin: 0 auto;
}

.wrap{
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
}
.wrap img{
    width: 100%;
    height: auto;
}

@media screen and (max-width: 800px) {
	.c-container{
		width: 89.33%;
	}
}

@media screen and (max-width: 750px) {

	
}

/* ==================== 最初のタイトルと文章部分 ==================== */

.formArea{
	padding: 0 0 60px;
}

.formArea .formArea__tit{
    margin-bottom: 30px;
}


.formArea .formArea__txt{
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto 30px;
}
.formArea .formArea__txt--red{
    color: #f00;
}

@media screen and (max-width: 750px) {
	.formArea .formArea__txt{
		text-align: left;
	}
}

/* ==================== formError ==================== */

.formError{
    color: #f00;
    text-align: center;
    margin-bottom: 30px;
}

.formError .formError__tit{
    font-weight: bold;
}

.formError .formError__items{
    margin-top: 12px;
}

.formError .formError__items .formError__item{
    margin-bottom: 10px;
}

@media screen and (max-width: 750px) {

	
} 

/* ==================== contactTable ==================== */

.contactTable{
	width: 100%;
}

.contactTable th,
.contactTable td{
	width: 100%;
    display: block;
    text-align: left;
    vertical-align: top;
}

.contactTable th{
	font-size: 16px;
    font-weight: bold;
    padding: 0 0 12px;
}

.contactTable th .require{
    font-weight: bold;
    color: #f00;
    font-size: 14px;
    margin-left: 6px;
}

.privacy__tit .require{
    font-weight: bold;
    color: #f00;
    font-size: 14px;
    margin-left: 6px;
}
.contactTable th .postscript{
    font-size: 13px;
}

.contactTable td{
    padding: 0 0 30px;
    margin: 0 0 30px;
    border-bottom: 1px solid #888;
}

.contactTable td .info__inputText{
    width: 100%;
    border: 1px solid #888;
    font-size: 16px;
    padding: 12px 8px;
    box-sizing: border-box;
}

::placeholder{
	color: #aaa;
}

.contactTable td .contactTable__checkWrap{
    margin-bottom: 12px;
    margin-right: 18px;
    display: inline-block;
    font-size: 16px;
    position: relative;
    vertical-align: middle;
}
.contactTable td .contactTable__checkWrap.contactTable__checkWrap--br{
	display: block;
	margin-bottom: 15px;
}

.contactTable td .contactTable__checkWrap:last-child{
	margin-right: 0;
}

/*.contactTable td input[type="checkbox"]{
	vertical-align: bottom;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}*/
.contactTable td input[type="checkbox"]{
    vertical-align: top;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 0;
}
.checkTxt{
    display: inline-block;
    margin-left: 10px;
}
.checkCont{
    margin-top: 15px;
}
.checkCont .checkCont__txt{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}
.checkCont .checkCont__figure{
    margin-top: 15px;
}


.contactTable td .contactTable__checkWrap span{
	padding-left: 18px;
	display: inline-block;
	line-height: 1.5;
}

.contactTable td .info__inputTextArea{
	width: 100%;
    border: 1px solid #888;
    padding: 12px 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contactTable td .info__inputSelectArea{
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を非表示 */
    background-image: url('../images/form_ico_01.png');
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 14px 6.5px;
    font-size: 13px;
    color: #333;
    background-color: #fff;
}

.info__inputSelectArea--middle{
    width: 32%;
    border: 1px solid #888;
    font-size: 16px;
    padding: 12px 8px;
    box-sizing: border-box;
}

.formLayout{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media screen and (max-width: 750px) {
	.contactTable td .contactTable__checkWrap{
		display: block;
		margin-bottom: 15px;
	}
	
} 

/* ==================== privacy ==================== */

.privacy{

}

.privacy .privacy__tit{
	font-size: 16px;
    font-weight: bold;
    padding: 0 0 12px;
}

.privacy .privacy__agree{
	margin: 0 0 24px;
}

.privacy .privacy__agree input[type="checkbox"]{
    vertical-align: top;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 0;
}

.privacy .privacy__cont{
	width: 100%;
	height: 150px;
	border: 1px solid #ccc;
	padding: 10px;
	overflow: scroll;
	box-sizing: border-box;
	font-size: 14px;
	line-height: 1.4;
    margin: 16px auto 15px;
}

.privacy__annotation{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 15px;
}



@media screen and (max-width: 750px) {

	
}

/* ==================== actions ==================== */


.actions{
	margin: 30px auto 0;
}

.actions .actions__btnWrap{

}

.actions .actions__btn{
	background-color: #ec7aa1;
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    border: 0 none;
    width: 400px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 10px;
}

@media screen and (max-width: 750px) {
	.actions .actions__btn{
		width: 100%;
	}
}

/* ==================== form__submit・form__back ==================== */

.formArea__tit{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}


.form__submit{
    text-align: center;
}

.form__submit .form__submitBtn{
    background-color: #ec7aa1;
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    border: 0 none;
    width: 400px;
    cursor: pointer;
    border-radius: 10px;
    margin: 0 auto;
}

.form__submit .form__submitBtn:hover{

} 
            
.form__back{
	text-align: center;
}
.form__back .form__backBtn{
    background-color: #9b9b9b;
    display: block;
    color: #fff;
    font-size: 18px;
    padding: 20px 0;
    text-align: center;
    border: 0 none;
    width: 400px;
    cursor: pointer;
    border-radius: 10px;
    margin: 20px auto 0;
}
.form__back .form__backBtn:hover{

}

@media screen and (max-width: 750px) {
	.form__submit .form__submitBtn,
	.form__back .form__backBtn{
		width: 100%;
	}
}

/* ==================== その他 ==================== */

.formConfirm,
.formFinish{

}

.formFinish__link{
    text-align: center;
}
.formFinish__link a{
    font-size: 16px;
    font-weight: bold;
    color: #ec7aa1;
    text-decoration: underline;
}
.formFinish__link--add{
    margin-bottom: 16px;
}

.formArea.formFinish .formArea__txt{
    line-height: 1.5;
}

.formFinish .formArea__txt--small{
    font-size: 12px;
}
.formFinish .formArea__txt--small a{
    color: #000;
}

.onetimeOffer{

}

.onetimeOffer .onetimeOffer__figure{
    width: 300px;
    background-color: #ccc;
    margin: 0 auto;
}

.onetimeOffer__tit{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin: 30px 0 20px;
}
.onetimeOffer__tit span{
    color: #F10090;
    font-weight: bold;
}
.onetimeOffer__txt{
    font-size: 15px;
    text-align: center;
    line-height: 1.75;
}
.onetimeOffer__lists{
    margin: 30px 0;
}
.onetimeOffer__lists .onetimeOffer__list{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto 20px;
}
.onetimeOffer__lists .onetimeOffer__list span{
    color: #F10090;
    font-weight: bold;
}
.onetimeOffer__lists .onetimeOffer__list:last-child{
    margin: 0 auto;
}
.onetimeOffer__btn{
    width: 300px;
    margin: 0 auto;
}
.onetimeOffer__btn a{
    width: 100%;
    display: inline-block;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
}
.onetimeOffer__btn.onetimeOffer__btn--on{
    margin: 30px auto 20px;
}
.onetimeOffer__btn.onetimeOffer__btn--off{

}
.onetimeOffer__btn.onetimeOffer__btn--on a{
    background-color: #F10090;
    color: #fff;
}
.onetimeOffer__btn.onetimeOffer__btn--off a{
    background-color: #ccc;
    color: #000;
}

@media screen and (max-width: 750px) {
    .onetimeOffer .onetimeOffer__figure{
        width: 200px;
    }
    .onetimeOffer__tit{
        font-size: 18px;
        margin: 30px 0 20px;
    }
    .onetimeOffer__txt{
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
    }
    .onetimeOffer__lists .onetimeOffer__list{
        font-size: 16px;
        margin: 0 auto 20px;
        text-align: left;
    }
    .onetimeOffer__btn{
        width: 100%;
    }
}







