@charset "UTF-8";
/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	background: #fff;
	width: 100%;
	height: 80px;
	padding: 10px 35px;
}
header .header_inner{
	height: 100%;
	width: 100%;
	font-size: 70%;
}
header #logo,
header #logo a{
	height: 100%;
	display: inline-block;
}
header #logo img{
	height: 100%;
	width: auto;
}
/*-----------------------------------------------
__Main
-----------------------------------------------*/
main p,main dl,main ul{
	font-size: 40%;
}
main dl ul,main dl p{
	font-size: 100%;
}
section{
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px 0;
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
section img{
	width: 100%;
	height: auto;
}
section figure{
	width: 100%;
}

ul > li{
	list-style-type:disc;
	line-height: 1.4;
	margin-left:1em;
	margin-bottom:0.25em;
}
/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	font-size: 90%;
}
footer .bg_wh {
    padding: 10px;
}
footer small{
	font-size: 75%;
}
footer small#copy{
	opacity: 0.7;
	letter-spacing: 0.05em;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	justify-content: space-between;
}
.fl_box.al_center{
	align-items: center;
}

.pc_no{
	display:none;
}


.ta_center{
	text-align:center;
}
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}

/*-----------------------------------------------
__mobile
-----------------------------------------------*/
@media screen and (max-width:1200px){
	body{
		font-size: 90%;
	}
}
@media screen and (min-width:0px) and (max-width:748px){
	body{
		font-size: 80%;
	}
	main p, main dl, main ul{
		font-size: 50%;
	}
	.fl_box.sm_bl{
		flex-direction: column;
	}

	header{
		height: 50px;
		padding: 5px 5%;
	}
	header .header_inner{
		font-size: 40%;
	}

	section{
	padding: 50px 0;
	}

	footer small{
		font-size: 90%;
		line-height: 1.2;
	}
	footer .bg_wh{
		padding: 30px 5%;
		gap: 20px;
		align-items: center;
		text-align: center;
	}
}
