@charset "UTF-8";
/*============================
	html5 reset style
============================*/
html,body,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,pre,address,code,
a,em,img,
small,strong,sub,sup,var,b,i,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,figcaption,figure,
footer,header,menu,nav,main,section,
input,mark,time,mark,audio,video {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
body {
line-height:1;
}
article,aside,figcaption,figure,
footer,header,menu,nav,section {
display:block;
}
ul {
list-style:none;
}
a {
text-decoration: none;
}
img {
vertical-align:top;
}
em {
font-style:normal;
}	
table {
border-collapse:collapse;
border-spacing:0;
}
input,select {
vertical-align:middle;
}
input,select,textarea,button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font:inherit;
border:0;
border-radius: 0;
box-shadow:none;
}
button {
color: var(--brown);
}
input:focus,select:focus,textarea:focus,button:focus {
outline:0;
box-shadow: none;
}
label {
cursor: pointer;
}
/*----------------------------
	base layout
-----------------------------*/
body {
	-webkit-text-size-adjust: 100%;
	font: var(--fs-16) / 1.5 var(--kozuka-gothic);
	color: var(--brown);
	overflow-x: hidden;
}
.inner {
	max-width: 75rem;
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}
/*----------------------------
	loading
-----------------------------*/
.loading {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: var(--white);
	z-index: 9999;
	transition: .3s;
	font-family: "Yu Gothic Medium","游ゴシック Medium","YuGothic","游ゴシック体","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Meiryo","メイリオ",sans-serif;;
}
body.loaded .loading {
    opacity: 0;
	visibility: hidden;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top: 4px solid #333;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
/*----------------------------
	header
-----------------------------*/
.header {
	padding: 3.5rem 0 3rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
	transition: .3s;
}
.header.scrolled {
	background: rgba(255, 255, 255, 0.8);
}
.list--nav {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	max-width: 66.25rem;
	margin: auto;
}
.list--nav__item {
	width: calc((100% - 2.5rem)/3);
}
.link--nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white);
	background: linear-gradient(to left,#c691e0,#9f98de 10%,#70a4db 27%,#4bb1d9 48%,#6dc3d1 72%,#8ad1cb 86%,#badfc5 100%);
	border: solid .25rem var(--brown);
	border-radius: .5rem;
	box-shadow: .25rem .25rem 0 var(--brown);
	font-size: var(--fs-16);
	font-weight: 700;
	line-height: 1.2;
	padding: .25rem .75rem;
	box-sizing: border-box;
	min-height: 4rem;
	height: 100%;
	white-space: nowrap;
}
.link--nav::after {
	content: "";
	aspect-ratio: 36/11;
	width: 2.25rem;
	height: 100%;
	background: url(../img/icon_arrow_r.png) center / 100% no-repeat;
}
/*----------------------------
	main contents
-----------------------------*/
.list--link {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
    width: 96%;
	margin: 0 auto 6.75rem;
}
.link {
	font-size: var(--fs-20);
	font-weight: 700;
	line-height: 2.7;
	position: relative;
	display: inline-block;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: .1em;
	color: var(--brown);
	width: 204px;
	height: 54px;
	background: var(--white);
}
.link svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.link svg rect {
	transition: all 400ms ease;
	stroke: var(--brown);
	stroke-width: 2;
	stroke-dasharray: 230px, 20px;
	stroke-dashoffset: 15px;
}
.link:hover svg rect {
  	stroke-dashoffset: 284px;
}
.link span {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .5rem;
}
.sec {
	padding-bottom: 6.25rem;
}
.sec__title {
	max-width: max-content;
	text-align: center;
	margin: 0 auto 3.75rem;
	background: linear-gradient(to right, #CA90E4, #829FE1 25%, #47B2DC 50%, #86D1CC 75%, #C4E3C3);
	padding: .5rem 5rem .25rem;
	color: #FFF;
    font-size: var(--fs-36);
    font-weight: bold;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 0 #002657, -2px -2px 0 #002657, -2px 2px 0 #002657, 2px -2px 0 #002657, 0px 2px 0 #002657, 0 -2px 0 #002657, -2px 0 0 #002657, 2px 0 0 #002657;
}
.sec__title::before,
.sec__title::after {
	content: "";
	width: 6.5rem;
	height: 6.125rem;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
}
.sec__title::before {
	background-image: url(../img/title_left.png);
	left: -3.75rem;
}
.sec__title::after {
	background-image: url(../img/title_right.png);
	right: -3.75rem;
}
.content__title {
	font-size: var(--fs-32);
	color: var(--white);
	display: flex;
	gap: 1.75rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 2.25rem;
}
.content__title .place {
	position: relative;
	padding: .75rem 5.1875rem .25rem 10.125rem;
	border-radius: 3.5rem;
}
.content__title .place::before {
	content: "";
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 50%;
	border: solid .25rem var(--white);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background-image: url(../img/icon_map.png);
    background-position: center;
    background-repeat: no-repeat;
	box-sizing: border-box;
	background-size: 100%;
}
.pink .content__title .place,
.pink .content__title .place::before {
	background-color: var(--pink);
}
.blue .content__title .place,
.blue .content__title .place::before {
	background-color: var(--blue);
}
.green .content__title .place,
.green .content__title .place::before {
	background-color: var(--green);
}
.content__title--line {
	font-size: var(--fs-32);
	padding-bottom: 1.875rem;
	position: relative;
	text-align: center;
	max-width: max-content;
	margin: 0 auto 2.5rem;
}
.content__title--line.icon--map {
	padding-left: 2.75rem;
}
.content__title--line.leafgreen {
	color: var(--leafgreen);
}
.content__title--line.pink {
	color: var(--pink);
}
.content__title--line.blue {
	color: var(--blue);
}
.content__title--line.lightgreen {
	color: var(--lightgreen);
}
.content__title--line::after {
	content: "";
	width: 12rem;
	height: .5rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.content__title--line.leafgreen::after {
	background-color: var(--leafgreen);
}
.content__title--line.pink::after {
	background-color: var(--pink);
}
.content__title--line.blue::after {
	background-color: var(--blue);
}
.content__title--line.lightgreen::after {
	background-color: var(--lightgreen);
}
.content {
	padding-bottom: 5.75rem;
}
.content__text {
	font-size: var(--fs-32);
	font-weight: 700;
	line-height: 1.625;
	text-align: center;
	margin-bottom: 2.5rem;
}
.circle,.img--bg {
	position: absolute;
	height: auto;
	z-index: -1;
}
/*----------------------------
	アクセス
-----------------------------*/
.sec--access {
	position: relative;
}
.sec--access .content__text {
	font-size: var(--fs-20);
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
.map {
	max-width: 66.25rem;
	width: 100%;
	height: 21.25rem;
	margin: auto;
}
.map iframe {
	width: 100%;
	height: 100%;
}
/*----------------------------
	totop
-----------------------------*/
.totop {
	background: linear-gradient(to left,#c691e0,#9f98de 10%,#70a4db 27%,#4bb1d9 48%,#6dc3d1 72%,#8ad1cb 86%,#badfc5 100%);
	border: solid 0.25rem var(--brown);
    border-radius: 50%;
    box-shadow: 0.25rem 0.25rem 0 var(--brown);
	color: var(--white);
	display: block;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	text-align: center;
	width: 5.625rem;
	height: 5.625rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	line-height: 1.2;
	font-size: .875rem;
	font-weight: 700;
	gap: .1875rem;
	opacity: 0;
	transition: .3s;
	z-index: 10;
}
.totop.is--show {
	opacity: 1;
}
.totop::before {
	content: "";
	width: .625rem;
	height: .625rem;
	border-left: 3px solid var(--white);
	border-top: 3px solid var(--white);
	display: block;
	transform: rotate(45deg);
}
/*----------------------------
	footer
-----------------------------*/
.footer {
	text-align: center;
	color: #666;
	font-size: var(--fs-16);
	padding-bottom: 1.75rem;
}
/*----------------------------
	media query
-----------------------------*/
@media screen and (max-width: 1200px){
	/*----------------------------
		header
	-----------------------------*/
	.list--nav__item img {
		height: auto;
	}
	.list--nav__item:nth-child(1) img,
	.list--nav__item:nth-child(3) img {
		width: 2.8125rem;
	}
	.list--nav__item:nth-child(2) img {
		width: 3.5rem;
	}
	.link--nav {
		padding: .25rem;
	}
	.link--nav::after {
		width: 1.6875rem;
	}
	.list--link {
		margin-bottom: 0;
	}
	.link {
		line-height: 3.6rem;
		width: 12.75rem;
		height: 3.375rem;
		position: relative;
	}
	.link::before,
	.link::after {
		content: "";
		width: 100%;
		height: 1.125rem;
		border-left: 2px solid var(--brown);
		border-right: 2px solid var(--brown);
		position: absolute;
		left: 0;
	}
	.link::before {
		border-top: 2px solid var(--brown);
		top: 0;
	}
	.link::after {
		border-bottom: 2px solid var(--brown);
		bottom: 0;
	}
	.link svg {
		display: none;
	}
	/*----------------------------
		main contents
	-----------------------------*/
	.content {
		padding-bottom: 1.75rem;
	}
	.pink .content__title img,
	.green .content__title img {
		width: 6.125rem;
		height: auto;
	}
	.blue .content__title img {
		width: 7.5rem;
		height: auto;
	}
	.content__title .place {
		padding: .75rem 3.875rem .5rem 7.625rem;
	}
	.content__title .place::before {
		width: 5rem;
		height: 5rem;
	}
	.sec__title::before, .sec__title::after {
		width: 4.875rem;
		height: 4.625rem;
	}
	.sec__title::before {
		left: -2.8125rem;
	}
	.sec__title::after {
		right: -2.8125rem;
	}
	.content__title--line.icon--map {
		padding-left: 2.0625rem;
	}
}
@media screen and (max-width: 767px){
	/* header */
	.header {
		padding: 2.125rem 0;
	}
	.list--nav {
		gap: .5rem;
	}
	.list--nav__item {
		width: calc((100% - 1rem)/3);
	}
	.link--nav {
		flex-direction: column;
		gap: .5rem;
		border-width: 2px;
		font-size: .75rem;
		text-align: center;
	}
	.list--nav__item:nth-child(1) img,
	.list--nav__item:nth-child(3) img {
        width: 2.25rem;
    }
	.list--nav__item:nth-child(2) img {
		width: 2.8125rem;
	}
	.link--nav::after {
		content: none;
	}
	.list--link {
		flex-direction: column;
	}
	.link {
		width: 100%;
	}
	/* main contets */
	.sec {
		padding-bottom: 5rem;
	}
	.sec__title {
		padding: .5rem 2rem .25rem;
		margin-bottom: 3rem;
	}
	.sec__title::before,
	.sec__title::after {
		width: 3.875rem;
		height: 3.75rem;
	}
	.sec__title::before {
        left: -2.25rem;
    }
	.sec__title::after {
        right: -2.25rem;
    }
	.content__title {
		flex-direction: column;
		gap: 1rem;
	}
	.pink .content__title img,
	.green .content__title img {
		width: 4.875rem;
	}
	.blue .content__title img {
		width: 6rem;
	}
	.content {
		padding-bottom: 4.5625rem;
	}
	.content__title .place {
		padding: .75rem 2.625rem .5rem 6.875rem;
	}
	.content__title--line.icon--map {
		padding-bottom: 1.5rem;
	}
	.content__title--line::after {
		height: .375rem;
		width: 9.5rem;
	}
	/* totop */
	.totop {
		font-size: .75rem;
		width: 4.6875rem;
		height: 4.6875rem;
		border-width: 2px;
	}
	.totop::before {
		width: .5rem;
		height: .5rem;
		border-width: 2px;
	}
}