@charset "utf-8";

html {
    font-size: 100%;
}

body {
    background-image: linear-gradient(90deg, rgba(183, 187, 255, 0.3), rgba(255, 247, 216, 0.3) 33%, rgba(246, 190, 232, 0.3) 76%, rgba(243, 170, 196, 0.3));
    color: #2d004d;
    font-family: 'Noto Serif JP', 'Noto Serif', serif;
    font-weight: 400;
    font-size: 16px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

a {
    color: #2d004d;
    text-decoration: none;
    transition: all .3s ease;
}

a:hover {
    opacity: 0.7;
}

.btn {
    max-width: 240px;
    background-color: #fafafa;
    display: inline-block;
    border: solid 1px #2d004d;
    font-size: 12px;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
    background-color: #2d004d;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}

.btn:hover {
    color: #fafafa;
    opacity: 1;
}

.btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

#header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.scrolled {
    background: #fafafa60;
    backdrop-filter: blur(8px);
}

#header .headerLogo a {
    display: flex;
    align-items: center;
}

#header .headerLogo a img {
    width: 100%;
    max-width: 150px;
}

#header .langSwitcher_sp,
#header .btn_reserve_sp,
#header .hamburger {
    display: none;
}

#header .gNav .menu {
    display: flex;
    align-items: center;
}

#header .gNav .menu li {
    margin-left: 20px;
}

#header .gNav .menu li a {
    font-size: 12px;
    color: #2d004d;
}

#header .gNav .menu .langSwitcher a,
#header .gNav .menu .btn_reserve a {
    background-color: #fafafa;
    color: #2d004d;
    border: 1px solid #2d004d;
    display: block;
    font-weight: 600;
    padding: 10px 30px;
}

#header .gNav .menu .langSwitcher a:hover,
#header .gNav .menu .btn_reserve a:hover {
    background-color: #2d004d;
    color: #fafafa;
    border: 1px solid #fafafa;
    opacity: 1;
}

#header .gNav .menu .langSwitcher a {
    padding: 10px;
}

.fadein {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s;
}

.fadein.inview {
    opacity: 1;
    transform: translateY(0);
}

.contact {
    position: fixed;
    right: -30px;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.contact .btn {
    display: block;
    writing-mode: vertical-rl;
    text-align: center;
    background-color: #fafafa;
    color: #2d004d;
    font-size: 14px;
    padding: 10px 40px 10px 10px;
}

.contact .btn:hover {
    color: #fafafa;
}

#footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2d004d80;
    color: #fafafa;
    padding: 80px 5%;
}

#footer a {
    color: #fafafa;
}

#footer .infoArea {
    width: 35%;
}

#footer .infoArea .footerLogo {
    display: block;
    width: 100%;
    max-width: 200px;
    line-height: 0;
    margin: 0 auto 10px;
}

#footer .infoArea .info {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

#footer .infoArea .info .sns a img{
    width: 48px;
    height: 48px;
    margin: 10px 5px 5px;
}

#footer .infoArea .info .copyright {
    font-size: 10px;
}

#footer .menuArea {
    width: 65%;
    display: flex;
    justify-content: space-evenly;
}

#footer .menuArea .menu_col {
    width: 100%;
    max-width: 200px;
}

#footer .menuArea .menu_col .menuList li {
    text-align: center;
    font-size: 14px;
    margin-bottom: 40px;
}

#footer .menuArea .menu_col .menuList li:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    main {
        padding-top: 60px;
    }

    #header {
        height: 60px;
    }

    #header .headerLogo a img {
        width: 100%;
        min-width: 150px;
    }

    #header .langSwitcher_sp {
        display: block;
    }

    #header .langSwitcher_sp a {
        background-color: #fafafa;
        color: #2d004d;
        border: 1px solid #2d004d;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 10px;
        position: absolute;
        top: 10px;
        right: 80px;
    }

    #header .langSwitcher_sp a:hover {
        background-color: #2d004d;
        color: #fafafa;
        border: 1px solid #fafafa;
        opacity: 1;
    }

    #header .btn_reserve_sp {
        display: block;
        width: 100vw;
    }

    #header .btn_reserve_sp a {
        background-color: #fafafa;
        color: #2d004d;
        border: 1px solid #2d004d;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
        padding: 15px 30px;
        box-shadow: 0 2px 4px #1f1f1f;
        position: fixed;
        top: 91vh;
        right: 0;
        left: 0;
        z-index: 10;
    }

    #header .btn_reserve_sp a:hover {
        background-color: #2d004d;
        color: #fafafa;
        border: 1px solid #fafafa;
        opacity: 1;
    }

    #header .hamburger {
        display: block;
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 30;
    }

    #header .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #2d004d;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all .4s;
    }

    #header .hamburger span:nth-of-type(1) {
        top: 16px;
    }

    #header .hamburger span:nth-of-type(2) {
        top: 25px;
    }

    #header .hamburger span:nth-of-type(3) {
        top: 34px;
    }

    #header .gNav {
        width: 100%;
        height: 100vh;
        background-color: #2d004dcc;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 20;
        transition: all .6s;
    }

    #header .gNav .menu {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        padding: 60px 0;
        overflow: auto;
    }

    #header .gNav .menu .langSwitcher,
    #header .gNav .menu .btn_reserve {
        display: none;
    }

    #header .gNav .menu li {
        display: block;
        width: 80%;
        text-align: center;
        padding: 30px 0;
        margin-left: 0;
    }

    #header .gNav .menu li+li {
        border-bottom: 1px solid #fafafa;
    }

    #header .gNav .menu li:nth-child(6) {
        border-bottom: none;
    }

    #header .gNav .menu li a {
        color: #fafafa;
        font-size: 20px;
    }

    #header .gNav.active {
        right: 0;
    }

    #header .hamburger.active span:nth-of-type(1) {
        top: 24px;
        transform: rotate(-405deg);
        background-color: #fafafa;
    }

    #header .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }

    #header .hamburger.active span:nth-of-type(3) {
        top: 24px;
        transform: rotate(405deg);
        background-color: #fafafa;
    }

    #footer {
        flex-direction: column-reverse;
        padding: 60px 20px;
    }

    #footer .infoArea {
        width: 100%;
        margin-bottom: 40px;
    }

    #footer .menuArea {
        width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }

    #footer .infoArea .info {
        margin-bottom: 0;
    }
}