/* CSS Document */

/*
@font-face {
    font-family: 'NotoSerif';
	font-style: normal;
	font-weight:400;
    src: url('/lib/font/notoserif-regular.woff2') format('woff2') ,
		 url('/lib/font/notoserif-regular.woff') format('woff');
}

@font-face {
    font-family: 'NotoSerif';
	font-style: normal;
	font-weight:900;
    src: url('/lib/font/notoserif-bold.woff2') format('woff2') ,
		 url('/lib/font/notoserif-bold.woff') format('woff');
}
@font-face {
    font-family: 'NotoSans';
	font-style: normal;
	font-weight:400;
    src: url('/lib/font/notosans-light-300.woff') format('woff');
}
@font-face {
    font-family: 'NotoSans';
	font-style: normal;
	font-weight:700;
    src: url('/lib/font/notosans-medium-500.woff') format('woff');
}
@font-face {
    font-family: 'NotoSans';
	font-style: normal;
	font-weight:900;
    src: url('/lib/font/notosans-bold-700.woff') format('woff');
}
*/

html ,
body {
	color: #444;
	font-feature-settings: "palt";
	font-family: 'Sawarabi Gothic', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	min-height: 100%;
	position: relative;
}


/* ========= Classes ========== */

.clear { clear:both; }

.right {
	float:right;
	margin:3px 0 8px 12px;
}

.left {
	float:left;
	margin:3px 12px 8px 0;
}


/* ========= Header ========== */
header {
}

header #mainVisual {
	background: #f0f9f0;
	height: 200px;
}

header #global_menu {
}

header #global_menu ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

header #global_menu ul li {
	flex-basis: auto;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	flex-grow: 1;
}


/* ========= Side Bar ========= */
#side_bar {
    background: #f2f2ff;
    width: 320px;
    height: 500px;
	
	/* -- 左寄せ -- */
	float: left;
	margin-right:50px;
	
	/* -- 右寄せ --
	float: right;
	margin-left: 50px;
	*/

}

/* ========= content ========= */
#content {
	margin: 10px 30px;
}


/* ======== Footer ========= */
footer {
	background: #f9f0f0;
	clear: both;
	width: 100%;
	min-height: 50px;
	position: absolute;
	bottom: 0;
}