:root {
    --main-color: rgba(0,178,179,1);
    --text-color: rgba(35,24,21,1);
    --text-color-opacity: 35,24,21;
    --clear-color: rgba(255,255,255,1);
    --clear-color-opacity: 255,255,255;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: clamp(14px, 1vw, 18px);
}
@media (min-width: 1600px){
    html {
        font-size: clamp(12px, 0.8vw, 16px);
    }
}
@media (min-width: 481px) and (max-width: 768px){
    html {
        font-size: clamp(14px, 1.25vw, 18px);
    }
}
@media (max-width: 480px){
    html {
        font-size: clamp(14px, 1.5vw, 18px);
    }
}
@media (min-resolution: 2dppx) and (max-width: 480px){
    html {
        font-size: clamp(16px, 2vw, 20px);
    }
}


body{
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    letter-spacing: .1rem;
    line-height: 1.7;
    overflow-x: hidden;
}
ul,ol,li{
    list-style-type: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    display: block;
}

.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}
.logo_fadein p {
    position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 20rem;
}
@media (max-width: 480px){
    .logo_fadein p {
        width: 15rem;
    }
}

header{
    padding: 2rem 0;
}
header h1{
	width: 30rem;
    margin: 0 auto;
}
@media (max-width: 480px){
    header h1{
        width: 20rem;
    }
}

.information{
    width: 90%;
    max-width: 75rem;
    margin: 0 auto 3rem;
    padding: 3rem;
    border: 5px double var(--main-color);
}
.information h2{
    text-align: center;
    color: var(--main-color);
}
.information figure{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin: 2rem auto;
}
.information p{
    text-align: justify;
}
@media (max-width: 768px){
    .information figure{
        display: block;
    }
}



.greeting{
    width: 90%;
    max-width: 45rem;
    margin: 0 auto;
    padding: 5rem 0;
    display: grid;
}
.greeting h2{
    margin-bottom: 1rem;
}
p.director{
    margin-top: .5rem;
    text-align: right !important;
}
@media (max-width: 768px){
    .greeting{
        padding: 2rem 0;
    }
}

section.jsp,
section.good,
section.fuji,
section.amosu{
    width: 90%;
    max-width: 75rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
}
section.jsp figure,
section.fuji figure{
    grid-column: 1;
    grid-row: 1;
}
section.good figure,
section.amosu figure{
    grid-column: 2;
    grid-row: 1;
}
section.jsp div,
section.fuji div{
    grid-column: 2;
    grid-row: 1;
    margin-left: 4rem;
}
section.good div,
section.amosu div{
    grid-column: 1;
    grid-row: 1;
    margin-right: 4rem;
}
@media (max-width: 768px){
    section.jsp,
    section.good,
    section.fuji,
    section.amosu{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2,auto);
        gap: 3rem;
    }
    section.jsp figure,
    section.fuji figure{
        grid-column: 1;
        grid-row: 1;
    }
    section.good figure,
    section.amosu figure{
        grid-column: 1;
        grid-row: 1;
    }
    section.jsp div,
    section.fuji div{
        grid-column: 1;
        grid-row: 2;
        margin-left: 0;
        margin-bottom: 3rem;
    }
    section.good div,
    section.amosu div{
        grid-column: 1;
        grid-row: 2;
        margin-right: 0;
        margin-bottom: 3rem;
    }
}

section h2{
    color: var(--main-color);
}
section h2 span{
    font-size: 1.15rem;
    font-weight: normal;
    padding-right: .5rem; 
}
section h3 span{
    display: block;
    font-size: 1rem;
    font-weight: normal;
}
section p{
    text-align: justify;
}
section div{
    display: grid;
    gap: 1rem;
}

.btn-link{
    background: var(--main-color);
    padding: 1rem 3rem;
    margin-top: 2rem;
}
.btn-link a{
    color: var(--clear-color);
    text-align: center;
}

footer{
    background: var(--main-color);
    padding: 3rem;
    color: var(--clear-color);
}
footer address{
    font-style: normal;
    text-align: center;
}
footer p{
    text-align: center;
}
footer small{
    font-size: .8rem;
}
footer br{
    display: none;
}
@media (max-width: 768px){
    footer br{
        display: block;
    }
    footer span{
        display: none;
    }
}