@charset "utf=-8";
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-left: 2.8%;
    padding-right: 7.7%;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}
.header_nav ul {
    display: flex;
    gap: 77px;
}
.logo {
    width: 227px;
}
.header_nav a {
    color: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium",
        "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    font-size: 18px;
}

/* ハンバーガーメニュー */

.hamburger,
.header_nav-sp {
    display: none;
}

/* スマホサイズになった時のハンバーガーメニュー */
@media screen and (max-width: 767px) {
    .hamburger {
        display: block;
        width: 33px;
        height: 33px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 9999;
        cursor: pointer;
    }
    .hamburger span {
        position: absolute;
        width: 33px;
        height: 2px;
        background-color: #fff;
        top: 16px;
        left: 0px;
    }
    .hamburger span::before,
    .hamburger span::after {
        position: absolute;
        content: "";
        width: 33px;
        height: 2px;
        background-color: #fff;
        transition: 0.4s;
    }
    .hamburger span::before {
        top: -15px;
    }
    .hamburger span::after {
        bottom: -15px;
    }

    .header_nav {
        display: none;
    }

    /* openがついた時に✕にする */

    .open span {
        background-color: transparent;
    }
    .open span::before {
        transform: rotate(45deg);
        top: 0;
    }
    .open span::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* SPメニューの背景設定 */

    .header_nav-sp {
        position: absolute;
        z-index: 9998;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #000000a5;
    }
    .header_nav-sp ul {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .header_nav-sp a {
        color: #fff;
        font-family: "游ゴシック体", YuGothic, "游ゴシック Medium",
            "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    }
}

/*背景色*/
body {
    background: #e8d9bf;
}
/* max-width */
.contents {
    max-width: 1000px;
    margin: 0px auto;
    padding: 0px 10px;
}
/*intro*/

#intro {
    margin-top: 104px;
    text-align: center;
}
.copy {
    font-size: 30px;
}

#intro h2 {
    margin: 47px 0 40px;
    font-size: 82px;
    line-height: 1.17;
    letter-spacing: 0.1em;
}
.sentence {
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: 0.1em;
}
.sentence-sp {
    display: none;
}
/* about us */
#about-us {
    display: flex;
    justify-content: space-between;
    margin-top: 93px;
    align-items: center;
}

.coffee {
    width: 50%;
}
.coffee img {
    width: 100%;
    border-bottom-right-radius: 82px;
}
.coffee h2 {
    display: none;
}
.wrap {
    width: 41%;
}
.wrap h2 img {
    width: auto;
    height: 78px;
}
.wrap h3 {
    margin-top: 48px;
    font-size: 44px;
    line-height: 1.38;
}
.wrap p {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.62;
}
/* 中見出しの指定 */
.section-title {
    text-align: center;
}
.section-title img {
    height: 78px;
    width: auto;
}

/* menu */
#menu {
    margin-top: 108px;
}

.menu-wrap {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
}
.menu-wrap li {
    width: 30%;
}
.menu-wrap li img {
    border-top-right-radius: 41px;
}
.menu-wrap h3 {
    font-size: 38px;
    color: #d30202;
    margin-top: -9px;
    padding-left: 14px;
    box-sizing: border-box;
}
.menu-wrap li p {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.47;
}

/* gallery */
#gallery {
    margin-top: 100px;
}

.gallery-wrap {
    margin-top: 25px;
    display: flex;
    max-width: none;
}
.gallery-wrap li {
    width: 20%;
}
/* event */
#event {
    margin-top: 70px;
}

.event-box {
    margin-top: 40px;
    border: 3px solid #4f260b;
    background: #fff;
    padding: 40px 20px;
    box-sizing: border-box;
}
.event-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 680px;
    margin: 0 auto;
}
.event-wrap li {
    font-size: 23px;
    display: flex;
    gap: 55px;
}
.under-bar {
    border-bottom: 2px solid #4f260b;
}
/* access */
#access {
    margin-top: 80px;
}

#access iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    width: 100%;
    height: 471px;
    margin-top: 45px;
}
/* footer */
.footer-wrap {
    background: #fff;
}
.footer {
    max-width: 1020px;
    margin: 0px auto;
    padding: 82px 10px 0px;
    display: flex;
    gap: 64px;
    box-sizing: border-box;
}
.footer div img {
    width: 226px;
}
.info p {
    font-size: 20px;
    line-height: 1.95;
}
.copyright {
    padding: 73px 0px 74px;
    font-size: 16px;
    text-align: center;
    box-sizing: border-box;
}
.toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 125px;
}
.slick-dots {
    bottom: 0;
}
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    color: #fff;
}

/* メディアクリエ */
@media screen and (max-width: 1100px) {
    #intro h2 {
        font-size: 70px;
    }
    .wrap h3 {
        font-size: 40px;
    }
}
@media screen and (max-width: 767px) {
    .contents {
        max-width: 767px;
        padding: 0px 0px;
    }
    /* intro-sp */
    #intro {
        margin-top: 38px;
    }
    .copy {
        font-size: 17px;
    }
    #intro h2 {
        font-size: 38px;
        line-height: 1.15;
        letter-spacing: 0.02em;
    }

    .sentence {
        display: none;
    }

    .sentence-sp {
        display: block;
        font-size: 16px;
        line-height: 1.875;
        letter-spacing: 0.1em;
    }

    /* about-us-sp */
    #about-us {
        display: block;
        margin-top: 66px;
    }
    .coffee,
    .wrap {
        width: 100%;
    }
    .coffee img {
        border-bottom-right-radius: 0px;
    }
    .coffee h2 {
        display: block;
        text-align: center;
    }
    .coffee h2 img {
        height: 45px;
        width: auto;
        margin-bottom: 16px;
    }
    .wrap h2 {
        display: none;
    }
    .wrap h3 {
        margin-top: 30px;
        font-size: 36px;
        line-height: 1.25;
        padding: 0px 20px;
        box-sizing: border-box;
    }
    .wrap p {
        margin-top: 30px;
        line-height: 1.75;
        padding: 0px 20px;
        box-sizing: border-box;
    }

    /* 中見出しの指定 */
    .section-title img {
        height: 45px;
    }
    /* menu */
    #menu {
        margin-top: 57px;
    }
    .menu-wrap {
        flex-direction: column;
        gap: 60px;
    }
    .menu-wrap li {
        width: 80%;
        margin: 0 auto;
    }
    .menu-wrap {
        margin-top: 22px;
    }
    .menu-wrap li p {
        margin-top: 21px;
        line-height: 1.58;
    }
    .menu-wrap h3 {
        font-size: 40px;
    }

    /* gallery */
    #gallery {
        margin-top: 94px;
    }

    /* event */
    #event {
        margin-top: 33px;
    }
    .event-box {
        margin: 20px 40px 0px;
        padding: 20px 20px;
    }

    .event-wrap {
        gap: 28px;
        white-space: nowrap;
        max-width: 360px;
        margin: 0;
    }
    .event-wrap li {
        flex-direction: column;
        gap: 6px;
        font-size: 16px;
    }
    .event-wrap li p {
        overflow: hidden;
        text-overflow: ellipsis;
    }
    /* access */
    #access {
        margin-top: 32px;
    }

    #access iframe {
        filter: grayscale(100%) invert(92%) contrast(83%);
        width: 100%;
        height: 191px;
        margin-top: 9px;
    }
    /* footer */
    .footer {
        flex-direction: column;
        gap: 36px;
        padding: 47px 19px 0px;
        box-sizing: border-box;
    }
    .info {
        font-size: 18px;
        line-height: 1.72;
    }
    .copyright {
        padding: 49px 0px 32px;
        box-sizing: border-box;
    }
    .toTop {
        width: 100px;
    }
}

.lb-data .lb-number {
    display: none !important;
}
