@charset "utf-8";
/* ----- 初期設定 ----- */
*{
	margin:0px;
	padding:0px;
	font-style:normal;
	font-size:medium;
	text-decoration:none;
	box-sizing:border-box;
	border:none;
	scroll-behavior:smooth;
}
body{
	background-color:#ffffff;
	color:#222222;
}
header,
main,
footer,
.container{
	width:100%;
	max-width:1200px;
	height:auto;
	margin:0px auto;
}
a:not([class="link_def"]):link{
	color:#222222;
}
a:not([class="link_def"]):visited{
	color:#222222;
}
a:not([class="link_def"]):hover{
	color:#222222;
	text-decoration:underline;
}
a:not([class="link_def"]):active{
	color:#ffda32;
	text-decoration:underline;
}
ul{
	list-style-type:none;
}
hr{
	width:90%;
	min-width:320px;
	height:1px;
	margin:30px auto;
	border-top:1px solid #999999;
}
hr:before{
	clear:both;
}
h2{
	line-height:2em;
	padding-left:20px;
}
h3{
	line-height:2em;
	padding-left:20px;
}
p{
	padding:0.5em;
}
details summary:hover{
	cursor:pointer;
}
button{
	background-color:transparent;
}
/* ----- 共通設定 ----- */
.center{
	text-align:center;
}
.p_10px{
	padding:10px;
}
.m_lr_1em{
	width:calc(100% - 1em);
	min-width:320px;
	margin-left:auto;
	margin-right:auto;
}
.m_b_10px{
	margin-bottom:10px;
}
.m_b_1em{
	margin-bottom:1em;
}
.w100{
	width:100%;
}
.w90{
	width:90%;
	min-width:320px;
	margin:auto;
}
.w80{
	width:80%;
	min-width:320px;
	margin:auto;
}
.icon{
	width:80px;
	height:auto;
}
.bg_main{
	background-color:#111111;
	color:#fefefe;
}
.bg_sub{
	background-color:#dddddd;
	color:#111111;
	border:1px solid #999999;
}
.bd_rbl{
	border-right:1px solid #111111;
	border-bottom:1px solid #111111;
	border-left:1px solid #111111;
}
/* ----- 個別設定 ----- */

/* ----- ヘッダー ----- */
header h1{
	width:100%;
	height:120px;
	background-color:#FFF000;
	text-indent:1em;
	font-weight:normal;
	font-size:1.5em;
	line-height:120px;
}
#menu_icon{
	display:none;
	width:0px;
	height:0px;
}
#h_bar{
	display:flex;
	flex-direction:row;
	align-items:center;
	height:60px;
}
#h_bar a{
	color:#fefefe;
}
#logo{
	width:200px;
	margin-left:10px;
	text-align:center;
}
#logo img{
	width:100%;
	height:auto;
}
#main_nav{
	width:calc(100% - 200px - 10px);
	padding-right:10px;
	text-align:right;
}
#menu_wide li{
	display:inline-block;
	margin:5px;
	text-align:center;
}
#menu_wide li a{
	display:block;
	padding:5px;
}
/* ----- フッター ----- */
footer ul li{
	display:inline-block;
	margin:0.5em 1em;
}
footer div{
	line-height:60px;
}

/* ----- ボタントップ ----- */
#btn_top{
	display:inline;
	position:fixed;
	right:1%;
	bottom:1%;
	width:50px;
	height:50px;
	background-color:#111111;
	border:1px solid #999999;
	border-radius:8px;
	overflow:hidden;
	opacity:0.6;
}

/* ----- 画面サイズ：1008px未満 ----- */
@media screen and (max-width:1008px)
{
	#menu_wide{
		display:none;
		width:0px;
		height:0px;
	}
	#menu_icon{
		display:block;
		position:relative;
		width:100%;
		height:100%;
		text-align:right;
	}
	#icon_menu:hover{
		cursor:pointer;
	}
	#icon_menu{
		display:inline-block;
		padding:0px;
		width:48px;
		height:40px;
		background-image:url(../img/icon_menu.png);
		background-size:100%;
	}
	#icon_menu img{
		width:100%;
		opacity:0.0;
	}
	#menu_pd{
		width:200px;
		height:16em;
		position:absolute;
		right:0%;
		border:1px solid #333333;
		overflow:hidden;
		opacity:1.0;
		transition-ploperty: height ,opacity;
		transition-duration:0.6s;
		transition-timing-function:ease-out;
	}
	#menu_pd li{
		width:100%;
		height:4em;
		border-top:1px solid #333333;
	}
	#menu_pd li:first-child{
		border-top:none;
	}
	#menu_pd li a:hover,
	#menu_pd li a:active,
	#menu_pd li a:focus{
		background-color:#fefefe;
		color:#111111;
		text-decoration:none;
	}
	#menu_pd li a{
		display:block;
		text-align:center;
		line-height:4em;
	}
	#menu_icon:not([class="show"]) #menu_pd{
		height:0px;
		opacity:0.0;
		transition-ploperty: height ,opacity;
		transition-duration:0.6s;
		transition-timing-function:ease-out;
	}
	#menu_icon[class="show"] #icon_menu{
		background-image:url(../img/icon_menu_x.png);
	}
}

/* ----- 画面サイズ：750px未満 ----- */
@media screen and (max-width:750px)
{
	#logo{
		width:140px;
	}
	#main_nav{
		width:calc(100% - 140px - 10px);
	}
}