@charset "UTF-8";
/*==================================================================
	Common setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
}
body {
	background: #fff url(../imgs/bg_body.jpg) no-repeat center top;
	background-size: cover;
	background-attachment: fixed;
	color: #1a1a1a;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.7;
	overflow-x:hidden;
	overflow-y: hidden;
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
}
@media screen and (min-width: 768px){
	body { min-width: 1200px; }
}
@media screen and (max-width: 767px){
	body { font-size: 1.4rem; padding-top: 69px!important;}
}
.stop-scroll {
	overflow-y: hidden;
}
a { color: #1a1a1a; text-decoration: none; transition: all 0.3s ease-out; }
a:hover { color: #1a1a1a; text-decoration: none; opacity: 0.7; }
.inner {
	margin: auto;
	max-width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.link {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.noclick,
.is-disabled {
	opacity: 0.3!important;
	pointer-events: none;
}
.inview {
	opacity: 0;
	-webkit-transform: translate3d(0, 20%, 0);
			transform: translate3d(0, 20%, 0);
	-webkit-transition: opacity 1.5s cubic-bezier(.19,1,.22,1) .2s, -webkit-transform 1.5s cubic-bezier(.19,1,.22,1) .2s;
			transition: opacity 1.5s cubic-bezier(.19,1,.22,1) .2s, transform 1.5s cubic-bezier(.19,1,.22,1) .6s, -webkit-transform 1.5s cubic-bezier(.19,1,.22,1) .2s;
}
.inview.show {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
}
.stretchL,
.stretchR,
.stretchT {
	overflow: hidden;
	position: relative;
	opacity: 0;
}
.stretchL.show {
	animation: stretchL 1.5s ease 0s forwards;
}
@keyframes stretchL {
	0% {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.stretchR.show {
	animation: stretchR 1.5s ease 0s forwards;
}
@keyframes stretchR {
	0% {
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}
	100% {        
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.stretchT.show {
	animation: stretchT 1.5s ease 0s forwards;
}
@keyframes stretchT {
	0% {
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}
	100% {        
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.stretchC.show {
	animation: stretchT 1.5s ease 0s forwards;
}
@keyframes stretchC {
	0% {
		clip-path: inset(0 100% 0 100%);
		opacity: 0;
	}
	100% {        
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
.pos-rel { position: relative; }
.full { width: 100%; }
.caption { font-size: 1.0rem; line-height: 1.2; }
@media screen and (min-width: 768px){
	.sp {
		display: none!important;
	}
}
@media screen and (max-width: 767px){
	body {
		font-size: 1.4rem;
	}
	.pc {
		display: none!important;
	}	
}
@media screen and (min-width: 1025px){
	a[href^="tel:"] {
		pointer-events: none;
	}
}
@media screen and (max-width: 1024px){
	a[href^="tel:"] {
		pointer-events: auto !important;
	}
}
.en { font-family: "Heebo", sans-serif; font-weight: bold; font-style: normal; }

/*==================================================================
	Header setting
===================================================================*/
#header {
	display: flex;
	justify-content: space-between;
	padding: 50px 5% 20px;
	transition: ease-in-out 0.5s;
	width: 100%;
	position: relative;
	z-index: 2;
}
#header.is-fixed {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 15px 5% 5px;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	transition: ease-in-out 0.5s;
}
#logo { width: 186px; }
#gnav ul {
	display: flex;
	align-items: center;
	gap: 50px;
}

#gnav a {
	font-weight: 500;
	font-size: 1.6rem;
	position: relative;
}
#gnav a:hover { color: #00a9c8;}
#gnav a:before {
	background-color: #00a9c8;
	content: "";
	display: block;
	height: 2px;
	width: 10px;
	position: absolute;
	left: -15px;
	top: 50%;
	opacity: 0;
}
#gnav .active a { color: #00a9c8;}
#gnav .active a:before { opacity: 1;}

@media screen and (max-width: 1440px){
	#gnav ul { gap: 20px;}
}
@media screen and (max-width: 1280px){
	#gnav a { font-size: 1.4rem;}
}
@media screen and (max-width: 991px){
	#header {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	#gnav a { font-size: 1.8rem;}
}
@media screen and (max-width: 767px){
	#header {
		background-color: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		display: block;
		height: 69px;
		padding: 20px!important;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		z-index: 999;
	}
	#logo { width: 50%; }
	#menu {
		background-color: #00a9c9;
		color: #fff;
		height: 69px;
		width: 69px;
		font-weight: bold;
		padding: 12px 10px 3px;
		text-align: center;
		position: absolute;
		right: 0;
		top: 0;
	}
	#menu > p { text-align: center;}
	#menu .lines {
		position: relative;
        height: 23px;
        width: 40px;
		margin: 0 auto 6px;
	}
	#menu .lines span {
		left: 0;
		width: 100%;
		position: absolute;
		height: 3px;
		background-color: #fff;
		transition: all ease-in-out 0.3s;
	}
	#menu .lines span:nth-child(1) { top: 0;}
	#menu .lines span:nth-child(2) {
		top: 50%;
        transform: translateY(-50%);
	}
	#menu .lines span:nth-child(3) { bottom: 0;}
	#menu.is-active .lines span:nth-child(1) {
		top: 12px;
    	transform: rotate(45deg);
	}
	#menu.is-active .lines span:nth-child(2) {
		opacity: 0;
	}
	#menu.is-active .lines span:nth-child(3) {
		top: 12px;
		transform: rotate(-45deg);
	}
	#gnav {
		background-color: rgba(0, 169, 201, 0.9);
		display: block;
		position: fixed;
		top: 69px;
		left: 0;
		right: 0;
		height: calc(100vh - 69px);
		width: 100%;
		z-index: 11;
		opacity: 0;
		visibility: hidden;
		transition: ease-in-out .5s;
	}
	body.is-menu #gnav {
		opacity: 1;
		visibility: visible
	}
	#gnav ul {
		display: block;
		padding: 5% 10%;
	}
	#gnav a {
		border-bottom: 1px solid #fff;
		color: #fff!important;
		display: block;
		font-size: 1.6rem;
		padding: 9px 0;
	}
	#gnav a:before { background-color: #fff;}
}

/*==================================================================
	Main image setting
===================================================================*/
#main-image {
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 0 5%;
}
.mv-img {
	position: relative;
	z-index: 0;	
}
.mv-img img {
	transition: all 0.75s linear;
	transform-origin: bottom center;
}
.is-larger .mv-img img {transform: scale(1.12);}
.mv-img .cap {
	color: #fff;
	font-size: 1.2rem;
	padding: 5px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.mv-logo {
	position: absolute;
	right: 30px;
	top: 25px;
	width: 210px;
}
.page-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	width: 100%;
}
.page-title > span {
	color: #fff;
	display: inline-block;
}
.page-title > span.en { 
	font-size: 2rem;
	font-weight: 500;
	display: flex;
	align-items: center;
}
.page-title > span.en .lg {
	font-size: 190%;
	line-height: 1.2;
}
.page-title > span.jp {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-size: 2.8rem;
	font-weight: bold;
	padding: 5px 0;
}
@media screen and (max-width: 767px){
	#main-image {padding:0;}
	.is-larger .mv-img img {transform: scale(1);}
	.mv-logo { width: 150px;}
	.page-title > span.en { font-size: 1.6rem;}
	.page-title > span.jp { font-size: 2.0rem;}
}

/*==================================================================
	Contents setting
===================================================================*/
#contents { position: relative;}
.headline01 {
	margin-bottom: 30px;
}
.headline01 .linewrap {
	display: flex;
	align-items: flex-end;
	gap: 85px;
	position: relative;
}
.headline01 .en {
	font-size: 5rem;
	line-height: 50px;
	position: relative;
	top: 1.4rem;
}
.headline01 .jp {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 40px;
}
.headline01 .line {
	background-color: #1a1a1a;
	display: block;
	height: 2px;
	width: 100%;
}
@media screen and (max-width: 767px){
	.headline01 .en { font-size: 3rem;}
	.headline01 .linewrap { gap: 45px;}
	.headline01 .jp { font-size: 1.6rem; margin-top: 20px;}
}

/*==================================================================
	Footer setting
===================================================================*/
#footer {
	background-color: #fff;
	border-top: 1px solid #a7a7a7;
	padding: 80px 0;
}
.footer-inner {
	display: flex;
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 15px;
	position: relative;
}
#flogo {
	margin-bottom: 40px;
	width: 275px;
}
.address { font-size: 1.4rem; }
#fnav {
	border-left: 1px solid #666;
	margin-left: 80px;
	padding-left: 80px;
}
#fnav li + li { margin-top: 8px;}
#fnav li:nth-child(6) a {
	opacity: 0.3;
	pointer-events: none;
}
#fnav a {
	font-weight: 500;
	font-size: 1.4rem;
	position: relative;
}
#fnav a:hover { color: #00a9c8;}
#fnav a:before {
	background-color: #00a9c8;
	content: "";
	display: block;
	height: 2px;
	width: 10px;
	position: absolute;
	left: -15px;
	top: 50%;
	opacity: 0;
}
#fnav .active a { color: #00a9c8;}
#fnav .active a:before { opacity: 1;}

#copy {
	font-size: 1.2rem;
	font-weight: 300;
	position: absolute;
	right: 15px;
	bottom: 0;
	text-align: right;
}
#pagetop {
	cursor: pointer;
	display: none;
	height: 70px;
	width: 70px;
	position: fixed;
	right: 0;
	bottom: 0;
}
@media screen and (max-width: 767px){
	#footer { display: block; padding: 40px 0 10px;}
	.footer-inner { display: block;}
	#flogo { margin: 0 auto 20px; width: 220px;}
	.address { font-size: 1.2rem; text-align: center;}
	#fnav {
		border-left: none;
		border-top: 1px solid #666;
		margin: 20px 0 0;
		padding: 20px 30px;
		width: 100%;
	}
	#copy {
		position: static;
		text-align: center;
	}
	#pagetop { height: 50px; width: 50px;}
}