@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=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');



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

base

------------------------------------------- */
:root {
	--blue-1: #6cadc9;
	--blue-2: #58d2dd;
	--grey: #767676;
	--bg-blue: #dff6f9;
	--bg-blue-2: #f0f3f7;
	--prime: #6cadc9;
	--font-josefin: "Josefin Sans", sans-serif;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-size: 1.3rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
a {
	color: var(--grey);
}



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

header

------------------------------------------- */
header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 0 2.5rem 0;
	background: #fff;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		padding: 0;
		height: 6rem;
	}
}
/* ----- h1 ----- */
header h1 {
	width: 14rem;
	line-height: 1;
	margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
	header h1 {
		margin-bottom: 0;
	}
}
/* ----- ul ----- */
header > ul {
	position: absolute;
	right: 3rem;
	top: 1rem;
	display: flex;
	flex-wrap: wrap;
	width: 31rem;
}
header > ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.4rem;
	border-radius: 10rem;
	color: #fff;
	padding: 0 0 0.2rem 0;
	width: 15rem;
}
header > ul li a img {
	width: 1.6rem;
	margin-right: 1rem;
	margin-top: 0.15rem;
}
header > ul li:nth-child(1) {
	margin-right: 1rem;
}
header > ul li:nth-child(1) a {
	background: var(--blue-2);
}
header > ul li:nth-child(2) a {
	background: var(--blue-1);
	font-family: var(--font-josefin);
}
header > ul li:nth-child(2) span {
	padding-top: 0.4rem;
}
header > ul li:nth-child(3) {
	width: 30rem;
	margin-top: 1rem;
}
header > ul li:nth-child(3) a {
	background: url(../img/arrow-wh.png) no-repeat center right 2rem;
	background-size: auto 0.8em;
	background-color: #2a92a0;
	border-radius: 10rem;
	position: relative;
	text-align: center;
	color: #fff;
	width: 30rem;
}
header > ul li:nth-child(3) a img {
	width: 2rem;
	position: absolute;
	left: 4rem;
	top: calc(50 - 1rem);
}
@media screen and (max-width: 768px) {
	header > ul {
		display: flex;
		width: 100%;
		position: fixed;
		right: 0;
		top: auto;
		bottom: 5rem;
		z-index: 110;
		width: 100%;
	}
	header > ul li {
		width: calc(100% / 3);
	}
	header > ul li a {
		justify-content: center;
		height: 5rem;
		border-radius: 0;
		padding: 0;
		font-size: 1.4rem;
		text-decoration: none !important;
	}
	header > ul li:nth-child(1) {
		margin-right: 0;
	}
	header > ul li:nth-child(3) {
		width: calc(100% / 3);
		margin-top: 0;
	}
	header > ul li:nth-child(3) a {
		background: #2a92a0;
		border-radius: 0;
		position: relative;
		text-align: center;
		color: #fff;
		width: auto;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	header > ul li:nth-child(3) a img {
		width: 2rem;
		position: relative;
		left: auto;
		top: auto;
	}
	header > ul li a img {
		width: 1.4rem;
		margin-right: 0.5rem;
		margin-top: 0.15rem;
	}
}



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

nav

------------------------------------------- */
ul.gnav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
}
ul.gnav-menu > li {
	white-space: nowrap;
	font-size: 1.2rem;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 4rem;
}
ul.gnav-menu > li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
}
ul.gnav-menu > li > a:hover {
	opacity: 1;
	color: var(--blue-1);
}
ul.gnav-menu span {
	color: var(--blue-1);
	font-family: var(--font-josefin);
	font-size: 1.1rem;
	letter-spacing: 0.2em;
}



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

footer

------------------------------------------- */
footer {
	background: var(--bg-blue-2);
	padding-top: 6rem;
}
footer .logo {
	width: 14rem;
	margin: 0 auto;
}
footer nav {
	padding-top: 3rem;
	margin-top: 3rem;
	margin-bottom: 10rem;
	border-top: solid 0.12rem var(--grey);
}
footer nav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer small {
	display: block;
	text-align: center;
	font-size: 1.2rem;
	background: var(--blue-1);
	color: #fff;
	padding: 0.6rem 0;
}
@media screen and (max-width: 768px) {
	footer {
		padding-bottom: 10rem;
	}
	footer .logo {
		width: 20rem;
		margin: 0 auto 2rem auto;
	}
	footer nav {
		margin-bottom: 4rem;
	}
	footer nav ul {
		padding: 0 3rem;
		flex-wrap: wrap;
		display: flex;
		align-items: center;
	}
	footer nav ul li {
		width: 50%;
		text-align: center;
	}
	footer nav ul li:nth-child(n + 3) {
		margin-top: 1rem;
	}
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/top-kv-1.jpg) no-repeat center / cover;
}
.page-ttl > div {
	background: rgba(0,0,0,0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18rem;
}
.page-ttl h2 {
	color:#fff;
	font-size: 3.2rem;
	font-weight: 300;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-ttl h2 span {
	font-family: var(--font-josefin);
	font-weight: 300;
	color: var(--blue-2);
	font-size: 1.6rem;
	margin-bottom: 1rem;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 14rem;
		background: rgba(0,0,0,0.5);
	}
	.page-ttl h2 span {
		margin-bottom: 0.6rem;
	}
}



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

layout

------------------------------------------- */
/* base-width */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* container */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
	.container .wrap {
		display: block;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}
/* page-top */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: var(--blue-2);
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.8rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 11rem;
	}
}



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

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	display: inline-block;
}
.heading-1 .en {
	font-family: var(--font-josefin);
	font-weight: 300;
	font-size: 3.2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	letter-spacing: 0.1em;
}
.heading-1 .en::after {
	content: "";
	width: 120%;
	height: 0.25rem;
	background: var(--blue-1);
	margin: 0.5rem 0 1rem 0;
}
.heading-1 .jp {
	font-size: 1.2rem;
}
.heading-1.wh .en::after {
	background: #fff;
}
@media screen and (max-width: 768px) {
	.heading-1 {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 3rem;
	}
}
.heading-2 {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.8;
	color: var(--blue-1);
}
.heading-3 {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--blue-1);
	margin-bottom: 1rem;
	background: var(--bg-blue-2);
	padding: 1rem 1rem 1.15rem 1.5rem;
}
.heading-4 {
	color: var(--prime);
	font-weight: 500;
	font-size: 2rem;
	margin-bottom: 2.5rem;
	text-align: center
}
.heading-5 {
	background: var(--prime);
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	padding: 0.8rem 0;
	margin-bottom: 1.5rem;
}
/* more */
.more {
	line-height: 1;
	display: flex;
	align-items: center;
	width: 22rem;
	padding: 1.2rem 0 1.4rem 2rem;
	border: solid 0.2rem var(--grey);
	background: url(../img/arrow-bk.png) no-repeat center right 1rem;
	background-size: auto 1rem;
	font-family: var(--font-josefin);
	font-size: 1.2rem;
	color: #000;
}
.more span {
	padding-top: 0.5rem;
}
.more:hover {
	opacity: 1;
	color: #fff;
	background: url(../img/arrow-wh.png) no-repeat center right 1rem;
	background-size: auto 1rem;
	background-color: var(--grey);
}
.more.jp {
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 768px) {
	.more {
		margin: 0 auto;
	}
}
/* ttl */
.ttl {
	border-bottom: solid 0.12rem rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: 400;
}
.ttl::first-letter {
	color: var(--blue-1);
}
.ttl:after {
	background: var(--blue-1);
	height: 0.3rem;
	bottom: -0.3rem;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
.ttl span {
	font-size: 1.6rem;
	display: block;
	margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}
/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: 500;
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.2rem 1.2rem 0.5rem 1.2rem;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
		color: var(--prime);
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}



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

hamburger

------------------------------------------- */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.5rem;
	text-align: center;
	font-weight: 300;
	line-height: 1.3;
}
.gnav-sp-menu li span {
	display: block;
	font-family: var(--font-josefin);
	font-weight: 300;
	font-size: 1.2rem;
	color: var(--blue-1);
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--blue-1);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



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

class

------------------------------------------- */
/* txt-vertical */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}
/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li::marker {
	color: var(--blue-1);
}
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: 0.6rem;
	}
}
/* prepare */
.prepare {
    text-align: center;
    padding: 8rem 0;
    font-size: 2rem;
}
/* map */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter:grayscale(100%);
}
/* 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);
	}
}
.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.35s !important; }
.delay-3 { animation-delay: 0.5s !important; }
.delay-4 { animation-delay: 0.65s !important; }
.delay-5 { animation-delay: 0.8s !important; }



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

news

------------------------------------------- */
/* CMS-NEWS */
.CMS-NEWS-INDEX {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 10rem;
}
.CMS-NEWS-INDEX > * {
    width: 31%;
    margin-right: 3.5%;
}
.CMS-NEWS-INDEX > *:nth-of-type(3n) {
    margin-right: 0;    
}
.CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
    margin-top: 3.5rem;
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
.CMS-NEWS-TIME {
    font-size: 1.3rem;
	font-family: var(--font-josefin);
    margin: 1.8rem 0 0.6rem 0;
    line-height: 1;
	color: var(--blue-1);
}
.CMS-NEWS-LINK {
    font-size: 1.4rem;
}
.CMS-NEWS-INDEX > * img {
    height: 16rem;
    width: 100%;
    object-fit: cover;  
}
/* CMS-NEWS-MORE-READ */
.CMS-NEWS-MORE-READ {
    background: var(--prime);
    border: none;
    padding: 1.6rem 0 1.7rem 0;
    font-size: 1.4rem;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
    width: 31%;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
/* CMS-NEWS-TITLE */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}
.CMS-NEWS-TITLE:after {
	background: var(--blue-1);
	height: 0.3rem;
	bottom: -0.3rem;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-INDEX {
        display: block;
    }
    .CMS-NEWS-INDEX > * {
        width: 100%;
        margin-right: 0;
    }
    .CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
        margin-top: 0;
    }
    .CMS-NEWS-INDEX > *:nth-of-type(n + 2) {
        margin-top: 3.5rem;
    }        
    .CMS-NEWS-TIME {
        margin: 1.5rem 0 0.3rem 0;
    }   
    .CMS-NEWS-INDEX > * img {
        height: 20rem;
    }
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
}



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

fixed

------------------------------------------- */
.fixed a {
	color: #fff;
	width: 5.5rem;
	height: 25.4rem;
	background: url(../img/bg-fixed.png) no-repeat center;
	background-size: 100% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 1000;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.fixed a img {
	width: 2.5rem;
	margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
	.fixed a {
		width: 100%;
		height: 5rem;
		background: url(../img/bg-fixed-sp.png) no-repeat center / cover;
		right: auto;
		top: auto;
		bottom: 0;
		transform: none;
		font-size: 1.6rem;
	}
	.fixed a img {
		margin-bottom: 0;
		margin-right: 1.5rem;
	}
}