@charset "UTF-8";
/* common
========================================== */

/*
font-family: "Helvetica Neue Std", san-serif;
font-weight: 400;
*/

body * {
	box-sizing: border-box;
}

a {
	transition: 0.2s all;
}
/* PC
------------------------------------------ */
@media only screen and (min-width: 769px) {
	a:hover {
		opacity: 0.5;
	}
}

/* header
========================================== */
#l-header {
	padding: 30px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
#l-header:before {
	background-color: #fff;
	content: "";
	height: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s all;
	width: 100%;
	z-index: -1;
}
#l-header.is-scroll:before {
	opacity: 1;
}
.l-header-inner {
	position: relative;
}
.l-header-logo {
	width: 144px;
}
.l-header-logo a {
	display: block;
}
.l-header-logo img {
	vertical-align: middle;
}
#nav-trigger {
	cursor: pointer;
	height: 26px;
	position: absolute;
	top: 0;
	right: 0;	
	width: 50px;
	z-index: 100;
}
#nav-trigger > span {
	background-color: #000;
	height: 2px;
	position: absolute;
	transition: 0.15s ease-in-out;
	width: 50px;
}
#nav-trigger > span.line1 {
	top: 0;
}
#nav-trigger > span.line2 {
	top: 12px;
}
#nav-trigger > span.line3 {
	top: 24px;	
}
#nav-trigger.is-open .line1 {
	top: 50%;
	transform: rotate(45deg) translateY(-50%);
}
#nav-trigger.is-open .line2 {
	display: none;
}
#nav-trigger.is-open .line3 {
	left: 2px;
	top: 50%;
	transform: rotate(-45deg) translateY(-50%);
}
.l-header-menu {
	background-color: #fff;
	display: none;
	height: 100vh;
	max-width: 50vw;
	padding: 120px 20px;
	position: fixed;
	top: 0;
	right: 0;
	width: 683px;
	z-index: 99;
}
#l-globalnav ul li {
	text-align: right;
}
#l-globalnav ul li + li {
	margin-top: 30px;
}
#l-globalnav ul li a {
  font-family: "Helvetica Neue Std", san-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.16;
}
#l-overlay {
	background-color: rgba(0,0,0,0.4);
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	z-index: 6;
}
/* PC
------------------------------------------ */
@media only screen and (min-width: 769px) {
	#l-header.is-open:before {
		opacity: 0 !important;
	}
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
	#l-globalnav ul li a {
		font-size: 2.4rem;
	}
}
/* SP
------------------------------------------ */
@media only screen and (max-width: 768px) {
	#l-header {
		padding: 20px;
	}
	#l-header.is-open:before,
	#l-header.is-scroll:before {
		opacity: 1;
	}
	.l-header-logo {
		width: 95px;
	}
	#nav-trigger {
		height: 30px;
		top: -4px;
		width: 40px;
	}
	#nav-trigger > span {
		width: 40px;
	}
	#nav-trigger > span.line2 {
		top: 14px;
	}
	#nav-trigger > span.line3 {
		top: 28px;	
	}
	.l-header-menu {
		height: calc(100vh - 62px);
		top: 62px;
		max-width: inherit;
		padding: 40px 20px;
		width: 100vw;
	}
	#l-globalnav ul li a {
		font-size: 2rem;
	}
	#l-overlay {
		display: none;
	}
}



/* main
========================================== */
#l-main {
	
}
/* PC
------------------------------------------ */
@media only screen and (min-width: 769px) {
}
/* SP
------------------------------------------ */
@media only screen and (max-width: 768px) {
}



/* footer
========================================== */
#l-footer {
	padding: 100px 40px;
}
.l-footer-inner {
	position: relative;
}
.l-footer-logo {
	width: 200px;
}
.l-footer-logo a {
	display: block;
}
.l-footer-address {
	font-size: 1.3rem;
	line-height: 2.15;
}
.copyright {
	font-size: 1.2rem;
}
#pagetop {
	color: transparent;
	cursor: pointer;
	height: 44px;
	font-size: 0;
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 44px;
	z-index: 5;
}
#pagetop:before {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	content: "";
	height: 30px;
	position: absolute;
	top: 15px;
	left: 5px;
	transform: rotate(-45deg);
	width: 30px;
}
/* PC
------------------------------------------ */
@media only screen and (min-width: 769px) {
	.l-footer-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		margin-left: auto;
		margin-right: auto;
		max-width: 1306px;
	}
	.l-footer-address {
		margin-left: 40px;
	}
	.copyright {
		position: absolute;
		bottom: 0;
		right: 0;
	}
}
/* SP
------------------------------------------ */
@media only screen and (max-width: 768px) {
	#l-footer {
		padding: 30px 20px 40px;
	}
	.l-footer-logo {
		margin: 0 auto;
	}
	.l-footer-address {
		font-size: 1.2rem;
		line-height: 1.8;
		margin-top: 20px;
	}
	.copyright {
		margin-top: 40px;
		text-align: center;
	}
	#pagetop {
		height: 35px;
		bottom: 15px;
		right: 15px;
		width: 35px;
	}
	#pagetop:before {
		height: 20px;
		top: 12px;
		left: 6px;
		width: 20px;
	}
}