@charset "UTF-8";


.contact-page-main-viaual{
	  height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 31.25%;
    background: url('/images/contact-top-visual.png') 0 0 no-repeat;
    background-size: contain;
}

@media (max-width: 640px) {

.contact-page-main-viaual{
	  height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
   padding-top: 59.4%;
    background: url('/images/contact-top-visual-sp.png') 0 0 no-repeat;
    background-size: contain;
}

}


/* common
================================================== */

.form-contents em{
font-style:normal;
color:#e86278;
font-weight:bold;
font-size:12px;
margin:0 0 0 5px;
}

dl.form-contents{
width:auto;
height:auto;
margin:60px 0 0 0;
padding:0;
overflow:hidden;
text-align:left;
color:#1560a3;
}



dl.form-contents dt{
width:auto;
height:auto;
overflow:hidden;
margin:0 0 10px 0;
padding:0;
text-align:left;
}

dl.form-contents dd{
width:auto;
height:auto;
overflow:hidden;
padding:0;
margin:0 0 75px 0;
text-align:left;
color:#000000;
}

/* form
=========================================== */

form {
	border: none;
	box-shadow: none;
	color:#1560a3;
}


/*Radio Check*/
label.radio, label.radio_text, label.checkbox, label.checkbox_text {
	position      : relative;
	cursor        : pointer;
	display       : inline-block;
	overflow      : hidden;
	box-sizing    : border-box;
color:#1560a3;
}
label.radio {
	width         : 20px;
	height        : 20px;
	border        : 1px solid #162873;
	border-radius : 100%;
}
label.radio_text {
	min-height   : calc(20px + 5px);
	margin-right : calc(20px + 5px);
	padding-left : calc(20px + 5px);
	line-height  : calc(20px + 5px);
}
label.checkbox {
	width      : 19px;
	height     : 19px;
	border     : 1px solid #B3B3B3;
	background : #fff;
}
label.checkbox_text {
	padding-left : calc(19px + 5px);
	line-height  : 19px;
}



/** before after **/
label.radio:before, label.radio_text:before, label.checkbox_text:before,
label.checkbox:after, label.radio_text:after, label.checkbox_text:after{
	content  : '';
	position : absolute;
	box-sizing : border-box;
}
label.radio:before, label.radio_text:before{
	border-radius    : 100%;
}
label.radio:before, label.checkbox:after{
	top              : 0px;
	bottom           : 0px;
	left             : 0px;
	right            : 0px;
	margin           : auto;
}
label.checkbox:after, label.checkbox_text:after{
	transform         : rotate(45deg);
	-webkit-transform : rotate(45deg);
	-moz-transform    : rotate(45deg);
	border-right      : 3px solid #DD6655;
	border-bottom     : 3px solid #DD6655;
	top               : calc(50% - (((17px / 12 ) * 5) / 2));
	display           : block;
	margin-top        : calc(((17px / 12 ) * 5) * -1);
	width             : calc(((17px / 12 ) * 5));
	height            : 17px;
	z-index           : 1;
}
label.radio_text:before, label.radio_text:after{
	top              : 0px;
	bottom           : 0px;
	margin-top       : auto;
	margin-bottom    : auto;
}
label.radio:before {
	display          : block;
	width            : 15px;
	height           : 15px;
	z-index          : 1;
	background-color : #162873;
}
label.radio_text:before {
	width         : 21px;
	height        : 21px;
	border        : 1px solid #162873;
	left          : 0px;
	z-index       : 3;
}
label.checkbox_text:before {
	width    : 19px;
	height   : 19px;
	left     : 0px;
	top      : 0;
	border   : 1px solid #B3B3B3;
	z-index  : 3;
	box-sizing: border-box;
}
label.radio_text:after {
	width            : 15px;
	height           : 15px;
	border-radius    : 100%;
	left             : calc(((21px/2) - (15px) / 2));
	background-color : #162873;
	z-index          : 1;
}
label.checkbox_text:after {
	left : calc((19px / 2) - (((17px / 12 ) * 5) / 2));
}
/** input **/
label.radio input[type="radio"], label.radio_text input[type="radio"], label.checkbox input[type="checkbox"], label.checkbox_text input[type="checkbox"]{
	-moz-appearance: none;
	-webkit-appearance: none;
	position   : absolute;
	z-index    : 2;
	margin     : 0px;
	width      : 19px;
	height     : 19px;
	box-sizing    : border-box;
	outline       : none;
}
label.radio input[type="radio"], label.radio_text input[type="radio"]{
	left       : calc(20px * -1);
	width      : 20px;
	height     : 20px;
	top           : 0px;
	bottom        : 0px;
	margin-top    : auto;
	margin-bottom : auto;
	border-radius : 100%;
}
label.checkbox input[type="checkbox"], label.checkbox_text input[type="checkbox"]{
	left       : calc(19px * -1);
	padding    : 0;
}
label.radio input[type="radio"] {
	display    : block;
	box-shadow : 20px 0px #FFF;
}
label.radio_text input[type="radio"] {
	box-shadow : 20px 0px #FFF;
}
label.checkbox input[type="checkbox"] {
	box-shadow : 19px 0px #FFF;
}
label.checkbox_text input[type="checkbox"] {
	display    : block;
	box-shadow : 19px 0px #FFF;
}

/** checked forcus */
label.checkbox_text input[type="checkbox"]:checked,
label.checkbox input[type="checkbox"]:checked,
label.radio_text input[type="radio"]:checked,
label.radio input[type="radio"]:checked{
	box-shadow : none;
}
label.checkbox_text input[type="checkbox"]:checked:focus,
label.checkbox input[type="checkbox"]:checked:focus{
	opacity: 0.1;
}
label.radio_text input[type="radio"]:focus,
label.radio input[type="radio"]:focus{
	opacity: 0.2;
}

label.checkbox_text input[type="checkbox"]:checked:focus {
	box-shadow : 19px 0px #666;
}
label.checkbox_text input[type="checkbox"]:focus {
	box-shadow : 19px 0px #EEE;
}
label.checkbox input[type="checkbox"]:checked:focus {
	box-shadow : 19px 0px #666;
}
label.checkbox input[type="checkbox"]:focus {
	box-shadow : 19px 0px #EEE;
}
label.radio_text input[type="radio"]:focus {
	box-shadow : 20px 0px #FFF;
}
label.radio input[type="radio"]:focus {
	box-shadow : 20px 0px #FFF;
}



input[type=text]{
border:0;
padding:7px;
font-size:1.3em;
color:#1560a3;
margin:0 20px 0 0;
width:60%;
border:1px solid #1560a3;
background-color:#fcfbfb;
-webkit-border-radius : 0;
-webkit-appearance : none;
}


textarea{
border:0;
padding:7px;
font-size:1.3em;
color:#1560a3;
margin:0 20px 0 0;
width:60%;
border:1px solid #1560a3;
background-color:#fcfbfb;
-webkit-border-radius : 0;
-webkit-appearance : none;
}

@media (max-width:980px) {

	input[type=text]{
		width:95%;
	}


	textarea{
		width:95%;
	}

}


.form-caption{
font-size:12px;
margin:0 0 10px 0;
color:#1560a3;
}

@media (max-width:980px) {

	.form-caption{
font-size:12px;
margin:5px 0 5px 0;
display:block;
}
}


input#submit_button,
input#back_button {
    padding: 8px 57px;
    font-size: 12px;
    background-image:url(/images/common-footernav-bg2.png);
    border-style: none;
	cursor:pointer;
	text-align:center;
	-webkit-appearance: none;
	 display:inline-block;
	 color:#ffffff;
	 letter-spacing:0.1em;
	 -webkit-border-radius : 0;
-webkit-appearance : none;
}



/* submit
=========================================== */


ul.submit-button{
width:100%;
height:auto;
margin:3% auto 0 auto;
padding:0;
text-align:center;
font-weight:bold;
font-size:16px;
}

ul.submit-button li{
width:auto!important;
margin:0;
padding:0 15px;
text-align:left;
vertical-align: top;
 display:inline-block;
*display: inline;
*zoom: 1;
}


/* error
=========================================== */
.error-txt{
color:#e86278;
font-size:12px;
}


.complete-txt{
margin:80px 0 0 0;
color:#1560a3;
}