@charset "UTF-8";

/* ========================================
	utility
======================================== */

/* テキストカラーグレー : #4D4D4D */

/* --------- フェードイン設定 --------- */

.scroll-in.delay4 {
	transition-delay: .4s;
}
.scroll-in.delay8 {
	transition-delay: .8s;
}
.scroll-in.delay10 {
	transition-delay: 1s;
}

/* --------- テキストリンク --------- */

.textlink a,
a.textlink {
	color:#4D4D4D;
	text-decoration: underline;
	transition: .3s;
}
.textlink a:hover,
a.textlink:hover {
	color:#91B9E5;
}

/* --------- リンクボタン base style --------- */

/* グラデbase */
.linkbtn.ds a {
	display: inline-block;
	text-align: center;
	font-size:1.8rem;
	line-height: 1.6;
	font-weight:700;
	color:#000;
	padding: 0.6em 0;
	background-color: #fff;
	border-radius: 100px;
	box-shadow: 0px 0px 25px -5px rgba(140,140,140,0.6);
	transition: all .5s ease-out;
	background: linear-gradient(270deg, rgba(251, 252, 242, 1), rgba(243, 232, 244, 1), rgba(229, 239, 250, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
	background-position: 1% 50%;
	background-size: 300% 300%;
}
.linkbtn.ds a:hover {
	background-position: 99% 50%;
}

/* 別窓アイコン有り */
.linkbtn.win a {
	position: relative;
}
.linkbtn.win a::after {
	content: "";
	display: inline-block;
	background-image: url(/common/images/icon-window-b.svg);
	background-size: cover;
	position: absolute;
	width: 15px;
    height: 15px;
    right: 5%;
	top: 50%;
	transform: translateY(-50%);
}
.linkbtn.win a:hover::after {
	background-image: url(/common/images/icon-window-w.svg);
}

/* ポップアップボタンボタン */
.linkbtn.popup {
	text-align: center;
}
.linkbtn.popup a {
	display: inline-block;
	width:340px;
	text-align: center;
	font-size:1.5rem;
	line-height: 1.6;
	color:#000;
	padding: 0.6em 0;
	background-color: #D8E8FA;
	border-radius: 100px;
}
.linkbtn.popup a:hover {
	color:#ffffff;
	background-color: #4D4D4D;
}



/* シンプルボタン */
.linkbtn.bline {
	text-align: center;
}
.linkbtn.bline a {
	display: inline-block;
	width:500px;
	text-align: center;
	font-size:2rem;
	line-height: 1.6;
	color:#000;
	padding: 0.6em 0;
	border:solid 1px #000;
	border-radius: 100px;
}
.linkbtn.bline a:hover {
	color:#ffffff;
	background-color: #000;
}

/* ========================================
	style
======================================== */

/* --------- コンテンツ共通 --------- */

/* メインタイトル */


/* popupスタイル */
.white-popup {
	width:80%;
	height: 80vh;
	overflow-y: scroll;
	-ms-overflow-style: none; /* IE, Edge */
	scrollbar-width: none; /* Firefox */
	background-color: #fff;
	margin: 0 auto; 
	position: relative;
}
.white-popup::-webkit-scrollbar {  /* Chrome, Safari */
	display:none;
}
.mfp-close {
	position: fixed !important;
	right: 10% !important;
    top: 8% !important;
	width: 70px !important;
    height: 70px !important;
	font-family: 'Noto Serif JP', serif !important;
	font-size: 5rem !important;
	font-weight: 200;
	line-height: 1 !important;
	opacity: 1;
}
.mfp-close-btn-in .mfp-close {
	color: #ffffff;
}

.white-popup .subject {
	width: 100%;
	padding:5em;
}



/* --------- header --------- */

article {
	position: relative;
	overflow: hidden;
	padding-top:170px; /* header高さ */
}

.first-view {
	width: 1px;
	height: 1px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#globalHeader {
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 170px;
	padding:0 10% 0 5%;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.7) 60%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 60%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,0.7) 60%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

#globalHeader h1 {
	width: 280px;
	padding-top: 30px;
}
#globalHeader h1 img {
    width: 100%;
}

/* ナビメニュー style */
nav.navMenu {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding:5vmax 0;
	background: #e5effa; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #e5effa 0%, #f3e8f4 50%, #fbfcf2 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #e5effa 0%,#f3e8f4 50%,#fbfcf2 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #e5effa 0%,#f3e8f4 50%,#fbfcf2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5effa', endColorstr='#fbfcf2',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	display: none;
	overflow-y: scroll; 
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none; /* IE, Edge */
	scrollbar-width: none; /* Firefox */
}
nav.navMenu::-webkit-scrollbar {  /* Chrome, Safari */
	display:none;
}

nav.navMenu .base-width {
	width: 85%;
    margin: 0 auto;
}

nav.navMenu h1 {
	width: 10vmax !important;
    margin: 0 auto 8vmax;
}
nav.navMenu h1 img {
	width: 100%;
}

nav.navMenu ul {
	margin:0 auto 3vmax;
}
nav.navMenu ul li {
	width: 28%;
	margin-bottom:5vmax;
}
nav.navMenu ul li:not(:nth-child(3n)) {
	margin-right:8%;
}

nav.navMenu ul li span.font-smg {
	font-size:2.8vmax;
	line-height: 1;
	display: flex;
	align-items: center;
}
nav.navMenu ul li span.font-smg:before,
nav.navMenu p:before {
	content: "";
	display: inline-block;
	border-top: 1px solid #4D4D4D;
	width: 2vmax;
	margin-right: 1vmax;
}
nav.navMenu ul li span.jp {
	display: block;
	font-size:1vmax;
	font-weight: 400;
	line-height: 1;
	padding-left: 3vmax;
	margin-top:0.5em;
}

nav.navMenu p {
	/* width: 85%; */
	font-size:1vmax;
	display: flex;
	align-items: center;
	margin:0 auto;
}

nav.navMenu a {
	color:#4D4D4D;
}
nav.navMenu a:hover {
	color:#91B9E5;
}

/* トグル syyle */
.toggle {
	display: block;
	position: fixed;
	right: 4%;
	top: 38px;
	z-index: 200;
	width: 45px;
	height: 45px;
	cursor: pointer;
}
.toggle span {
	display: block;
	position: absolute;
	width: 50px;
	border-bottom: solid 1px #000;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	left: 6px;
}
.toggle span:nth-child(1) {
	top: 9px;
}
.toggle span:nth-child(2) {
	width: 35px;
	top: 20px;
}
.toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-bottom: solid 1px #000;
}
.toggle.active span:nth-child(2) {
	width: 50px;
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	border-bottom: solid 1px #000;
}

/* --------- footer --------- */

/* footerページ下部固定 */
article {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
#footerArea {
	margin-top: auto;
}
/* ----------------- */

footer {
	color: #B7A600;
	margin-top:6rem;
	/* border-top:solid 1px #fff; */
	/* border-bottom:solid 1px #D9D9D9; */
}

footer #ftelement {
	padding:6em 0;
}

footer #ftelement h1 {
	width: 25%;
}
footer #ftelement h1 img {
	width: 50%;
}

/* サイトマップ */
footer #ftelement #sitemap {
	width: 75%;
}
footer #ftelement #sitemap ul {
	margin-bottom:2em;
}
footer #ftelement #sitemap ul li {
	width: 22%;
	font-size:2.2rem;
	margin-bottom:0.5em;
}

footer #ftelement #sitemap p {
	font-size:1.4rem;
}

footer #ftelement #sitemap a {
	color:#4D4D4D;
}
footer #ftelement #sitemap a:hover {
	color:#91B9E5;
}

/* コピーライトエリア */
#footerArea #copy {
	padding:2em 0;
	font-size:1.3rem;
	text-align: center;
}

/* --------- PageTop --------- */

article:not(.is-scrolled) .page-top-container a {
	transform: translate(100%, 0);
}

#pageTop {
	height: 70px;
	position: relative;
}

.page-top-container {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.fixed .page-top-container {
	position: fixed;
	bottom: 50px;
	z-index: 90;
	pointer-events: none;
}

.page-top-container a {
	display: block;
	width: 42px;
	height: 90px;
	margin-left: auto;
	color: #000;
	font-size: 1.4rem;
	pointer-events: auto;
}

.page-top-container .pt-inner {
	height: 100%;
	position: relative;
	transition: all .5s;
}

#pageTop .pt-inner::before {
	content: '';
	display: block;
	width: 14px;
	height: 90px;
	background: url(../images/top-arrow.svg) no-repeat left top;
	background-size: contain;
	position: absolute;
	bottom: 16px;
	left: 16px;
}

#pageTop span {
	display: block;
	width: 70px;
	transform: rotate(-90deg);
	transform-origin:left top;
	position: absolute;
	bottom: -10px;
	left: 0;
}

/* ========================================
	1024px以上専用スタイル（PC）
======================================== */
@media print,
screen and (min-width: 1024px) {}

/* ========================================
	1200px以上専用スタイル
======================================== */
@media screen and (min-width: 1200px) {

	/* --------- header --------- */

	/* ナビメニュー style */
	nav.navMenu ul li span.font-smg {
		font-size:4.4rem;
	}
	nav.navMenu ul li span.font-smg:before,
	nav.navMenu p:before {
		width: 30px;
		margin-right: 1em;
	}
	nav.navMenu ul li span.jp {
		font-size:1.5rem;
		padding-left: 75px;
		margin-top:0.5em;
	}
	nav.navMenu p {
		font-size:1.8rem;
	}
	
}

/* ========================================
	1023px以下専用スタイル（TAB & SP）
======================================== */
@media only screen and (max-width: 1023px) {

	/* --------- header --------- */

	/* ナビメニュー style */
	nav.navMenu .base-width {
		width: 75%;
	}	

	nav.navMenu ul {
		justify-content: space-between;
	}
	nav.navMenu ul li {
		width: 42%;
	}
	nav.navMenu ul li:nth-child(odd),
	nav.navMenu p {
		margin-left:8%;
	}
	nav.navMenu ul li:not(:nth-child(3n)) {
		margin-right:0;
	}

	/* --------- footer --------- */

	footer {
		margin-top:3rem;
	}	

	footer #ftelement {
		padding:4em 0;
	}
	
	/* サイトマップ */
	footer #ftelement #sitemap ul li {
		width: 25%;
		font-size:1.8rem;
	}
	footer #ftelement #sitemap p {
		font-size:1.4rem;
	}
	
	/* コピーライトエリア */
	#footerArea #copy {
		font-size:1.2rem;
	}

}

/* ========================================
	768px以上専用スタイル（TAB & PC）
======================================== */
@media print , screen and (min-width: 768px) {

	/* --------- リンクボタン base style --------- */

	
	/* --------- コンテンツ共通 --------- */

		
	/* --------- PageTop --------- */

	#pageTop {
		height: 0;
	}
	.page-top-container a {
		width: 62px;
		height: 140px;
		font-size: 1.8rem;
	}
	#pageTop .pt-inner::before {
		width: 18px;
		height: 140px;
		bottom: 46px;
		left: 26px;
	}
	#pageTop span {
		width: 80px;
		bottom: 10px;
	}
	#pageTop a.hovering .pt-inner {
		height: 90%;
	}
	
}

/* ========================================
	768px以上1023px以下専用スタイル（TAB）
======================================== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {}

/* ========================================
	767px以下専用スタイル（SP）
======================================== */
@media screen and (max-width: 767px) {

	/* --------- リンクボタン base style --------- */

	/* 黄色base */
	.linkbtn.ds {
		text-align: center;
	}
	.linkbtn.ds a {
		width:100%;
		font-size:1.4rem;
		line-height: 1.4;
		padding: 0.8em 0;
		box-shadow: 0px 0px 15px -5px rgba(140,140,140,0.6);
	}
	
	/* 別窓アイコン有り */
	.linkbtn.win a::after {
		width: 3.5vw;
		height: 3.5vw;
		right: 6vw;
	}

	/* 大きめボタン */
	.linkbtn.ds.wide a {
		height:16vw;
		display: flex;
		align-items: center;
		justify-content: center;
		margin:0 auto;
	}

	/* シンプルボタン */
	.linkbtn.bline a {
		width:80%;
		font-size:1.4rem;
		line-height: 1.4;
		padding: 0.8em 0;
	}
	
	/* --------- コンテンツ共通 --------- */


	/* popupスタイル */
	.white-popup {
		width:90%;
		height: 80vh;
	}
	.mfp-close {
		right: 4% !important;
		top: 4% !important;
		width: 50px !important;
		height: 50px !important;
		font-size: 4rem !important;
	}
	.white-popup .subject {
		padding:2em;
	}


	/* --------- header --------- */

	article {
		padding-top:19vw; /* header高さ */
	}

	#globalHeader {
		height: 19vw;
		padding-left:3%;
	}
	#globalHeader h1 {
		width: 53%;
		padding-top: 2vw;
	}

	/* ナビメニュー style */
	nav.navMenu .base-width {
		padding-bottom:12vw;
	}
	nav.navMenu .base-width h1 {
		width: 19vw !important;
	}	
	nav.navMenu ul li {
		width: 100%;
	}
	nav.navMenu ul li:nth-child(odd),
	nav.navMenu p {
		margin-left:0;
	}

	nav.navMenu ul li span.font-smg {
		font-size:calc(100vw / 14);
	}
	nav.navMenu ul li span.font-smg:before,
	nav.navMenu p:before {
		width: 6vw;
		margin-right: 4vw;
	}
	nav.navMenu ul li span.jp {
		font-size:calc(100vw / 35);
		padding-left: 10vw;
		margin-top:0.5em;
	}
	nav.navMenu p {
		font-size:calc(100vw / 40);
	}

	/* トグル syyle */
	.toggle {
		right: 7vw;
		top: 5vw;
		width: 10vw;
		height: 10vw;
	}
	.toggle span {
		width: 10vw;
		left: 6px;
	}
	.toggle span:nth-child(1) {
		top: 9px;
	}
	.toggle span:nth-child(2) {
		width: 7vw;
		top: 20px;
	}
	.toggle.active span:nth-child(1) {
		top: 18px;
		left: 6px;
	}
	.toggle.active span:nth-child(2) {
		width: 10vw;
		top: 18px;
	}

	/* --------- footer --------- */

	footer #ftelement #sitemap .pagenavi {
		display: none;
	}
		
	footer #ftelement {
		padding:10vw 7vw;
	}
	footer #ftelement h1 {
		width: 40%;
		padding-left: 2vw;
		margin-bottom: 9vw;
	}
	
	/* コピーライトエリア */
	#footerArea #copy {
		padding:3vw 0;
	}

}