@charset "UTF-8";

/*--------------------------------------------------------------------------
　レイアウト
--------------------------------------------------------------------------*/

/*　全体
----------------------------------------*/
#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{
    padding: 3px;
    box-sizing: border-box;
    resize:vertical;
    width:100%;
    vertical-align: bottom;
}
input[type="radio"] , input[type="checkbox"] {
  display: none;
}
label.radio {
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 35px;
  cursor: pointer;
  border: #ddd 1px solid;
  border-radius: 8px;
  width: 48%;
  margin-right: auto;
}
label.radio::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;
    width: 14px;
    height: 14px;
    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: 11px;
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 100%;
}
.label_align {
	display: flex!important;
    flex-wrap: wrap;
}
label.checkbox {
  position: relative;
  display: inline-block;
  padding: 5px 5px 5px 35px;
  cursor: pointer;
  border: #ddd 1px solid;
  border-radius: 8px;
}
label.checkbox::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;
    width: 14px;
    height: 14px;
    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: 12px;
    display: block;
    margin-top: -7px;
    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;
}

.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;
}
