@charset "UTF-8";
/* CSS Document */

/*
 general
-------------------------------------------------------------*/
* {
    box-sizing: border-box;
}
html {
    background-color: transparent;
    background-image: none;
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    position: relative;
    width: 100%;
    line-height: 1.2;
    font-family: sans-serif;
    font-size: 1.4rem;
    font-size: 14px;
	color: #333333;
	overflow: visible;
    -webkit-text-size-adjust: 100%;
}

p img {
   vertical-align: bottom;
}
a{
    transition: opacity 0.3s;
}
a:link{
    text-decoration: none;
}


/*
 common
-------------------------------------------------------------*/
.wrapBox{
    width: 100%;
	padding: 24px 0 0; 
}
.wrapBox--yellow{
	background:#FFCF08;
}
.contBox{
	margin: 0 auto;
	padding: 24px;
    box-shadow: none;
    max-width: 800px;
    width: 100%;
}
.contBox__img{
	width: 100%;
}
.contBox__img img{
	width: 100%;
}
.contBox__ttl{
	margin-bottom: 32px;
	text-align: center;
	font-weight: bold;
	font-size: 200%;
}
.contBox__img--mb30{
	margin-bottom: 30px;
}
.contBox__attention{
	text-align: center;
}


.ctaBox{
	padding:16px 0 24px;
	background:#FFCF08;
	text-align: center;
}
.ctaBox__txt{
	margin-bottom: 24px;
	padding: 0 32px;
	font-size: 120%;
	font-weight: bold;
	line-height: 1.6;
}
.ctaBox__link{
	width: 100%;
	padding:0 24px 16px;
	--animate-duration: 4s;
}
.ctaBox__link a img{
	width: 100%;
}

.formBox{
	padding: 24px 24px 16px;
	border-radius: 10px;
	background: #eee;
}
.formSelect{
    margin: 0 0 8px;
}
.formSelect__ttl{
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 17px;
}
.formSelect__disc{
    height: 100%;
}
.formSelect__disc select{
	position: relative;
    padding: 14px 48px 14px 8px;
    border: 1px solid #FFCF08;
    border-radius: 2px;
    vertical-align: middle;
    background: #fff url(../img/bgSelectBox.png) right center no-repeat;
    line-height: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 100%;
    font-size: 20px;
    margin-bottom: 20px;
}

.formSelectList__item{
    display: block;
    height: 48px;
}
.formSelectList__item:last-child{
    margin-right: 0;
}
.formSelectList__item input{
	display: none;
}
input[type="text"] {
    padding: 32px 8px;
    font-size: 30px;
    color: #333;
    border: solid 1px #FFCF08;
    width: 95% !important;
    border-radius: 2px;
    box-sizing: content-box;
    line-height: 120%;
    margin-bottom: 20px;
}

input[type="tel"] {
    padding: 32px 8px;
    font-size: 30px;
    color: #333;
    border: solid 1px #FFCF08;
    width: 95% !important;
    border-radius: 2px;
    box-sizing: content-box;
    line-height: 120%;
    margin-bottom: 20px;
}
input::-webkit-input-placeholder {
    font-size: 1.3em;
}
.submitBtn{
    width: 100%;
    height: 108px;
	margin: 40px auto 0;
	background: url("../img/bnrSubmit.png") top center no-repeat;
    background-size: 100%;
    border-style: none;
    outline: none;
    cursor: pointer;
}
.errorTxt{
	display: block;
	margin: 12px 0 0;
	color: #f00;
}

.formSelectList{
	width: 100%;
}
.formSelectList__item{
    display: block;
    height: 100%;
	float:left;
	width:33%;
}
.formSelectList__item:last-child{
    margin-right: 0;
}
.formSelectList__item input{
	display: none;
}
.formSelectList__item label{
    display: block;
	width: 100%;
    cursor: pointer;
    padding: 16px 0;
    background: #9a9a9a;
    color: #fff;
    font-weight: bold;
	border:solid 1px #FFF;
	box-sizing: border-box;
	font-size: 1.6rem;
	text-align: center;
}
.formSelectList__item input[type="radio"]:checked + label ,
.formSelectList__item input[type="radio"]:checked + input[type="hidden"] + label {
    background: #ffcf08;
    color: #fff;
}
textarea {
    width: 100%;
    height: 180px;
    padding: 4px;
    border: #FFCF08 solid 1px;
    background: #FFF;
	font-size: 1.6rem;
}

/*
 thanks
-------------------------------------------------------------*/
.thanks{
	background:#FFCF08;
}
.thanksBox__img{
	width: 100%;
	padding: 16px;
}
.thanksBox__img img{
	width: 100%;
}
.thanksBox__txt{
	padding: 16px 16px 32px;
	text-align: center;
	font-weight: bold;
	font-size: 120%;
}


/*
 footer
-------------------------------------------------------------*/
.l-footer{
    margin: 40px 0;
    text-align: center;
}



/*
 other
-------------------------------------------------------------*/
/* clearfix */
.clearfix:after{
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix{
	zoom: 1;
}

.mt60{
	padding-top: 60px;
}
