@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;
	vertical-align: baseline;
    letter-spacing: 1.5px;
    line-height: 1.8;
}
img{
    vertical-align: top;
}
/* *,
::before,
::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
} */
ul,
ol{
    list-style: none;
}
a{
    color: inherit;
    text-decoration: none;
}
body{
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 250;
    color: #4a4a4a;
}
img{
    max-width: 100%;
}

/* header */
#open {
    display: none;
    }
.header-site-menu{
    display: flex;
    flex-direction: row-reverse;
}
.menu {
    width: 30%;
    position: fixed;
    top: 50px;
    right: -100%;
    z-index: 1200;
    height: calc(100vh - 50px);
    padding: 10%;
    background-color: rgba(249, 247, 242, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.5s;
    }
.toggle {
    /* display: block; */
    /* position: fixed; */
    /* right: 5%; */
    top: 20px;
    z-index: 1220;
    margin-left: 30px;
    cursor: pointer;
    }
.toggle span {
    width: 28px;
    height: 0.2px;
    background-color:#7a7a7a;
    display: block;
    transition: all 0.3s;
    }
.toggle span:nth-of-type(2){
    margin-top: 7px;
    }
.toggle span:nth-of-type(3){
    margin-top: 7px;
    }
#open:checked ~ .toggle span:nth-of-type(1){
    rotate: 35deg;
    margin-top: 7px;
    }
#open:checked ~ .toggle span:nth-of-type(2){
    scale: 0;
    }
#open:checked ~ .toggle span:nth-of-type(3){
    rotate: -35deg;
    margin-top: -7px;
    }
#open:checked ~ nav {
    top: 50px;
    right: 0;
    }
.menu ul li img{
    /* display: block; */
    width: 20px;
    margin-right: 15px;
    }
.menu ul li{
    margin: 2rem auto;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color:rgba(249, 247, 242, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    }
.header-inner{
    /* max-width: 1200px; */
    width: 90%;
    height: 50px;
    margin: 0 auto;
    /* padding: 0 60px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.toggle-menu-button{
    display: none;
}
.header-logo{
    display: block;
    width: 80px;
}
.site-menu ul{
    display: flex;
}
.site-menu ul li{
    margin: 0 2rem;
}
.site-menu ul li img{
    display: block;
    width: 1.3rem;
}
.site-menu-name{
    position: relative;
}
.site-menu-name::after{
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 0.3px;
    background-color: #9a9a9a;
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.2s;
}
.site-menu-name:hover::after{
    transform: scale(1, 1);
}

/* footer */
footer{
    background-color: #77736f;
    color: #fff;
}
.footer{
    padding: 60px 60px 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-logo{
    display: block;
    width: 100px;
}
.sns ul{
    display: flex;
}
.sns ul li{
    margin: 30px 20px;
}
.sns ul li a img{
    display: block;
    height: 20px;
    justify-content: space-between;
    align-items: center;
}
.footer-menu ul{
    display: flex;
}
.footer-menu ul li{
    justify-content: space-between;
    align-items: center;
    margin: 40px 20px;
}
.footer-copylight{
    font-size: 12px;
}

/* cursor */
.cursor{
    width: 50px;
    aspect-ratio: 1/1;
    background-color: rgba(227, 183, 92, 0.7);
    box-shadow: rgba(249, 247, 242, 0.7);
    filter: blur(3px);
    position: fixed;
    border-radius: 30px;
    top: 0;
    left: 0;
    z-index: 50000;
    pointer-events: none;
}