.fs24 {
    font-size: 4.8vw
}

.fs25 {
    font-size: 4.93vw
}

.fs29 {
    font-size: 5.47vw
}

.fs30 {
    font-size: 5.6vw
}

.fs32 {
    font-size: 5.87vw
}

.fs34 {
    font-size: 6.13vw
}

.fs36 {
    font-size: 6.4vw
}

.fs40 {
    font-size: 6.93vw
}

.fs44 {
    font-size: 7.47vw
}

.fs52 {
    font-size: 8.53vw
}

.fs54 {
    font-size: 8.8vw
}

.fs69 {
    font-size: 10.8vw
}

.fs72 {
    font-size: 11.2vw
}

@media screen and (min-width: 768px) {
    .fs24 {
        font-size: 24px
    }

    .fs25 {
        font-size: 25px
    }

    .fs29 {
        font-size: 29px
    }

    .fs30 {
        font-size: 30px
    }

    .fs32 {
        font-size: 32px
    }

    .fs34 {
        font-size: 34px
    }

    .fs36 {
        font-size: 36px
    }

    .fs40 {
        font-size: 40px
    }

    .fs44 {
        font-size: 44px
    }

    .fs52 {
        font-size: 52px
    }

    .fs54 {
        font-size: 54px
    }

    .fs69 {
        font-size: 69px
    }

    .fs72 {
        font-size: 72px
    }
}

@media screen and (min-width: 768px) {
    .zoom-img .photo {
        overflow: hidden
    }

    .zoom-img .photo img {
        transition: .5s all ease-in-out
    }

    .zoom-img:hover .photo img {
        transform: scale(1.15)
    }
}

.btn-shared {
    font-family: "Hina Mincho"
}

.btn-shared a {
    position: relative;
    display: block;
    text-align: center;
    background: url("../img/shared/bg2.jpg") repeat center;
    color: #fff;
    font-weight: 400;
    font-size: 17.5px;
    line-height: 68.5px;
    letter-spacing: .16em
}

.btn-shared a::before {
    content: "";
    position: absolute;
    background: url("../img/shared/icon_arrow_w.png") no-repeat center/100%;
    width: 18.5px;
    height: 26px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%)
}

.btn-shared.type-popup a::before {
    display: none
}

.btn-shared.type-popup a:after {
    content: "";
    position: absolute;
    background: url("../img/shared/icon_popup_w.png") no-repeat center/100%;
    width: 15px;
    height: 15px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

@media screen and (min-width: 768px) {
    .btn-shared {
        width: 357px
    }

    .btn-shared a {
        font-size: 20px;
        line-height: 78px
    }

    .btn-shared a::before {
        width: 21px;
        height: 30px;
        transition: .5s
    }

    .btn-shared a:hover {
        background: #eeddbd;
        color: #000
    }

    .btn-shared a:hover::before {
        background-image: url("../img/shared/icon_arrow_b.png")
    }

    .btn-shared.type-popup a:after {
        width: 21px;
        height: 21px;
        right: 28px
    }

    .btn-shared.type-popup a:hover:after {
        background-image: url("../img/shared/icon_popup_b.png")
    }
}

.btn-web {
    font-family: "Hina Mincho"
}

.btn-web a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    background: #eeddbd;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: .16em
}

.btn-web a::before {
    content: "";
    background: url("../img/shared/icon_web_b.png") no-repeat center/100%;
    width: 17.5px;
    height: 17.5px
}

@media screen and (min-width: 768px) {
    .btn-web {
        width: 300px
    }

    .btn-web a {
        font-size: 20px;
        line-height: 62px
    }

    .btn-web a::before {
        width: 20px;
        height: 20px;
        transition: .5s
    }

    .btn-web a:hover {
        background: url("../img/shared/bg2.jpg") repeat center;
        color: #fff
    }

    .btn-web a:hover::before {
        background-image: url("../img/shared/icon_web_w.png")
    }
}

#hamburger {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: url("../img/shared/bg2.jpg") repeat center;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center
}

#hamburger .inner {
    position: relative;
    width: 30px;
    height: 20px
}

#hamburger .inner span {
    position: absolute;
    display: block;
    background: #fff;
    height: 2px;
    width: 100%;
    left: 0;
    transition: .3s
}

#hamburger .inner span:nth-child(1) {
    top: 0
}

#hamburger .inner span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%)
}

#hamburger .inner span:nth-child(3) {
    bottom: 0
}

#hamburger.is-active .inner span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg)
}

#hamburger.is-active .inner span:nth-child(2) {
    opacity: 0
}

#hamburger.is-active .inner span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg)
}

@media screen and (min-width: 768px) {
    #hamburger {
        width: 95px;
        height: 95px;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        transition: .3s
    }

    #hamburger .inner {
        width: 53px;
        height: 31px
    }

    #hamburger:hover {
        opacity: .8
    }
}

#menu-toggle {
    position: fixed;
    inset: 0;
    background: url("../img/shared/bg1.jpg") repeat center;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    z-index: 999
}

#menu-toggle .inner {
    padding: 80px 8% 100px
}

#menu-toggle .nav-list {
    display: flex;
    justify-content: center
}

#menu-toggle .nav-list li a {
    display: block;
    padding: 0 12px;
    font-size: 17px;
    line-height: 1;
    letter-spacing: .1em
}

#menu-toggle .nav-list li a.active {
    opacity: .7
}

#menu-toggle .nav-list li:nth-child(2) a {
    border-left: 1px solid #000;
    border-right: 1px solid #000
}

#menu-toggle .row {
    margin-top: 40px
}

#menu-toggle .row .col .logo {
    width: 30%;
    margin: 0 auto
}

#menu-toggle .row .col .btn-shared {
    margin-top: 30px
}

#menu-toggle .row .col .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-top: 44px
}

#menu-toggle .row .col .sns li a {
    display: block
}

#menu-toggle .row .col .sns li a img {
    display: block
}

#menu-toggle .row .col .sns li:nth-child(1) {
    width: 21px
}

#menu-toggle .row .col .sns li:nth-child(2) {
    width: 30px
}

@media screen and (max-width: 767px) {
    #menu-toggle .row .col+.col {
        position: relative;
        border-top: 1px solid #000;
        margin-top: 40px;
        padding-top: 40px
    }

    #menu-toggle .row .col+.col::before {
        content: "";
        position: absolute;
        background: #000;
        width: 100%;
        height: 1px;
        top: 3px;
        left: 50%;
        transform: translateX(-50%)
    }
}

@media screen and (min-width: 768px) {
    #menu-toggle .inner {
        padding: 80px 0
    }

    #menu-toggle .nav-list {
        display: flex;
        justify-content: center
    }

    #menu-toggle .nav-list li a {
        padding: 0 20px 0 26px;
        font-size: 25.5px
    }

    #menu-toggle .nav-list li a:hover,
    #menu-toggle .nav-list li a.active {
        opacity: .7
    }

    #menu-toggle .row {
        position: relative;
        display: flex;
        justify-content: space-between;
        max-width: 856px;
        margin: 57px auto 0
    }

    #menu-toggle .row::before,
    #menu-toggle .row:after {
        content: "";
        position: absolute;
        background: #000;
        width: 1px;
        top: 0;
        bottom: 0
    }

    #menu-toggle .row::before {
        left: calc(50% - 2px)
    }

    #menu-toggle .row::after {
        left: calc(50% + 2px)
    }

    #menu-toggle .row .col {
        padding: 40px 0
    }

    #menu-toggle .row .col .logo {
        width: 147px;
        height: 301px
    }
}