
/* =========================================================
■ ----お問合せページ
========================================================= */

/**----------ボックスー---------**/

.cbox{
	display: inline-block;
	max-width: 330px;
	min-height: 100px;
	margin:0px 10px 0px 10px;
	text-align:left;
	vertical-align:top;
}
@media (max-width: 680px) {
	.cbox{
		width: 165px;
		margin:0px 2px 0px 2px;
	}
}
@media (max-width: 370px) {
	.cbox{
		width: 145px;
	}
}
	.cbox img {
		width: 100%;
		height: auto;
	}
@media (max-width: 680px) {
	.cbox img{
		width: 95%;
	}
}

/**----------アコーディオンー---------**/

#flow {
	display:block;
	width: 100%;
	border: 1px solid #bbb;
	margin-top: 10%;
}
#flow:hover {
	cursor: pointer;
	transition: all 0.3s ease 0s;
	background: #f2f2f2;
}
#flow dt{
	width: 90%;
	margin: 10% auto;
	text-align:center;
}
#flow dd{
	width: 90%;
	margin: 0 auto 10%;
	display:none;
	line-height:1.4;
}

/* =========================================================
■ お電話でのお問合せ
========================================================= */
/**----------文字の大きさ---------**/

.telcon {
	margin: 0 auto;
	width: 90%;
	padding-top:50px;
}


/* =========================================================
■ お問合せフォーム
========================================================= */
/**----------デフォルトスタイルを削除---------**/
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}



/**----------全体---------**/

.form_box {
	width:98%;
	margin:40px auto;
	line-height:20px;
	text-align :left;
}

.form_box p {
	margin-bottom: 1.2em;
}

.form_box .section {
	width: 100%;
	max-width:860px;
	margin:0 auto;
}
@media (max-width: 414px) {
	.form_box .section{
		width: 100%;
	}
}

.form_box .section:after {
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	position: relative;
	overflow: hidden;
}
.form_box .section .cell {
	width: 48%;
	text-align: left;
	display: block;
	float: left;
}

.form_box .section .cell-long {
	width: 96%;
	text-align: left;
	display: block;
	float: none;
}
.form_box .section .cell + .cell {
	float: right;
}
.form_box .section p + input {
	margin-top: 8px;
}
.form_box .section + .section {
	margin-top: 15px;
}
@media screen and (max-width: 768px) {
	.form_box .section .cell {
		width: 96%;
		text-align: left;
		display: block;
		float: none;

	}
	.form_box .section .cell + .cell {
		float: none;
	}
}
/**----------大項目---------**/
h5 {
	margin: 50px auto 0;
	width  : 98%;
	box-sizing:border-box;
	position: relative;
	padding: .7em .75em;
	background-color: #f0f0f0;
	border-radius: 6px;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, .1) inset;
	margin-bottom:20px;
	font-size: 120%;
}
h5::after {
	position: absolute;
	top: 100%;
	left: 80px;
	content: '';
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top: 30px solid #f0f0f0;
}
h5 span{
	font-size: 0.8em;
}

/**----------必須マーク---------**/
.marker_water {
	margin-left:10px;
	font-size:70%;
	text-align:center;
	padding:2px 6px;
	color:#fff;
	background-color:#49a9d4;
	border-radius:5px;
}

/**----------inputやtextareaのスタイル---------**/

input,
textarea,
select {
	margin-top: 1em;
	padding: .5em;
}
input {
	height: 50px;
}

.custom input[type="text"]{
	box-sizing: border-box;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:16px;
	padding:10px 20px;
	line-height:160%;
	max-width: 100%;
	width: 100%;

}
.custom textarea {
	outline: none;
	box-sizing:border-box;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:16px;
	padding:10px 20px;
	line-height:160%;
	max-width: 100%;
	width: 100%;
}
.custom input[type="text"]:focus,
.custom textarea:focus {
	box-shadow: 0 0 7px #49a9d4;
	border: 1px solid #49a9d4;
}
select{
	height: 50px;
	box-sizing: border-box;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	font-size:16px;
	padding:10px 20px;
	line-height:160%;
	max-width: 100%;
	width: 100%;
	}
/**----------ラジオボタン---------**/

.radio1 input{
	    display: none;
	}
	.radio1 label{
	    display: inline-block;
	    position: relative;
	    cursor: pointer;
	    margin-left: 20px;
	    padding: 10px 40px 10px 30px;
	    border-radius: 2px;
	    text-align: center;
	    line-height: 1;
	}
	.radio1 label:before{
	    position: absolute;
	    content: "";
	    top: 50%;
	    left: -10px;
	    width: 20px;
	    height: 20px;
	    margin-top: -10px;
	    background: #bdc3c7;
	    border-radius: 50%;
		
	}

	.radio1 input[type="radio"]:checked + label:after {
	    position: absolute;
	    content: "";
	    top: 50%;
	    left: -4px;
	    width: 8px;
	    height: 8px;
	    margin-top: -4px;
	    border-radius: 50%;
	    background: #950000;
	}

@media screen and (max-width: 768px) {
	.radio1 label{
	    margin-left: 15px;
	    padding: 10px 20px 10px 15px;
	}
}
@media screen and (max-width: 414px) {
	.radio1 label{
	    margin-left: 10px;
	    padding: 10px 10px 10px 15px;
	}left: 11px;
}
/**----------チェックボックス---------**/
input[type=checkbox] {
	display: none;
}
	.kou .checkbox {
  		width:240px;
	}
	.kou_long .checkbox {
  		width:47%;
	}
	#volume .checkbox {
  		width:450px;
	}
	#site .checkbox {
  		width:140px;
	}
	.checkbox {
	  box-sizing: border-box;
	  -webkit-transition: background-color 0.2s linear;
	  transition: background-color 0.2s linear;
	  position: relative;
	  display: inline-block;
	  margin: 10px 10px 6px 0;
	  padding: 20px 0px 20px 47px;
	  border-radius: 8px;
	  background-color: #f6f7f8;
	  vertical-align: middle;
	  cursor: pointer;
	}
	.checkbox:hover {
	  background-color: #87cefa;
	}
	.checkbox:hover:after {
	  border-color: #1a1a1a;
	}
	.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: 16px;
	  height: 16px;
	  border: 2px solid #1a1a1a;
	  border-radius: 3px;
	  content: '';
	}

	.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: 5px;
	  height: 9px;
	  border-right: 3px solid #950000;
	  border-bottom: 3px solid #950000;
	  content: '';
	  opacity: 0;
	  -webkit-transform: rotate(45deg);
	  -ms-transform: rotate(45deg);
	  transform: rotate(45deg);			
	}
	form input[type=checkbox]:checked + .checkbox:before {
	  opacity: 1;
	}
@media screen and (max-width: 768px) {
	.kou .checkbox {
  		width:190px;
	}
	#site .checkbox {
  		width:100px;
	}
	.checkbox {
	  margin: 10px 5px 6px 0;
	  padding: 20px 0px 20px 37px;

	}
}
@media screen and (max-width: 480px) {
	.kou .checkbox {
  		width:175px;
	}
}
@media screen and (max-width: 414px) {
	
	#site .checkbox {
  		width:79px;
	}
	.checkbox {
	  margin: 10px 5px 6px 0;
	  padding: 20px 0px 20px 27px;
	}
	.checkbox:after {
	  left: 5px;
	}

	.checkbox:before {
	  left: 11px;
	}
	.kou .checkbox {
  		width:160px;
		font-size:13.5px;
	}
}


/**----------参照ボタン---------**/
input[type=file] {
	padding:5px 10px;
	font-size: 14px;
}


/**----------送信ボタン---------**/

.button_01 input {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	outline: none;
	background-color: #333;
	color: #fff;
	font-size:110%;
	
}
.button_01 input:before,
.button_01 input:after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button_01 input,
.button_01 input:before,
.button_01 input:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button_01 input:hover {
	background-color: #59b1eb;
	color: #fff;
}


/* ------------------------------------------------
	IME設定
------------------------------------------------ */
input#NAME1 { ime-mode: active; }
input#KANA1 { ime-mode: active; }
input#MAIL1 { ime-mode: disabled; }
input#MAIL2 { ime-mode: disabled; }
input#TEL1 { ime-mode: disabled; }
input#ADDRNO { ime-mode: disabled; }
input#B_ADDR1 { ime-mode: active; }
input#B_ADDR2 { ime-mode: active; }
input#AGE { ime-mode: disabled; }
input#CMNT { ime-mode: active; }


/* =========================================================
■ 送信ボタン
========================================================= */
/**----------送信---------**/
.send{
	width: 100%;
	margin: 50px auto 100px auto;
		text-align: center;
}
.send a {
	display: inline-block;
	text-decoration: none;
	outline: none;
	width:250px;
	margin:20px auto;
	text-align:center;
	font-size:17.5px;
	padding:10px;
	background:#00184A;
	color:#fff;
	transition: all .3s;
	border:2px solid #00184A;
}

.send a:hover {
	opacity:0.7;
	color: #fff;
}



.send input {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	outline: none;
	background-color: #333;
	color: #fff;
	font-size:110%;
	
}


@media (max-width: 480px) {
	.send a {
		font-size:15px;
		width:200px;
	}
}

/**----------問い合わせcgi表---------**/
table.scr_tbl_cgicmnt{
	width: 98%;
	max-width: 740px;
	height:500px;
	margin: 20px auto;
	border: 1px solid #ccc; 
	border-collapse: separate;
	border-spacing:2px;
	line-height:150%;
}
table.scr_tbl_cgicmnt td{
	padding-top:70px;
	text-align:center;
	vertical-align:top;
}
table.scr_tbl_cgicmnt td a{
	text-decoration:none;
	color:#00f;
}

