@charset "UTF-8";
/* CSS Document */
html {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
html.wf-active,
html.loading-delay {
	visibility: visible;
	opacity: 1;
}
* {
    word-break: break-all;
	}
body {
	font-family: 'Shippori Mincho', serif;
/*	font-family: 'Noto Sans JP', sans-serif;*/
	font-size: 11px;
	font-weight: 500;
	font-style: normal;
	/*color: #767D85;*/
	color: #333;
	line-height: 1.6;
	letter-spacing: 0.02em;
	background-color: #FFF;
}
#wrapper {
	overflow: hidden;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a:hover {
	color: #C0C1C1;
}
.inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
/* font */
.lt {
	font-family: 'Lato', sans-serif;
}
.bn {
	font-family: 'Bebas Neue', cursive;
}

/* fade */
.fadeUpTrigger {
	opacity: 0;
}
/* fadeup */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.8s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
	opacity: 0;
	transform: translateY(180px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* zoomout */
@keyframes zoomOutAnime {
  from {
		transform: scale(1.2);
		opacity: 0;
  }
	to {
		transform:scale(1);
		opacity: 1;
	}
}
.zoomOutTrigger {
	opacity: 0;
}
.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 1.8s;
	animation-fill-mode: forwards;
}

/*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
	background-color: #FFF;
}
header .h_inner {
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 15px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}
header .h_inner .left .logo {
	width: 200px;
	margin-bottom: 5px;
}
header .h_inner .left .logo a {
	display: block;
}
header .h_inner .left .logo a img {
	vertical-align: middle;
}
header .h_inner .left .logo a:hover {
	opacity: 0.7;
}
header .h_inner .right .global-nav .global-nav_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item {
	position: relative;
	overflow: hidden;
	margin: 0 10px;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:last-child {
	margin-right: 0;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
/*	font-family: 'Lato', sans-serif;
*/	text-align: center;
	color: #767D85;
	font-size: 12px;
	letter-spacing: .1em;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item a:hover {
	color: #CCC;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 1px;
	background-color: #CCC;
	transition: .3s;
}
header .h_inner .right .global-nav .global-nav_list .global-nav_item:hover:after {
	left: 0;
}


/* footer */
footer {
	position: relative;
	border-top: 1px solid #f3f3f3;
}
footer .inner {
	padding: 30px 20px;
}
footer .inner .f_logo {
	width: 130px;
}
footer .inner .f_logo a {
	display: block;
}
footer .inner .f_logo a:hover {
	opacity: .7;
}
footer .inner .f_nav {
	margin: 17px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
footer .inner .f_nav li {
	margin-right: 2em;
	text-align: left;
}
footer .inner .f_nav li a {
/*	font-family: 'Lato', sans-serif;
*/	font-size: 12px;
	letter-spacing: .1em;
	color: #767D85;
}
footer .inner .f_nav li a:hover {
	color: #000;
}
footer .inner .sns {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 36px;
}
footer .inner .sns li {
	margin: 0 2em 0 0;
	position: relative;
}
footer .inner .sns li:nth-child(1):after {
	content: " / ";
	position: absolute;
	top: 0;
    right: -1em;
	display: inline-block;
	font-size: 12px;
	color: #C0C1C1;
}
footer .inner .sns li a {
	display: block;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	letter-spacing: .1em;
	color: #C0C1C1;
}

footer .inner .sns li a:hover {
	color: #999;
}
footer .copy {
	padding: 8px 0;
	/*font-family: 'Lato', sans-serif;*/
	font-size: 12px;
	letter-spacing: .1em;
	color: #767D85;
	text-align: left;
}
footer .pagetop {
	position: fixed;
	bottom: 20px;
	right: 30px;
	height: auto;
	z-index: 99;
}
footer .pagetop a {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 1;
    background-color: #FFF;
    border-radius: 50%;
    border: 1px solid #777;
    cursor: pointer;
    text-align: center;
}
footer .pagetop a:hover {
    background-color: #CCC;
}
footer .pagetop a:before {
	position: absolute;
    top: 2px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 4px;
    height: 4px;
    margin: auto;
    content: "";
    transform: rotate(-45deg);
    border-top: 1px solid #767D85;
    border-right: 1px solid #767D85;
}

@media screen and (max-width: 1000px) {
	/*共通*/
	body {
		font-size: 14px;
	}
	.inner {
		width: 100%;
		max-width: 100%;
	}
	/*header*/
	header .h_inner {
		width: 100%;
		height: 70px;
		padding: 0 20px;
		align-items: center;
	}
	header .h_inner .left .logo {
		width: 180px;
	}	
	.global-nav {
		position: fixed;
		right: -320px;
		top: 0;
		width: 300px;
		height: 100vh;
		padding-top: 40px;
		background-color: #FFF;
		transition: all .6s;
		z-index: 9999;
		overflow-y: auto;
	}
	header .h_inner .right .global-nav .global-nav_list {
		display: block;
		padding: 40px 0;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item {
		margin: 0 0;
	}	
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a {
		padding: 16px 0 16px 40px;
		display: block;
		text-align: left;
		font-size: 13px;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item a:hover {
		color: #999;
	}
	header .h_inner .right .global-nav .global-nav_list .global-nav_item:after {
		display: none;
	}
	
/* hamburgeメニュー */
	.hamburger {
		position: absolute;
		right: 16px;
		top: 20px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		z-index: 9999;
	}
	.hamburger_line {
		position: absolute;
		right: 0;
		width: 30px;
		height: 1px;
		background-color: #767D85;
		transition: all .6s;
	}
	.hamburger_line1 {
		top: 10px;
	}
	.hamburger_line2 {
		top: 18px;
	}
	.nav-open .global-nav {
		right: 0;
	}
	.nav-open .hamburger_line1 {
		transform: rotate(45deg);
		top: 16px;
	}
	.nav-open .hamburger_line2 {
		transform: rotate(-45deg);
		top: 16px;
	}	
	
/* footer */
	footer .inner {
		padding: 30px 8vw;
	}
	footer .pagetop {
		right: 16px;
	}	
	footer .pagetop a {
		display: block;
		width: 20px;
		height: 20px;
		line-height: 36px;
		font-size: 12px;
	}	
}

@media screen and (max-width: 767px) {
	header .h_inner {
		padding: 0 8vw;
	}
}

@media screen and (max-width: 600px) {
/* header */
	header .h_inner .left .logo {
		width: 140px;
	}	
/* footer */
	footer .inner .f_nav {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
}
	footer .inner .f_nav li {
		width: 100%;
	}	
}
@media screen and (max-width: 350px) {
}
