@charset "utf-8";

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
	margin: 0;
	padding: 0;
}
html{
    font-size: 62.5%;
}
html.hamburger-active { /* ハンバーガーメニュー */
	height: 100%;
	overflow: hidden;
	touch-action: none;
}
@media screen and (max-width: 320px) {
	html{
		font-size: 52.5%;
	}
}

/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
	width: 100%;
}

/* ---------------------------------------- 
 - body
---------------------------------------- */
body{
	font-family: 'YakuHanJP_Noto', 'Noto Sans JP', "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size:16px;
	font-size:1.6em;
	color:#000;
	line-height:2.0;
	letter-spacing: 0.05em;
	text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
}

.inview.mv {
    opacity: 1.0 !important;
    transform: translate(0,0) !important;
}
.inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,20px);
}
#mainVisual .inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
}

/* リンク無効 */
.noLink{
	pointer-events:none;
	opacity: 0.5;
}

/* font */
.ft-Montserrat {
	font-family: 'Montserrat', serif;
}

/* ---------------------------------------- 
 - #container
---------------------------------------- */
#container {
	width:100%;
	margin:0 auto;
	position: relative;
    overflow: hidden;
}
@media screen and (min-width: 769px) {
	#container .sp {
		display:none !important;
	}
}
@media screen and (max-width: 768px) {
	#container .pc {
		display:none !important;
	}
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
header{	
	text-align:center;
	position: relative;
    z-index: 999;
}
header #headWrap{
	text-align:center;
}
header #head_inner{
	width:100%;
	height:100%;
	margin:0 auto;
	position:relative;
   	display: flex;
   	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
header #head_inner .logo{
	position: absolute;
    top: 10px;
    left: 15px;
	width:40%;
	max-width:276px;
}
header #head_inner .logo a{
	display:block;
}
header #headWrap.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
	box-shadow: 0 0 2px rgba(0,0,0,0.3); 
}
header #head_inner .logo a img{
	display: inline-block;
	backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
	header #head_inner .logo{
    	left: 10px;
		max-width:160px;
	}
}

/* ---------------------------------------- 
 - #contents
---------------------------------------- */
#contents {
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
}
#contents #contents_inner {
	margin:0 auto;
	overflow:hidden;	
	text-align:left;
	width:100%;
}

/* telLink */
#contents #contentsCol .telLink a {
	text-decoration: underline;
}

/* ---------------------------------------- 
 - #pagetop
---------------------------------------- */
#pageTop {
	width: 50px;
	height: 50px;
	background:#222;
	position:fixed;
	bottom: 0;
	right: 15px;
	cursor:pointer;
	z-index:100;
	text-indent:-9999px;
	border-radius: 5px 5px 0 0;
	transform: translate3d(0, 100.1%, 0);
	opacity:0;
	transition-duration: 0.5s;
}
#pageTop.fadeIn {
	transition-duration: 0.5s;
	transform: translate3d(0, 0, 0);
	opacity:1;
	transition-timing-function:cubic-bezier(0.42, 0, 0.58, 1.0);
}
#pageTop:hover {
	opacity:0.5;
	transition-duration: 0.3s;
}
#pageTop a::before,
#pageTop a::after {
	position: absolute;
	top: 8px;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
}	
@media screen and (max-width: 480px) {
	#pageTop {
		width: 40px;
		height: 40px;
		right: 2%;
	}
	#pageTop a::before,
	#pageTop a::after {
		top: 7px;
		right: 16px;
		width: 8px;
		height: 8px;
	}
}

/* ---------------------------------------- 
 - footer
---------------------------------------- */
footer {
	width:100%;
	background:#222;
	color:#fff;
}
footer #foot_inner{
	width:94%;
	padding:35px 0;
}
footer #foot_inner .logo {
	width: 65%;
	max-width:255px;
	margin: 0 auto;
}
footer #foot_inner .copy {
	font-size: 1.1rem;
	padding: 1.0em 0 0;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer #foot_inner{
		padding:25px 0;
	}
	footer #foot_inner .logo {
		width: 85%;
	}
	footer #foot_inner .copy {
		padding: 1.5em 0 0;
	}
}