@charset "UTF-8";
@media screen and (max-width: 767px) {
    #header .navi {
        width: 80%;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: -80%;
        z-index: 20;
        transition: all 0.6s;
    }
    #header .navi.active {
        position: absolute;
        z-index: 20;
        right: 0;
    }
    #header .navi .menu {
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
        overflow: auto;
    }
    #header .navi .menu li {
        padding: 10px 0;
        margin-left: 0;
    }
    #header .hamburger {
        width: 50px;
        height: 50px;
        cursor: pointer;
        position: fixed;
        top: 5px;
        right: 10px;
        z-index: 30;
    }
    #header .hamburger span {
        width: 30px;
        height: 3px;
        background-color: #000;
        display: inline-block;
        position: absolute;
        left: 10px;
        transition: all 0.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 .navi .active {
        right: 0;
    }
    #header .hamburger.active span:nth-of-type(1) {
        top: 24px;
        transform: rotate(-45deg);
    }
    #header .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }
    #header .hamburger.active span:nth-of-type(3) {
        top: 24px;
        transform: rotate(45deg);
    }
}
html {
    font-size: 100%;
}
body {
    font-family: "Noto Serif JP",serif;
    color: #432;
}
a {
    text-decoration: none;
    transition: opacity 0.7s;
}
a:hover {
    opacity: 0.5;
}
img {
    max-width: 100%;
}
.wrapper {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* main */
body {
    display: flex;
    flex-direction: column;
}
/*header*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 10px;
    background-color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .header-logo {
    display: flex;
    align-items: center;
    transition: opacity 0.7S;
}
#header .header-logo:hover {
    opacity: 0.5;
}
#header figure {
    max-width: 40px;
    opacity: 0.7;
    margin-right: 20px;
}
#header .logo-text {
    font-size: 1.5rem;
    align-items: center;
    width: auto;
    display: flex;
}
#header .logo img {
    max-width: 40px;
}
nav ul {
    display: flex;
}
nav li {
    padding:0 20px;
}

/* intro */
#intro {
    padding-top: 60px;
    padding-bottom: auto;
    font-family: YuGothic;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#intro .info p {
    display: block;
    max-width: 500px;
}
#intro h2 {
    font-family: "Noto Serif JP",serif;
    font-size: 2rem;
    padding: 50px 0;
    text-align: center;
}
#intro .info p {
    padding: 0 40px;
    padding: 50px 30px;
    line-height: 1.5rem;
}
#intro .map-wrap {
    z-index: 0;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
}
#intro .map-wrap iframe {
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*footer*/
#footer {
    color: rgb(202, 202, 202);
    background-color: rgb(76, 76, 76);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
#footer .info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#footer .info-img{
    opacity: 0.7;
    max-width: 60px;
    line-height: 0;
    filter: invert(1);
    padding-bottom: 20px;
}
#footer .info-base {
    display: flex;
    justify-content: space-between;
}
#footer .instaglam{
    opacity: 0.7;
    max-width: 30px;
    line-height: 0;
    padding-bottom: 20px;
    margin-right: 30px;
}


