@charset "UTF-8";

/*--------------------------------------------------------------------------
　レイアウト
--------------------------------------------------------------------------*/

/*　全体
----------------------------------------*/
#pg_main_cont {
	background:#fff;
	color:#555;
	line-height: 1.5;
	width: 95%;
	margin: 50px auto;
}

#pg_main_cont:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
form {
    font-size: 18px;
}
input[type="text"],input[type="email"], textarea{
    box-sizing: border-box;
    resize:vertical;
    width:100%;
    vertical-align: bottom;
    border: #bbb 1px solid;
    border-radius: 8px;
    padding: 10px 5px;
    transition: .3s;
    font-size: 100%;
}
input[type="text"]:hover,input[type="email"]:hover, textarea:hover{
    background: #edf4ff;
    border: 1px solid #4881d9;
}
input[type="text"],input[type="email"],textarea,select {
    outline: none;
}
input[type="text"]:focus,input[type="email"]:focus, textarea:focus{
    background: #edf4ff;
    border: 1px solid #4881d9;
}
textarea {
    min-height: 15em;
}
select {
    padding: 15px 35px 15px 10px;
    border-radius: 8px;
    background-color: #fff;
    border: #bbb 1px solid;
    transition: .3s;
    position: relative;
    font-size: 100%;
    width: 100%;
    margin: 5px 0;
}
select:hover,select:focus {
    background: #edf4ff;
    border: 1px solid #4881d9;
}
select option {
    background: #fff;
}
input[type="radio"] , input[type="checkbox"] {
    /* display: none; */
    width: 0;
    /* height: 0; */
    opacity: 0;
    position: absolute;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
    position: relative;
    display: inline-flex;
    min-height: 60px;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px 15px 35px;
    cursor: pointer;
    background: #fff;
    border: #bbb 1px solid;
    border-radius: 8px;
    margin: 10px 5px;
    transition: .3s;
    width: 100%;
    margin: 5px 0;
}
input[type="radio"]:checked + label,
input[type="radio"] + label:hover ,
input[type="checkbox"]:checked + label,
input[type="checkbox"] + label:hover {
    background: #edf4ff;
    border: 1px solid #4881d9;
}
input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
    left: 8px;
    width: 16px;
    height: 16px;
    background: #eee;
    border: 1px solid #bebebe;
}
input[type="radio"]:checked + label::after,
input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 12px;
}
input[type="radio"] + label::before {
    border-radius: 100%;
}
input[type="radio"]:checked + label::after {
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 100%;
}
input[type="checkbox"] + label::before {
    border-radius: 2px;
}
input[type="checkbox"]:checked + label::after {
    width: 7px;
    height: 11px;
    top: -4px;
    left: 13px;
    border-right: 3px solid #3498db;
    border-bottom: 3px solid #3498db;
    transform: rotate(45deg);
}
input[type="radio"] + label > input[type="text"],
input[type="checkbox"] + label  > input[type="text"] {
    box-sizing: border-box;
    margin: 0 0 0 15px;
    width: 300px;
    max-width: calc(100% - 4em);
}
input[type="radio"] + label > input[type="text"]:hover,
input[type="checkbox"] + label  > input[type="text"]:hover{
    background: #fff;
}
input[type="radio"] + label > input[type="text"]:focus,
input[type="checkbox"] + label > input[type="text"]:focus {
    background: #fff;
}
input[type="submit"], input[type="button"] {
    font-size: 18px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
    margin: 10px 0;
}
.permissionWrap {
    text-align: center;
    margin-top: 30px;
}
input#permission + label {
    width: 100%;
    box-sizing: border-box;
    max-width: 520px;
    margin: auto;
    font-size: 14px;
}
.permissionWrap p{
    margin-bottom: 20px;
    font-size: 14px;
}
.permissionWrap p a{
    color: #004097;
    text-decoration: underline;
}
.permissionWrap p a:hover {
    text-decoration: none;
}

/*　本文
----------------------------------------*/
#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_cont table{
	width:100%;
	margin-top:20px;
	border-collapse: collapse;
}

#form_cont th,#form_cont td{
	display: block;
	padding: 5%;
	width: 100%;
	padding: 2% 0!important;
}

#form_cont th{
	font-weight:bold;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

.form_btn{
	padding-top:20px;
	text-align: center;
	font-size: 16px;
}
.indes{
	color:#ff0101;
	font-size:90%;
	font-weight:bold;
}
.check_tbl{width: 100%;}
.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;
}
