@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/* CSS Document */

* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    -o-box-sizing:border-box;
}
img {
    width: 100%;
}
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
    background: #fcf6e8;
}

/*====================================

    header

====================================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}
header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}
header nav .logo {
    width: 100px;
    position: fixed;
    top: 10px;
    left: 10px;
}
header nav .menu-left {
}
header nav .menu-left .transparent {
    display: none;
}
header nav .menu-left .sp_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    list-style: none;
    border: 1px solid #f00;
    margin-right: 100px;
}
header nav .menu-left .sp_nav li {
}
header nav .menu-left .sp_nav li a {
    display: block;
}
header nav .menu-left .sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80px;
    margin: 0 auto;
    border: 1px solid #f00;
    position: fixed;
    top: 0px;
    right: 0px;
}
header nav .menu-left .sns li {
    width: 30%;
}
header nav .nav-toggle {
    display: none;
}

/*====================================

    #loading

====================================*/

#loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 1s;
    background-color: #f00;
    z-index: 999999999;
    display: grid;
    place-items: center;
}
.spinner {
    width: 100px;
    height: 100px;
    background-color: #0f0;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
    border: 2px solid #f00;
}
@keyframes sk-scaleout {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}



