@charset "UTF-8";

/* オリジナルのレイアウト
----------------------------------------*/
html {
	font-size: 1rem;
	font-size: 10px;
}

body {
	color: #202020;
	font-family: 'Noto Sans JP', sans-serif;
	background: #fff;
	font-size: 1.4rem;
	font-feature-settings: "palt";
	line-height: 1.5;
	height: 100%;
	min-width: 1200px;
	-webkit-text-size-adjust: 100%;
}
.wrapper {
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	body {
		height: 100%;
		min-width: 0;
	}
}
a {
	text-decoration: none;
	color: inherit;
}


/*表示
----------------------------------------*/
/* PCだけ表示 */
.visible_pc {
	display: block !important;
}
/* SPだけ表示 */
.visible_sp {
	display: none !important;
}

/* PCだけ表示 */
.visible_pc_inline {
	display: inline !important;
}
/* SPだけ表示 */
.visible_sp_inline {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	/* PCだけ表示 */
	.visible_pc {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp {
		display: block !important;
	}

	/* PCだけ表示 */
	.visible_pc_inline {
		display: none !important;
	}
	/* SPだけ表示 */
	.visible_sp_inline {
		display: inline !important;
	}
	/* SPだけ改行 */
	.sp_br {
		display: block;
	}

}

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

/* header
----------------------------------------*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2000;
}
.header_logo {
	margin-top: 23px;
}
.header_logo img {
	display: block;
	margin: 0 auto;
}
.header_logo a {
	display: block;
	transition: opacity 300ms;
}
.header_logo a:hover {
	opacity: .6;
}
.header_logo a .en {
	display: block;
	font-weight: bold;
	color: #000000;
	font-size: .9rem;
	letter-spacing: .185em;
	text-align: center;
	margin-top: 9px;
}
.header_btn {
	display: none;
}

@media only screen and (max-width: 768px) {
	.header_logo {
		width: 160px;
		padding: 15px 0 0;
		margin: 0 0 0 6.75%;
		z-index: 2000;
	}
	.header_logo a:hover {
		opacity: 1;
	}
	.header_logo a .en {
		margin-top: 5px;
		text-align: left;
	}
	.header_btn {
		-webkit-appearance: none;
		appearance: none;
		display: block;
		width: 39px;
		height: 39px;
		position: absolute;
		top: 10px;
		right: 20px;
		border: 0;
		background: none;
		z-index: 2000;
	}
	.header_btn:focus {
		outline: none;
	}
	.header_btn::before,
	.header_btn::after {
		content: '';
		display: block;
		background: #6CC6CE;
		width: 30px;
		height: 4px;
		position: absolute;
		top: 10px;
		left: 5px;
		transition: transform 300ms;
	}
	.header_btn.open::before,
	.header_btn.open::after {
		transform: rotate(45deg);
		width: 31px;
		top: 17px;
		left: 0;
	}
	.header_btn.open::after {
		transform: rotate(-45deg);
	}
	.header_btn::after {
		top: 27px;
	}
	.header_btn span {
		display: block;
		background: #6CC6CE;
		width: 30px;
		height: 4px;
		position: absolute;
		top: 18.5px;
		left: 5px;
	}
	.header_btn.open span {
		display: none;
	}
}

/* gnav
----------------------------------------*/
.gnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 40px 0 0;
}
.gnav a {
	transition: opacity 300ms;
}
.gnav li {
	text-align: center;
	margin: 0 20px;
}
.gnav li a {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	white-space: nowrap;
	letter-spacing: .1em;
}
.gnav li .en {
	display: block;
	font-size: .7rem;
	margin-top: 4px;
	letter-spacing: .1em;
	color: #6CC6CE;
}
.gnav a:hover {
	opacity: .6;
}

.subnav {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3000;
}
.subnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.subnav ul li {
	width: 108px;
}
.subnav ul li a {
	text-align: center;
	display: block;
	padding: 24px 0;
	font-size: 1.3rem;
	line-height: 1;
	transition: opacity 300ms;
}
.subnav ul li a:hover {
	opacity: .6;
}
.subnav ul li:first-child a {
	background: #F9F9F9;
	color: #6CC6CE;
}
.subnav ul li:last-child a {
	background: -moz-linear-gradient(135deg, #6CC6CE, #67E3C6);
	background: -webkit-linear-gradient(135deg, #6CC6CE, #67E3C6);
	background: linear-gradient(135deg, #6CC6CE, #67E3C6);
	color: #FFFFFF;
}
.subnav ul li .en {
	font-size: .8rem;
	margin-top: 8px;
}
.subnav ul li:first-child .en {
	color: rgba(108,198,206,0.8);
}
.subnav ul li:last-child .en {
	color: rgba(255,255,255,0.8);
}
.subnav ul li span {
	display: block;
}
.subnav ul li span.ico {
	padding-bottom: 7px;
	min-height: 23px;
}


@media only screen and (max-width: 1200px) {
	
}

@media only screen and (max-width: 768px) {
	.gnav {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		background: rgba(255,255,255,0.9);
	}
	.gnav ul {
		width: 87.5%;
		display: block;
		margin: 0 auto;
		padding: 85px 0 0;
	}
	.gnav li {
		padding: 15px 0;
	}
	.gnav li a {
		text-align: center;
		font-size: 1.6rem;
	}
	.gnav li .en {
		font-size: 1rem;
	}
	.gnav a:hover {
		opacity: 1;
	}


	.subnav {
		position: fixed;
		top: inherit;
		bottom: 0;
		width: 100%;
		line-height: 0;
	}
	.subnav ul li {
		flex: 0 0 50%;
	}
	.subnav ul li a {
		padding: 15px 0;
		font-size: 1.2rem;
	}
	.subnav ul li a:hover {
		opacity: 1;
	}
	.subnav ul li .en {
		font-size: .7rem;
		margin-top: 6px;
	}
}

/*pagetop
----------------------------------------*/
.pagetop {
	width: 78px;
	height: 78px;
	position: fixed;
	right: 4.609%;
	bottom: 60px;
	z-index: 100;
}
.pagetop a {
	display: block;
	transition: opacity .3s;
}
.pagetop a:hover {
	opacity: .6;
}

@media only screen and (max-width: 768px) {
	.pagetop {
		width: 50px;
		height: 50px;
		right: 4.609%;
		bottom: 90px;
	}
	.pagetop a:hover {
		opacity: 1;
	}
}

/*footer
----------------------------------------*/
.footer {
	z-index: 10;
}
.footer a {
	transition: opacity 300ms;
}
.footer a:hover {
	opacity: .6;
}
.footer_inner {
	width: 1160px;
	margin: 0 auto;
	padding: 45px 0 80px;
}
.footer_inner .btn_entry a {
	background: -moz-linear-gradient(135deg, #6CC6CE, #67E3C6);
	background: -webkit-linear-gradient(135deg, #6CC6CE, #67E3C6);
	background: linear-gradient(135deg, #6CC6CE, #67E3C6);
	color: #FFFFFF;
	display: block;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: .3em;
	padding: 35px 0;
	transition: opacity 300ms;
	margin-bottom: 40px;
	position: relative;
}
.footer_inner .btn_entry a .en::before {
	content: "";
	background: url("../img/common/ico-entry-l.svg") no-repeat;
	width: 21px;
	height: 19px;
	display: inline-block;
	margin-right: 30px;
}
.footer_inner .btn_entry a::before {
	content: "";
	position: absolute;
	background: url("../img/common/ico-arrow-l.svg") no-repeat;
	width: 43px;
	height: 6px;
	right: 100px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: right 300ms;
}
.footer_inner .btn_entry a:hover::before {
	right: 80px;
}
.footer_inner .btn_entry a:hover {
	opacity: .6;
}
.footer_logo {
	text-align: center;
}
.footer_info {
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1.85;
	letter-spacing: .1em;
}
.footer_copy {
	display: block;
	color: rgba(0,0,0,.25);
	text-align: center;
	font-size: .9rem;
	font-weight: bold;
	letter-spacing: .1em;
}
.footer_link {
	width: 160px;
	margin: 13px auto 34px;
}
.footer_link a {
	border: 1px solid #6CC6CE;
	color: #FFF;
	background: #6CC6CE;
	display: block;
	text-align: center;
	font-size: 1.1rem;
	padding: 6px 10px;
	transition: background .3s, color .3s;
}
.footer_link a:hover {
	opacity: 1;
	color: #6CC6CE;
	background: #FFF;
}
.footer_link a[target="_blank"]::after {
	content: '';
	display: block;
	width: 9px;
	height: 7px;
	background: url(../img/common/icon_external_white.svg) no-repeat;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -4px;
}
.footer_link a[target="_blank"]:hover::after {
	background-image: url(../img/common/icon_external.svg);
}

@media only screen and (max-width: 768px) {
	.footer {
		background: none;
		padding-top: 25px;
		margin-bottom: 78px;
	}
	.footer a:hover {
		opacity: 1;
	}
	.footer_inner {
		width: auto;
		display: block;
		text-align: center;
		padding: 0 0 47px;
	}
	.footer_logo {
		width: 167px;
		margin: 27px auto 3px;
	}
	.footer_info {
		font-size: .8rem;
		line-height: 2;
	}

	.footer_inner .btn_entry a {
		width: 100%;
		margin: 0 auto;
		font-size: 1.75rem;
		letter-spacing: .4em;
		padding: 32px 20px 32px 25px;
	}
	.footer_inner .btn_entry a .en::before {
		width: 19px;
		height: 17px;
		background-size: 19px auto;
		margin-right: 10px;
	}
	.footer_inner .btn_entry a::before {
		background-size: 22px auto;
		width: 22px;
		height: 6px;
		right: 50px;
	}
	.footer_inner .btn_entry a:hover::before {
		right: 50px;
	}
	.footer_copy {
		font-size: .7rem;
		letter-spacing: .25em;
	}
	.footer_link a:hover {
		color: #FFF;
		background: #6CC6CE;
	}
	.footer_link a[target="_blank"]:hover::after {
		background-image: url(../img/common/icon_external_white.svg);
	}
}

/*loading
----------------------------------------*/
.l-loading {
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	overflow: hidden;
}
.is-load .l-loading {
	width: 0;
	-webkit-transition: 1.6s cubic-bezier(.86,0,.07,1);
	transition: 1.6s cubic-bezier(.86,0,.07,1);
	-webkit-transition-delay: 1s;
	transition-delay: 1s;
	-webkit-transition-property: width;
	transition-property: width;
}
.l-loading__bg {
	width: 400%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #fff;
	-webkit-transform: skewX(-30deg);
	transform: skewX(-30deg);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.is-load .l-loading__bg {
	-webkit-transition: width 1.6s cubic-bezier(.86,0,.07,1);
	transition: width 1.6s cubic-bezier(.86,0,.07,1);
	width: 0!important;
}
.l-loading__bg::after, .l-loading__bg::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.l-loading__bg::before {
	background-color: rgba(255,255,255,.6);
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	opacity: 1;
}
.is-load .l-loading__bg::before {
	opacity: 0;
	-webkit-transition: opacity .6s 1s linear;
	transition: opacity .6s 1s linear;
}