@font-face {
font-family: "mobo-bold";
src:url("fonts/mobo-bold.woff2?26043001") format("woff2");
font-display:swap;
}

:root{
--bg-shadow:drop-shadow(4px 4px 10px rgba(0,0,0,0.1));
--card-shadow:drop-shadow(4px 4px 10px rgba(0,0,0,0.05));
--btn-shadow:drop-shadow(0 3px 5px rgba(0,0,0,0.1));
--heavy-color:#0E3D71;
--light-color:#005AAF;
--link-color:#2E6E41;
--emp-color:#FF6828;
--pre-survey-color:#1DCEE6;
--post-survey-color:#F8DC32;
}

*{
box-sizing: border-box;
}

html{
font-size:min(10px, 0.9765625vw);
scroll-behavior: smooth;
}

body{
background-color: #f5ffff;
color: #404040;
font-family: 'Noto Sans JP', sans-serif;
font-size: 1.6rem;
font-weight: 500;
}

#overview{
scroll-margin-top:6rem;
}
#guidelines,
#download,
#flow,
#method,
#survey{
scroll-margin-top:4rem;
}

br.tab,
br.sp{
display: none;
}

@media (max-device-width: 768px){

html{
font-size: min(10px, 1.3020833vw);
}

br.tab{
display: block;
}

}

@media (max-device-width: 500px){

html{
font-size: min(10px, 2.2727273vw);
}

br.sp{
display: block;
}

}



section h2{
background:url(../images/h2-bg.png) no-repeat center bottom;
color: var(--heavy-color);
padding-bottom: 2.1rem;
margin-bottom: 1.5rem;
line-height: 1;
font-family: 'Noto Serif JP', serif;
font-size: 3rem;
font-weight: 700;
text-align: center;
}

section h2 + p{
color: var(--heavy-color);
margin-bottom: 3rem;
font-weight: 700;
text-align: center;
letter-spacing: 0.2em;
}

section h2 + p br{
display: none;
}

@media (max-device-width: 500px){
section h2 + p br{
display: block;
}
}

section h3{
color: var(--heavy-color);
}

a{
font-weight: 700;
transition: all 0.3s ease-in-out;
}

a:link,
a:visited{
color: var(--link-color);
}

a:hover{
color: var(--emp-color);
}

svg.icon{
width: 100%;
height: 100%;
fill: currentColor;
vertical-align: top;
}


.button{
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(90deg, #E4FAFD,#FDF3B6);
border:2px solid #fff;
border-radius: 10rem;
margin-top: 3rem;
padding: 1.5rem 6rem;
font-weight: 700;
text-decoration: none;
align-self: center;
filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.button:link,
.button:visited{
color: var(--heavy-color);
}

.button::after {
content: "→";
margin-left: 1rem;
}

.button::before{
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
display: block;
background: linear-gradient(90deg, #33F1FF, #BDF08B,#F8DC32);
border:2px solid #fff;
border-radius: 10rem;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}

.button:hover::before{
opacity:1;
}

div:has(.button){
text-align: center;
}


.external-link{
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 5px;
padding: 1.5rem 2rem;
font-weight: 700;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}

.external-link::after{
content:"";
display: inline-block;
border-top: 2px solid var(--link-color);
border-right: 2px solid var(--link-color);
transform: rotate(45deg);
width: 0.6rem;
height: 0.6rem;
transition: all 0.3s ease-in-out;
}

.external-link:link,
.external-link:visited{
background-color: #F3FBEC;
color: var(--link-color);
text-decoration-color:transparent;
}

.external-link:hover{
background-color:var(--link-color);
color: #fff;
text-decoration-color:#fff;
}
.external-link:hover::after{
border-top: 2px solid #fff;
border-right: 2px solid #fff;
}


/*
HEADER
*/


#header{
position: fixed;
z-index: 100;
top: 0;
left: 0;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 2rem;
}

#header p{
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
filter: drop-shadow(0 0 4px #fff);
color: #000;
font-family: "mobo-bold", sans-serif;
font-size: 1.4rem;
}

#header p img{
margin-right:1.5rem;
}

#header nav{
background-color: #fff;
filter:var(--bg-shadow);
border-radius: 10rem;
width: 58rem;
}

#header ul{
display: flex;
align-items: center;
justify-content: space-evenly;
line-height: 1;
font-size: 1.3rem;
list-style: none;
}

#header nav a{
display: block;
padding: 1.8rem 0 1.9rem 0;
cursor: pointer;
transition: all 0.3s ease-in-out;
}

#header nav a,
#header nav a:link,
#header nav a:visited{
color: #005AAF;
font-weight: 700;
text-decoration: underline #fff;
}

#header nav a:hover{
text-decoration-color: #005aaf;
}

/*
HAMB MENU
*/

#hamb-flag{
display: none;
}

@media (max-device-width: 768px){

#hamb{
position: absolute;
z-index: 1;
top: 2rem;
right:2rem;
overflow: hidden;
background-color: #fff;
border-radius: 5rem;
filter: var(--btn-shadow);
width: 7rem;
height: 7rem;
cursor: pointer;
}

#hamb span{
position: absolute;
left: 50%;
margin-left: -25%;
display: block;
background-color: var(--light-color);
width: 50%;
height:0.3rem;
transition: all 0.3s ease-in-out;
}

#hamb span:nth-child(1){
z-index:1;
top: calc(35% - 0.15rem);
transform-origin:50% 50%;
}
#hamb span:nth-child(2){
top: calc(45% - 0.15rem);
}
#hamb span:nth-child(3){
z-index:1;
top: calc(55% - 0.15rem);
transform-origin:50% 50%;
}

#hamb::after{
font-size:1rem;
}

#hamb-flag:checked + header #hamb span:nth-child(1){
transform: rotate(35deg);
top: calc(45% - 0.15rem);
background-color: #fff;
}
#hamb-flag:checked + header #hamb span:nth-child(2){
top: 0;
left: 0;
border-radius: 10rem;
width: 100%;
height: 100%;
margin-left: 0;
}
#hamb-flag:checked + header #hamb span:nth-child(3){
transform: rotate(-35deg);
top: calc(45% - 0.15rem);
background-color: #fff;
}

#hamb::after{
content:"MENU";
position: absolute;
bottom: 20%;
left: 50%;
transform: translateX(-50%);
color: var(--light-color);
font-family: Arial, Helvetica, sans-serif;
font-size:1rem;
font-weight: bold;
}

#hamb-flag:checked + header #hamb::after{
color: #fff;
}

#header nav{
position: absolute;
top: 4rem;
right: 4rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
border-radius: 7rem;
width: 0;
height: 0;
opacity: 0;
transition: all 0.2s ease-in-out;
}

#header nav ul{
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 2;
font-size: 4vw;
}


#hamb-flag:checked + header nav{
top: 0;
right: 0;
border-radius: 0;
width: 100vw;
height:100vh;
opacity:1;
}


}

@media (max-device-width: 500px){

#header p{
font-size: 1.2rem;
}

#header p img{
height: 4rem;
}

#hamb{
width: 4rem;
height: 4rem;
}

#hamb span{
height:0.2rem;
}

#hamb::after{
font-size:0.6rem;
}

#header nav ul{
font-size: 4vw;
}

}


/*
HERO
*/

.hero{
background-image: url(../images/hero-bg.webp);
background-repeat: no-repeat;
background-size: contain;
background-position: center top;
color: var(--heavy-color);
padding-top: 34.1797vw;
}

.hero .content{
position: relative;
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
overflow: clip;
background-color: #fff;
filter:var(--bg-shadow);
border-radius: 25px;
max-width: 90.4rem;
margin: auto;
padding: 6rem 0;
}

.hero .content > p{
font-weight: bold;
}

.hero .content h1{
padding-left: 0.05em;
letter-spacing:0.05em;
font-size: 1.6rem;
}

.hero .content > p:nth-of-type(2){
padding-left: 0.2em;
letter-spacing: 0.2em;
text-align: center;
}

.hero .content > p:first-of-type{
margin: 1rem 0 1.4rem 0;
line-height: 1.3;
font-family: 'Noto Serif JP', serif;
font-size: 5.2rem;
font-weight: 600;
text-align: center;
letter-spacing: 0.1em;
padding-left: 0.1em;
}

.hero .content > p:first-of-type span:not(:last-child){
font-size: 4.8rem;
}

.hero .content > p:first-of-type span:last-child{
display: inline-block;
background: linear-gradient(90deg, #49C890 0%, #00A2AC 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
padding-left: 0.15em;
letter-spacing: 0.15em;
}

@media (max-device-width: 768px){

.hero .content > p:first-of-type{
font-size: 3.6rem;
}

.hero .content > p:first-of-type span:not(:last-child){
font-size: 90%;
}

}


/*
OVERVIEW
*/


#overview{
padding: 4rem 8.5rem;
}

#overview p{
line-height: 1.8;
font-weight: 700;
letter-spacing: 0.2em;
text-align: justify;
}

#overview p:nth-of-type(2){
background-color:rgba(163, 236, 200, 0.15);
border-radius: 15px;
margin: 1.5em 0 4em 0;
padding:1em 1em 1em 2em;
font-size:1.4rem;
text-indent: -1.25em;
}

#overview h2 + p{
margin-bottom: 0.3em;
}

#overview ul{
display: flex;
justify-content: space-between;
width: 95.367853%;
margin: auto;
font-family: 'Noto Serif JP', serif;
font-size: 1.6rem;
list-style: none;
}

#overview li{
position: relative;
display: flex;
align-items: center;
border-radius: 15px;
width: 45.714286%;
padding:2rem 2.5rem;
line-height: 1.1;
text-align: center;
letter-spacing: 0.1em;
}


#overview li::after{
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
display: block;
background-color: #fff;
border-radius: inherit;
filter: var(--card-shadow);
width: 100%;
height: 100%;
}

#overview li:first-child{
background: rgba(209, 249, 252, 0.2);
}
#overview li:last-child{
background: rgba(253, 243, 182, 0.2);
}

#overview li i{
display: flex;
justify-content: center;
align-items: center;
border-radius: 10rem;
width: 6rem;
height: 6rem;
}

#overview li:first-child i{
background: linear-gradient(90deg, #C8F8FD 0%, #EAFDFF 100%);
margin-right: 1.6rem;
}

#overview li:first-child .icon{
width: 3rem;
height: 2.6rem;
}

#overview li:last-child i{
background: linear-gradient(90deg, #FDF3B6 0%, #FFFBE4 100%);
margin-right: 5rem;
}


#overview li:last-child .icon{
width: 3.3rem;
height: 2.6rem;
}


#overview li span{
display: inline-block;
padding-top: 0.8rem;
font-size: 2.4rem;
letter-spacing: 0.2em;
}

@media (max-device-width: 768px){


.hero .content{
max-width:70.8rem;
padding: 4rem 0 0 0;
}

#overview{
padding: 4rem;
}

#overview ul{
width: 100%;
font-size: 1.4rem;
}

#overview li{
width: 48%;
}


}

@media (max-device-width: 500px){

.hero{
background-image: url(../images/hero-bg-sp.webp);
padding-top: 55vw;
}

.hero .content{
max-width:initial;
margin: 0 2rem;
padding: 4rem 0 0 0;
}

.hero .content > p:first-child,
.hero .content > h1 + p{
font-size: 1.4rem;
}

.hero h1{
font-size: 3.6rem;
}

.hero h1 span:not(:last-child){
font-size: 2.8rem;
}

#overview p:first-of-type{
padding: 0 1.5em;
font-size: 1.4rem;
}

#overview p:nth-of-type(2){
margin: 1.5em 1.3em 4em 1.3em;
padding: 1em 1em 1em 2em;
text-indent: -1.23em;
font-size: 1.3rem;
}


#overview ul{
display: block;
width: 100%;
}

#overview li{
width: 100%;
margin-bottom: 3rem;
}

#overview li:last-child{
margin-bottom: 0;
}


}


/*
LEAF
*/

.leaf {
position: absolute;
z-index: -1;
pointer-events: none;
will-change: transform;
}

.leaf img {
display: block;
width: 100%;
height: auto;
}

.leaf-main img {
	animation: flutter-lg 3.8s ease-in-out infinite;
}

/* 背景 → 中くらい */
.leaf-bg img {
	animation: flutter-md 4.6s ease-in-out infinite;
}

/* 奥 → 弱め・ゆっくり */
.leaf-depth img {
	animation: flutter-sm 5.4s ease-in-out infinite;
}

@keyframes flutter-sm {
0%   { transform: translateX(0) rotate(0deg); }
50%  { transform: translateX(8px) rotate(4deg); }
100% { transform: translateX(0) rotate(0deg); }
}

@keyframes flutter-md {
0%   { transform: translateX(0) rotate(0deg); }
50%  { transform: translateX(14px) rotate(6deg); }
100% { transform: translateX(0) rotate(0deg); }
}

@keyframes flutter-lg {
0%   { transform: translateX(0) rotate(0deg); }
50%  { transform: translateX(22px) rotate(8deg); }
100% { transform: translateX(0) rotate(0deg); }
}

/* --- 個別の位置（一例：デザインに合わせて調整してね） --- */
.leaf-01 { top: 30%; left: 15%; }
.leaf-02 { top: 40%; right: 20%; }
.leaf-03 { bottom: 35%; left: 25%; }
.leaf-04 { top: 10%; right: 10%; }
.leaf-05 { bottom: 15%; left: 5%; }
.leaf-06 { top: 15%; left: 40%; }
.leaf-07 { top: 50%; left: 10%; }
.leaf-08 { bottom: 45%; right: 5%; }
.leaf-09 { top: 5%; left: 60%; }
.leaf-10 { top: 5%; left: 2%; }

.leaf-01 img { animation-delay: 0s; }
.leaf-02 img { animation-delay: 1.2s; }
.leaf-03 img { animation-delay: 2.4s; }

.leaf-04 img { animation-delay: 0.5s; }
.leaf-05 img { animation-delay: 1.8s; }
.leaf-06 img { animation-delay: 2.7s; }
.leaf-07 img { animation-delay: 3.6s; }

.leaf-08 img { animation-delay: 1s; }
.leaf-09 img { animation-delay: 2.2s; }
.leaf-10 img { animation-delay: 3.2s; }



/*
DETAILS
*/

#details{
padding-top: 10rem;
}

#details dl{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 90.4rem;
margin: auto;
padding: 0 0 6rem 0;
}

#details dl > div{
background-color: #fff;
filter:var(--bg-shadow);
border-radius: 15px;
}

#details dl > div{
width: 100%;
padding: 3rem;
margin-bottom: 2rem;
}


#details dl > div:nth-child(1),
#details dl > div:nth-child(2){
width: calc(100% / 2 - 1rem);
}

#details dl > div:nth-child(4){
background-color: #FDF9E3;
}



#details dt{
color: #005AAF;
margin-bottom: 0.5rem;
line-height: 1;
font-weight: 700;
}

#details dl > div:nth-child(4) dt{
color: var(--emp-color);
}

#details dl > div:nth-child(1) dd,
#details dl > div:nth-child(2) dd{
font-size: 1.8rem;
font-weight: 700;
}

#details dl > div:nth-child(4) dd{
font-size: 2rem;
font-weight: 700;
}



#details .icon{
height: 2rem;
margin:0 1.1rem 0.2em 0;
vertical-align: middle;
}

#details .bus.icon,
#details .card.icon{
width: 2.3rem;
}
#details .calendar.icon{
width: 1.8rem;
}
#details .school.icon{
width: 2.5rem;
}
#details .exclamation.icon{
width: 2rem;
}
#details .link.icon{
width: 2.5rem;
}

#details dl > div:nth-child(3) ul{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 1rem;
font-weight: bold;
list-style: none;
}

#details dl > div:nth-child(3) li{
background-color:#F3F8F9;
border-radius: 5px;
width: calc((100% - 6rem) / 3);
padding: 2rem;
text-align: center;
}


#details dl > div:nth-child(3) li span{
font-size:125%;
}

#details dl > div:nth-child(4) dd span{
display: inline-block;
font-size: 1.6rem;
letter-spacing: 0.05em;
}

#details dl > div:nth-child(5) ul{
line-height: 1.8;
letter-spacing: 0.05em;
list-style: none;
}

#details dl > div:nth-child(5) li{
margin-bottom: 0.2rem;
padding-left: 1em;
text-indent: -1em;
}

#details dl > div:nth-child(5) li:first-child{
color:var(--emp-color);
font-weight: 700;
}

#details dl > div:nth-child(5) li::before{
content:"※";
}

#details dl > div:nth-child(6) ul{
display: flex;
justify-content: space-between;
padding-top: 1rem;
list-style: none;
}

#details dl > div:nth-child(6) li{
width: calc((100% - 3rem) / 2);
}

@media (max-device-width: 768px){

#details dl{
display: block;
width: 70.8rem;
}

#details dl > div:nth-child(1),
#details dl > div:nth-child(2){
width: 100%;
}

}



@media (max-device-width: 500px){

#details dl{
width: auto;
margin: 0 2rem;
}

#details dl > div:nth-child(2) dd{
font-size: 1.7rem;
}

#details dl > div:nth-child(4) dd span{
line-height: 1.8;
}

#details dl > div:nth-child(3) ul,
#details dl > div:nth-child(6) ul{
display: block;
}

#details dl > div:nth-child(3) li,
#details dl > div:nth-child(6) li{
width: 100%;
margin-bottom: 2rem;
}

#details dl > div:nth-child(3) li:last-child,
#details dl > div:nth-child(6) li:last-child{
margin-bottom: 0;
}

}



/*
GUIDELINES & DOWNLOAD
*/

.documents{
background-color:#E4FAFD;
padding: 6rem 0 0 0;
}
#download{
padding-bottom: 6rem;
}

.documents ul{
max-width: 90.4rem;
margin: auto;
font-size: 1.4rem;
list-style: none;
}

.documents li{
background-color: #fff;
border-radius: 10px;
filter: var(--bg-shadow);
}
.documents li:not(:last-child){
margin-bottom: 1rem;
}

.documents li a{
display: flex;
align-items: center;
width: 100%;
padding: 1.5rem 2.3rem;
font-weight: bold;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}

.documents li a:link,
.documents li a:visited{
color: #1E1E1E;
text-decoration-color: #fff;
}

.documents li a:hover{
text-decoration-color: #1E1E1E;
}


.documents li .icon{
width: 1.5rem;
height: 2rem;
margin-right: 1.8rem;
}
.documents li .pdf.icon{
fill: #F34848;
}
.documents li .excel.icon{
fill: #369252;
}
.documents li .word.icon{
fill: #557ACA;
}

.documents li .download.icon{
fill:#888888;
margin:0 0 0 auto;
}

.documents li br{
display: none;
}

@media (max-device-width: 768px){

.documents{
padding-right:2rem;
padding-left: 2rem;
}

.documents li br.tab{
display: block;
}

}


@media (max-device-width: 500px){

.documents li br{
display: block;
}

}



/*
FLOW
*/

#flow{
padding: 6rem 0;
}

#flow .step{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
max-width: 90.4rem;
margin: auto;
list-style: none;
}

#flow .step li{
position: relative;
display: flex;
flex-direction: column;
align-items: center;
background-color: #fff;
border-radius: 15px;
filter: var(--bg-shadow);
width:calc((100% - 12rem) / 5);
padding: 2rem 0;
font-weight: bold;
}

#flow .step li:not(:last-child)::after{
content:"▶";
position: absolute;
top: 50%;
right: -2em;
transform: translateY(-50%);
font-size: 1rem;
font-weight: 700;
}



#flow .step li > span{
display: inline-block;
font-size: 1.4rem;
text-align: center;
}

#flow .step li > span span{
font-size:85.7143%;
}

#flow .step li > span:nth-child(2){
display: flex;
justify-content: center;
align-items: center;
background-color: #E0F7FA;
color: var(--heavy-color);
border-radius: 10rem;
width: 5rem;
height: 5rem;
margin: 1rem 0 1.5rem 0;
}

#flow .step li:nth-child(3) > span:nth-child(2){
background-color: #FDF9E3;
color: var(--emp-color);
}

#flow .step .icon{
width:1.5rem;
height: 2rem;
}
#flow .step .bus{
width:2rem;
height: 2rem;
}

#flow h3{
margin: 0 0 2.5rem;
padding: 6rem 0 2.5rem 0;
font-family: 'Noto Serif JP', serif;
font-size: 2rem;
font-weight: 700;
text-align: center;
letter-spacing: 0.1em;
}

#flow .method{
background-color: #fff;
filter: var(--bg-shadow);
border-radius: 15px;
max-width: 50rem;
margin: auto;
padding: 3rem 7.5rem;
}

#flow .method ol{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 1.4rem;
list-style: none;
}
#flow .method ol li{
width: 47%;
margin-bottom: 0.7em;
padding-left: 1em;
text-indent: -1em;
}

#flow .method ol li:last-child{
margin-bottom: 0;
}

#flow .method ul{
margin-top: 3rem;
line-height: 1.8;
font-size: 1.4rem;
letter-spacing: 0.1em;
list-style:none;
}

#flow .method ul li{
padding-left: 1em;
text-indent: -1em;
}

#flow .method ul li::before{
content: "※";
}


@media (max-device-width: 768px){

#flow{
padding: 6rem 2rem;
}

#flow .method{
padding:3rem 3.5rem;
}


#flow .method ol{
flex-direction: column;
width: 29rem;
margin: auto;
}
#flow .method ol li{
width: 100%;
padding-left: 0;
text-indent: 0;
}

#flow .method .button{
width: 29rem;
}

#flow .method ul{
width: 34rem;
margin: 3rem auto 0 auto;
letter-spacing: 0.05em;
}

}


@media (max-device-width: 500px){



#flow .step{
flex-direction: column;
}

#flow .step li{
flex-direction: row;
width: 100%;
padding: 2rem 3rem;
}

#flow .step li:not(:last-child){
margin-bottom: 3rem;
}

#flow .step li > span:nth-child(2){
margin:0 2rem;
}

#flow .step li > span br{
display: none;
}

#flow .step li:not(:last-child)::after{
top:auto;
right:50%;
bottom: -1.75rem;
transform:rotate(90deg) translate(50%, 0);
}

}



/*
SURVEY
*/

#survey{
background-color: #E4FAFD;
padding: 6rem 0;
}

#survey .survey{
display: flex;
justify-content: space-between;
max-width: 90.4rem;
margin: auto;
}

#survey .survey > div{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 15px;
filter: var(--bg-shadow);
width:calc((100% - 2rem) / 2);
padding: 3rem 0;
}

#survey h3{
display: flex;
justify-content: center;
align-items: center;
font-size: 1.6rem;
}

#survey .pre-survey{
border-bottom: 5px solid var(--pre-survey-color);
}

#survey .post-survey{
border-bottom: 5px solid var(--post-survey-color);
}

#survey .pre-survey h3{
color: var(--pre-survey-color);
}

#survey .post-survey h3{
color: var(--post-survey-color)
}

#survey .survey h3 .icon{
width: 1.5rem;
height: 2rem;
margin-right: 1.5rem;
}

#survey .survey p{
margin: 1.5rem 0;
font-size: 1.4rem;
letter-spacing: 0.1em;
}

#survey .survey a{
display: inline-block;
border: 3px solid #000;
border-radius: 10rem;
width: 22rem;
padding: 1.3rem 0 1.5rem 0;
line-height: 1;
font-size: 1.6rem;
font-weight: 700;
text-align: center;
text-decoration: underline;
transition: all 0.3s ease-in-out;
}

#survey .survey a:link,
#survey .survey a:visited{
text-decoration-color:transparent;
}

#survey .pre-survey a:link,
#survey .pre-survey a:visited{
color:var(--pre-survey-color);
border-color: var(--pre-survey-color);
}

#survey .post-survey a:link,
#survey .post-survey a:visited{
color:var(--post-survey-color);
border-color: var(--post-survey-color);
}

#survey .survey a:hover{
color: #fff;
text-decoration-color:#fff;
}

#survey .pre-survey a:hover{
background-color: var(--pre-survey-color);
}
#survey .post-survey a:hover{
background-color: var(--post-survey-color);
}

@media (max-device-width: 768px){

#survey .survey{
padding: 0 2rem;
}


}

@media (max-device-width: 500px){

#survey .survey{
display: block;
}

#survey .survey > div{
width: 100%;
}

#survey .survey > div:first-of-type{
margin-bottom: 2rem;
}


}



/*
FACILITY
*/

#facility{
position: relative;
overflow: hidden;
background-color: #fff;
filter: var(--bg-shadow);
padding: 6rem 0;
}

.facility-bg{
position: absolute;
z-index: 0;
inset:0;
background: url(../images/leaf.svg) repeat;
background-size: 60%;
filter: blur(0.5px);
pointer-events: none;
}


#facility .content,
#facility .exemption{
position: relative;
z-index: 1;
max-width: 90.4rem;
margin: auto;
}

#facility p{
font-size: 1.4rem;
}

#facility .content{
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
}

#facility .content div:first-child{
width: 45rem;
}

#facility ul{
padding-left: 1.8em;
margin-bottom: 2rem;
line-height: 1.8;
font-size: 1.6rem;
letter-spacing: 0.2em;
}

#facility .external-link{
margin-top: 2rem;
}

#facility .photo{
border-radius: 15px;
overflow: hidden;
width:41.2rem;
height: 30rem;
}

#facility .photo img{
width: 100%;
vertical-align: top;
}

#facility .exemption{
display: flex;
align-items: center;
justify-content: space-between;
background-color: #F3F8F9;
border-radius: 15px;
padding: 3rem;
}

#facility .exemption h3{
width: 24.7rem;
font-size: 1.6rem;
text-align: center;
}

#facility .exemption p{
width:56.5rem;
line-height: 2.2;
letter-spacing: 0.05em;
}

@media (max-device-width: 768px){

#facility .content{
padding: 0 2rem;
}

#facility h2{
font-size: 2.3rem;
}


#facility .content div:first-child{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: auto;
}

#facility ul{
color: var(--heavy-color);
}

#facility .external-link{
width: 100%;
}

#facility .photo{
width: 50%;
height: auto;
}


#facility .exemption{
margin: 0 2rem;
}

#facility .exemption > div{
width: calc(100% - 25rem);
}

#facility .exemption p{
width: auto;
}

#facility .exemption .notice{
padding-left: 1em;
text-indent: -1em;
}

}

@media (max-device-width: 500px){

.facility-bg{
background-size: 120%;
}

#facility .content{
display: block;
}

#facility h2{
font-size: 2.6rem;
}

#facility .external-link{
width: 100%;
margin-bottom: 2.5rem;
}

#facility .photo{
width: 100%;
height: auto;
}

#facility .exemption{
display: block;
}

#facility .exemption h3{
width: auto;
margin-bottom: 1rem;
text-align: center;
}

#facility .exemption > div{
width: auto;
}

#facility .exemption p{
font-size: 1.2rem;
letter-spacing: 0.03em;
}



}




/*
CONTACT
*/

#contact{
padding: 6rem 0 8rem 0;
}

#contact .content{
background-color: #fff;
border-radius: 15px;
filter: var(--bg-shadow);
max-width: 58.6rem;
padding: 4rem;
margin: auto;
}

#contact h3{
margin-bottom: 1rem;
font-size: 1.6rem;
letter-spacing: 0.2em;
}

#contact .content > div{
display: flex;
flex-wrap: wrap;
}

#contact p{
display: flex;
align-items: center;
margin-bottom: 1rem;
font-size: 1.4rem;
}

#contact .content > div p:first-child{
width: 100%;
}

#contact .content > div p:not(:last-child){
margin-right: 0.95em;
}

#contact .icon{
fill: var(--heavy-color);
width: 1.6rem;
height: 1.6rem;
margin-right: 0.8rem;
}


#contact .content > p:last-child{
border-top: 1px solid #D9D9D9;
padding-top: 1.5rem;
margin:1.5rem 0 0 0;
}

@media (max-device-width: 500px){

#contact{
padding: 6rem 2rem 8rem 2rem;
}

#contact h3{
font-size: 1.4rem;
}

#contact .content{
max-width: 58.6rem;
padding: 2rem;
}

#contact .content > p:last-child{
padding-top: 1.2rem;
line-height: 2;
}

}

/*
FOOTER
*/

footer{
display: flex;
justify-content: space-between;
background-color: #E4FAFD;
padding: 3rem;
}

footer p{
font-size: 1.2rem;
}

@media (max-device-width: 500px){

footer{
flex-direction: column;
justify-content: center;
align-items: center;
}

footer p:first-child{
margin-bottom: 0.5em;
}

}