/* mv */
.mv {
    background-color: #E2E8DE;

}

.mv__wrap {
    background-image: url(../image/mv-img.jpg);
    width: 100%;
    padding-top: 55%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.mv__catchcopy-pc {
    max-width: 293px;
    position: absolute;
    top: 180px;
    left: 204px;
    transform: translate(-50%, -50%);
}

.mv__catchcopy-en {
    font-size: 5px;
    color: #77917B;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    opacity: 0.5;
    max-width: 250px;
}

.mv__catchcopy-sp {
    display: none;
}

.pin-icon {
    width: 5px;
    margin-right: 5px;
    margin-top: 4px;
}

.nav__subtext-pc {
    position: absolute;
    display: flex;
    top: 88px;
    right: 85px;
}

.nav__subtext-pc p {
    font-size: 12px;
    line-height: 1.5;
    color: #fff;
}

.nav__subtext-sp {
    display: none;
}

.mv__foot {
    background-color: #fff;
    position: absolute;
    height: 50px;
    width: 100%;
    bottom: -1px;
    border-radius: 40px 40px 0px 0px;
}

.mv__foot-sp {
    display: none;
}

@media screen and (max-width: 1200px) {
    .nav__subtext-pc {
        right: 89px;
        top: 29px;
        align-items: flex-start;
    }

    .mv__catchcopy-pc {
        max-width: 220px;
        top: 130px;
        left: 160px;
    }
}

@media screen and (max-width: 768px) {
    .mv {
        background-image: url(../image/mv-img-sp.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        position: relative;
        z-index: 1;

    }

    .mv__wrap {
        background-image: none;
        padding-top: 140%;
    }

    .mv__catchcopy-pc {
        display: none;
    }

    .mv__catchcopy-sp {
        position: absolute;
        display: block;
        min-width: 264px;
        bottom: 55%;
        left: 50%;
        transform: translateX(-50%);
    }

    .mv__catchcopy-en {
        text-align: center;
        font-size: 4px;
    }

    .nav__subtext-pc {
        display: none;
    }

    .nav__subtext-sp {
        position: absolute;
        display: flex;
        justify-content: center;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav__subtext-sp p {
        color: #fff;
        font-size: 11px;
        font-weight: 500;
        white-space: nowrap;
    }

    .mv__foot {
        display: none;
    }

    .mv__foot-sp {
        background-color: #fff;
        display: block;
        position: absolute;
        height: 50px;
        width: 100%;
        bottom: -1px;
        border-radius: 40px 40px 0px 0px;
        z-index: 2;
    }
}

@media screen and (max-width: 480px) {
    .mv__wrap {
        padding-top: 160%;
    }
}

@media screen and (max-width: 375px) {
    .mv__wrap {
        padding-top: 170%;
    }
}


/* コンセプト */
.concept {
    background-image: linear-gradient(#E2E8DE, #f5f3f1);
    height: 570px;
    position: relative;
}

.concept__back {
    background-image: linear-gradient(#ffffff, #f5f3f1);
    height: 500px;
}

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

.concept__wrap h1 {
    position: relative;
    padding-top: 16px;
    font-size: 26px;
    color: #77917B;
    letter-spacing: 0.1em;
    text-align: center;
    padding-bottom: 8px;
}

.concept__wrap h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background-color: #E2E8DE;
    transform-origin: left center;
    transition: transform 2.5s ease;
}

/* 可視範囲に入ったら発火 */
.concept__wrap h1.is-visible::after {
    transform: translateX(-50%) scaleX(1);
}

.concept__wrap p {
    margin-top: 16px;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.concept__wrap img {
    width: 141px;
}


/* スライダー */
.concept-slide {
    width: 100%;
    overflow: hidden;
    top: 200px;
    position: absolute;
}


.slide-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 120s linear infinite;
}

.slide {
    flex-shrink: 0;
    margin-right: 16px;
}

:root {
    --scale: 0.8;
}

.slide img {
    width: calc(953px * var(--scale));
    height: calc(333px * var(--scale));
}



@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.slide__text {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}

@media screen and (max-width: 1200px) {
    .concept__wrap img {
        width: 120px;
    }

    .concept-slide {
        top: 170px;
    }

    .concept__back {
        height: 470px;
    }
}

@media screen and (max-width: 768px) {
    .concept {
        background-image: linear-gradient(#FFFFFF, #f5f3f1);
        height: 470px;
    }

    .concept__back {
        height: 440px;
    }

    .concept__wrap {
        align-items: flex-start;
        gap: 8px;
    }

    .concept__wrap img {
        width: 49px;
        margin-top: 10px;
    }

    .concept__wrap h1 {
        font-size: 20px;
        text-underline-offset: 6px;
    }

    .concept__wrap p {
        margin-top: 16px;
        text-align: center;
        letter-spacing: 0.04em;
        line-height: 1.8;
    }

    :root {
        --scale: 0.6;
    }

    .concept-slide {
        top: 220px;
    }

    .slide__text {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .slide__text {
        font-size: 12px;
    }
}


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

    :root {
        --scale: 0.5;
    }

}

/* 強み */

.strength {
    background-image: url(../image/strength-background.svg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: auto 260px;
    padding-bottom: 100px;
    margin-bottom: 130px;
}

.strength .inner--medium {
    max-width: 1000px;
}

.strength__title--wrap {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
}

.title__dot span {
    background-color: #77917B;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: 9px;
}

.strength__title {
    letter-spacing: 0.2em;
    font-size: 28px;
}

.strength__wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 60px 26px;
}

.strength__img-sp {
    display: none;
}

/* 白い帯 */

.strength__wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 232px;
    background: #fff;
    border-radius: 4px;
    z-index: 1;
}

.strength__container h3 {
    color: #4B6550;
    margin-bottom: 10px;
}

.strength__lead {
    font-size: 23px;
}

.strength__container {
    text-align: center;
    text-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.strength__container.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.number {
    font-size: 12px;
    font-family: "Shippori Mincho", serif;
    line-height: 1;
    color: #fff;
    background-color: #77917B;
    padding: 3px 0px;
    width: 73px;
    border-radius: 4px;
    margin: 0 auto;
}

.strength__container img {
    margin: -20px auto;
    min-width: 200px;
}

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

    .strength__container h3,
    .strength__lead {
        font-size: 20px;
    }
}

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

    .strength {
        background-image: url(../image/strength-background-sp.svg);
        background-position: top;
        background-size: 100% auto;
        padding-bottom: 45px;
        margin-top: 80px;
    }

    .strength__wrap {
        flex-direction: column;
        padding: 0 0;
    }

    .strength__container {
        background-color: #fff;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 4px;
        margin-bottom: 20px;
        text-align: left;
    }

    .strength__title--wrap {
        padding-top: 40px;
    }

    .strength__title {
        font-size: 20px;
    }

    .strength__wrap::before {
        display: none;
    }


    .strength__img-sp {
        display: block;
    }

    .strength__img-pc {
        display: none;
    }

    .strength__box {
        align-items: flex-start;
        padding-top: 20px;
    }

    .strength__box .number {
        margin: 0 0 8px 0;
        text-align: center;
    }

    .strength__box div {
        width: 100%;
    }

    .strength__grave {
        padding-left: 24px;
    }


    .strength__right {
        margin-right: 100px;
    }

    .strength__container img {
        margin: -20px;
    }

    .strength__container h3,
    .strength__lead {
        font-size: 28px;
    }
}

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

    .strength__container h3,
    .strength__lead {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .strength__box {
        width: 50%;
        padding-top: 10px;
    }

    .strength__right {
        margin-right: 0px;
    }

    .strength__container img {
        max-width: 171px;
    }
}

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

    .strength__container h3,
    .strength__lead {
        font-size: 20px;
    }

}

/* お花を選ぶ */
.scroll__button {
    padding: 12px 30px 12px 28px;
    color: #9A8A7F;
    border: 1px solid #9A8A7F;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.scroll__button:hover {
    background: #9A8A7F;
    color: #fff;
    border: 1px solid #fff;
}

.scroll__button--wrap {
    margin-top: 40px;
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.scroll__button .arrow {
    margin-right: 6px;
    margin-bottom: 2px;
}


.scroll__button .arrow::before,
.scroll__button .arrow::after {
    background-color: #9A8A7F;
    transition: background-color 0.3s ease-in-out;
}

.scroll__button:hover .arrow::before,
.scroll__button:hover .arrow::after {
    background-color: #fff;
}

#category,
#occasion,
#season-event {
    scroll-margin-top: 130px;
}

@media screen and (max-width: 1200px) {
    .scroll__button--wrap {
        gap: 20px;
        margin-bottom: 50px;
    }

    .scroll__button {
        font-size: 14px;
        padding: 12px 24px 12px 22px;
    }
}

@media screen and (max-width: 768px) {
    .scroll__button--wrap {
        flex-direction: column;
    }

    .scroll__button {
        padding: 8px 22px 8px 20px;
        font-size: 13px;
    }

    .scroll__button--wrap {
        margin-top: 33px;
    }
}

/* 商品カテゴリーから探す */
.flower__title {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4B6550;
    gap: 8px;
    margin-bottom: 40px;
}

.flower__title h3 {
    font-size: 20px;
    padding-bottom: 2px;
}

.flower__title .en {
    font-size: 16px;
    color: #4B6550;
}

.flower__category h4 {
    font-size: 18px;
    color: #4A4A4A;
    font-weight: inherit;
}

/* カード */
.category__card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 90px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    overflow: visible;
}

.category__card-grid::before {
    background-image: url(../image/green-background.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.card {
    background-color: transparent;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

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

.card img {
    object-fit: cover;
    display: block;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.card__body {
    background-color: #fff;
    min-height: 63px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.card img,
.card__body {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card__body p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}


@media screen and (max-width: 1200px) {
    .card__body p {
        font-size: 13px;
    }

    .category__card-grid {
        gap: 35px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
    .card__title--arrangement {
        font-size: 15px;
    }
}

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

    .category__title h3 {
        font-size: 16px;
    }

    .category__title .en {
        font-size: 12px;
    }

    .flower__category h4 {
        font-size: 12px;
    }

    .category__card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category__card-grid::before {
        background-image: url(../image/green-background-sp.svg);
        width: 112%;
    }

    .card {
        display: flex;
    }

    .card img {
        min-width: 70px;
        border-top-left-radius: 4px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 4px;
    }

    .card__body {
        min-width: 90px;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .card__body .card__text {
        font-size: 11px;
    }
}

/* 目的から選ぶ */
.occasion__card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

.occasion__wrap .occasion__first {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.occasion__wrap .occasion__first::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 120%;
    height: 100%;
    top: 0;
    left: -10%;
    background: url(../image/green-background-celebration.svg)no-repeat center/cover;
}


.occasion__card-grid.three-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 830px;
    position: relative;
}

.occasion__card-grid.three-row::before {
    background: url(../image/green-background-three-row.svg)no-repeat center/cover;
    content: "";
    position: absolute;
    z-index: -1;
    width: 120%;
    height: 100%;
    top: 0;
    left: -10%;
}

.occasion__card-grid .card {
    display: flex;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #77917B;
}

.occasion__card-grid .card img {
    max-width: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    padding-left: 17px;
    padding-right: 2px;
}

.occasion__card-grid .card__body {
    min-height: 90px;
    padding-right: 5px;
}

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

.occasion__title--wrap {
    position: relative;
    text-align: center;
    margin: 0 0 35px;
    width: 100%;
}


.occasion__title--wrap::before,
.occasion__title--wrap::after {
    background: #E2E8DE;
    height: 2px;
    width: 32%;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

}

.occasion__title--wrap::before {
    right: 0;
}

.occasion__title--wrap::after {
    left: 0;
}


.title-wrapper h4 {
    display: inline-block;
    background: #fff;
    position: relative;
    z-index: 1;
}

.occasion__wrap div:nth-child(3),
.occasion__wrap div:nth-child(5) {
    margin-top: 45px;
}

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

    .occasion__card-grid {
        gap: 10px;
    }

    .occasion__card-grid .card {
        flex-direction: column;
        align-items: center;
    }

    .occasion__card-grid .card img {
        padding: 16px 0 10px;
        height: 80px;
    }

    .occasion__card-grid .card__body {
        padding: 0 0 10px;
        min-height: 0;
    }

    .occasion__card-grid h5 {
        font-size: 16px;
    }

    .occasion__wrap .occasion__first::before {
        width: 100%;
        left: 0;
    }
}

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

    .flower__title {
        margin-bottom: 16px;
    }

    .occasion__card-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }

    .occasion__card-grid .card:nth-last-child(2),
    .occasion__card-grid .card:last-child {
        grid-column: span 1;
    }

    .occasion__wrap .occasion__first::before {
        background: url(../image/green-background-celebration-sp.svg)no-repeat center / contain;
        width: 100%;
        height: 100%;
    }

    .occasion__card-grid.three-row::before {
        background: url(../image/green-background-three-row-sp.svg)no-repeat center / contain;
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 480px) {
    .occasion__card-grid .card__body h5 {
        font-size: 12px;
    }

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

    .occasion__card-grid .card__body p {
        font-size: 10px;
    }
}

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

    .occasion__card-grid {
        gap: 20px 16px;
    }

    .occasion__card-grid .card img {
        height: 52px;
        padding: 8px 0 10px;

    }


    .occasion__card-grid .card__body {
        padding: 0 0 11px;
    }
}


/* 季節行事から選ぶ */
.flower__title--event {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.event__card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 52px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}


.banner {
    display: none;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.banner a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

.overlay__red {
    background: rgba(115, 45, 39, 1);
}

.overlay__purple {
    background: rgba(82, 39, 115, 1);
}

.overlay__green {
    background: rgba(75, 101, 80, 1);
}

.overlay__orange {
    background: rgba(115, 80, 39, 1);
}

.overlay__yellowgreen {
    background: rgba(47, 115, 39, 1);
}

.overlay__bule {
    background: rgba(83, 145, 186, 1);
}

.banner:hover .overlay__red {
    opacity: 0.5;
}

.banner:hover .overlay__purple {
    opacity: 0.5;
}

.banner:hover .overlay__green {
    opacity: 0.5;
}

.banner:hover .overlay__orange {
    opacity: 0.5;
}

.banner:hover .overlay__yellowgreen {
    opacity: 0.5;
}

.banner:hover .overlay__bule {
    opacity: 0.5;
}

.banner__text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    z-index: 2;
    color: #fff;
}

.banner__text h4 {
    font-family: "Shippori Mincho", serif;
    margin: 10px 0 6px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
}

.banner__text p {
    font-family: "Shippori Mincho", serif;
    margin: 0;
    font-size: 16px;
}

.banner.visible {
    display: block;
}

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

    .event__card-grid {
        gap: 30px;
    }

    .banner__text h4 {
        font-size: 24px;
    }

    .banner__text p {
        font-size: 13px;
    }
}

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

    .event__card-grid {
        gap: 15px;
    }
}

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

    .flower__title.event__title {
        display: block;
        gap: 8px;
    }

    .banner__text h4 {
        font-size: 16px;
    }

    .banner__text p {
        font-size: 7px;
    }
}

/* ご購入ガイド */
.guide-banner img {
    width: 100%;
}

.guide-banner {
    position: relative;
}

.guige__title--wrap {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.guige__title--wrap .en {
    margin-top: 12px;
    color: #fff;
}

.guige__title--wrap h2 {
    margin-bottom: 18px;
}

.guide-banner .btn__arrow {
    position: absolute;
    content: "";
    top: 90%;
    right: -13%;
}

.guige__title--text {
    font-size: 16px;
}

.guide__overlay {
    background: rgba(75, 101, 80, 1);
    width: 80%;
    height: 70%;
    transform: translate(12%, 22%);
    top: 0;
    opacity: 0.7;
    position: absolute;
    content: "";
    border-radius: 4px;
    transition: opacity 0.3s ease-in-out;
}

.guide__overlay:hover {
    opacity: 0.9;
}

.guide__overlay:hover+.guige__title--wrap .btn__arrow {
    right: -50px;
}

@media screen and (max-width: 1200px) {
    .guige__title--text {
        font-size: 13px;
    }
}

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

    .guide-banner img {
        min-height: 175px;
    }

    .guide-banner {
        min-height: 175px;
    }

    .guige__title--wrap .en {
        margin-top: 0px;
    }

    .guige__title--wrap h2 {
        margin-bottom: 5px;
    }

    .guige__title--text {
        font-size: 10px;
    }

    .guide-banner .btn__arrow {
        top: 90%;
        right: -20%;
    }
}

/* 店舗情報 */
.section__title--info div {
    font-family: "Shippori Mincho", serif;
}

.section__title--info p {
    font-size: 13px;
    margin-top: 4px;
}

/* アコーディオンの基本 */
.address__accordion {
    background: #fff;
    padding: 20px 0 25px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accordion__btn--wrap {
    display: flex;
    justify-content: center;
}

.accordion__trigger {
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #77917B;
    cursor: pointer;
    border: none;
    position: relative;
    transition: opacity 0.3s ease-in-out;
}

.accordion__trigger:hover {
    opacity: 0.7;
}

/* プラス記号 */
.accordion__icon::before,
.accordion__icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 20px;
    height: 2px;
    transition: all 0.3s ease;
}

/* 横棒 */
.accordion__icon::before {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

/* 縦棒 */
.accordion__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    top: 50%;
    left: 50%;
}

/* 開いた状態 → マイナスにする */
.accordion__trigger.active .accordion__icon::before {
    opacity: 0;
}

.accordion__trigger.active .accordion__icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.accordion__content {
    display: flex;
    justify-content: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.accordion__content.active {
    max-height: 1500px;
    opacity: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.accordion__left .address__wrap {
    margin-top: 0;
    padding-top: 0;
}

.shop__btn__container.mikia__info {
    margin-left: 45px;
}

@media screen and (max-width: 1200px) {
    .address__wrap--accordion {
        flex-direction: column;
    }

    .accordion__left .map-container {
        width: 90%;
        margin: 0 auto;
    }

    .address__wrap {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 10px;
        padding-top: 50px;
    }

    .address__wrap--accordion::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .shop__btn__container.mikia__info {
        margin: 39px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .accordion__content p.shop__address {
        margin-left: 20px;
    }

    .address__wrap--accordion {
        width: 90%;
    }

    .shop__btn__container.mikia__info {
        text-align: center;
    }

    .shop__btn__container.mikia__info .parking__wrap {
        margin: 10px 0 30px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .accordion__content p.shop__address {
        margin-left: 10px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .scroll__button:hover {
        background: #9A8A7F;
        color: #fff;
        border: 1px solid #fff;
    }

    .scroll__button:hover .arrow::before,
    .scroll__button:hover .arrow::after {
        background-color: #fff;
    }

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

    .banner:hover .overlay__red {
        opacity: 0.5;
    }

    .banner:hover .overlay__purple {
        opacity: 0.5;
    }

    .banner:hover .overlay__green {
        opacity: 0.5;
    }

    .banner:hover .overlay__orange {
        opacity: 0.5;
    }

    .banner:hover .overlay__yellowgreen {
        opacity: 0.5;
    }

    .banner:hover .overlay__bule {
        opacity: 0.5;
    }

    .guide__overlay:hover {
        opacity: 0.9;
    }

    .guide__overlay:hover+.guige__title--wrap .btn__arrow {
        right: -50px;
    }

    .accordion__trigger:hover {
        opacity: 0.7;
    }

}

@media (hover: none) and (pointer: coarse) {
    .scroll__button:hover {
        background: none;
        color: inherit;
        border: inherit;
    }

    .scroll__button:hover .arrow::before,
    .scroll__button:hover .arrow::after {
        background-color: inherit;
    }

    .card:hover {
        box-shadow: none;
        transform: none;
    }

    .banner:hover .overlay__red {
        opacity: 0.3;
    }

    .banner:hover .overlay__purple {
        opacity: 0.3;
    }

    .banner:hover .overlay__green {
        opacity: 0.3;
    }

    .banner:hover .overlay__orange {
        opacity: 0.3;
    }

    .banner:hover .overlay__yellowgreen {
        opacity: 0.3;
    }

    .banner:hover .overlay__bule {
        opacity: 0.3;
    }

    .guide__overlay:hover {
        opacity: 0.7;
    }

    .guide__overlay:hover+.guige__title--wrap .btn__arrow {
        right: -13%;
    }

    .accordion__trigger:hover {
        opacity: 1;
    }
}