@charset "utf-8";

/* --------------------------------------------
   ENTRY
------------------------------------------------ */

@media screen and (max-width:480px){
	/* 問い合わせフォームは固定ボタン廃止 */
	.global-nav{
		display:none !important;
	}
}



/* フォーム
------------------------ */
.form-control {
	display: inline-block;
	width: 100%;
	height: 34px;
	padding: 3px 10px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555555;
	background:#fff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}
@media screen and (max-width:800px){
	.form-control{
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}


/* ラジオボタン
-------------------- */
.radio-category {
	background:#eee;
	padding:4px 10px;
	margin-top:5px;
	font-size:0.8em;
}
.radio {
  display: inline-block;
  padding-right: 20px;
  font-size: 18px;
  line-height: 30px;
  cursor: pointer;
}
.radio:hover .inner {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: .5;
}
.radio input {
  height: 1px;
  width: 1px;
  opacity: 0;
}
.radio input:checked + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.radio input:checked + .outer {
  border: 3px solid #f08b3b;
}
.radio input:focus + .outer .inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  background-color: #e67012;
}
.radio .outer {
  height: 16px;
  width: 16px;
  display: block;
  float: left;
  margin: 5px 2px 5px 10px;
  border: 3px solid #0c70b4;
  border-radius: 50%;
  background-color: #fff;
}
.radio .inner {
  transition: all 0.25s ease-in-out;
  height: 12px;
  width: 12px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin: 2px;
  border-radius: 50%;
  background-color: #f08b3b;
  opacity: 0;
}




/* 送信ボタン
-------------------- */
.form-submit-box{
	text-align:center;
}
.submit-btn{
	-webkit-tap-highlight-color: transparent;
	display: inline-flex;
	flex-wrap: nowrap;
	margin: 0;
	padding: 8px 50px;
	border: 1px solid #00a99d;
	border-radius: 2em;
	align-items: center;
	color: #fff;
	background-color: #00a99d;
	font-weight: 400;
	line-height: 1.6;
	text-align: left;
	cursor: pointer;
	font-size: 20px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease,color .15s ease,border-color .15s ease;
}
.submit-btn:hover{
	background-color: #00cabb;
}


/* 戻るボタン
-------------------- */
.back-btn-block{
	padding:5px 0 ;
}
.back-btn{
	-webkit-tap-highlight-color: transparent;
	display: inline-flex;
	flex-wrap: nowrap;
	margin: 0;
	padding: 3px 20px;
	border: 1px solid #aaa;
	border-radius: 3px;
	align-items: center;
	color: #333;
	background-color: #eee;
	line-height: 1.6;
	text-align: left;
	cursor: pointer;
	font-size: 18px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color .15s ease,color .15s ease,border-color .15s ease;
}
.back-btn:hover{
	background-color: #ccc;
}



/* ---------------------------------------
  問い合わせステップ
------------------------------------------ */
.step-flow {
	font-size: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 1em;
	padding: 0;
}
.step-flow > li {
	position: relative;
	display: block;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	text-overflow: ellipsis;
	color: #b0bec5;
	 -ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	     flex: 1;
}
.step-flow > li .bubble {
	display: block;
	width: 20px;
	height: 20px;
	margin: 0 auto 0.5em;
	border-radius: 1000px;
	background-color: #b0bec5;
}
.step-flow > li .bubble::after,
.step-flow > li .bubble::before {
	position: absolute;
	top: 9px;
	display: block;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #b0bec5;
}
.step-flow > li.completed,
.step-flow > li.completed .bubble {
	color: #00acc1;
}
.step-flow > li.completed .bubble,
.step-flow > li.completed .bubble::after,
.step-flow > li.completed .bubble::before {
	background-color: #4dd0e1;
}
.step-flow > li:last-child .bubble::after,
.step-flow > li:last-child .bubble::before {
	width: 0%;
	margin-right: 50%;
}
.step-flow > li.active,
.step-flow > li.active .bubble {
	font-weight: bold;
	color: #f57c00;
}
.step-flow > li.active .bubble,
.step-flow > li.active .bubble::after,
.step-flow > li.active .bubble::before {
	background-color: #fb8c00;
}

@media screen and (max-width:800px){
	.step-flow > li{
		font-size:0.8em;
	}
}


/* 申込フォーム
-------------------- */
.entry-page-block{

}
.entry-box {
	width:900px;
	background:#fff;
	border-radius:5px;
	margin:0 auto;
	margin-bottom:30px;
}
.entry-box-inner {
	padding:20px;
}
.entry-block h2{
	font-family: "新ゴ M", "Shin Go Medium", "Arial Black";
	text-align:center;
	font-size:24px;
	color:#333;
	padding:0 0 8px  0;
	border-bottom:solid 3px #ccc;
	border-radius:3px;
	margin-bottom:25px;
}
.entry-block h3{
	font-family: "新ゴ DB", "Shin Go DeBold", "Arial Black";
	padding:8px 0px;
	border-bottom:solid 2px #ccc;
	margin-bottom:15px;
	color:#333;
	font-size:20px;
}
.entry-comment{
	font-size:16px;
	margin-bottom:30px;
}
.entry-hissu{
	color:#c00;
}

@media screen and (max-width:800px){
	.entry-box {
		width:100%;
	}

}

/* エラー
-------------------- */
.form-alert-warning{
	background:#fff0f0;
	width: 900px;
	margin:0 auto;
	padding:0;
	margin-bottom:30px;
	border-radius:5px;
}
.form-alert-warning-inner{
	padding:8px 10px;
	color:#cc0000;
	text-align:center;
}
@media screen and (max-width:800px){
	.form-alert-warning{
			width:100%;
	}
}

/* フォームテーブル
-------------------------- */
.entry-block .form-table{
	width:100%;
	border-top:solid 1px #ddd;
}
.entry-block .form-table th,
.entry-block .form-table td{
	padding:10px 8px;
	vertical-align:middle;
	border-bottom:solid 1px #ddd;
}
.entry-block .form-table th{
	width:180px;
	background:#eee;
	text-align:left;
}
.entry-block .form-table td .name,
.entry-block .form-table td .yomi,
.entry-block .form-table td .tel{
	width:50%;
}
.entry-block .form-table td .age{
	width:50px;
}
.entry-block .form-table td .shikaku{
	width:50%;
}
.entry-block .form-table td .email{
	width:75%;
}
.entry-block .form-table td .memo{
	width:75%;
	height:200px;
}
@media screen and (max-width:800px){
	.entry-block .form-table{
	}
	.entry-block .form-table th,
	.entry-block .form-table td{
		display:block;
		width:100%;
		padding:5px 8px;
		vertical-align:middle;
		border-bottom:solid 1px #ddd;
		box-sizing: border-box;
	}
	.entry-block .form-table th{
		width:100%;
		font-size:0.9em;
	}
	.entry-block .form-table td{
		padding:5px 0px 15px 0;
	}
	.entry-block .form-table td .name,
	.entry-block .form-table td .yomi,
	.entry-block .form-table td .tel,
	.entry-block .form-table td .email{
		width:100%;
	}
	.entry-block .form-table td .memo{
		width:100%;
		height:150px;
	}

}


label.check{
	margin-right:12px;
	display:inline-block;
}
label.check input[type="checkbox"]{
	inline-size:16px;
	block-size: 16px;
}






.entry-block .confirm-table{

}
.entry-block .confirm-table td{
	color:#0698a5;
}

.entry-block .form_error{
	background:#fff0f0;
	color:#cc0000;
	font-size:14px;
	padding:8px 10px;
	margin-top:5px;
}
.entry-tyui{
	font-size:14px;
	line-height:1.5;
	margin-top:15px;
	color:#555;
	background:#eee;
	padding:8px 10px;
	text-indent:-1em;
	padding-left:1.5em;
}

.privacy-policy{

}
@media screen and (max-width:800px){
	.privacy-policy{
		font-size:0.8em;
	}
}
/* ---------------------------------------------------- */



/* 送信完了画面
-------------------- */
.thanks-message-box{
	font-size:30px;
	color:#080;
	text-align:center;
}
.thanks-message-box i{
	font-size:60px;
}















@media screen and (max-width:800px){



	.entry-page-block{
		padding:30px 10px;
	}
	.entry-block {
		width:100%;
	}
	.entry-block-inner {
		padding:10px;
	}
	.entry-block h2{
		font-size:0.8em;
	}
	.entry-comment{
		font-size:14px;
		margin-bottom:15px;
	}
	.entry-hissu{
	}
	.entry-block h3{
	}


	.radio-outline{
		padding:5px;
	}
	.radio-category {
		font-size:0.9em;
	}


	.entry-block .privacy-box{
		font-size:14px;
	}


	.entry-block .form_error{
		background:#fff0f0;
		color:#cc0000;
		font-size:14px;
		padding:8px 10px;
		margin-top:5px;
	}

	.entry-tyui{
		font-size:12px;
	}




}
