@charset "UTF-8";
/*-----------------------------------
	base
-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 18px;
    font-size: 1.8em;
	color: #333434;
    line-height: 1;
	letter-spacing: 0;
	font-weight: 400;
	background: #fff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 999;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color:#333434;
    cursor: pointer;
	text-decoration:none;
	transition: 0.5s;
}
a:hover {
	opacity: 0.8;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
@media screen and (max-width: 640px) {
	body {
		font-size: 15px;
		font-size: 1.5em;
	}
}
/*-----------------------------------
	contents
-----------------------------------*/
#contents {
	margin-top: 370px;
}
.contents_inner {
	max-width: 1200px;
	width: 95%;
	margin: 0 auto;
}
@media screen and (max-width: 1080px) {
	#contents {
		margin-top: 410px;
	}
}
@media screen and (max-width: 640px) {
	#contents {
		margin-top: 370px;
	}
}
/*-----------------------------------
	header
-----------------------------------*/
header {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
	background: #fff;
    z-index: 1;
}
@media screen and (max-width: 640px) {
	header .logo_area h1 {
		width: 240px;
		margin: auto;
	}
}
/*-----------------------------------
	fix_wrap
-----------------------------------*/
.fix_wrap {
    width: 100%;
    position: fixed;
    top: 80px;
	background: #fff;
    z-index: 1;
}