@charset "utf-8";
/* CSS Document */

/*------------------------------*/
/*　基本設定　*/
/*------------------------------*/

*	{
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	list-style-type: none;
}

html{
  scroll-behavior: smooth;
}

/*------------------------------*/
/*　基本構造　*/
/*------------------------------*/

#wrapper { 
	width: 100%;
    min-height: 100vh;/*footer用*/
    position: relative;/*footer用*/
    padding-bottom: 150px;/*footer用*/
    box-sizing: border-box;/*←全て含めてmin-height:100vhに*/
}

/*ヘッダ*/

#header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 980px;
	height: 100px;
	margin: 0 auto;
}

.head_L {
	width: auto;
}

header {
	display: block;
	font-size: 32px;
}

.head_L p {
	padding-left: 8px;
	color: #949494;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.4;
}

.head_R {
	width: 240px;
	height: 80px;
	border-left: 1px solid #aaaaaa;
	text-align: right;
}

.head_R img { 
	display: block;
	margin-left: auto;
	margin-bottom: 12px;
}

.map a {
	padding: 3px 11px;
	border: 1px solid #aaaaaa;
	border-radius: 4px;
	background-color: #ffffff;
	font-size: 11px;
	text-align: center;
}

.map a:hover {
	border: 1px solid #f40f13;
	color: #f40f13;
}


/*　ぱんくずリスト　*/

.pankuzu {
	width: 980px;
	margin: 0 auto 0px auto;
	font-size: 14px;
}

.pankuzu li	{ 
	display: inline;
	line-height: 48px;
}

/*　コンテンツ　*/

#contents	{
	width: 980px;
	margin: 30px auto 0 auto;
	padding: 0 10px;
}

#main_top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
/*	gap: 20px;　旧safali NG*/
}

/*　サイドなし　　*/

#main_sgl {
	width: 100%;
}

#main_sgl h1 {
	margin-bottom: 20px;
	padding: 8px 0;
	background-color: #eeeeee;
	color: black;
	font-size: 24px;
	font-weight: normal;
	text-align: center;	
}

/*　サイドあり　　*/

#main_dbl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#main_dbl h1 {
	margin-bottom: 20px;
	padding: 8px 0;
	background-color: #eeeeee;
	color: #000000;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
}

#sidebar {
    width: 250px;
	box-sizing: border-box;
	border-top: 1px solid #d4d4d4;
}

#main {
    width: 640px;
}

/*　フッター　*/

.footer {
	position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/	
	width: 100%;
	height: 90px;
	margin: 100px auto 0 auto;
	padding-top: 16px;
	background-color: #333333;
	color: #ffffff;
	font-size: 12px;
	text-align: center;
}

/*------------------------------*/
/*　共通　*/
/*------------------------------*/

a { color: #000000; }
a:visited { color: #000000; }
a:hover { color: #f40f13; }
a { text-decoration: none; }

header a:hover { color: #000000; }

.always { margin: 0 0.5em }
.always a { color: #dc143c; }
.always a:hover { color: #ff6633; }

.setsumei {
	width: 100%;
	font-size: 16px;
	line-height: 1.8em;
}

.go-top {
	width: 100%;
	margin-top: 24px;
	font-size: 14px;
}
