@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');



/* -------------------------------------------

base

------------------------------------------- */
:root {
	--blue-light: #f6fbfc;
	--grey: #353535;
	--yellow: #fff605;
	--prime: #0d73b1;
	--font-serif: 'Noto Serif JP', serif;
	--font-en: "Josefin Sans", sans-serif;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* ---- link ---- */
a {
	color: var(--grey);
}



/* -------------------------------------------

layout

------------------------------------------- */
article > * {
	padding: 8rem 0;
}
@media screen and (max-width: 768px) {
	article > * {
		padding: 6rem 3rem;
	}
}
/* ---- base-width ---- */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* ---- page-top ---- */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: #143253;
	border-radius: 50%;
	color: #fff;	
	font-size: 2.4rem;
	width: 5.6rem;
	height: 5.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {

}



/* -------------------------------------------

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading-1 span {
	display: block
}
.heading-1 .en {
	font-size: 1.2rem;
	color: #91abb1;
	margin-bottom: 1.5rem;
	letter-spacing: 0.15em;
}
.heading-1 .jp {
	color: var(--prime);
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: 900;
	font-size: 4.4rem;
}
.heading-1 .jp i {
	font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
	.heading-1 .en {
		margin-bottom: 1rem;
	}	
	.heading-1 .jp {
		font-size: 3.8rem;
		text-align: center;
	}
	.heading-1 .jp i {
		font-size: 2.2rem;
	}
}
.heading-1 .jp > span:not(:last-child) {
	margin-bottom: 1rem;
}
.heading-1.wh .en,
.heading-1.wh .jp {
	color: #fff;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		line-height: 1.1;
	}
}
/* ---- more ---- */
.more {
	border: solid 0.1rem var(--grey);
	border-radius: 0.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 0.15rem;
	width: 36rem;
	height: 6rem;
	position: relative;
	font-weight: 500;
	font-size: 1.7rem;
}
.more i {
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translate(0,-50%);
	font-size: 1.3rem;
}
.more:hover {
	background: var(--grey);
	color: #fff;
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.more {
		width: 100%;
	}
}






/* -------------------------------------------

class

------------------------------------------- */
/* ---- list ---- */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1rem;
	}
}
/* ---- display ---- */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
/* ---- margin ---- */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}