@charset "UTF-8";

/*common上書き
---------------------------------------------------------- */
.ttl01 {
	padding-top:150px;
}

@media only screen and (max-width: 829px) {
	.ttl01 {
		width:90%;
		padding-top:116px;
	}
}


/*ローカルナビ + ttl01
---------------------------------------------------------- */

.sub_cate_hd {
	clear: both;
	width:800px;
	margin:0 auto;
	padding-top:80px;
	overflow:hidden;
}

.sub_cate_hd .lnav{
	float: right;
	max-width:40%;
	font-size:108%;
}

.sub_cate_hd .lnav .lnav_ttl{
	display: none;
}

.sub_cate_hd .lnav ul{
	margin-bottom:-20px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
}

.sub_cate_hd .lnav li{
	width:50%;
	margin-bottom:20px;
	padding-left:15px;
	list-style: none;
}

.sub_cate_hd .ttl01{
	float: left;
	max-width:60%;
	padding-top:0;
	text-align: left;
}

@media only screen and (mIN-width: 830px) {
	.sub_cate_hd .lnav_link {
		display: block !important;
	}
}


@media only screen and (max-width: 829px) {
	.sub_cate_hd {
		width:100%;
		padding-top:0;
	}

	.sub_cate_hd .lnav{
		float: none;
		max-width:100%;
		margin-bottom:75px;
		padding: 10px 5%;
		font-size:108%;
		background-color:#ececec;
	}


	.sub_cate_hd .lnav .lnav_ttl{
		display: table;
		width:100%;
		border:1px solid #c1c1c1;
	}

	.sub_cate_hd .lnav .lnav_ttl span{
		display: table-cell;
		padding:10px 15px;
		background-color:#fff;
	}

	.sub_cate_hd .lnav .lnav_ttl::after{
		display:table-cell;
		width:8%;
		min-width:35px;
		content:" ";
		background:#c1c1c1 url(../img/common/lnav_toggle_icon.png) center center no-repeat;
		background-size: 15px auto;
		-webkit-background-size: 15px auto;
		-moz-background-size: 15px auto;
		-o-background-size: 15px auto;
	}

	.sub_cate_hd .lnav_link {
		display: none;
	}


	.sub_cate_hd .lnav ul{
		display: block;
		margin-bottom:10px;
		padding: 15px 0;
		background-color:#fff;
		border:1px solid #c1c1c1;
		border-top: none;
	}

	.sub_cate_hd .lnav li{
		width:100%;
		margin-bottom:0;
		padding-left:0;
	}

	.sub_cate_hd .lnav li a{
		display:block;
		padding: 15px 15px;
		color:#333333;
	}

	.sub_cate_hd .lnav li ul{
		display: none;
	}

	.sub_cate_hd .lnav select{
		display: block;
		width:100%;
	}

	/*.-bc-pseudo-select {
		width:100%;
		display:block;
		padding:5px;
		background-color:#fff;
		border:1px solid #c1c1c1;
	}*/

	.sub_cate_hd .lnav option{
		background-color:#fff;
	}

	.sub_cate_hd .ttl01{
		float: none;
		max-width:90%;
		margin:0 auto;
		text-align: center;
	}
}


/*container
---------------------------------------------------------- */

.container {
	max-width:980px;
	margin: 0 auto;
	padding: 80px 0 120px 0;
}

.container_s {
	max-width:800px;
	margin: 0 auto;
	padding: 65px 0 120px 0;
}

.container_col_2 {
	display: flex;
	width: 1000px;
	margin: 0 auto;
	justify-content: space-between;
}

.container_col_2 .contents {
	width: 665px;
}

.container_col_2 .sub_nav {
	width: 270px;
}

.ttl01 + .container,
.ttl01 + .container_s {
	padding-top:0;
}

main .ttl01 + .container,
main .ttl01 + .container_s {
	padding-bottom:0;
}

@media only screen and (max-width: 829px) {
	.container,
	.container_s {
		width:90%;
		max-width:90%;
		padding: 50px 0 100px 0;
	}

	.container_col_2 {
		display: block;
		width: 100%;
		padding: 0 0 50px;
	}

	.container_col_2 .contents {
		width: 90%;
		margin: 0 auto 40px;
	}

	.container_col_2 .sub_nav {
		width: 100%;
	}

	main .container:first-child,
	main .container_s:first-child {
		padding-top:0;
	}
}

.container_gray {
	width:100%;
	min-width:980px;
	margin: 0 auto;
	padding: 80px 0;
	background-color:#f7f7f7;
}

.container + .container_gray {
	margin-top:-40px;
}

@media only screen and (max-width: 829px) {
	.container_gray {
		min-width:100%;
		padding: 50px 0;
	}

	.container + .container_gray {
		margin-top:-50px;
	}
}

/*btn
---------------------------------------------------------- */

/*色設定*/

.btn_blue input,
.btn_blue a{
	width:100%;
	padding: 8px 20px;
	color:#fff;
	background-color:#30a8fb;
	text-align: center;
	font-size: 123.1%;
	line-height:1.4;
	border: none;
	border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari,Google Chrome用 */
	-moz-border-radius: 5px; /* Firefox用 */
	text-decoration:none;
}

.btn_blue input:hover,
.btn_blue a:hover{
	opacity:0.7;
}


.btn_white a,
.btn_white input {
	display:block;
	padding: 8px 20px;
	font-size:123.1%;
	line-height:1.4;
	background-color:#fff;
	border:1px solid #30a8fb;
	color:#30a8fb;
	border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari,Google Chrome用 */
	-moz-border-radius: 5px; /* Firefox用 */
	text-decoration:none;
}

.btn_white a:hover,
.btn_white input:hover {
	background-color:#30a8fb;
	color:#fff;
}


.btn_gray a,
.btn_gray input{
	padding: 8px 20px;
	font-size:123.1%;
	line-height:1.4;
	background-color:#ababab;
	border:1px solid #ababab;
	color:#fff;
	border-radius: 5px;
	-webkit-border-radius: 5px; /* Safari,Google Chrome用 */
	-moz-border-radius: 5px; /* Firefox用 */
	text-decoration:none;
}



@media only screen and (max-width: 829px) {
	.btn_blue input,
	.btn_blue a,
	.btn_gray input,
	.btn_gray a{
		width:100%;
		padding: 15px;
		font-size:16px;
	}

	.btn_white a{
		padding: 15px;
		font-size:16px;
	}
}


/*ボタン normal lock*/

.btn_block{
	text-align: center;
}

.btn_block ul{
	display:table;
	margin: 0 auto;
}

.btn_block ul li{
	display:table-cell;
	list-style: none;
	padding: 0 30px;
}

.btn_block ul li input,
.btn_block ul li a{
	min-width:150px;
	padding: 15px 20px;
	font-size: 153.9%;
}

.btn_block ul.col_2,
.btn_block ul.col_3 {
	width: 80%;
}

.btn_block ul.col_2 li,
.btn_block ul.col_3 li {
	width: 50%;
	padding: 0 10px;
}

.btn_block ul.col_2 li a,
.btn_block ul.col_2 li input,
.btn_block ul.col_3 li a,
.btn_block ul.col_3 li input {
	display: block;
	width: 100%;
	font-size: 123.1%;
}

.btn_block ul.col_3 {
	width: 90%;
}

.btn_block ul.col_3 li {
	width: calc(100% / 3);
}

@media only screen and (max-width: 829px) {
	.btn_block ul{
		width:90%;
	}

	.btn_block ul li{
		padding: 0 15px;
	}

	.btn_block ul li input,
	.btn_block ul li a{
		width:100%;
		min-width:100%;
		display:block;
		padding: 12px 15px;
		font-size: 16px;
	}

	.btn_block ul.col_1 {
		width:60%;
	}

	.btn_block ul.col_1 li{
		display:block;
	}
	
	.btn_block ul.col_2,
	.btn_block ul.col_3 {
		display: block;
		width: 80%;
	}

	.btn_block ul.col_2 li,
	.btn_block ul.col_3 li {
		display: block;
		width: 100%;
		margin-bottom: 15px;
		padding: 0;
	}
	
	.btn_block ul.col_2 li:last-child,
	.btn_block ul.col_3 li:last-child {
		margin-bottom: 0;
	}
}



/*table
---------------------------------------------------------- */

.table_list01,
.table_list02 {
	border-collapse:collapse;
}

.table_list01 th,
.table_list01 td{
	padding: 30px 20px;
	border:1px solid #d2d2d2;
	text-align: left;
}

.table_list01 th {
	font-weight: normal;
}

@media only screen and (max-width: 829px) {
	.table_list01 th,
	.table_list01 td{
		display:block;
		width:100%;
		padding: 0 0 35px;
		border:none;
	}

	.table_list01 th {
		padding-bottom:5px;
		font-weight: bold;
	}
}


.table_list02 {
	border-top:2px solid #ececec;
	border-bottom:2px solid #ececec;
	font-size:108%;
	line-height:2.0;
}

.table_list02 tr:first-child th,
.table_list02 tr:first-child td{
	padding-top:40px;
}

.table_list02 tr:last-child th,
.table_list02 tr:last-child td{
	padding-bottom:40px;
}

.table_list02 th {
	padding: 20px 45px 20px 0;
	word-break: break-all;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
.table_list02 td {
	padding: 20px 0;
}

.table_list02 td figure{
	margin-top:60px;
}

.table_list02 td p{
	margin-bottom:30px;
}

.table_list02 td p:last-child{
	margin-bottom:0;
}

@media only screen and (max-width: 829px) {
	.table_list02 {
		font-size:100%;
		line-height:1.6;
	}

	.table_list02 tr:first-child th{
		padding-top:30px;
	}

	.table_list02 tr:first-child td{
		padding-top:0;
	}

	.table_list02 tr:last-child th{
		padding-bottom:15px;
	}

	.table_list02 tr:last-child td{
		padding-bottom:30px;
	}

	.table_list02 th {
		display:block;
		width:100%;
		padding: 0 0 15px;
		font-weight: bold;
	}
	.table_list02 td {
		display:block;
		width:100%;
		padding:0 0 30px;
	}

	.table_list02 td figure{
		width:90%;
		margin:30px auto 0;
	}
}


/*textarea
---------------------------------------------------------- */

.textarea {
	margin-bottom:95px;
}

.textarea:last-child {
	margin-bottom:0;
}


/*2カラムローカルナビ
---------------------------------------------------------- */
.sub_nav .sub_nav01 {
	margin-bottom: 20px;
}

.sub_nav .sub_nav01 p {
	padding: 18px 15px;
	background-color: rgb(0, 70, 155);
	color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: 15px;
	font-weight: bold;
}

.sub_nav .sub_nav01 ul {
	margin-bottom: 20px;
	border-left: 1px solid #dbdbdb;
	border-right: 1px solid #dbdbdb;
	border-bottom: 1px solid #dbdbdb;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	font-size: 108%;
}

.sub_nav .sub_nav01 ul:last-child {
	margin-bottom: 0;
}

.sub_nav .sub_nav01 ul li {
	list-style: none;
	border-bottom: 1px solid #dbdbdb;
}

.sub_nav .sub_nav01 ul li:last-child {
	border-bottom: none;
}

.sub_nav .sub_nav01 ul li a {
	display: block;
	padding: 15px 25px 15px 15px;
	color: #333333;
	position: relative;
	font-size: 16px;
}

.sub_nav .sub_nav01 ul li a:hover {
	color: rgb(0, 70, 155);
	text-decoration: none;
}

.sub_nav .sub_nav01 ul li a::after {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 1px solid #043c7b;
	border-right: 1px solid #043c7b;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	right: 15px;
	top: calc(50% - 4px);
}

@media only screen and (max-width: 829px) {
	.sub_nav .sub_nav01 {
		margin-bottom: 30px;
	}

	.sub_nav .sub_nav01 p {
		padding: 15px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		font-size: 15px;
	}

	.sub_nav .sub_nav01 ul {
		margin-bottom: 0;
		border-left: none;
		border-right: none;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.sub_nav .sub_nav01 ul li a:hover {
		text-decoration: none;
	}
}

.sub_nav .sub_nav02 {
	border: 2px solid #e20000;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	font-size: 108%;
}

.sub_nav .sub_nav02 .sub_nav02_ttl {
	padding: 10px 15px;
	background-color: #e20000;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 108%;
}

.sub_nav .sub_nav02 .sub_nav02_box {
	padding: 15px 15px 20px;
}

.sub_nav .sub_nav02 .sub_nav02_btn {
	margin-top: 15px;
}

.sub_nav .sub_nav02 .sub_nav02_btn a {
	display: block;
	width: 80%;
	margin: 0 auto;
	border: 1px solid #30a8fb;
	padding: 8px 10px;
	font-size: 93%;
	border-radius: 5px;
	text-align: center;
	color: #30a8fb;
}

.sub_nav .sub_nav02 .sub_nav02_btn a:hover {
	text-decoration: none;
	background-color: #30a8fb;
	color: #fff;
}

@media only screen and (max-width: 829px) {
	.sub_nav .sub_nav02 {
		width: 90%;
		margin: 0 auto;
	}
}
