@charset "utf=8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
	border: 0;
	font-size: 100%;
	font: inherit;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1em;
	vertical-align: baseline;
    letter-spacing: 1.5px;
    line-height: 1.8;
}
img{
    vertical-align: top;
}
body{
    max-width: 100vw;
}
/* *,
::before,
::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
} */
/* .zen-kaku-gothic-antique-regular {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
  } */
ul,
ol{
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
}
body{
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 250;
    color: #4a4a4a;
    background-color: #f4f1ec;
}
img{
    max-width: 100%;
}
 
/* header */
header{
    z-index: 10000;
    display: flex;
}
.header-inner{
    width: 100%;
    height: 6em;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 10000;
}
.site-menu ul{
    display: flex;
}
.header-inner-logo{
    width: 12em;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.header-inner-logo h1{
    background-color: inherit;
}
.header-logo img{
    width: 9em;
    background-color: #fff;
}
.header-site-menu{
    height: 80%;
}
.header-site-menu .site-menu ul{
    background-color: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.header-site-menu .site-menu ul li{
    background-color: #fff;
    padding: 1.5em 2em;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.header-site-menu .site-menu ul li:nth-child(6){
    background-color: #f84d4e;
    border-bottom-left-radius: 0px;
}
.header-site-menu .site-menu ul li span{
    background-color: inherit;
    color: #fff;
}
.site-menu ul li:hover{
    color: #4a4a4a;
    font-weight: bold;
}
.site-menu ul li:nth-child(6):hover{
    opacity: 0.6;    
}
.site-menu ul li .underline{
    position: relative;
}
.site-menu ul li .underline::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #4a4a4a;
    bottom: -0.4em;
    transform: scale(0, 1);
    transition: transform 0.5s;
    transform-origin: center top;
}
.site-menu ul li .underline:hover::after {
    transform: scale(1, 1)
}

/* footer */
.svg-wave{
    position: relative;
}
.svg-wave svg{
    position: absolute;
    bottom: -1em;
}
.footer{
    background-color: #38bfff;
    color: #fff;
    padding-top: 1em;
}
.footer-inner{
    display: flex;
}
.sns ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 30% 0;
}
.x{
    width: 20px;
    min-width: 20px;
}
.insta{
    width: 21px;
    min-width: 21px;
}
.tiktok{
    width: 20px;
    min-width: 20px;
}
.youtube{
    width: 28px;
    min-width: 28px;
}
.sns ul li{
    margin: 0 2em;
}
.footer-left{
    width: 50%;
    margin: auto;
}
.footer-logo{
    width: 30%;
    margin: auto;
    display: block;
    padding: 2em 0;
}
.footer-access{
    margin: 2em;
    text-align: center;
}
.footer-access h2{
    font-size: 1.2em;
    line-height: 3em;
}
.footer-menu{
    width: 50%;
    margin: auto;
}
.footer-menu ul li{
    line-height: 3em;
}
.footer-copyright{
    text-align: center;
    padding: 3em 0;
    font-size: 0.8em;
}