html {
    scroll-behavior: smooth;
}

body {
    background-image: url("img/vintage-leather-lbr.jpg");
    background-size: contain;
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #ccc;
    line-height: 1.5;
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #333;
    text-align: center;
    color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #3e3232cc;
    z-index: 10;
}

section {
    margin: 120px 100px;
}

.pc-img {
    display: block;
}

.sp-img {
    display: none;
}

.section-title {
    display: inline-block;
    /* font-size: 30px; */
    font-size: clamp(1.25rem, 0.9375rem + 1.25vw, 1.875rem);
    margin: 0 auto 50px;
    padding: 50px 0 10px;
    position: relative;
    background-image: url('../img/fire003.png');
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: center;
}

.section-title::after {
    content: '';
    width: 80%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #E08141dd, #5F371C99);
    position: absolute;
    bottom: 0;
    left: 10%;
}

.header-inner {
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 80px 0 30px;
}

.header-logo {
    width: 180px;
}

.header-logo img {
    margin-top: 5px;
    width: 100%;
}

.header-list {
    display: flex;
}

.header-list_item {
    margin: 0 10px;
    border-bottom: 1px solid transparent;
    transition: .5s;
}

.header-list_item:hover {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
}

.sp-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    z-index: 5;
}

.sp-header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin: 0 18px;
}

.sp-header_logo {
    width: 180px;
}

.sp-header_logo img {
    width: 100%;
    height: auto;
}

.sp-header_hmenu-hidden {
    display: none;
}

.sp-header_hmenu-icon {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
}

.sp-header_hmenu-icon span {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .5s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    content: '';
}

.sp-header_hmenu-icon span:nth-of-type(1) {
    top: 8px;
    left: 5px;
}

.sp-header_hmenu-icon span:nth-of-type(2) {
    top: 14px;
    left: 5px;
}

.sp-header_hmenu-icon span:nth-of-type(3) {
    bottom: 8px;
    left: 5px;
}

#sp-header_hmenu-check:checked~#sp-header_hmenu-label .sp-header_hmenu-icon span:nth-of-type(1) {
    transform: translateY(6px) rotate(405deg);
    background: #fff;
}

#sp-header_hmenu-check:checked~#sp-header_hmenu-label .sp-header_hmenu-icon span:nth-of-type(2) {
    opacity: 0;
}

#sp-header_hmenu-check:checked~#sp-header_hmenu-label .sp-header_hmenu-icon span:nth-of-type(3) {
    transform: translateY(-6px) rotate(-405deg);
    background: #fff;

}

#sp-header_hnav-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0009;
    transition: opacity .5s;
    opacity: 0;
}

.sp-header_hnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fffe;
    color: #333;
    padding: 35px 25px;
    transform: translateX(-100%);
    box-sizing: border-box;
    overflow: hidden;
}


.fv {
    position: relative;
    margin-bottom: 100px;
}

.fv-img {
    width: 100%;
    overflow: hidden;
    opacity: 0;
}
.fv-img-anime{
    transition: opacity 1s;
    transition-delay: 2s;
}
.fv-img-anime02{
    transition: opacity 1s;
    transition-delay: .5s;
}

.fv-img.fadein {
    opacity: 1;
}

.fv-img img {
    width: 100%;
}

.fv-logo {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    bottom: 10%;
    opacity: 0;
}
.fv-logo-anime{
    transition: opacity 2s;
    transition-delay: 2.5s;
}
.fv-logo-anime02{
    transition: opacity 2s;
    transition-delay: 1s;
}

.fv-logo img {
    width: 100%;
}

.fv-logo.fadein {
    opacity: 1;
}

.information {
    max-width: 600px;
    margin: 0 auto;
}

.information-inner {
    background: #e9e4de;
    border: 2px solid #d48b37;
    border-radius: 10px;
    padding: 50px;
    transition: all 1s;
    opacity: 0;
    transform: translateY(100px);
}

.information-inner.fadein {
    opacity: 1;
    transform: translateY(0);
}

.information-item {
    display: flex;
    align-items: center;
    margin: 20px;
    color: #777;
    border-bottom: 1px solid #777;
}

.information-item-date {
    margin-right: 20px;
    font-size: 12px;
}

.information-item-title {
    font-weight: bold;
}

.information2 {
    max-width: 800px;
    margin: 0 auto;
}

.information-inner2 {
    background: #e9e4de;
    border: 2px solid #d48b37;
    border-radius: 10px;
    padding: 50px;
    transition: all 1s;
    opacity: 0;
    transform: translateY(100px);
}

.information-inner2.fadein {
    opacity: 1;
    transform: translateY(0);
}

.information-item2 {
    display: flex;
    align-items: center;
    margin: 20px;
    color: #777;
    border-bottom: 1px solid #777;
}

.information-item-date2 {
    margin-right: 20px;
    font-size: 12px;
}

.information-item-title2 {
    font-weight: bold;
}

.information-more {
    display: inline-block;
    font-size: 12px;
    color: #777;
    float: right;
}

.information-more-inner {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 2px;
    border-bottom: 1px solid #333;
    transition: .2s;
}

.information-more-inner:hover {
    font-weight: bold;
    border-bottom: 2px solid #333;
}

.information-more-watch {
    margin-right: 20px;
}


.information,
.information2,
.kodawari,
.osusume,
.access {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kodawari-01,
.kodawari-02 {
    width: 100%;
    display: flex;
    position: relative;
    color: #222;
    overflow: hidden;
}

.kodawari-01 h3,
.kodawari-02 h3 {
    /* font-size: 24px; */
    font-size: clamp(1.25rem, 1.1364rem + 0.4848vw, 1.5rem);
    font-weight: bold;
    margin-bottom: 40px;
}

.kodawari-01 p,
.kodawari-02 p {
    /* font-size: 16px; */
    font-size: clamp(0.75rem, 0.6364rem + 0.4848vw, 1rem);
    line-height: 2;
}

.kodawari-01 {
    justify-content: end;
    margin-bottom: 60px;
}

.kodawari-02 {
    justify-content: start;
}

.kodawari-img01 {
    width: 60%;
    transition: all 1s;
    opacity: 0;
    transform: translateX(100px);
}

.kodawari-img01.fadein {
    opacity: 1;
    transform: translateX(0);
}

.kodawari-img01 img {
    width: 100%;
    object-fit: cover;
}

.kodawari-img02 {
    width: 60%;
    transition: all 1s;
    opacity: 0;
    transform: translateX(-100px);
}

.kodawari-img02.fadein {
    opacity: 1;
    transform: translateX(0);
}

.kodawari-img02 img {
    width: 100%;
    object-fit: cover;
}

.kodawari-text01 {
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 40px;
    width: 45%;
    background: linear-gradient(90deg, #fff7, #fff);
    padding: 60px;
    opacity: 0;
    transition: opacity 1s;
    overflow: hidden;
    z-index: 5;
}

.kodawari-text01 h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
    transition-delay: .3s;
}

.kodawari-text01 p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s, transform 1s;
    transition-delay: .6s;
}

.kodawari-text02 {
    position: absolute;
    top: 40px;
    right: 0;
    bottom: 40px;
    width: 45%;
    background: linear-gradient(90deg, #fff3, #ffff);
    padding: 60px;
    opacity: 0;
    transition: opacity 1s;
    overflow: hidden;
    z-index: 5;
}

.kodawari-text02 h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
    transition-delay: .3s;
}

.kodawari-text02 p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
    transition-delay: .6s;
}

.kodawari-text01.fadein {
    opacity: 1;
}

.kodawari-text01.fadein h3 {
    opacity: 1;
    transform: translateY(0);
}

.kodawari-text01.fadein p {
    opacity: 1;
    transform: translateY(0);
}

.kodawari-text02.fadein {
    opacity: 1;
}

.kodawari-text02.fadein h3 {
    opacity: 1;
    transform: translateY(0);
}

.kodawari-text02.fadein p {
    opacity: 1;
    transform: translateY(0);
}

.osusume-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.osusume-card {
    background: #7f7a7acc;
    display: flex;
}

.osusume-card_img {
    width: 40%;
    overflow: hidden;
    border: 1px solid #aaa;
    box-sizing: border-box;
}

.osusume-card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.osusume-card_img img:hover {
    transform: scale(1.2);
}

.osusume-card_text {
    width: 60%;
    padding: 40px;
    background: linear-gradient(90deg, #fffd, #fff7);
    color: #474444;
}

.osusume-card_text-title {
    transition: all .8s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 28px; */
    font-size: clamp(1.25rem, 1.0227rem + 0.9697vw, 1.75rem);
    font-weight: bold;
}

.osusume-card_text-price {
    transition: all .8s .1s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 20px; */
    font-size: clamp(1rem, 0.8864rem + 0.4848vw, 1.25rem);
    color: #c85353;
    margin-bottom: 10px;
}

.osusume-card_text-text {
    transition: all .8s .2s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 16px; */
    font-size: clamp(0.75rem, 0.6364rem + 0.4848vw, 1rem);
}

.osusume-card_text.fadein .osusume-card_text-title {
    transform: translateY(0);
    opacity: 1;
}

.osusume-card_text.fadein .osusume-card_text-price {
    transform: translateY(0);
    opacity: 1;
}

.osusume-card_text.fadein .osusume-card_text-text {
    transform: translateY(0);
    opacity: 1;
}


.osusume-container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: column;
    gap: 30px;
}

.osusume-card2 {
    background: #7f7a7acc;
    display: flex;
    flex-direction: column;
}

.osusume-card_img2 {
    width: 100%;
    overflow: hidden;
    border: 1px solid #aaa;
    box-sizing: border-box;
}

.osusume-card_img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.osusume-card_img2 img:hover {
    transform: scale(1.2);
}

.osusume-card_text2 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    height: 60%;
    padding: 20px;
    background: linear-gradient(90deg, #fffd, #fff7);
    color: #474444;
    box-sizing: border-box;
}

.osusume-card_text-title2 {
    transition: all .8s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 28px; */
    font-size: clamp(0.875rem, 0.125rem + 1.5vw, 1.25rem);
    font-weight: bold;
}

.osusume-card_text-price2 {
    transition: all .8s .1s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 20px; */
    font-size: clamp(1rem, 0.8864rem + 0.4848vw, 1.25rem);
    color: #c85353;
    margin-bottom: 10px;
}

.osusume-card_text-text2 {
    transition: all .8s .2s;
    transform: translateY(50px);
    opacity: 0;
    /* font-size: 16px; */
    font-size: clamp(0.625rem, 0.375rem + 0.5vw, 0.75rem);
}

.osusume-card_text2.fadein .osusume-card_text-title2 {
    transform: translateY(0);
    opacity: 1;
}

.osusume-card_text2.fadein .osusume-card_text-price2 {
    transform: translateY(0);
    opacity: 1;
}

.osusume-card_text2.fadein .osusume-card_text-text2 {
    transform: translateY(0);
    opacity: 1;
}

.osusume-more {
    display: inline-block;
    font-size: 12px;
    color: #ccc;
    float: right;
}

.osusume-more-inner {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
    transition: .2s;
}

.osusume-more-inner:hover {
    font-weight: bold;
    border-bottom: 2px solid #fff;
}

.osusume-more-watch {
    margin-right: 20px;
}

.osusume-top{
    margin-top: 0;
}
.access-container {
    display: flex;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s;
    background: #464242dd;
}

.access-container.fadein {
    opacity: 1;
    transform: translateY(0);
}

.access-text {
    width: 30%;
    padding: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s;
    transition-delay: .3s;
}

.access-text.fadein {
    opacity: 1;
    transform: translateY(0);
}

.access-text h3 {
    font-size: 16px;
}

.access-text p {
    font-size: 14px;
    text-indent: 1em;
}

.access-last {
    margin-bottom: 10px;
}

.access-map {
    width: 70%;
    overflow: hidden;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
}

.contact-item{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.contact-item label{
    margin-bottom: 5px;
}
.contact-item label span{
    color: #ff0000;
    margin-left: 5px;
}
.contact-item-input,
.contact-item-textarea{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.contact-item-textarea{
    resize: none;
    margin-bottom: 20px;
}
.contact-btn{
    display: flex;
    justify-content: center;
}
.contact-btn-style{
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
    background: rgb(98, 70, 17);
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color .3s;
}
.contact-btn-style:hover{
    background: rgb(129, 90, 20);
}

.footer {
    background: #332727;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 60px 0 40px;
}

.footer-logo {
    width: 200px;
}

.footer-logo img {
    width: 100%;
}

.footer-text h3 {
    font-size: 14px;
    font-weight: bold;
}

.footer-text p {
    font-size: 12px;
    text-indent: 1em;
}

.footer-company {
    text-align: center;
    font-size: 10px;
    padding: 20px 0;
}

@media screen and (max-width: 800px) {
    .pc-img {
        display: none;
    }

    .sp-img {
        display: block;
    }

    header {
        height: 54px;
    }

    .header-inner {
        margin: 0 16px;
    }

    .header-logo {
        width: 120px;
    }

    .sp-header-logo {
        width: 120px;
        margin-bottom: 60px;
    }

    .sp-header-logo img {
        width: 100%;
    }

    .header-nav {
        display: none;
    }

    .sp-header {
        display: block;
    }

    .sp-header_hmenu {
        display: block;
    }

    .sp-header_hnav {
        transition: .5s;
    }

    #sp-header_hnav-back {
        opacity: 0;
        pointer-events: none;
    }

    #sp-header_hmenu-check:checked~#sp-header_hnav-back {
        opacity: 1;
        pointer-events: all;
        z-index: -1;
    }

    #sp-header_hmenu-check:checked~.sp-header_hmenu-icon {
        background: #333;
        z-index: 3;
    }

    #sp-header_hmenu-check:checked~.sp-header_hnav {
        width: 300px;
        transform: translateX(0);
        z-index: 3;
        box-sizing: border-box;
    }

    .sp-header_hnav-list01 {
        margin-bottom: 60px;
    }

    .sp-header_hnav-list01 li {
        margin-bottom: 20px;
    }

    .sp-header_hnav-list02 li {
        margin-bottom: 20px;
    }

    .header-list_item {
        border-bottom: 1px solid #ccc;
    }

    .header-list_item:hover {
        border-bottom: 1px solid #000;
    }


    section {
        margin: 160px 20px;
    }

    .fv {
        position: relative;
    }

    .fv-img img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

    .fv-logo {
        width: 100%;
    }

    .information {
        width: 90%;
    }
    .information2 {
        width: 90%;
    }

    .information-inner {
        padding: 10px;
    }

    .information-item-title {
        font-size: 14px;
    }


    .kodawari-01 {
        justify-content: center;
        flex-direction: column;
    }

    .kodawari-02 {
        justify-content: center;
        flex-direction: column;
    }

    .kodawari-img01 {
        width: 100%;
    }

    .kodawari-img02 {
        width: 100%;
    }

    .osusume-card {
        flex-direction: column;
    }

    .osusume-container2 {
        grid-template-columns: repeat(1, 1fr);
    }
    

    .kodawari-text01 {
        top: 0;
        left: 0;
        bottom: 6px;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .kodawari-text02 {
        top: 0;
        left: 0;
        bottom: 6px;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .kodawari-01 h3,
    .kodawari-02 h3 {
        margin-bottom: 20px;
    }


    .osusume-card_img {
        width: 100%;
    }

    .osusume-card_text {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .access-container {
        flex-direction: column-reverse;
    }

    .access-text {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .access-map {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}

.information-bottom {
    margin-bottom: 100px;
}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime span{
    opacity: 0;
}
.glowAnime.glow span {
    animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: bgchange 30s ease infinite;
    background: #6a544a;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s;
    /*0.6秒かけてアニメーション*/
}

@keyframes bgchange{
    0%   {background:rgb(106, 84, 74);}/*変化させたい色*/
    25%  {background:rgb(90, 84,74);}/*変化させたい色*/
    50%  {background:rgb(70, 84,74);}/*変化させたい色*/
    75%  {background:rgb(106, 70,74);}/*変化させたい色*/
    90%  {background:rgb(106,50,74);}/*変化させたい色*/
    100% {background:rgb(106, 84,60);}/*変化させたい色*/
}

.circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
    opacity: 0;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/*リストのレイアウト設定*/
#g-nav li {
    text-align: center;
    list-style: none;
}

#g-nav li a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    opacity: .3;
    border-bottom: 1px solid transparent;
    transition: all .5s;
}
#g-nav li a:hover {
    opacity: 1;
    border-bottom: 1px solid #fff;
}


/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
}

.openbtn2{
    display: none;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-405deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(405deg);
    width: 30%;
}

@media screen and (max-width: 800px) {
    .openbtn2{
        display: block;
    }

    .openbtn2 {
        position: fixed;
        top: 2px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }
    
    #g-nav li a {
        opacity: 1;
        border-bottom: 1px solid #fff;
    }
}