@charset "utf-8";

/* ===================================================================
全体共通
=================================================================== */

/* 共通
--------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:400');

/* フォント */
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 300;
	src: url(../font/noto/NotoSansCJKjp-DemiLight.min.woff2) format('woff2');
	src: url(../font/noto/NotoSansCJKjp-DemiLight.min.woff) format('woff');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url(../font/noto/NotoSansCJKjp-Medium.min.woff2) format('woff2');
	src: url(../font/noto/NotoSansCJKjp-Medium.min.woff) format('woff');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url(../font/noto/NotoSansCJKjp-Bold.min.woff2) format('woff2');
	src: url(../font/noto/NotoSansCJKjp-Bold.min.woff) format('woff');
}
/**/

body {
	font-family: "Noto Sans JP", "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
	-webkit-font-feature-settings: "palt";
			font-feature-settings: "palt";
	font-weight: 300;
	color: #333;
	letter-spacing: 1px;
	background-color: #f5f8fb;
	font-size: 1.2rem;
}

.pc {
	display: none;
}

.sp {
	display: inherit;
}

.en {
	font-family: 'Oswald', sans-serif !important;
	font-weight: 400;
}

.btn {
	margin: 3rem auto 0;
}

.btn a {
	display: block;
	background: url(../img/ico_link.png) no-repeat right 5% top 50%, linear-gradient(135deg, #445573 0%,#32719a 100%);
	padding: 1.5rem 2rem;
	color: #fff;
	position: relative;
	text-align: center;
}
.btn--site a {
	background: url(../img/ico_outlink.png) no-repeat right 5% top 50%, linear-gradient(135deg, #445573 0%,#32719a 100%);
}

.btn--white a {
	background:  url(../img/ico_link.png) no-repeat right 5% top 50%;
	border: 1px solid #fff;
}

.btn--outLink a {
	background: url(../img/ico_outlink.png) no-repeat right 5% top 50%, linear-gradient(135deg, #445573 0%,#32719a 100%);
}

.btn a::before,
.btn a::after,
.btn a span::before,
.btn a span::after {
	content: "";
	display: block;
	position: absolute;
	background: rgba(255,255,255,.6);
	transition: all .2s ease-in-out;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
}

.btn a::before {
	/* width: 0; */
	transform-origin: 0 0;
	transform: scaleX(0);
	height: 1px;
	top: 5px;
	left: 5px;
}

.btn a::after {
	transform-origin: 100% 0;
	width: 1px;
	transform: scaleY(0);
	top: 5px;
	right: 5px;
}

.btn a span::before {
	transform-origin: 100% 100%;
	transform: scaleX(0);
	height: 1px;
	bottom: 5px;
	right: 5px;
}

.btn a span::after {
	transform-origin: 0 100%;
	width: 1px;
	transform: scaleY(0);
	bottom: 5px;
	left: 5px;
}

.btn a:hover::before,
.btn a:hover span::before {
	transform: scaleX(1);
}

.btn a:hover::after,
.btn a:hover span::after {
	transform: scaleY(1);
}

@media only screen and (min-width: 767px) {
	body {
		font-size: 1.5rem;
		letter-spacing: 1.6px;
	}

	.pc {
		display: inherit;
	}

	.sp {
		display: none;
	}
}

/* grid layout
--------------------------------------------------------------------*/
.gridContainer {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 50px auto auto;
	grid-template-rows: 50px auto auto;
	-ms-grid-columns: 100%;
	grid-template-columns: 100%;
	grid-template-areas:
		"header"
		"contents"
		"footer"
	;
}

@media only screen and (min-width: 767px) {
	.gridContainer {
		-ms-grid-rows: 90px auto auto;
		grid-template-rows: 90px auto auto;
	}
}


/* header
--------------------------------------------------------------------*/
header {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: header;
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	position: fixed;
	z-index: 100;
}

.header__logo {
	width: 100%;
	max-width: 300px;
	padding: 10px 10% 10px 10px;
	margin-right: auto;
}

.header__logo a {
	display: block;
}

.header__logout a {
	background: #14a0dc url("../img/ico_logout.png")  center 10px / 24% no-repeat;
	color: #fff;
	text-align: center;
	padding: 20px 0 0;
	width: 50px;
	line-height: 30px;
	display: block;
	font-size: 1rem;
	letter-spacing: 1px;
}

.gnaviBtn {
	width: 50px;
	height: 50px;
	background: #445573;
	position: relative;
	cursor: pointer;
}

.gnaviBtn__line {
	position: absolute;
	width: 20px;
	height: 2px;
	border-radius: 10px;
	background: #fff;
	display: block;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: transform .2s ease-in-out;
}

.gnaviBtn__line--01 { top: -8px; }
.gnaviBtn__line--02 { top: 8px; }

.gnaviBtn--on .gnaviBtn__line--01 {
	top: 0;
	transform: rotate(45deg);
}

.gnaviBtn--on .gnaviBtn__line--02 {
	top: 0;
	transform: rotate(-45deg);
}

@media only screen and (min-width: 767px) {
	header {
		height: 90px;
	}

	.header__logo {
		padding: 0 20px;
		max-width: 340px;
	}

	.header__logout a {
		background: #14a0dc url("../img/ico_logout.png") no-repeat 35px 55%;
		padding: 0 30px 0 60px;
		width: auto;
		line-height: 50px;
		border-radius: 50px;
		margin-right: 30px;
		font-size: inherit;
		overflow: hidden;
		transition: background-color .2s ease-in-out;
	}

	.header__logout a:hover {
		background-color: #40b8ec;
	}

	.header__logout a span {
		position: relative;
		display: block;
		transition: transform .2s ease-in-out;
	}

	.header__logout a span::after {
		content: attr(data-text);
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		color: #fff;
		transform: translateY(100%);
	}

	.header__logout a:hover span {
		animation: logoutBtn .25s ease-in-out;
	}

	@keyframes logoutBtn {
		from {
			transform: translateY(0);
		}
		to {
			transform: translateY(-100%);
		}
	}

	.gnaviBtn {
		width: 90px;
		height: 90px;
	}

	.gnaviBtn__line {
		position: absolute;
		width: 40px;
		height: 3px;
		transition: all .2s ease-in-out;
	}

	.gnaviBtn__line--01 { top: -15px; }
	.gnaviBtn__line--02 { top: 15px; }


	.gnaviBtn:hover .gnaviBtn__line--01 { left: -8px; }
	.gnaviBtn:hover .gnaviBtn__line--02 { right: -8px; }

	.gnaviBtn--on:hover .gnaviBtn__line--01,
	.gnaviBtn--on:hover .gnaviBtn__line--02 {
		right: 0;
		left: 0;
		background-color: #9ba1b1;
	}
}

.gnaviArea {
	position: absolute;
	width: 100%;
	top: 50px;
	right: -100%;
	height: calc(100vh - 50px);
	background: linear-gradient(#445573 0%,#32719a 100%);
	color: #fff;
	padding: 8%;
	align-items: top;
	overflow: scroll;
}

.gnavi {
	width: 100%;
}

.gnavi__item {
	font-size: 1.4rem;
	padding: 0 1em 1em;
	margin-bottom: 1em;
	border-bottom: 1px dotted rgba(255,255,255,0.3);
	margin-left: 40px;
}

.gnavi__item:last-of-type {
	margin-bottom: 0;
	border: none;
}

.gnavi__item a {
	display: block;
}

.subnavi {
	margin: 1em 0 1em 2em;
}

.subnavi__item a {
	font-size: 1.2rem;
	display: block;
	margin: 1em 0 0;
	position: relative;

}

.subnavi__item a::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	top: 0;
	right: auto;
	bottom: 0;
	left: -1em;
	margin: auto;
}

.gnavi__item--outLink a::after {
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	margin-left: 1rem;
	background: url(../img/ico_outlink.png) right top 50% / 11px no-repeat;
	opacity: .7
}

@media only screen and (min-width: 767px) {
	.gnaviArea {
		width: 650px;
		top: 90px;
		right: -650px;
		height: calc(100vh - 90px);
		padding: 60px;
		align-items: center;
		overflow: auto;
	}

	.gnaviAreaBG {
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.7);
		z-index: -10;
		top: 90px;
		left: 0;
	}

	.gnavi {
		max-width: 1100px;
		margin: 0 auto;
	}

	.gnavi__item {
		font-size: 1.8rem;
		margin-left: 40px;
	}

	.gnavi__item:last-of-type {
		border: none;
		margin-bottom: 0;
	}

	.gnavi__item a {
		transition: opacity .2s ease-in-out;
	}

	.gnavi__item a:hover {
		opacity: .5;
	}

	.subnavi__item a {
		font-size: 1.4rem;
		display: block;
		margin: .5em 0 0;
		position: relative;
	}

	.gnavi__item--outLink a::after {
		width: 12px;
		height: 12px;
		background: url(../img/ico_outlink.png) right top 50% / 12px no-repeat;
	}
}


/* 見出し
--------------------------------------------------------------------*/
.pageHeader {
	width: 100%;
	max-width: calc(1100px + 10%);
	margin: 0 auto;
	padding: 0 5%;
	text-align: center;
}

.headline {
	font-size: 2.2rem;
	font-weight: 300;
	margin: 30px 0 40px;
}

.heaadline--en {
	font-size: 4rem;
	color: #dadde3;
	display: block;
	font-weight: 400;
	line-height: 1.2;
}

.secTtl {
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
	position: relative;
	font-weight: 300;
	padding: 2rem 5% 0;
	margin-bottom: 3rem;
}

.secTtl::before {
	position: absolute;
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background: linear-gradient(135deg, #445573 0%,#32719a 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: auto;
	margin: auto;
}

.secTtl--white {
	color: #fff;
}

.secTtl--white::before {
	background: #fff;
}

@media only screen and (min-width: 767px) {
	.headline {
		font-size: 3rem;
		margin: 80px 0;
	}

	.heaadline--en {
		font-size: 9rem;
		color: #dadde3;
	}

	.secTtl {
		font-size: 2.8rem;
		line-height: 1.4;
		text-align: center;
		position: relative;
		font-weight: 400;
		padding: 3rem 5% 0;
		margin: 0 0 6rem;
	}

	.secTtl::before {
		width: 80px;
		height: 3px;
	}
}

/* contents
--------------------------------------------------------------------*/
.wrapper {
	-ms-grid-row: 2;
	-ms-grid-column: 1;
	grid-area: contents;
	position: relative;
	/* opacity: 0; */
	/* transition: all .5s ease-in-out; */
}

/* .wrapper::before,
.wrapper::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f5f8fb;
	z-index: 9999;
	pointer-events: none;
} */

/* .wrapper::after {
	background: #f5f8fb;
}

.wrapper::before {
	animation: wrapperFadeIn .5s ease-in-out forwards;
}

@keyframes wrapperFadeIn {
	from { opacity: 1;}
	to { opacity: 0; }
} */

/* .wrapper::after {
	opacity: 0;
	transition: opacity .5s ease-in-out;
}

.wrapper.fadeout {
	padding-top: 30px;
	opacity: 0;
}

.wrapper.fadeout::after {
	opacity: 1;
} */

.section {
	padding: 4rem 5% 0;
}

.secInner {
	width: 100%;
	margin: 0 auto;
}

.gridLine {
	width: calc(100% - (10% - 2px));
	max-width: 1102px;
	height: 100%;
	position: fixed;
	padding: 0 5%;
	background:
		url("../img/bg_grid.gif") repeat-y 0 top,
		url("../img/bg_grid.gif") repeat-y 25% top,
		url("../img/bg_grid.gif") repeat-y 50% top,
		url("../img/bg_grid.gif") repeat-y 75% top,
		url("../img/bg_grid.gif") repeat-y 100% top
	;
	top: 0;
	right: 0;
	bottom: 0;
	left:0;
	margin: auto;
	z-index: -1;
}


@media only screen and (min-width: 767px) {
	/* .wrapper::before,
	.wrapper::after {
		top: 90px;
	} */

	.section {
		padding: 10rem 5% 0;
	}

	.secInner {
		max-width: 1100px;
	}
}


/* footer
--------------------------------------------------------------------*/
footer {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
	grid-area: footer;
	background: #445573;
	padding: 3rem;
	color: #fff;
	margin-top: 6rem;
}

.footerLogo {
	width: 50%;
	margin: 0 0 3rem;
}

.footerNav {
	margin: 2rem 0 3rem;
}

.footerNav__item a {
	display: block;
	margin: 0.6rem 0 0;
	padding: .6em 0;
	border-bottom: 1px dotted rgba(255,255,255,0.3);
	background: url(/common/img/ico_outlink.png) no-repeat right center;
	padding-right: 2rem;
}

.footerNav__item a:hover {
	opacity: .5;
}

.footer__copyright {
	opacity: 0.5;
	font-size: 80%;
}

@media only screen and (min-width: 767px) {
	footer {
		margin-top: 15rem;
		padding: 6rem 2rem;
		text-align: center;
	}

	.footerLogo {
		width: 200px;
		margin: 0 auto;
	}

	.footerNav {
		display: flex;
		justify-content: center;
		margin: 5rem 0 3rem;
	}

	.footerNav__item a {
		margin: 0 2rem;
		transition: opacity .2s ease-in-out;
		border: none;
		font-size: 1.4rem;
	}
}
