@charset "utf-8";

body {
	width: 1440px;
	height: 860px;
	font-family:Arial, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "游ゴシック", YuGothic, sans-serif;
	font-size: 12px;
    line-height: 1.4;
    color: #333;
    background-color: #f2f2f2;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
section, div {box-sizing: border-box;}
a {color: inherit; outline:none; text-decoration: none;}
a:hover {text-decoration: none;}
img {width: 100%; border: none;}
.wrapper {
	width: 100%;
    height: 100%;
	position: relative;
	margin: 0;
	padding: 0;
}

/* header */
.headerWrapper {
	width: 100%;
	z-index: 1100;
}
.header {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
    width: 1440px;
    height: 80px;
    position: relative;
	background-color: #fff;
	margin: 0 auto;
}
.header .title {
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	margin-left: 50px;
}

/* add class */
.fxw {display: flex; flex-flow: row wrap;}
.fxnw {display: flex; flex-flow: row nowrap;}
.jfsb {justify-content: space-between;}
.alic {align-items: center;}
