@charset "UTF-8";
/*
.form-area {
	margin: 0 auto 0 auto;
	padding: 0px 5% 50px 5%;
	background-color: #FFF;
}
.form-area table {
	width: 100%;
	padding: 0;
	margin: 20px 0 20px 0;
	text-align: left;
}
.form-area th {
	width: 30%;
	font-size: 14px;
	line-height: 1.5em;
	padding: 15px 0 12px 0;
	border-bottom: 1px dotted #888888;
	color: #000;
	font-weight: 700;
	vertical-align: middle;
}
.anq_required {
	background-image: url(../images/required.jpg);
	background-repeat: no-repeat;
	background-position: 95% 4px;
	background-size: auto 15px;
	padding: 0 37px 5px 0;
}
.form-area td {
	font-size: 15px;
	line-height: 1.5em;	
	padding: 18px 10px 15px 15px;
	border-bottom: 1px dotted #888888;
	color: #444;
}
.form-area td .kome {
	font-size: 12px;
}
@media print, screen and (max-width: 767px)	{
*/
body {
	font-size: 16px;
	line-height: 1.8em;
}
			.form-area {
				width: 88%;
				margin: 10px auto 0 auto;
				padding: 0px 0 50px 0;
				background-color: #FFF;
			}
			.form-area .center {
                line-height: 1.4;
            }
			.form-area table {
				width: 90%;
				padding: 0;
				margin: 0 auto 0 auto;
				text-align: left;
			}
			.form-area th {
				font-size: 16px;
				line-height: 1.5em;
				padding: 10px 0% 0px 0% !important;
				border-bottom: none !important;
				color: #dc7b7e;
				font-weight: 700;
				vertical-align: middle;
				display: block;
				width: 100% !important;
			}
			.anq_required {
				background-image: url(../images/required.jpg);
				background-repeat: no-repeat;
				background-position: 100% 10px;
				background-size: 35px auto;
				padding: 0 0px 5px 0;
			}
			.form-area td {
				font-size: 16px;
				line-height: 1.5em;	
				padding: 10px 0px 15px 0px !important;
				/*border-bottom: 1px dotted #888888;*/
				color: #444;
				display: block;
			}
			.form-area td .kome {
				font-size: 11px;
			}
            
/*=======================
フォームパーツ　共通
========================*/
input,textarea {
	font-size: 15px;
}
.form-area input[type="text"],
.form-area input[type="tel"],
.form-area textarea {
	font-size: 16px;
	/*line-height: 1.5em;*/
    line-height: 2em;
	padding-left: 5px;
	border: 1px solid #999999;
	border-radius: 4px;
		box-sizing:border-box;
}
.form-area input[type="text"]:focus,
.form-area textarea:focus {
background-color: #ffffcc;
border: 1px solid #333333;
}
.form-area select {
	border: 1px solid #999999;	/* 必要 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 40px;
	line-height: 40px;
	padding: 0 1em;
	font-size:16px;
	border-radius:4px;
	outline:none;
	background:#fff;
}
select::-ms-expand {
    display: none;
}
.form-area label {
	cursor: pointer;
	margin-right: 15px;
}
input[type=radio], input[type=checkbox] {
	display: none;
}
/*=======================
placeholder text内
========================*/
/* 各ベンダープレフィックスが取れた標準版*/
 :placeholder-shown {
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
		color: #AAA;
	font-size: 13px;
	vertical-align: middle;
}
/* Firefox 18- */
:-moz-placeholder {
		color: #666;
	font-size: 13px;
	vertical-align: middle;
}
/* Firefox 19+ */
::-moz-placeholder {
		color: #666;
	font-size: 13px;
	vertical-align: middle;
}
/* IE 10+ */
:-ms-input-placeholder {
		color: #AAA;
	font-size: 13px;
	vertical-align: middle;
}
/*=======================
フォーム調整　独自指定
========================*/
input[type="text"]:hover, #contents textarea:hover {
	border: 1px solid #666666;
}
input[type="text"]:focus, #contents textarea:focus {
	background-color: #ffffcc;
	border: 1px solid #333333;
}
input[type="text"], #contents textarea {
	border: 1px solid #999999;
	padding: 1px;
}
.form-area textarea {
	width: 99%
}
input[type='text'].tel_box {width: 30%}
input[type='text'].mail_box {width: 60%}
input[type='text'].name_box {width: 30%;}
input[type='text'].text5 {width: 10%;}
input[type='text'].text10 {width: 10%;}
input[type='text'].text15 {width: 15%;}
input[type='text'].text20 {width: 20%;}
input[type='text'].text30 {width: 30%;}
input[type='text'].text40 {width: 40%;}
input[type='text'].text50 {width: 50%;}
input[type='text'].text60 {width: 60%;}
input[type='text'].text70 {width: 70%;}
input[type='text'].text80 {width: 80%;}
input[type='text'].text90 {width: 90%;}
input[type='text'].text100 {width: 100%;}
/*数字入力用*/
input[type='tel'].text10 {width: 70px;}
input[type='tel'].text20 {width: 60px;}
input[type='tel'].text_postal {/*〒番号*/
	width: 80px;
}
input[type='button'].postal_bt {/*〒から住所を自動入力ボタン*/
	background-color: #ccc;
	font-size: 14px;
	margin-bottom:10px;
}
.form_box th,
.form_box td {/*IEフォームズレ対策*/
	line-height: 180%;
	vertical-align: middle; 
}
@media print, screen and (max-width: 767px)	{
			input[type='text'].tel_box {width: 90%}
			input[type='text'].mail_box {width: 90%}
			input[type='text'].name_box {width: 90%}
			input[type='text'].text5 {width: 20%;}
			input[type='text'].text10 {width: 30%;}
			input[type='text'].text15 {width: 30%;}
			input[type='text'].text20 {width: 30%;}
			input[type='text'].text30 {width: 30%;}
			input[type='text'].text40 {width: 40%;}
			input[type='text'].text50 {width: 70%;}
			input[type='text'].text60 {width: 97%}
			input[type='text'].text70 {width: 70%;}
			input[type='text'].text80 {width: 80%;}
			input[type='text'].text90 {width: 100%;}
			input[type='text'].text100 {width: 100%;}
			/*数字入力用*/
			input[type='tel'].text10 {width: 30%;}
			input[type='tel'].text20 {width: 30%;}
			input[type='tel'].text_postal {/*〒番号*/
				width: 25%;
			}
			input[type='button'].postal_bt {/*〒から住所を自動入力ボタン*/
				padding-top: 1%;
				padding-bottom: 1%;
				-webkit-appearance: none;/*スマホデフォデザイン解除*/
				-moz-appearance: none;
				appearance: none;
				background-color: #ccc;
				font-size:0.8em;
			}
}
/*=======================
チェック・セレクトボックス設定 　共通
========================*/
/*
.radio, .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	margin: 0 25px 0px 0;
	padding: 0px 12px 0px 45px;
	border-radius: 8px;
	vertical-align: middle;
	cursor: pointer;
}
.radio:hover:after, .checkbox:hover:after {
	border-color: #FF6600;
}
.radio:after, .checkbox:after {
 -webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 15px;
	display: block;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	margin-top: -5px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #FF3808;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
	opacity: 1;
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 21px;
	display: block;
	margin-top: -7px;
	width: 7px;
	height: 10px;
	border-right: 3px solid #FF3808;
	border-bottom: 3px solid #FF3808;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
.w100 select {
}
@media print, screen and (max-width: 767px)	{
*/
			.radio, .checkbox {	
                box-sizing: border-box;
                -webkit-transition: background-color 0.2s linear;
                transition: background-color 0.2s linear;
                position: relative;
                display: inline-block;
                margin: 0 25px 0px 0;
                padding: 0px 12px 0px 45px;
                border-radius: 8px;
                vertical-align: middle;
                cursor: pointer;
			}
			.radio:hover:after, .checkbox:hover:after {
				border-color: #FF6600;
			}
			.radio:after, .checkbox:after {
             -webkit-transition: border-color 0.2s linear;
                transition: border-color 0.2s linear;
                position: absolute;
                top: 50%;
                left: 15px;
                display: block;
                margin-top: -10px;
                width: 20px;
                height: 20px;
                border: 2px solid #bbb;
                border-radius: 6px;
                content: '';
			}
			.radio:before {
                -webkit-transition: opacity 0.2s linear;
                transition: opacity 0.2s linear;
                position: absolute;
                top: 50%;
                left: 20px;
                display: block;
                margin-top: -5px;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: #FF3808;
                content: '';
                opacity: 0;
			}
			input[type=radio]:checked + .radio:before {
			  opacity: 1;
			}
			.checkbox:before {
                -webkit-transition: opacity 0.2s linear;
                transition: opacity 0.2s linear;
                position: absolute;
                top: 50%;
                left: 21px;
                display: block;
                margin-top: -7px;
                width: 7px;
                height: 10px;
                border-right: 3px solid #FF3808;
                border-bottom: 3px solid #FF3808;
                content: '';
                opacity: 0;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                transform: rotate(45deg);
			}
			input[type=checkbox]:checked + .checkbox:before {
			  opacity: 1;
			}
			.w100 select {
			  -webkit-appearance:none;
			  width: 95%;
			  height: 30px;
			  line-height: 30px;
			  padding-left: 3%;
			}


/*=======================
スマホ用only指定
========================*/
@media print, screen and (max-width: 767px)	{
			.form-area input[type="text"],
			.form-area input[type="tel"],
			.form-area textarea {
				font-size: 16px;
				line-height: 1.5em;
                line-height: 3em;
				padding-left: 5px;
				border: 1px solid #999999;
				border-radius: 4px;
				box-sizing:border-box;
			}
			::-webkit-input-placeholder {
				color: #ACACAC;
				font-size: 14px;
				width:80%;
			}
			.radio,
			.checkbox {
				width: 90%;
			}
}
/*=======================
プライバシーポリシー
========================*/
#contact .privacy {
	margin: 0px auto 30px auto;
	text-align: center;
}
/*▼overscroll ver*/
#contact .privacy_box {
	width: 70%;
	height: 150px;
	overflow: auto;
	background-color: #FFF;
	padding: 30px;
	margin: 30px auto 20px auto;
}
#contact .privacy_box dl {
	text-align: left;
	font-size: 12px;
	line-height: 160%;
	margin-bottom: 30px;
}
#contact .privacy_box dt.tit_kei {
	border-bottom: 1px solid #000000;
	font-size: 15px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
#contact .privacy_box dt {
	font-size: 13px;
	padding-bottom: 5px;
}
#contact .privacy_box dd {
	font-weight: 100;
	text-align: justify;
}
#contact .privacy .checkbox {
	font-size: 15px;
	text-align: left;
	padding: 3% 3% 3% 40px;
	margin: 0 auto 0 auto;
}
#contact .privacy_box dd a,
.privacy_check a {
	text-decoration: underline;
	color: #333;
}
/*▼チェックボックス＆リンクver*/
.privacy_check {
	font-size: 16px;
}
@media print, screen and (max-width: 767px)	{
			#contact .privacy {
				margin: 0px auto 20px auto;
				text-align: center;
				width: 100% !important;
			}
			/*▼overscroll ver*/
			#contact .privacy_box {
				width: 88%;
				height: 150px;
				overflow: auto;
				background-color: #FFF;
				padding: 20px 5%;
				margin: 0px auto 20px auto;
			}
			#contact .privacy_box dl {
				text-align: left;
				font-size: 12px;
				line-height: 160%;
				margin-bottom: 30px;
			}
			#contact .privacy_box dt.tit_kei {
				border-bottom: 1px solid #000000;
				font-size: 15px;
				padding-bottom: 5px;
				margin-bottom: 10px;
			}
			#contact .privacy_box dt {
				font-size: 13px;
				padding-bottom: 5px;
			}
			#contact .privacy_box dd {
				font-weight: 100;
				text-align: justify;
			}
			#contact .privacy .checkbox {
				font-size: 15px;
				text-align: left;
				padding: 3% 3% 3% 12%;
				margin: 0 auto 0 5%;
			}
			/*▼チェックボックス＆リンクver*/
			.privacy_check {
				font-size: 16px;
			}
}
@media screen and (min-width:376px) and ( max-width:414px) {
			#contact .privacy .checkbox {
				font-size: 14px;
				padding: 3% 3% 3% 10%;
				margin: 0 auto 0 8%;
			}
}
@media screen and (min-width:361px) and ( max-width:375px) {
			#contact .privacy .checkbox {
				font-size: 14px;
				padding: 3% 3% 3% 12%;
				margin: 0 auto 0 auto;
			}
}
@media screen and (min-width:321px) and ( max-width:360px) {
			#contact .privacy .checkbox {
				font-size: 13px;
				padding: 3% 3% 3% 12%;
				margin: 0 auto 0 auto;
			}
}
@media print, screen and (max-width: 320px)	{
			#contact .privacy .checkbox {
				font-size: 12px;
				padding: 3% 3% 3% 12%;
				margin: 0 auto 0 auto;
			}	
}
/*=======================
submitボタン
========================*/
/*
.submit {
	width: 70%;
    max-width: 360px;
	margin: 10px auto;
    text-align: center;
    position: relative;
    height: 70px;
}
input[type="submit"]{
    width: 100%;
	font-size: 22px;
	line-height: 100%;
	font-weight:700;
	color: #FFF;
	background-color: #B91B15;
	padding: 20px 50px;
	marginp: 20px auto;
	           border-radius: 8px;
	border-radius: 50px;
	text-align: center;
	cursor: pointer;
	display:inline-block;
	transition-duration: .4s;
               background-image: url(../images/arrow_wh.svg);
                background-size: 10px auto;
                background-position: 92% center;
	border: none;
}
input[type="submit"]:hover {
	color: #FFF;
	background-color: #E95532;
}
input[type="button"].back{
    width: 100%;
	font-size: 22px;
	line-height: 100%;
	font-weight:700;
	color: #FFF;
	background-color: #AAA;
	padding: 20px 50px;
	marginp: 20px auto;
	        border-radius: 8px;
	border-radius: 50px;
	text-align: center;
	cursor: pointer;
	display:inline-block;
	transition-duration: .4s;
	border: none;
}
input[type="button"].back:hover {
	color: #FFF;
	background-color: #666;
}
.submit_wrap {
	width: 100%;
    max-width: 800px;
	margin: 50px auto 0px auto;
    text-align: center;
    position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.submit_wrap .submit{
	width: 90%;
	max-width: 360px;
	margin: 10px auto;
	text-align: center;
}
@media print, screen and (max-width: 767px)	{
*/
			.submit {
				width: 70%;
				max-width: 360px;
				margin: 10px auto;
				text-align: center;
				position: relative;
				height: 70px;
			}
			input[type="submit"]{
				font-size: 18px;
				line-height: 100%;
				font-weight:700;
				color: #FFF;
				background-color: #B91B15;
				padding: 20px 50px;
				marginp: 20px auto;
				/*border-radius: 8px;*/
				border-radius: 50px;
				text-align: center;
				cursor: pointer;
				display:inline-block;
				transition-duration: .4s;
				-webkit-appearance: none;/*スマホデフォデザイン解除*/
				-moz-appearance: none;
				appearance: none;
				/*background-image: url(../images/arrow_wh.svg);
				background-size: 10px auto;
				background-position: 92% center;*/
				border: none;
			}
			input[type="submit"]:hover {
				color: #FFF;
				background-color: #E95532;
			}
			input[type="button"].back{
				font-size: 18px;
				line-height: 100%;
				font-weight:700;
				color: #FFF;
				background-color: #AAA;
				padding: 20px 50px;
				marginp: 20px auto;
				/*border-radius: 8px;*/
				border-radius: 50px;
				text-align: center;
				cursor: pointer;
				display:inline-block;
				transition-duration: .4s;
				-webkit-appearance: none;/*スマホデフォデザイン解除*/
				-moz-appearance: none;
				appearance: none;
				border: none;
			}
			input[type="button"].back:hover {
				color: #FFF;
				background-color: #666;
			}
			.submit_wrap {
				width: 100%;
				max-width: 800px;
				margin: 50px auto 0px auto;
				text-align: center;
				position: relative;
				display: block;
			}
			.submit_wrap .submit{
				width: 70%;
				max-width: 360px;
				margin: 10px auto;
				text-align: center;
			}
			.submit_wrap input[type="submit"],
			.submit_wrap input[type="button"].back{
			}

/*----------------------------------------
確認画面
------------------------------------------*/
#formWrap {
}
#formWrap table {
	font-size: 100%;
	text-align: left;
	line-height: 150%;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	border-collapse: collapse;
}
#formWrap th, #formWrap td {
	text-align: left;
	vertical-align: top;
	padding: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	line-height: 1.8em;
}
#formWrap table tr th {
	width: 30%;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding: 15px;
	text-align: left;
}
#formWrap table tr td ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	line-height: 150%;
}
#formWrap table tr td ul li {
	margin-bottom: 5px;
	padding-bottom: 5px;
	/*border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;*/
}

.mfp_buttons {
	margin-top: 30px;
	margin-bottom: 30px;
}
.back_bt {
	margin-top: 30px;
	display: block;
}
input[type="image"] {
}
#contents section .caption {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	font-size: 100%;
	line-height: 1.8em;
}
#contents section .caption dt {
	font-size: 100%;
	font-weight: bold;
	text-align: center;
	background-color: #CCCCFF;
	padding-top: 8px;
	padding-bottom: 8px;
}


