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

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

html{ font-size: 62.5%; }

body {
	width: 100%;
	height: 100%;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	color: #000;
	background:#FFF;
	line-height:1.6;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: subpixel-antialiased;/* safari:transitionでテキストが細くなる対策 */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*{ box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box;}

img{
	width: 100%;
	height: auto;
}
img { -ms-interpolation-mode: bicubic; }

.object-fit-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;';
}

a{
	text-decoration: none;
	outline: none;
	transition-duration: 0.5s;
	transition-property: opacity, color;
}

a:hover{
	text-decoration: none;
	opacity: 0.7;
}

a.pagetop{
	width: 45px;
	display: inline-block;
	line-height: 0;
}

/*----DWナビゲート用----*/
.pc{}
.sp{}
.img-switch{}

header,main,article,footer{
    width: 100%;
}

main{position: relative;}

address {
	font-style: normal;
}

/*ページトップ*/
.SmoothScroll_pageTop{
    text-align:right;
    position: fixed;
    bottom: 3%;
    right: 5%;
    display: none;
	z-index: 99;
}
.SmoothScroll_pageTop a::before{
    font-family:FontAwesome;
	content: "\f077";
    margin-right:5px;
}
.SmoothScroll_pageTop a:hover{
    background-color:rgba(100, 100, 100, 0.6);
}
.SmoothScroll_pageTop a{
	background-color:rgba(100, 100, 100, 0.4);
	display:inline-block;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	margin:10px 0;
    color:#FFF;
    width:50px;
    height:50px;
    padding:0;
    text-align:center;
    line-height:50px;
}
.SmoothScroll_pageTop a::before{
    margin-right:0;
}
.SmoothScroll_pageTop a span{
    display:none;
}


/*--------------------------------------------------------
　PC
--------------------------------------------------------*/

@media print, screen and (min-width: 768px){
	.sp{
		display: none!important;
	}
	
	body {
		padding-top: 77px;
	}
	
	header{
		height: 77px;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background: #FFF;
    }
	
	header div.h_block{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
        padding: 20px 15px;
		position: relative;
    }
	
	header h1,
	header a.h_logo{
		width: 278px;
		line-height: 0;
		display: block;
    }
	
	
	header nav{
		width: 52%;
		/*min-width: 476px;*/
		position: absolute;
		top: 35px;
		right: 15px;
    }
	
	header nav ul{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		list-style: none;
    }
	
	header nav ul li{
		display: inline-block;
    }
	
	header nav ul li a{
		font-size: 15px;
		font-size: 1.5rem;
		font-weight: 700;
		color: #000;
		line-height: 1;
    }
	
	header nav ul li.online{
		display: inline-block;
    }
	
	header nav ul li.online a{
		font-weight: 400;
		line-height: 1;
		border: 1px solid #000;
		padding: 0 5px;
    }
	
	main {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	
	
	
	footer {
		width: 91.6%;
		margin: 0 auto;
		padding: 30px 0;
		text-align: right;
    }
	
	footer small{
		font-size: 10px;
		font-size: 1.0rem;
		line-height: 1.3;
    }
}

/*--------------------------------------------------------
　TB
--------------------------------------------------------*/

@media print, screen and (max-width: 959px){
	
	header nav{
		width: 56%;
    }
	
	header nav ul li a{
		font-size: 13px;
		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1;
    }
}


/*--------------------------------------------------------
　SP
--------------------------------------------------------*/

@media screen and (max-width: 767px){
	
	.pc{
		display: none!important;
	}
	
	a:hover{
		text-decoration: none;
		opacity: 1;
	}
	
	body {
		padding-top: 80px;
	}
	
	header{
		height: 80px;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background: #FFF;
    }
	
	header div.h_block{
		width: 90%;
		margin: 0 auto;
        padding: 10px 0;
		position: relative;
    }
	
	header h1,
	header a.h_logo{
		width: 178px;
		margin: 0 auto 12px;
		line-height: 0;
		display: block;
    }
	
	header nav{
		width: 100%;
		position: relative;
    }
	
	header nav ul{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		list-style: none;
    }
	
	header nav ul li{
		display: inline-block;
		margin: 0 6px;
    }
	
	header nav ul li:first-child{
		margin-left: 0;
    }
	
	header nav ul li:last-child{
		margin-right: 0;
    }
	
	header nav ul li a{
		font-size: 12px;
		font-size: 1.2rem;
		font-weight: 700;
		color: #000;
		line-height: 1;
    }
	
	header nav ul li.online{
		display: inline-block;
    }
	
	header nav ul li.online a{
		font-weight: 400;
		line-height: 1;
		border: 1px solid #000;
		padding: 0 5px;
    }
	
	main {
		width: 100%;
		max-width: 100%;
	}

	
	footer {
		width: 90%;
		margin: 0 auto;
		padding: 20px 0;
		text-align: right;
    }
	
	footer small{
		font-size: 10px;
		font-size: 1.0rem;
		line-height: 1.3;
    }
	
}

@media screen and (max-width: 479px){
	
	header div.h_block{
		width: 98%;
    }
	
	header nav ul li a{
		font-size: 10px;
		font-size: 1.0rem;
		font-weight: 700;
		line-height: 1;
    }
	
	header nav ul li.online a{
		padding: 0 3px;
    }
}

@media screen and (max-width: 320px){
	
	header{
		width: 100%;
    }
	
	header nav ul li{
		display: inline-block;
		margin: 0 3px;
    }
	
	header nav ul li a{
		font-size: 10px;
		font-size: 1.0rem;
		font-weight: 700;
		color: #000;
		letter-spacing: -0.01em;
		line-height: 1;
    }

}