@charset "UTF-8";

/*PC*/
@media screen and (min-width:768px) {
/*--------------------------------------------------------------------------
　レイアウト
--------------------------------------------------------------------------*/

/*　全体
----------------------------------------*/
	#pg_main_cont {
		max-width: 1280px;
		margin: 30px auto;
		padding:30px;
		background:#fff;
		border: 1px solid #CDCDCD;
		color:#555;
	}

	#pg_main_cont:after {
		content: "";
		display: block;
		clear: both;
		height: 1px;
		overflow: hidden;
	}

	input[type="text"], textarea{
		box-sizing: border-box;
		resize:vertical;
		width:100%;
		vertical-align: bottom;
		border: #bbb 1px solid;
		border-radius: 5px;
		padding: 5px;
		margin: 3px 0;
	}
	input[type="text"],textarea,select {
		outline: none;
	}
	input[type="text"]:focus, textarea:focus{
		background: #ffffdd;
	}
	input[type="radio"] , input[type="checkbox"] {
	/* display: none; */
	width: 0;
	/* height: 0; */
	opacity: 0;
	position: absolute;
	}
	label.radio , label.checkbox {
	display: inline-block;
	position: relative;
	margin: 5px 5px;
	padding: 12px 8px 12px 30px;
	cursor: pointer;
	border: #bbb 1px solid;
	border-radius: 8px;
	width: 47%;
	}
	label.radio::before {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 8px;
		width: 16px;
		height: 16px;
		background: #eee;
		border: 1px solid #bebebe;
		border-radius: 100%;
	}
	input[type="radio"]:checked + label {
		background: #edf4ff;
		border: 1px solid #4881d9;
	}
	input[type="radio"]:checked + label::after {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 12px;
		width: 8px;
		height: 8px;
		background: #3498db;
		border-radius: 100%;
	}
	label.checkbox::before {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 8px;
		width: 15px;
		height: 16px;
		background: #eee;
		border: 1px solid #bebebe;
		border-radius: 2px;
	}
	input[type="checkbox"]:checked + label {
		background: #edf4ff;
		border: 1px solid #4881d9;
	}
	input[type="checkbox"]:checked + label::after {
		position: absolute;
		top: 50%;
		left: 13px;
		display: block;
		margin-top: -5px;
		width: 5px;
		height: 9px;
		border-right: 3px solid #3498db;
		border-bottom: 3px solid #3498db;
		content: '';
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/*　本文
	----------------------------------------*/
	#pg_main_cont h2{
		font-size:150%;
		padding-bottom:10px;
		font-weight:bold;
		border-bottom:1px dashed #CDCDCD;
		margin-bottom:10px;
	}

	#form_cont{
		font-size:120%;
		padding:0 50px;
	}

	.form_tbl{
		width:100%;
		margin-top:20px;
		border-collapse: collapse;
	}

	.form_tbl th,.form_tbl td,
	.check_tbl th,.check_tbl td{
		padding:15px 10px;
		border:1px solid #ccc;
		vertical-align: middle;
	}

	.form_tbl th,
	.check_tbl th{
		background:#f2f2f2;
		font-weight:bold;
		text-align: center;
		width: 30%;
	}

	.form_btn{
		padding-top:20px;
		text-align: center;
		font-size: 16px;
	}
	.form_btn input{
		width: 180px;
		height: 40px;
	}
	.form_tbl .place input{
		width:400px;
	}

	.form_tbl .tell input{
		width:200px;
	}

	.indes{
		color:#ff0101;
		font-size:90%;
		font-weight:bold;
	}

	.notice{
		font-size:80%;
		font-weight:bold;
	}

	.check_tbl{
		width:80%;
		margin:20px auto 0 auto;
		border-collapse: collapse;
	}

	.check_btn{
		padding-top:20px;
		text-align: center;
		font-size: 16px;
	}
	.check_btn input{
		width:180px;
		height:40px;
	}

	.explain{
		padding-top:10px;
		font-weight:bold;
		width:700px;
		margin:0 auto;
	}

	.back_btn{
		padding-top:10px;
		text-align:center;
	}
	.pg_section{
		padding: 10px 0 0 20px;
		font-size: 13px;
	}

	.pg_section ul{
		list-style:square;
		margin-bottom:20px;
	}
	.pg_section li{
		padding-top:10px;
	}
	#notesCont {
		text-align:center;
		box-sizing: border-box;
		width: 500px;
		margin: 15px auto 5px auto;
	}
	#notesCont .indes{
		margin-top:5px;
		font-size:15px;
	}
	.button {
		display: inline-block;
		text-align: center;
		text-decoration: none !important;
		outline: none;
		font-weight: bold;
		position: relative;
		background-color: #e02d2d;
		border-radius: 4px;
		color: #fff !important;
		box-shadow: 0 2px 0 #b13b3b;
		text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
		padding: 10px 20px;
	}
	.button:hover {
		background-color: #e43a3a;
		box-shadow: 0 2px 0 #c34d4d;
	}
	.button:active {
		top: 2px;
		box-shadow: none;
	}
}


/*SP*/
@media screen and (max-width:767px) {
/*--------------------------------------------------------------------------
　レイアウト
--------------------------------------------------------------------------*/

/*　全体
----------------------------------------*/
	#pg_main_cont * {
		box-sizing:border-box;
	/*	width: 100%;*/
	}
	#pg_main_cont {
		background:#fff;
		color:#555;
		line-height: 1.5;
		width: 95%;
		margin: 10px auto;
	}

	#pg_main_cont:after {
		content: "";
		display: block;
		clear: both;
		height: 1px;
		overflow: hidden;
	}

	input[type="text"], textarea{
		box-sizing: border-box;
		resize:vertical;
		width:100%;
		font-size: 120%;
		vertical-align: bottom;
		border: #bbb 1px solid;
		border-radius: 5px;
		padding: 3px;
		margin: 3px 0;
	}
	input[type="text"],textarea,select {
		outline: none;
	}
	input[type="text"]:focus, textarea:focus{
		background: #ffffdd;
	}
	input[type="radio"] , input[type="checkbox"] {
	/* display: none; */
	width: 0;
	/* height: 0; */
	opacity: 0;
	position: absolute;
	}
	label.radio {
	position: relative;
	margin: 7px 0;
	display: block;
	align-items: center;
	padding: 16px 10px 16px 35px;
	cursor: pointer;
	border: #ddd 1px solid;
	border-radius: 8px;
	width: 100%;
	}
	label.radio::before {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 8px;
		width: 19px;
		height: 19px;
		background: #eee;
		border: 1px solid #bebebe;
		border-radius: 100%;
	}
	input[type="radio"]:checked + label {
		background: #edf4ff;
		border: 1px solid #4881d9;
	}
	input[type="radio"]:checked + label::after {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 12px;
		width: 11px;
		height: 11px;
		background: #3498db;
		border-radius: 100%;
	}
	label.checkbox {
	position: relative;
	display: inline-block;
	padding: 16px 10px 16px 35px;
	cursor: pointer;
	border: #ddd 1px solid;
	border-radius: 8px;
	width: 100% !important;
	}
	label.checkbox::before {
		position: absolute;
		content: '';
		top: 0;
		bottom: 0;
		margin: auto;
		left: 8px;
		width: 19px;
		height: 19px;
		background: #eee;
		border: 1px solid #bebebe;
		border-radius: 2px;
	}
	input[type="checkbox"]:checked + label {
		background: #edf4ff;
		border: 1px solid #4881d9;
	}
	input[type="checkbox"]:checked + label::after {
		position: absolute;
		top: 50%;
		left: 14px;
		display: block;
		margin-top: -7px;
		width: 7px;
		height: 11px;
		border-right: 3px solid #3498db;
		border-bottom: 3px solid #3498db;
		content: '';
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/*　本文
	----------------------------------------*/
	#pg_main_cont h2{
		font-size:150%;
		padding-bottom:10px;
		font-weight:bold;
		border-bottom:1px dashed #CDCDCD;
		margin-bottom:10px;
	}

	#form_cont{font-size: 16px;}

	.form_tbl{
		width:100%;
		margin-top:20px;
		border-collapse: collapse;
	}

	.form_tbl th,.form_tbl td,
	.check_tbl th,.check_tbl td{
		display: block;
		padding: 5%;
		width: 100%;
		padding: 2% 0!important;
	}

	.form_tbl th,
	.check_tbl th{
		background:#f2f2f2;
		font-weight:bold;
		text-align: center;
	}

	.form_btn{
		padding-top:20px;
		text-align: center;
		font-size: 16px;
	}
	.form_btn input{
		width: 180px;
		height: 40px;
	}
	.form_tbl .place input{
		width:400px;
	}

	.form_tbl .tell input{
		width:200px;
	}

	.indes{
		color:#ff0101;
		font-size:90%;
		font-weight:bold;
	}

	.notice{
		font-size:80%;
		font-weight:bold;
	}

	.check_tbl{width: 100%;}

	.check_btn{
	}
	input[type="submit"]{
		width: 90%;
		height: 50px;
		margin: 10px auto;
		display: block;
		font-size: 20px;
	}

	.explain{
		padding-top:10px;
		font-weight:bold;
		margin-bottom: 15px;
	}

	.back_btn{
		padding-top:10px;
		text-align:center;
	}
	.pg_section{
		padding: 10px 0 0 20px;
		font-size: 13px;
	}

	.pg_section ul{
		list-style:square;
		margin-bottom:20px;
	}
	.pg_section li{
		padding-top:10px;
	}
	#notesCont {
		text-align:center;
		box-sizing: border-box;
		width: 500px;
		margin: 15px auto 5px auto;
	}
	#notesCont .indes{
		margin-top:5px;
		font-size:15px;
	}
	.button {
		display: inline-block;
		text-align: center;
		text-decoration: none !important;
		outline: none;
		font-weight: bold;
		position: relative;
		background-color: #e02d2d;
		border-radius: 4px;
		color: #fff !important;
		box-shadow: 0 2px 0 #b13b3b;
		text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
		padding: 10px 20px;
	}
	.button:hover {
		background-color: #e43a3a;
		box-shadow: 0 2px 0 #c34d4d;
	}
	.button:active {
		top: 2px;
		box-shadow: none;
	}
}