@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

html, body {
    overflow-x: hidden
}

body {
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #000;
    scroll-behavior: smooth
}

body.noSmooth {
    scroll-behavior: auto
}

body.fixed {
    position: fixed
}

a {
    color: #000
}

ul {
    list-style: none
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom
}

.wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    position: relative;
    margin: 0
}

@media screen and (min-width: 768px) {
    .pc-none {
        display: none
    }
}

footer {
    width: 100%;
    margin-top: 50px
}

@media screen and (max-width: 428px) {
    footer {
        margin-top: 0
    }
}

footer p {
    padding-bottom: 20px;
    color: #000;
    font-size: 12px;
    text-align: center
}

header {
    position: relative
}

header h1 {
    padding: 28px 94px 8px 40px;
    line-height: 0
}

header h1 img {
    width: 105px
}

header h1.shadow {
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2))
}

@media screen and (max-width: 428px) {
    header h1 {
        padding: 20px 68px 10px 20px
    }

    header h1 img {
        width: 60px
    }
}

header .header-inner {
    width: 50vw;
    height: 100vh;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 100%;
    background: hsla(0, 0%, 100%, .9);
    line-height: 1.2;
    transition: left .5s;
    z-index: 100
}

@media screen and (max-width: 767px) {
    header .header-inner {
        width: 90vw
    }
}

header .header-inner nav {
    width: 100%;
    padding: 95px 0
}

@media screen and (max-width: 428px) {
    header .header-inner nav {
        padding: 65px 0
    }
}

@media screen and (min-height: 500px) {
    header .header-inner nav {
        margin-top: calc(50vh - 154px - 95px)
    }
}

@media screen and (max-width: 428px)and (min-height: 390px) {
    header .header-inner nav {
        margin-top: calc(50vh - 130px - 65px)
    }
}

header .header-inner nav > ul {
    padding: 0 60px
}

@media screen and (max-width: 428px) {
    header .header-inner nav > ul {
        padding: 0 50px
    }
}

header .header-inner nav > ul > li:not(:last-child) {
    padding-bottom: 50px
}

@media screen and (max-width: 428px) {
    header .header-inner nav > ul > li:not(:last-child) {
        padding-bottom: 40px
    }
}

header .header-inner nav ul.sub-menu {
    display: none;
    margin: 25px 0 0 20px
}

header .header-inner nav ul.sub-menu li:not(:last-child) {
    padding-bottom: 20px
}

@media screen and (max-width: 428px) {
    header .header-inner nav ul.sub-menu {
        margin-top: 20px
    }
}

header .header-inner nav a, header .header-inner nav span {
    display: inline-block;
    position: relative;
    color: #000;
    font-family: "Inter", "Roboto", "Helvetica Neue", "Arial Nova", "Nimbus Sans", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .08em;
    text-decoration: none;
    cursor: pointer
}

@media screen and (max-width: 428px) {
    header .header-inner nav a, header .header-inner nav span {
        font-size: 16px
    }
}

header .header-inner nav a::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background-color: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s
}

header .header-inner nav a:hover::after {
    transform: scale(1, 1)
}

#navBtn {
    width: 34px;
    height: 2px;
    padding: 12px 0;
    outline: none;
    position: fixed;
    top: 35px;
    right: 30px;
    background: none;
    z-index: 200;
    cursor: pointer
}

@media screen and (max-width: 428px) {
    #navBtn {
        width: 28px;
        top: 20px;
        right: 20px
    }
}

#navBtn::before, #navBtn::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 12px;
    left: 0;
    background: #fff;
    transform-origin: 50% 50%;
    transition: .3s ease-in-out
}

#navBtn::before {
    transform: translateY(-12px)
}

#navBtn::after {
    transform: translateY(12px)
}

#navBtn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff
}

#navBtn.shadow span, #navBtn.shadow::before, #navBtn.shadow::after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .2)
}

#navBtn.color_n span, #navBtn.color_n::before, #navBtn.color_n::after {
    background: #000
}

body.open #navBtn::before, body.open #navBtn::after {
    background: #000
}

body.open #navBtn::before {
    transform: translateY(0) rotate(-45deg)
}

body.open #navBtn::after {
    transform: translateY(0) rotate(45deg)
}

body.open #navBtn span {
    opacity: 0
}

body.open #navBtn.shadow span, body.open #navBtn.shadow::before, body.open #navBtn.shadow::after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0)
}

body.open header .header-inner {
    left: 50%
}

#navBtn.color_b span, #navBtn.color_b::before, #navBtn.color_b::after {
    background: #A69688
}

@media screen and (max-width: 767px) {
    body.open header .header-inner {
        left: 10%
    }
}