@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=Anton&display=swap');



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

base

------------------------------------------- */
:root {
	--grey: #1A1A1A;
	--grey-light: #6A6969;	
	--green: #3DD241;
	--blue: #16C3CF;
	--bg-grd-right: linear-gradient(to right,var(--blue),var(--green));
	--bg-grd-left: linear-gradient(to left,var(--blue),var(--green));	
	--prime: #3DD241;
	--font-en: "Anton", sans-serif;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	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);
}


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

header

------------------------------------------- */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	left: 0;
	top: 3rem;
	width: 100%;
	padding-left: 8rem;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: flex-start;
		top: 0;
		padding-left: 0;
	}
}
/* h1 */
header h1 {
	width: 10rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header h1 {
		width: 8rem;
	}	
}



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

nav

------------------------------------------- */
.gnav {
	background: rgba(255,255,255,0.8);
	display: flex;
	align-items: center;
	height: 6.4rem;
	border-radius: 10rem 0 0 10rem;
	padding-left: 6rem;
	padding-right: 15rem;
	box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.1) ;
}
.gnav-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5rem;
}
.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
	position: relative;
}
.gnav-menu > li > a {
	display: flex;
	align-items: center;
	height: 6.4rem;
}
.gnav-menu > li > a i {
	margin-left: 0.3rem;
	margin-top: 0.4rem;
	color: var(--prime);
}
.gnav-menu > li > a:hover {
	opacity: 1;
	color: var(--prime);
}
.dropdown ul {
	position: absolute;
	left: 0;
	top: 4.8rem;
	background: url(../img/bg-dropdown.png) no-repeat center / contain;
	width: 39rem;
	height: 4.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 0.7rem;
	transform: translateY(-0.5rem);
	transition: all .3s;
	opacity: 0;
	pointer-events: none;
}
.dropdown ul a {
	color: #fff;
	font-weight: 500;
	padding: 0 2rem;
	font-size: 1.3rem;
}
.dropdown ul li {
	position: relative;
}
.dropdown ul li:first-child::after {
	content: "";
	width: 0.1rem;
	height: 1rem;
	background: #fff;
	position: absolute;
	left: 0;
	top: calc(50% - 0.5rem);
	margin-top: 0.1rem;	
}
.dropdown ul li::before {
	content: "";
	width: 0.1rem;
	height: 1rem;
	background: #fff;
	position: absolute;
	right: 0;
	top: calc(50% - 0.5rem);
	margin-top: 0.1rem;
}
.dropdown:hover ul {
	opacity: 1;
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;	
}
@media screen and (max-width: 768px) {
	.dropdown ul {
		position: relative;
		left: auto;
		top: auto;
		background: none;
		width: auto;
		height: auto;
		display: block;
		padding: 0;
		transform: none;
		opacity: 1;
		pointer-events: all;
		margin-bottom: 2rem;
	}
	.dropdown ul a {
		color: var(--grey);
		padding: 0;
		font-size: 1.6rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.dropdown ul a i {
		color: var(--blue);
		margin-top: 0.35rem;
		margin-left: 0.5rem;
		font-size: 1.2rem;
	}
	.dropdown ul li:not(:last-child) {
		margin-bottom: 0.5rem;
	}
	.dropdown ul li:first-child::after {
		display: none;
	}
	.dropdown ul li::before {
		display: none;
	}
	.dropdown:hover ul {
		transform: none;
	}

}



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

footer

------------------------------------------- */
footer {
	position: relative;
}
footer::before {
	content: "";
	width: 100%;
	height: 2rem;
	background: var(--bg-grd-right);
	position: absolute;
	left: 0;
	bottom: 0;
}
footer .wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 5rem 12rem;
}
footer .wrap > div:nth-of-type(2) {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
footer .logo {
	width: 12rem;
	margin-bottom: 4rem;
}
footer nav > ul {
	display: flex;
	gap: 6rem;
	margin-bottom: 3rem;
}
footer nav > ul > li > a {
	color: var(--blue);
	font-weight: bold;
}
footer nav > ul > li > ul {
	margin-top: 1rem;
	font-size: 1.3rem;
}
footer nav > ul > li > ul li:not(:last-child) {
	margin-bottom: 0.7rem
}
footer nav > ul > li > ul li a {
	display: flex;
	align-items: center;
}
footer nav > ul > li > ul li a::before {
	content: "";
	width: 0.6rem;
	height: 0.12rem;
	background: var(--blue);
	margin-top: 0.2rem;
	margin-right: 0.4rem;
}
footer small {
	display: block;
	font-size: 1rem;
	color: #A3A3A3;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	footer {
		padding-bottom: 4rem;
	}
	footer .wrap {
		flex-direction: column;
		align-items: center;
		padding: 2.5rem 0 5rem 0;		
	}
	footer .wrap > div:nth-of-type(1) {
		display: contents;
	}
	footer .wrap > div:nth-of-type(2) {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	footer .logo {
		width: 16rem;
		margin-bottom: 2rem;
	}
	footer nav > ul {
		display: block;
		gap: 0;
		margin-bottom: 3rem;
	}
	footer nav > ul > li:not(:last-child) {
		margin-bottom: 2rem;
	}
	footer nav > ul > li > a {
		font-size: 1.8rem;
	}
	footer nav > ul > li > ul {
		margin-top: 0.5rem;
		font-size: 1.5rem;
	}
	footer nav > ul > li > ul li:not(:last-child) {
		margin-bottom: 0.5rem
	}
	footer small {
		order: 3;
		margin-top: 4rem;
	}
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/top-kv.jpg) no-repeat center;
	background-size: cover;
}
.page-ttl > div {
	display: flex;
	align-items: center;
	height: 34rem;	
	padding-top: 10.5rem;
	padding-left: 8rem;
	position: relative;
}
.page-ttl h2 + div {
	font-weight: bold;
	color: #fff;
	position: absolute;
	font-size: 2rem;
	line-height: 1.6;
	right: 4rem;
	bottom: 5rem;
	text-align: right;
}
/* h2 */
.page-ttl h2 {
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 10;
}
.page-ttl h2 span {
	font-weight: normal;
	font-family: var(--font-en);
	font-size: 1.4rem;
	margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		background-size: 150% auto;
	}
	.page-ttl > div {
		justify-content: center;
		height: 22rem;
		padding-top: 1rem;
		padding-left: 0;
		background: rgba(255,255,255,0.4);
	}	
	.page-ttl h2 + div {
		font-size: 1.4rem;
		line-height: 1.4;
		right: 1.5rem;
		bottom: 1.5rem;
	}	
}



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

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;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > figure img {
	aspect-ratio: 3 / 2;
	height: 100%;
	object-fit: cover;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container .wrap {
		flex-direction: column;
	}
	.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(--prime);
	border-radius: 50%;
	color: #fff;	
	font-size: 1.2rem;
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}



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

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-weight: 500;
}
.heading-1.center {
	align-items: center;
}
.heading-1.center .jp {
	margin: 0;
}
.heading-1 .en {
	font-weight: 900;
	font-size: 6.4rem;
	margin-bottom: 1rem;
}
.heading-1 .jp {
	font-size: 1.6rem;
	margin-left: 0.6rem;
}
@media screen and (max-width: 768px) {
	.heading-1 .en {
		font-size: 5.6rem;
	}
}
.heading-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 900;
	font-size: 2.8rem;
	margin-bottom: 2.5rem;
}
.heading-2::after {
	content: "";
	width: 40rem;
	height: 0.6rem;
	background: var(--bg-grd-right);
	margin-top: 0.6rem;
}
@media screen and (max-width: 768px) {
	.heading-2 {
		font-size: 2.4rem;
	}	
	.heading-2::after {
		width: 100%;
	}
}
.heading-3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 900;
	font-size: 2.2rem;
	margin-bottom: 2.5rem;
}
.heading-3::before,
.heading-3::after {
	content: "";
	width: 24rem;
	height: 0.9rem;
	background: var(--bg-grd-left);
	border-radius: 10rem;
	margin-top: 0.3rem;
}
@media screen and (max-width: 768px) {
	.heading-3 {
		font-size: 1.8rem;
	}
	.heading-3::before,
	.heading-3::after {
		width: 3.5rem;
		height: 0.6rem;
	}
}
/* more */
.more {
	color: #fff;
	display: flex;
	align-items: center;
	line-height: 1;
	width: 20rem;
	height: 4.8rem;
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
	padding-left: 2.5rem;
	margin: 0 auto;
	border-radius: 10rem;
	font-family: var(--font-en);
	box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.2);
	position: relative;
	background: url(../img/arrow-wh.png) no-repeat right 1.6rem center;
	background-size: 0.8rem auto;
}
.more:hover {
	opacity: 1;
	box-shadow: 0 0 0 rgba(0,0,0,0.15);
}
.more::before,
.more::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10rem;
	transition: all .3s;	
}
.more::before {
	background: var(--bg-grd-left);
	z-index: -1;
}
.more::after {
	background: var(--bg-grd-right);	
	z-index: -2;
}
.more:hover::before {
	opacity: 0;
}
@media screen and (max-width: 768px) {

}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
	border-bottom: solid 1px rgba(0,0,0,0.3);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: bold;
}
.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
	content: "";
	background: var(--bg-grd-left);
	display: block;
	height: 3px;
	bottom: -3px;
	position: absolute;
	width: 25%;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.ttl:after,
	.CMS-NEWS-TITLE:after,
	.CMS-ARTICLE-TITLE::after {
		width: 40%;
	}	
}



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

hamburger

------------------------------------------- */
.gnav-sp {
	background: linear-gradient(to right,#ebfaec,#e7f9fa);
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .5s;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
	padding: 2rem;
}
.gnav-sp nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: rgba(255,255,255,0.8);
}
.gnav-sp-menu > li {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
.gnav-sp-menu > li > a {
	display: block;
	padding: 1.5rem 0;
	white-space: nowrap;
}
.gnav-sp-menu > li > a i {
	color: var(--blue);
}
/* toggle */
.toggle-btn {
	background: var(--bg-grd-right);
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	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:nth-child(1) {
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-0.8rem) rotate(45deg);
}



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

class

------------------------------------------- */
.txt-grd {
	background: var(--bg-grd-right);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;	
}
/* 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:not(:last-child) {
	margin-bottom: 0.6rem;
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1rem;
	}
}
/* preapre */
.prepare {
	color: var(--prime);
    font-size: 2rem;
	font-weight: bold;
	text-align: center;
    padding: 8rem 0;
}
/* map */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter: grayscale(100%);
}
/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem 0;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
}
dl.detail dd {
	padding: 1.5rem 0;
	width: 75%;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}	
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.5rem 0 0.3rem 0;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		color: var(--prime);
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}	
	dl.detail dd {
		padding: 0 0 1.5rem 0;
		width: 100%;
	}	
}
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.3);
}
dl.wh dt,
dl.wh dd {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media screen and (max-width: 768px) {
	dl.bk dt {
		border-bottom: none;
	}
	dl.wh dt {
		border-bottom: none;
	}
}
/* 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.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }



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

news / blog　common

------------------------------------------- */
/* MORE-READ */
.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
	background: var(--bg-grd-left);
    border: none;
	color: #fff !important;
    display: flex;
	justify-content: center;
	align-items: center;
    font-size: 1.4rem;
    margin: 0 auto;
    width: 24rem;
	height: 4.8rem;
    transition: all .3s;
	padding-bottom: 0.15rem;
    position: absolute;
    bottom: 0;
    left: 50%;
	font-weight: bold;
    transform: translate(-50%, 0);
	border-radius: 10rem;
}
.CMS-NEWS-MORE-READ:hover,
.CMS-ARTICLE-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
	.CMS-ARTICLE-MORE-READ {
		width: 100%;
	}
}
/* DETAIL */
.CMS-NEWS-CONTENT img,
.CMS-ARTICLE-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-CONTENT img,
	.CMS-ARTICLE-CONTENT img {
        width: 100%;
    }
}



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

news / blog　thumbnail

------------------------------------------- */
/* INDEX */
.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX {
    display: flex;
    flex-wrap: wrap;
	gap: 1.5rem;	
    padding-bottom: 10rem;
	position: relative;
}
.CMS-NEWS-INDEX > *,
.CMS-ARTICLE-INDEX > * {
	width: calc((100% - 3rem) / 3);
}
.CMS-NEWS-ITEM a,
.CMS-ARTICLE-ITEM a {
    display: block;	
	font-weight: bold;
	background: #fff;
	box-shadow: 0 0.4rem 0.8rem rgba(0,0,0,0.15);
	padding: 1.5rem;
	border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-INDEX,
	.CMS-ARTICLE-INDEX {
		flex-direction: column;
		gap: 3rem;
	}
	.CMS-NEWS-INDEX > *,
	.CMS-ARTICLE-INDEX > * {
		width: 100%;
	} 
}
/* TIME */
.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
    font-size: 1.2rem;
    line-height: 1;	
    margin: 1.5rem 0 0.5rem 0;
	color: var(--prime);
}
/* THUMBNAIL */
.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
	aspect-ratio: 3 / 2;
    width: 100%;	
    height: 100%;
    object-fit: cover;
}



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

fixed

------------------------------------------- */
.fixed-btn {
	position: fixed;
	right: 0.6rem;
	bottom: 4.5rem;
	width: 10rem;
	z-index: 9999;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		right: 0;
		bottom: 0;
		width: 100%;
	}
	.fixed-btn a {
		width: 100%;
		padding: 0;
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 6rem;
		background: var(--bg-grd-left);
		color: #fff;
		font-weight: bold;
	}
	.fixed-btn a span {
		display: flex;
		align-items: center;
	}
	.fixed-btn img {
		width: 3rem;
		margin-right: 1.5rem;
	}	
	.fixed-btn span {
		position: relative;
	}
}