/* 共通 */

body {
    font-family: "Yu Gothic", "游ゴシック Medium", "游ゴシック体",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    color: #4A4A4A;
    background-color: #F5F3F1;
}

.inner {
    margin: 0 auto;
}

.inner--wide {
    width: 96%;
}

.inner--medium {
    width: 87%;
}

.inner--narrow {
    width: 69%;
}

.inner--small {
    width: 89%;
}

html {
    scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
    .inner--medium {
        width: 89%;
    }

    .inner--narrow {
        width: 89%;
    }
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3 {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
}

h4 {
    font-weight: 700;
    color: #77917B;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

p {
    font-weight: 500;
    line-height: 1.5;
}

h5 {
    font-size: 18px;
    line-height: 1.5;
}

.en {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    color: #77917B;
    font-size: 13px;
}

.sp__none {
    display: block;
}

.pc__none {
    display: none;
}

@media screen and (max-width: 768px) {

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    h5 {
        font-size: 12px;
    }

    p {
        font-size: 13px;
    }

    .en {
        font-size: 10px;
    }

    .sp__none {
        display: none;
    }

    .pc__none {
        display: block;
    }
}

.pc-mini__none {
    display: none;
}

.pc-mini__block {
    display: block;
}

@media screen and (min-width:1200px) {
    .pc-mini__block {
        display: none;
    }

    .pc-mini__none {
        display: block;
    }
}

/* br */
.br__sp {
    display: none;
}

@media screen and (min-width:1200px) {
    .br__pc-mini {
        display: none;
    }
}

@media screen and (min-width:768px) and (max-width: 1200px) {
    .br__pc-mini {
        display: block;
    }
}

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

/* タイトル */
.section__title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.section__title p {
    text-align: center;
}

.main__title {
    display: flex;
    justify-content: start;
    position: relative;
    margin-bottom: 11px;
}

.main__title::before {
    background-image: url(../image/yellow-flower--left-s.png);
    opacity: 0.3;
    content: "";
    position: absolute;
    left: -55px;
    top: 28%;
    transform: translateY(-50%);
    width: 58px;
    height: 67px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.main__title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 415px;
    height: 2px;
    background: #E2E8DE;
}

.main__title img {
    opacity: 0.2;
}

.title__box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .main__title::after {
        width: 244px;
    }

    .main__title::before {
        width: 38px;
        height: 42px;
        left: -37px;
    }
}


/* ヘッダー */
.header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo-black {
    padding-top: 5px;
}

.logo__white {
    display: none;
}

.open .logo__white {
    display: block;
    margin-top: 30px;
}

.header.scrolled {
    display: flex;
    justify-content: center;
    align-items: center;
}


.header::before {
    content: "";
    position: absolute;
    top: -14px;
    height: 82px;
    width: 90%;
    background-color: transparent;
    border-radius: 4px;
    z-index: 0;
    transition: background-color 0.5s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
}

.header.scrolled::before {
    content: "";
    position: absolute;
    top: -14px;
    height: 82px;
    width: 90%;
    background-color: #fff;
    border-radius: 4px;
    z-index: 0;
}


.header img {
    width: 100px;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.header__container {
    display: flex;
    align-items: center;
}

.header__container.open {
    flex-direction: column;
    align-items: flex-start;
    background: url(../image/nav__img-sp.svg);
    color: #fff;
    padding: 0 20px 80px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}

.header__hamburger-btn {
    display: none;
}

.nav__list {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav__list li {
    float: left;
}


.nav__list li a,
.dropbtn {
    text-decoration: none;
    display: block;
    transition: all .3s ease-in-out;
}

.nav__list .nav__btn {
    padding: 20px 16px 21px;
}


.nav__list li a:hover,
.dropdown:hover .dropbtn {
    color: #4B6550;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(169, 207, 175, 0.2)50%,
            transparent 100%);
}



.open .nav__list li a {
    text-align: left;
}

.nav__list li.dropdown {
    display: inline-block;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    min-width: 160px;
    padding: 14px 0px;
    border-radius: 4px;
    z-index: 9999;
}

.dropdown-content a {
    text-decoration: none;
    display: block;
    text-align: left;
    position: relative;
    z-index: 21;
}


.dropbtn .arrow {
    margin-left: 6px;
    margin-bottom: 3px;
}

/* ヘッダー3階層目の中身（横に展開） */
.dropdown-sub {
    position: relative;
}

.dropdown-submenu {
    display: none;
    position: absolute;
    top: -14px;
    left: 100%;
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.8);
    min-width: 250px;
    border-radius: 4px;
    padding: 14px 0px;
    z-index: 20;
}

/* ホバーを広げる透明の幅 */
.dropdown-sub::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 8px;
    height: 100%;
    background: transparent;
    z-index: 19;
}



/* 基本のリンク */
.dropdown-content a,
.dropdown-submenu a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
}


/* ナビ電話番号部分 */
.tel__wrap {
    margin-left: 20px;
    margin-right: 30px;
    text-align: center;
}

.tel__wrap p {
    font-size: 14px;
}

.tel__text-box {
    display: flex;
    align-items: center;
}

.open .tel__text {
    color: #fff;
}

.tel__text-box img {
    width: 20px;
    margin-right: 2px;
}

.tel__text {
    font-size: 24px;
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
    color: #4B6550;
    line-height: 1.5;
}



.hyphen {
    font-family: "Aboreto", system-ui;
    font-weight: 400;
    font-style: normal;
}


/* ナビ・スクロール共通くの字矢印 */
.arrow {
    position: relative;
    display: inline-block;
    width: 11.2px;
    height: 5.8px;
}

.arrow::before,
.arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 0.5px);
    width: 1px;
    height: 8px;
    border-radius: 9999px;
    background-color: #4a4a4a;
    transform-origin: 50% calc(100% - 0.5px);
}

.arrow::before {
    transform: rotate(47deg);
}

.arrow::after {
    transform: rotate(-47deg);
}

/* 右向きのくの字 */
.arrow-right {
    width: 5.8px;
    height: 11.2px;
    margin-left: 8px;
    margin-bottom: 2px;
    padding-left: 14px;
}

.arrow-right::before,
.arrow-right::after {
    top: calc(50% - 0.5px);
    right: 0;
    width: 8px;
    height: 1px;
    transform-origin: calc(100% - 0.5px) 50%;
}


/* ボタン */
.btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 8px 54px 12px 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 2px;
    background-color: #77917B;
    transition: background-color 0.3s ease-in-out;
}


/* ボタンの線 */
a.btn__border-static:before {
    position: absolute;
    top: -3.5px;
    left: -3.5px;
    width: 100%;
    height: 98%;
    content: "";
    border: 1px solid #4B6550;
    border-radius: 2px;
}

a.btn__border-static:hover {
    background-color: #9DAE9E;
}

/* ボタンの線の位置固定 */
a.btn__border-static:hover:before {
    top: -3.5px;
    left: -3.5px;
}

.btn img {
    margin-right: 10px;
    width: 29px;
}

/* テキストと矢印の間 */
.btn .btn__arrow {
    margin-left: 10px;

}

/* 矢印 */
.btn__arrow {
    position: absolute;
    top: 45%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

a.btn__border-static:hover .btn__arrow {
    right: 15px;
}

/* 棒部分 */
.btn__arrow::before {
    content: "";
    display: block;
    width: 16px;
    height: 1px;
    background-color: #ffffff;
}

/* 塗りつぶし三角部分 */
.btn__arrow::after {
    content: "";
    display: block;
    width: 7.5px;
    height: 4.5px;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

a.btn.insta__btn {
    background-color: #9A8A7F;
    opacity: 0.7;
    font-size: 15px;
    position: absolute;
    content: "";
    top: 16%;
    right: 5%;
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    padding: 6px 40px 9px 20px;
}

a.btn.insta__btn.btn__border-static:hover {
    background-color: #9A8A7F;
    opacity: 0.5;
}

a.btn.insta__btn.btn__border-static:before {
    border: 1px solid #745C4C;
}

a.btn.insta__btn .btn__arrow {
    right: 13px;
}

a.btn.insta__btn:hover .btn__arrow {
    right: 10px;
}

@media screen and (max-width: 768px) {
    a.btn.insta__btn {
        font-size: 13px;
        padding: 3px 36px 6px 8px;
    }

    a.btn.insta__btn .btn__arrow {
        right: 10px;
    }
}


/* ハンバーガー */
.hamburger {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.line {
    position: absolute;
    right: 0;
    width: 35px;
    height: 1px;
    background-color: #4B6550;
    top: 0px;
}

.animation {
    transition: all .6s;
}

.line:nth-child(2) {
    width: 25px;
    top: 8px;
}

.line:nth-child(3) {
    width: 15px;
    top: 16px;
}

/* SP用ツール・ナビ */
.header__tools {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav__btn.dropbtn {
    position: relative;
}

.accordion-btn {
    display: none;
}

@media screen and (min-width: 1201px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-sub:hover .dropdown-submenu {
        display: block;
    }

    .tel__pc {
        display: block;
    }

    .tel__pcmini-sp {
        display: none;
    }
}

@media screen and (max-width: 1200px) {

    .nav__list,
    .header__tools {
        display: none;
        flex-direction: column;
    }

    .nav__list {
        margin-top: 100px;
    }

    .nav__list li a {
        padding: 14px 0 14px 20px;
    }

    .nav__list li .dropdown-submenu a {
        padding: 10px 0 10px 20px;
    }

    .header__tools {
        gap: 30px;
    }

    .hamburger {
        display: flex;
    }



    .nav.open .nav__list {
        display: flex;
        max-width: 1000px;
        width: 90%;
        margin: 100px auto;
    }



    .nav.open .header__tools {
        display: flex;
        max-width: 1000px;
        width: 90%;
        margin: 0px auto;
    }



    .header__hamburger-btn {
        display: block;
        margin-top: 4px;
    }


    .header__hamburger-btn-text .hamburger-btn-open,
    .header__hamburger-btn-text .hamburger-btn-close {
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 10px;
        font-family: "Marcellus", serif;
    }

    /* ハンバーガー active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 5px);
        background-color: #fff;
        width: 19px;
        right: 5px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
        background-color: #fff;
        width: 19px;
        right: 5px;
    }

    .hamburger-btn-close {
        opacity: 0;
    }

    .active .hamburger-btn-close {
        opacity: 1;
        color: #fff;
    }

    .active .hamburger-btn-open {
        opacity: 0;
    }

    /* ハンバーガーナビアクティブ */

    .open .dropdown-content a {
        position: relative;
    }

    .dropdown-sub__title {
        position: relative;
    }

    .open .dropdown-sub__title::after {
        content: "";
        position: absolute;
        left: 51%;
        bottom: 0;
        transform: translateX(-50%);
        width: 98%;
        height: 1px;
        z-index: 2;
        background: rgba(226, 232, 222, 0.2);
    }

    .dropdown-content,
    .dropdown-submenu {
        overflow: visible;
    }

    .dropdown-content,
    .dropdown-submenu {
        display: none;
    }

    .dropdown-content.open,
    .dropdown-submenu.open {
        display: block;
        padding: 0;
    }

    /* アコーディオン用 */
    .dropdown-content {
        position: static;
        background: none;
        padding-left: 0;
    }

    .dropdown-sub {
        position: relative;
    }

    .dropdown-sub a {
        color: #fff;
        font-size: 14px;
    }

    .dropdown-submenu {
        position: static;
        display: none;
        padding-left: 20px;
        color: #fff;
        background: none;
    }


    .dropdown-menu,
    .dropdown-submenu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu.open,
    .dropdown-submenu.open {
        display: block;
    }

    .dropdown-submenu a {
        color: #fff;
    }



    .sp-header__tools {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .nav.open .sp-header__tools {
        display: flex;
    }

    .nav__list li a:hover,
    .dropdown:hover .dropbtn {
        color: #fff;
    }

    .nav__btn {
        position: relative;
        font-weight: 600;
    }

    .nav__btn::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0px;
        transform: translateX(-50%);
        width: 100%;
        height: 1px;
        z-index: 2;
        background: rgba(226, 232, 222, 0.2);
    }

    .header__tools {
        display: none;
    }

    .scrolled::before {
        display: none;
    }

    .nav__list .arrow {
        display: none;
    }

    .accordion-btn {
        display: block;
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }

    .accordion-btn::before,
    .accordion-btn::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 1px;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .accordion-btn::before {
        transform: translate(-50%, -50%) rotate(90deg);
        /* 縦線 */
    }

    .accordion-btn::after {
        transform: translate(-50%, -50%) rotate(0deg);
        /* 横線 */
    }


    .dropbtn.active .accordion-btn::before {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    .dropdown-sub>a.active .accordion-btn::before {
        transform: translate(-50%, -50%) rotate(180deg);
    }

    .tel__pc {
        display: none;
    }

    .tel__pcmini-sp {
        display: block;
    }

    .header__tools a.btn__border-static:before {
        border: 1px solid rgba(255, 255, 255, 0.6);
    }
}


@media screen and (max-width: 480px) {
    .header .header__logo img {
        width: 73px;
    }
}



/* ボタン */
.main__btn--warp {
    display: flex;
    justify-content: center;
    margin: 60px 0 110px;

}

@media screen and (max-width: 768px) {
    .main__btn--warp {
        margin: 50px 0 85px;
    }
}


/* CTA */
.contact-banner img {
    width: 100%;
}

.contact-banner {
    background: url('../image/contact-img.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    margin-top: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.contact__overlay {
    background: rgba(75, 101, 80, 1);
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.7;
    position: absolute;
    content: "";
    transition: opacity 0.3s ease-in-out;
}

.contact__wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 0 20px;
}

.contact__title--wrap {
    color: #fff;
    text-align: center;
}

.contact__title--wrap h2 {
    font-size: 40px;
}

.contact__tools img {
    width: 20px;
    margin-bottom: 3px;
}

.contact__tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 70px;
    max-width: 800px;
    margin: 45px auto 0;
    padding: 0 10px;
}

.contact__tools .tel__wrap,
.contact__tools .line__wrap {
    flex: 1 1 300px;
    background: #fff;
    padding: 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__tools .tel__wrap {
    margin: 0;
}

.line__wrap a {
    margin-bottom: 9px;
}

.contact__tools p {
    font-size: 12px;
    text-align: center;
}

p.contact__tel--text {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .contact-banner {
        background: url(../image/contact-img-sp.jpg);
        min-height: 480px;
    }

    .contact__tools {
        flex-direction: column;
        gap: 30px;
        margin-top: 35px;
    }

    .contact__tools .tel__wrap,
    .contact__tools .line__wrap {
        flex: 1;
        width: 100%;
        max-width: 400px;
        padding: 18px 24px;
    }

    .contact__title--wrap h2 {
        font-size: 24px;

    }

    .contact__title--text {
        padding-top: 4px;
        font-size: 14px;
    }

    .contact__tools .tel__text {
        font-size: 28px;
    }
}

/* フッター */
.footer__wrap {
    background: url(../image/footer-img.svg) no-repeat center / cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    color: #fff;
    font-size: 14px;
}

.footer__container {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}

.footer__address {
    padding-top: 10px;
    line-height: 2;
}

.footer__address img {
    width: 13px;
}

.footer__tel {
    display: flex;
    align-items: center;
}

.footer__flower {
    display: flex;
    gap: 26px;
    margin-bottom: 20px;
}

.footer__guide {
    margin-bottom: 20px;
}

.footer__shop {
    display: flex;
    gap: 45px;
    margin-bottom: 20px;
}

.footer__sub--container {
    display: flex;
}

.footer__nav-pc {
    display: block;
}

.footer__nav-sp {
    display: none;
}

.footer__nav--title {
    font-size: 20px;
    padding-right: 30px;
}

.footer__subtitle {
    font-size: 16px;
    margin-bottom: 6px;
    display: block;
}

.footer__sub--container li {
    padding-top: 8px;
}

.shop__sub--container li {
    padding-top: 8px;
}

.footer__sub--wrap a.footer__sub--event {
    margin-top: 23px;
    display: block;
}

.copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    position: relative;
}

.copyright::after {
    background: #E2E8DE;
    position: absolute;
    content: "";
    opacity: 0.3;
    height: 1px;
    width: 100%;
    top: 0;
    left: 0;
}

.footer-nav__list {
    margin-bottom: 25px;
}

@media (min-width: 1200px) {

    .footer__nav-pc a {
        transition: all .3s ease-in-out;
    }

    .footer__nav-pc a:hover {
        color: #4B6550;
    }
}

@media screen and (max-width: 1200px) {

    .footer__container {
        flex-direction: column;
        min-height: auto;
        justify-content: start;
        gap: 30px;
        padding-top: 30px;
    }

    .footer__wrap {
        background: url(../image/footer-img--sp.svg) no-repeat center / cover;
        min-height: auto;
        font-size: 12px;
    }

    .footer-nav__list {
        margin-bottom: 130px;
    }

    .footer-nav__list .nav__btn {
        font-size: 16px;
    }

    .footer__nav-pc {
        display: none;
    }

    .footer__nav-sp {
        display: block;
    }

    .footer__nav-sp .dropdown-content,
    .footer__nav-sp .dropdown-submenu {
        display: none;
    }

    .footer__nav-sp .dropdown-content.open,
    .footer__nav-sp .dropdown-submenu.open {
        display: block;
    }

    .footer__nav-sp .arrow {
        display: none;
    }

    .footer-nav__list .nav__btn {
        padding: 20px 16px 21px;
    }

    .footer-nav__list li a,
    .dropbtn {
        text-decoration: none;
        display: block;
        transition: all .3s ease-in-out;
    }

    .footer-nav__list li a.dropdown-sub__title {
        padding: 14px 0 14px 20px;
    }

    .copyright {
        padding: 7px 0 20px;
    }

    .copyright p {
        font-size: 12px;
    }
}

/* 下層ページ共通 */

/* 下層mv部分 */
.sub__mv {
    background-image: linear-gradient(#e2e8de, #e2e8de 40%, #f5f3f1);
    width: 100%;
    margin-bottom: 170px;
}

.sub__mv--wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 200px;
}

.sub__mv--title-wrap {
    display: flex;
    align-items: flex-start;
}

.sub__mv--title-wrap .en {
    font-size: 20px;
}

.sub__mv--title-wrap img {
    opacity: 0.5;
    margin-top: -16px;
}

.sub__mv--img {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.sub__mv--img img {
    border-radius: 10px;
}

.sub__mv--img::after {
    background-image: url(../image/yellow-flower--right-sub.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 115px;
    height: 133px;
    position: absolute;
    content: "";
    right: -60px;
    bottom: -68px;
    z-index: 1;
}

.breadcrumb {
    margin-top: 160px;
    display: flex;
    color: #77917B;
    font-weight: 700;
    line-height: 1.8;
}

.breadcrumb li:not(:last-of-type)::after {
    content: ">";
    display: inline-block;
    margin: 0 5px;
}

.breadcrumb li:not(:last-of-type) {
    color: #BFBCBC;
}


.category__breadcrumb {
    display: flex;
    flex-wrap: wrap;
}

.category__breadcrumb li:nth-child(4) {
    flex-basis: 100%;
}

.pc__breadcrumb {
    display: flex;
}

.sp__breadcrumb {
    display: none;
}

@media screen and (max-width: 1200px) {
    .sub__mv--wrap {
        flex-direction: column;
        padding-top: 160px;
    }

    .sub__mv--container {
        margin-bottom: 20px;
    }

    .sub__mv--img {
        margin: 0 auto;
    }

    .sub__mv--img::after {
        right: -30px;
        bottom: -60px;
    }

    .pc__breadcrumb {
        display: none;
    }

    .sp__breadcrumb {
        display: flex;
    }

    .breadcrumb {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {

    .sub__mv {
        margin-bottom: 110px;
    }

    .sub__mv--img::after {
        background-image: url(../image/yellow-flower--right-sub-s.png);
        width: 70px;
        height: 90px;
    }

    .sub__mv--title-wrap .en {
        font-size: 16px;
    }

    .sub__mv--title-wrap img {
        width: 29px;
        margin-top: -5px;
    }

    .breadcrumb {
        font-size: 11px;
    }
}

@media screen and (max-width: 480px) {
    .sub__mv--img::after {
        width: 54px;
        height: 62px;
        right: -20px;
        bottom: -20px;
    }
}

/* コンテンツナビボタン */
.content-nav {
    margin: 130px auto;
    max-width: 1440px;
}

.content-nav__wrap {
    display: flex;
    margin: 0 auto;
    gap: 130px;
}

.content-nav__btn {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.content-nav__btn:hover {
    box-shadow: 3px 3px 12px rgba(74, 74, 74, 0.12);
    transform: translateY(-10px);
    transition-duration: 0.3s;
}

.content-nav__btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(75, 101, 80, 1) 0%,
            rgba(75, 101, 80, 1) 40%,
            rgba(75, 101, 80, 0) 100%);
    left: 0;
    border-radius: 4px;
    z-index: 1;
}


.content-nav__btn p {
    position: absolute;
    content: "";
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
}

.content-nav__btn .btn__arrow {
    margin-left: 10px;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.content-nav__btn:hover .btn__arrow {
    right: -50px;
}

@media screen and (max-width: 1200px) {
    .content-nav__wrap {
        gap: 60px;
    }
}

@media screen and (max-width: 768px) {

    .content-nav {
        margin: 110px auto;
    }

    .content-nav__wrap {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .content-nav__btn::after {
        width: 95%;
    }
}

/* 店舗情報共通 */
.shop {
    margin-top: 150px;
}

.section__title--info {
    margin-top: 36px;
    text-align: center;
    background-color: #fff;
    padding: 20px 50px;
    color: #745C4C;
    border-radius: 4px;
    border: 1px solid #9A8A7F;
}

.info__bold {
    font-weight: 700;
}

.shop__container {
    background: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 45px 60px 58px;
}

.shop__container--top {
    background: url(../image/shop__container--top.svg) no-repeat center / cover;
    width: 100%;
    min-height: 15px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-top: 70px;
}

.shop__title {
    text-align: center;
}

.shop__title h3 {
    color: #4B6550;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
    text-decoration-color: #E2E8DE;
    padding-bottom: 3px;
    margin-bottom: 8px;
}

.shop__wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.shop__wrap img {
    border-radius: 4px;
}

.shop__img__wrap img {
    width: 100%;
}

@media screen and (min-width: 1201px) {
    .shop__img__wrap .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .shop__img__wrap .swiper-wrapper>.swiper-slide:first-child {
        grid-column: 1 / -1;
    }
}

.left__box {
    position: relative;
    max-width: 521px;
    margin-right: 5%;
}

.right__box {
    width: 50%;
}

.shop__info__container {
    background: #f5f3f1;
    position: relative;
}

.shop__info__item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding-left: 20px;
}

.shop__info__item:nth-child(1) {
    padding-top: 26px;
}

.shop__info__item div {
    flex: 0 0 100px;
    margin: 0;
    color: #9A8A7F;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 26px;
}

.shop__info__item a,
.shop__info__item p {
    flex: 1;
    margin: 0;
}



.shop__info__container .insta__btn {
    font-size: 15px;
    position: absolute;
    content: "";
    top: 16%;
    right: 5%;
}


.shop__btn__container {
    margin-top: 20px;
}

.shop__btn--warp {
    margin-top: 20px;
}

.shop__btn--warp .btn {
    background-color: #4B6550;
}

.shop__btn--warp a.btn__border-static:before {
    border: 1px solid #4a4a4a;
}

.address__wrap {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.google-map__title {
    display: flex;
    align-items: center;
    gap: 10px;
    max-height: 22px;
}

.address__wrap p {
    font-size: 14px;
}

.google-map__title div {
    color: #9A8A7F;
    font-weight: 600;
    white-space: nowrap;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 4px;
}

.parking__wrap {
    display: flex;
    align-items: center;
    margin-top: 14px;
    gap: 15px;
}

.br__address {
    display: none;
}

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

    .shop__info__item {
        padding-left: 16px;
    }

    .shop__info__item div {
        flex: 0 0 80px;
    }

    .left__box {
        margin-right: 2%;
    }
}

@media screen and (max-width: 1200px) {

    .shop__img__wrap {
        width: 100%;
    }

    .shop__img__wrap .swiper-wrapper {
        display: flex !important;
        /* Swiper制御用 */
    }

    .shop__img__wrap .swiper-slide {
        width: 100%;
        flex-shrink: 0;
    }

    .br__address {
        display: none;
    }

    .left__box .custom-bullet {
        display: block;
        width: 7px;
        height: 7px;
        background: #ffffff;
        border-radius: 50%;
        border: 1px solid #9A8A7F;
    }

    .left__box .custom-bullet-active {
        background: #9A8A7F;
    }

    /* ページネーション */
    .left__box .swiper-pagination {
        display: flex;
        gap: 11px;
        justify-content: center;
        content: "";
        width: 100%;
        height: 12px;
        --swiper-pagination-bottom: 80px;
        --swiper-pagination-top: auto;
    }

    .shop__container {
        padding: 23px 20px 50px;
    }

    .shop__wrap {
        flex-direction: column;
        margin-top: 12px;
    }

    .shop__text {
        text-align: center;
        margin: 60px 0 0;
    }

    .left__box {
        margin: 0 auto 30px;
    }

    .right__box {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .section__title--info {
        margin-top: 24px;
        padding: 10px;
    }

    .section__title--info div {
        font-size: 14px;
        font-weight: 700;
    }

    .section__title--info p {
        font-size: 12px;
    }

    .shop__container--top {
        margin-top: 40px;
    }

    .left__box {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .left__box .swiper-pagination {
        --swiper-pagination-bottom: 50px;
    }

    .shop__info__item {
        gap: 10px;
    }

    .shop__info__item div {
        font-size: 14px;
        flex: 0 0 60px;
        padding-bottom: 20px;
    }

    .shop__info__item a,
    .shop__info__item p {
        font-size: 12px;
    }

    .shop__text {
        font-size: 0.8em;
        margin: 40px 0 0;
    }

    p.shop__address {
        font-size: 12px;
        margin-top: 7px;
    }

    .parking__wrap {
        margin: 5px 0 50px;
    }

    .parking__wrap p {
        font-size: 11px;
    }

    .shop__btn__container {
        margin: 0 auto;
    }

    .shop__btn__container.pc-mini__block {
        text-align: center;
    }

    .shop__img__wrap .swiper-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
        object-fit: cover;
    }
}

/* 美木多上 */
.shop__container.shop__mikita {
    padding-bottom: 0;
}

.mikita__shop__text {
    margin-top: 17px;
    line-height: 1.8;
}

.address__wrap--accordion {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    background: #f5f3f1;
    width: 80%;
    border-radius: 4px;
    position: relative;
    padding: 25px 0;

}

.address__wrap--accordion::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: -18px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #f5f3f1;
}

.right__box.mikia__info {
    width: 100%;
}

.left__box.mikia__info {
    width: 100%;
}


/* PCホバー対応（1200px以上） */
@media (hover: hover) and (pointer: fine) and (min-width: 1201px) {

    .nav__list li a:hover,
    .dropdown:hover .dropbtn {
        color: #4B6550;
        background: linear-gradient(to right, transparent 0%, rgba(169, 207, 175, 0.2) 50%, transparent 100%);
    }
}

/* PCホバー対応（1200px以下） */
@media (hover: hover) and (pointer: fine) and (max-width: 1200px) {

    .nav__list li a:hover,
    .dropdown:hover .dropbtn {
        color: #fff;
        background: linear-gradient(to right, transparent 0%, rgba(169, 207, 175, 0.2) 50%, transparent 100%);
    }
}

/* タッチデバイス（スマホ・タッチ） */
@media (hover: none) and (pointer: coarse) {

    .nav__list li a:hover,
    .dropdown:hover .dropbtn {
        color: inherit;
        background: none;
    }
}

/* PC・タブレットで hover 有効な場合もの */
@media (hover: hover) and (pointer: fine) {

    a.btn__border-static:hover {
        background-color: #9DAE9E;
    }

    a.btn__border-static:hover .btn__arrow {
        right: 15px;
    }

    a.btn.insta__btn.btn__border-static:hover {
        background-color: #9A8A7F;
        opacity: 0.5;
    }

    a.btn.insta__btn:hover .btn__arrow {
        right: 10px;
    }

    .footer__nav-pc a {
        transition: all .3s ease-in-out;
    }

    .footer__nav-pc a:hover {
        color: #4B6550;
    }

    .content-nav__btn:hover {
        box-shadow: 3px 3px 12px rgba(74, 74, 74, 0.12);
        transform: translateY(-10px);
        transition-duration: 0.3s;
    }

    .content-nav__btn:hover .btn__arrow {
        right: -50px;
    }
}

/* スマホで無効化 */
@media (hover: none) and (pointer: coarse) {

    a.btn__border-static:hover {
        background-color: inherit;
    }

    a.btn__border-static:hover .btn__arrow {
        right: 20px;
    }

    a.btn.insta__btn.btn__border-static:hover {
        background-color: #9A8A7F;
        opacity: 0.7;
    }

    a.btn.insta__btn:hover .btn__arrow {
        right: 13px;
    }

    .footer__nav-pc a:hover {
        color: inherit;
    }

    .content-nav__btn:hover {
        box-shadow: none;
        transform: none;
        transition-duration: 0.3s;
    }

    .content-nav__btn:hover .btn__arrow {
        right: -40px;
    }

}