@charset "utf-8";

/* font
--------------------------------*/

@font-face {
	font-family: 'Noto_Sans_JP';
	font-weight: 400;
	font-style: normal;
	src: url('../font/Noto_Sans_JP/NotoSansJP-Regular.otf') format('opentype');
	}
@font-face {
	font-family: 'Noto_Sans_JP';
	font-weight: 600;
	font-style: normal;
	src: url('../font/Noto_Sans_JP/NotoSansJP-Medium.otf') format('opentype');
	}
@font-face {
	font-family: 'Noto_Sans_JP';
	font-weight: 800;
	font-style: normal;
	src: url('../font/Noto_Sans_JP/NotoSansJP-Bold.otf') format('opentype');
	}

.ftS{
	font-size:1.4rem !important;
    line-height: 1.8;
	}
.ftM{
	font-size:1.6rem !important;
    line-height: 1.8;
	}
.ftL{
	font-size:1.8rem !important;
    line-height: 1.8;
	}
.txC{
	text-align: center;
	}
.txR{
	text-align: right;
	}
.txL{
	text-align: left;
	}

/* box
--------------------------------*/
.box990 {
	width: 92%;
	max-width: 990px;
	margin: 0 auto;
	position: relative;
	}

@media screen and (max-width:990px) {
	.box990 {
		width: auto;
		}
	.box-sp {
		margin: 0 20px 0;
		position: relative;
		}
}

/* Common
--------------------------------*/
.btn_link_b a{
	width: 160px;
    padding: 8px 0;
    margin: 0px auto;
    box-sizing: border-box;
    color: #fff;
    font-size: 14px;
    text-align: center;
    display: block;
    position: relative;
	transition-property: background;
	transition-duration: 0.5s;
	transition-timing-function: linear;
	border: solid 1px #3e3a39;
	background: #3e3a39;
	}
.btn_link_b a:after{
	content: '→';
	margin-left: 10px;
	}
.btn_link_b a:hover{
	color: #3e3a39;
	background: #d9dbe0;
	border: solid 1px #3e3a39;
	text-decoration: none;
	}

@media (max-width: 990px) {
/* Common
-------------------------------------------*/
.btn_link_w a{
	width: 160px;
    padding: 8px 0;
    font-size: 14px;
	}
.btn_link_b a{
	width: 160px;
    padding: 8px 0;
    font-size: 14px;
	}
}


/* 共通
-------------------------------------------*/
html {
	font-size: 62.5%;
	overflow: auto;
	}
* {
	margin: 0;
	padding: 0;
	vertical-align: top;
    letter-spacing: 0.02em;
	text-indent: 0.02em;
	}
body {
	font-size: 1.6rem;
	line-height: 1;
	color: #3e3a39;
	-webkit-text-size-adjust: 100%;
	background: #d9dbe0;
	font-feature-settings: "palt" 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	}

@media screen and (min-width: 991px){	
    .br-pc { display:block; }
    .br-sp { display:none; }
	.pc-none{display: none;}
	}
@media screen and (max-width: 990px){	
    .br-pc { display:none; }
    .br-sp { display:block; }
	.sp-none{display: none;}
	}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 990px){
    .pc { display: none !important; }
    .sp { display: block !important; }
	}

a{
	color: #398fa5;
	}
a:hover{
	text-decoration: underline;
	}

/* Header
-------------------------------------------*/
#header {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	z-index: 100;
	background: #fff;
	position: fixed;
	}
#header.lower{
	top: 0px;
	}
.header_text{
	width: 100%;
	background: #505834;
	color: #fff;
	font-size: 1.3rem;
    position: absolute;
	padding: 6px 8px;
	}
.header_text a{
	color: #fff;
	}
.header_text ul{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
	}
.header_text ul li ul{
	display: flex;
    flex-wrap: wrap;
    justify-content:flex-end;
    margin: 0px;
	}
.header_text ul li ul li{
	width: 20px;
    margin: 0 6px;
	}
#header_inner{
	/*background-color: rgba(255,255,255,0.3);*/
	overflow: hidden;
	width: 92%;
	display: flex;
	align-items: center;
	position: relative;
	/*max-width: 1300px;*/
    margin: 0 auto;
    position: relative;
    /*box-shadow: 0 8px 10px -10px rgba(0,0,0,.1);*/
	} 
/* Fixed */
#header.fixed{
	margin-top: 0;
	top: 0;
	/*position: fixed;*/
	transition: top 0.65s ease-in;
	-webkit-transition: top 0.65s ease-in;
	}
.logo a{
	position: absolute;
	width: 300px;
	height: 42px;
	top: 28px;
	left: 0px;
	}
nav{
	margin: 0 auto;
	}

@media screen and (max-width: 990px) {
	#header {
		margin-top: 0;
		top: 0;
		position: fixed;
		height: 60px;
		}
	#header_inner{
		width: 100%;
		}
	.home .logo a{
		max-width: 180px;
		height: 25px;
    	top: 21px;
    	left: 50%;
    	transform: translateX(-50%);
    	-webkit-transform: translateX(-50%);
    	-ms-transform: translateX(-50%);
		}
	.logo a{
		max-width: 180px;
		height: 25px;
    	top: 13px;
    	left: 50%;
    	transform: translateX(-50%);
    	-webkit-transform: translateX(-50%);
    	-ms-transform: translateX(-50%);
		}
}

/* copyright
-------------------------------------------*/
#copyright{
	padding: 20px 0;
	background: #3e3a39;
	text-align: center;
	}
#copyright p{
	color: #fff;
	font-size: 1.4rem;
	}
@media screen and (max-width: 990px) {
#copyright{
	padding: 20px 0 20px;
	}
#copyright .box-sp {
    margin: 0 20px 0px;
    }
#copyright p{
	font-size: 14px;
	}
}

/* Pagetop
--------------------------------*/
.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 9;
	}
.pagetop a {
	background:url(../img/common/pagetop.svg) no-repeat #3e3a39;
	background-size: 40px;
    text-decoration: none;
    color: #fff;
    width: 40px;
	height: 40px;
    display: block;
	border-radius: 100%;
	}
.pagetop a:hover {
	opacity:0.5;
	}

@media screen and (max-width: 990px) {
/* Pagetop
--------------------------------*/
.pagetop a {
	background-size: 30px;
    width: 30px;
	height: 30px;
	}	
}


/* Loader
---------------------------------*/
#container{ 
	display:none;
	}
.loader {
	width: 180px;
	height: 114px;
	display: none;
	position: fixed;
	_position: absolute; /* IE6対策 */
	top: 50%;
	left: 50%;
	margin-top: -57px; /* heightの半分のマイナス値 */
	margin-left: -90px; /* widthの半分のマイナス値 */
	z-index: 1500;
	}
.loader_bg {
	width: 100%;
	height: 100%;
	min-height:10000px;
	display: none;
	background-color: #FFFFFF;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1000;
	}
#loader_icon {
	position: absolute;
	background:url(../img/common/loader.svg) no-repeat;
	background-size:100%;
	width: 180px; /*ローディングアイコンの横サイズ*/
	height: 114px; /*ローディングアイコンの縦サイズ*/
	}

/* Reset
--------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	list-style: none;
	text-decoration: none;
	}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	}
ol, ul, li{
	list-style: none;
	}
blockquote, q {
	quotes: none;
	}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
	}
table {
	border-collapse: collapse;
	border-spacing: 0;
	}
img{
	vertical-align: bottom;
	max-width: 100%;
	width /***/:auto; height: auto;
	}

.mT10{margin-top:10px;}
.mT15{margin-top:15px;}
.mT20{margin-top:20px;}
.mT25{margin-top:25px;}
.mT30{margin-top:30px;}
.mT35{margin-top:35px;}
.mT40{margin-top:40px;}
.mT45{margin-top:45px;}
.mT50{margin-top:50px;}
.mT55{margin-top:55px;}
.mT60{margin-top:60px;}

.mR10{margin-right:10px;}
.mR15{margin-right:15px;}
.mR20{margin-right:20px;}
.mR25{margin-right:25px;}
.mR30{margin-right:30px;}
.mR35{margin-right:35px;}
.mR40{margin-right:40px;}
.mR45{margin-right:45px;}
.mR50{margin-right:50px;}
.mR55{margin-right:55px;}
.mR60{margin-right:60px;}

.mB10{margin-bottom:10px;}
.mB15{margin-bottom:15px;}
.mB20{margin-bottom:20px;}
.mB25{margin-bottom:25px;}
.mB30{margin-bottom:30px;}
.mB35{margin-bottom:35px;}
.mB40{margin-bottom:40px;}
.mB45{margin-bottom:45px;}
.mB50{margin-bottom:50px;}
.mB55{margin-bottom:55px;}
.mB60{margin-bottom:60px;}

.mL10{margin-left:10px;}
.mL15{margin-left:15px;}
.mL20{margin-left:20px;}
.mL25{margin-left:25px;}
.mL30{margin-left:30px;}
.mL35{margin-left:35px;}
.mL40{margin-left:40px;}
.mL45{margin-left:45px;}
.mL50{margin-left:50px;}
.mL55{margin-left:55px;}
.mL60{margin-left:60px;}

.pT10{padding-top:10px;}
.pT15{padding-top:15px;}
.pT20{padding-top:20px;}
.pT25{padding-top:25px;}
.pT30{padding-top:30px;}
.pT35{padding-top:35px;}
.pT40{padding-top:40px;}
.pT45{padding-top:45px;}
.pT50{padding-top:50px;}
.pT60{padding-top:60px;}

.pR10{padding-right:10px;}
.pR15{padding-right:15px;}
.pR20{padding-right:20px;}
.pR25{padding-right:25px;}
.pR30{padding-right:30px;}
.pR35{padding-right:35px;}
.pR40{padding-right:40px;}
.pR45{padding-right:45px;}
.pR50{padding-right:50px;}
.pR55{padding-right:55px;}
.pR60{padding-right:60px;}

.pB10{padding-bottom:10px;}
.pB15{padding-bottom:15px;}
.pB20{padding-bottom:20px;}
.pB25{padding-bottom:25px;}
.pB30{padding-bottom:30px;}
.pB35{padding-bottom:35px;}
.pB40{padding-bottom:40px;}
.pB45{padding-bottom:45px;}
.pB50{padding-bottom:50px;}
.pB55{padding-bottom:55px;}
.pB60{padding-bottom:60px;}

.pL10{padding-left:10px;}
.pL15{padding-left:15px;}
.pL20{padding-left:20px;}
.pL25{padding-left:25px;}
.pL30{padding-left:30px;}
.pL35{padding-left:35px;}
.pL40{padding-left:40px;}
.pL45{padding-left:45px;}
.pL50{padding-left:50px;}
.pL55{padding-left:55px;}
.pL60{padding-left:60px;}

*, *: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;
}