@charset "utf-8";

@media screen and (max-width: 1200px) {
    /* common
    ------------------ */

    body {
        font-size: 12px;
    }

    /* 見出し */
    .h2.english {
        font-size: clamp(1.5625rem, 2.5vw, 2.25rem);
        margin-bottom: clamp(21.5px, 3vw, 40px);
    }

    .h2_sub {
        font-size: 0.75rem;
    }

    .h2.mincho {
        font-size: clamp(1.375rem, 5vw, 1.75rem);
    }

    .h3 {
        padding: clamp(14px, 3.73vw, 29px) 0;
        font-size: clamp(18px, 4.8vw, 20px);
    }

    .header_adjustment {
        height: clamp(132px, 34.5vw, 200px);
    }

    /* header
    ------------------ */

    .header_wrap {
        height: clamp(62px, 16.5vw, 100px);
    }

    .title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .message_bar {
        height: clamp(30px, 8vw, 45px);
    }

    .sp_icon_bar {
        display: block;
        color: #ffffff;
        background-color: #dbc086;
    }

    .sp_icon {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 38px;
    }

    .sp_icon a {
        height: clamp(40px, 10vw, 55px);
        align-content: center;
        display: block;
        position: relative;
        margin-left: -0.5em;
        padding-left: 2em;
    }

    .sp_icon_item a::before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%); /* 垂直方向に中央揃え */
        width: 1.7em; /* アイコンの幅 */
        height: 1.7em; /* アイコンの高さ */
        margin-left: -1.8em;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .sp_icon_item.category a::before {
        background-image: url("category-icon.svg");
        margin-top: 0.1em;
    }

    .sp_icon_item.gift a::before {
        background-image: url("gift-icon.svg");
    }

    .sp_icon_item.faq a::before {
        background-image: url("faq-icon.svg");
    }

    /* ハンバーガーメニュー */

    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    .menu-toggle .toggle_menu_bg {
        position: fixed;
        left: 0;
        top: clamp(62px, 16.5vw, 100px);
        display: block;
        width: 100%;
        height: calc(100% - clamp(62px, 16.5vw, 100px));
        background: rgba(0, 0, 0, 0.5);
        transition: all 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }

    .menu-toggle.isOpen .toggle_menu_bg {
        opacity: 1;
        pointer-events: auto;
    }

    .toggle_menu_list {
        display: block;
    }

    .menu-toggle.isOpen .bar:nth-child(1),
    .menu-toggle.effect .bar:nth-child(1) {
        transform: rotate(45deg) translate(2px, 8px); /* 線1 */
    }

    .menu-toggle.isOpen .bar:nth-child(2),
    .menu-toggle.effect .bar:nth-child(2) {
        opacity: 0; /* 線2 */
    }

    .menu-toggle.isOpen .bar:nth-child(3),
    .menu-toggle.effect .bar:nth-child(3) {
        transform: rotate(-45deg) translate(2px, -8px); /* 線3 */
    }

    .menu-toggle.isOpen .toggle_menu_list {
        left: 0%; /* ホバー時に表示 */
    }

    .toggle_sub_menu {
        display: flex;
        flex-direction: column;
        max-height: 0; /* 初期の高さを0に設定 */
        overflow: hidden; /* 内容がはみ出ないように隠す */
        transition: max-height 0.3s ease; /* 高さのトランジション */
        background-color: #f3f3f3;
    }

    .toggle_sub_menu.isOpen {
        max-height: 500px; /* 必要に応じて適切な最大高さを設定 */
    }

    .toggle_menu_list .signup.my-true {
        display: none;
    }

    .toggle_menu_list .login.my-true {
        display: none;
    }

    .toggle_menu_list .logout.my-false {
        display: none;
    }

    .header_menu {
        display: none;
    }

    .sp_icon_group {
        display: flex;
        gap: 1rem;
    }

    .icon {
        width: max-content;
        height: max-content;
    }

    .icon img {
        width: 24px;
        height: auto;
    }

    .search_bar {
        box-sizing: border-box;
    }

    .search_box {
        position: relative;
        width: 100%;
        max-width: 603px;
        height: 36px;
    }

    .search_trigger img {
        transition: opacity 0.3s ease; /* アニメーションの設定 */
    }

    .search_input {
        font-size: 0.75rem;
		height: 100%!important;/*追加*/
padding: 0 0 0 3em !important;/*追加*/
margin: 8px 0 0 0 !important;/*追加*/
    }

    /* footer
    ------------------ */

    .footer_wrap {
        gap: 30px;
    }

    .footer_menu_list {
        flex-wrap: wrap;
        border-top: 0.5px solid #ffffff;
        border-bottom: 0.5px solid #ffffff;
        font-size: 0.75rem;
    }

    .footer_menu_item {
        flex: unset;
        width: 50%;
        box-sizing: border-box;
        border-left: unset;
    }

    .footer_menu_item:nth-child(1),
    .footer_menu_item:nth-child(2) {
        border-bottom: 0.5px solid #ffffff;
    }

    .footer_menu_item:nth-child(even) {
        border-left: 0.5px solid #ffffff;
    }

    .footer_menu_item:last-child {
        border-right: unset;
    }

    .picto_icon::before {
        left: 0;
        margin-left: 1.5em;
    }

    .footer_bottom_menu_list {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        box-sizing: border-box;
        font-size: 0.75rem;
    }

    .footer_bottom_menu_item div {
        margin: 0 auto;
        padding: 0 1.5em;
    }

    .arrow_icon::after {
        right: 0;
        margin-right: 1.5em;
    }

    .copyright {
        height: 41.25px;
    }

    .fixed_container {
        bottom: 80px;
    }

    .page_top_button {
        width: 40.42px;
        height: 40.42px;
        margin-right: 7.336px;
    }

    .fixed_faq div {
        width: 40.42px;
        height: 40.42px;
        margin-right: 7.336px;
    }

    .for_corporations_pc div {
        display: none;
    }

    .for_corporations_sp div {
        display: block;
        width: 58.69px;
        height: 40.42px;
        margin-right: 8.536px;
        padding-left: 28.72px;
        color: #ffffff;
        align-content: center;
        font-size: 0.6rem;
        font-weight: 700;
        background-color: rgba(219, 192, 134, 0.9);
        border-radius: 6px;
        box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
        box-sizing: border-box;
        position: relative;
    }

    .for_corporations_sp div::before {
        position: absolute;
        content: "";
        display: block;
        width: 14px;
        height: 14px;
        top: 50%;
        left: 0;
        transform: translateX(50%) translateY(-50%);
        background-image: url("office.svg");
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* store_informatiton main
    ------------------ */
    .store_information_kv {
        display: none;
    }

    .store_information_kv_sp {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .store_anchor_wrap {
        width: auto;
        height: auto;
        margin: 15px clamp(1rem, 2.5vw, 40px) 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
        border-bottom: unset;
    }

    .store_anchor_wrap li {
        width: 100%;
        height: 45px;
        font-size: 0.857rem;
        border: 1px solid #dbc086;
    }

    .store_anchor_wrap li::after {
        transform: translateX(-0.5em) translateY(-50%);
        width: 1.8em; /* アイコンの幅 */
        height: 1.8em; /* アイコンの高さ */
        background-size: contain;
        background-repeat: no-repeat;
    }

    .store_anchor_item {
        width: 100%;
        height: 100%;
        padding: unset;
        font-size: 0.857rem;
        text-align: center;
        display: block;
    }

    .vision {
        width: auto;
        margin: 25.43px clamp(1rem, 2.5vw, 40px) 0;
        text-align: center;
        font-size: clamp(13px, 3.46vw, 15px);
        line-height: 2.07;
        white-space: nowrap;
        word-break: break-all
    }

    .store_information_section {
        margin-top: clamp(40px, 10.67vw, 60px);
        padding-top: clamp(43.3px, 11.5vw, 50px);
        padding-bottom: clamp(68px, 18.13vw, 84.58px);
        background-color: #f9f9f9;
    }

    .store_information_wrap {
        margin: 0 auto;
    }

    .store_information_container {
        margin-top: clamp(16.8px, 4vw, 20px);
        flex-direction: column;
        justify-content: center;
        gap: 29px;
    }

    .store_img {
        width: 100%;
        margin: 0 auto;
    }

    .info_wrap {
        margin: 0 auto;
    }

    .row {
        font-size: 0.875rem;
    }

    .reserved_button {
        font-size: 0.9375rem;
    }

    .reserved_button div {
        margin-left: 2em;
    }

    .reserved_button div::before {
        width: 1.7em;
        height: 1.7em;
        transform: translateX(calc(-1.2em - 50%)) translateY(-50%);
    }

    .reserved_button .note {
        font-size: 0.75rem;
    }

    .limited_edition {
        margin: 40px auto 0;
        padding: 21px clamp(1rem, 2.5vw, 40px);
    }

    .limited_edition_container {
        flex-wrap: wrap;
    }

    .limited_edition_item:nth-child(7) {
        display: none;
    }

    .limited_edition_more {
        width: auto;
    }

    .store_map iframe {
        height: auto;
        aspect-ratio: 5/4;
    }

    .store_information + .store_information {
        margin-top: 48.7px;
    }

    .fruitparlor_more div {
        margin-left: 2em;
    }

    .fruitparlor_more div::before {
        transform: translateX(calc(-1.2em - 50%)) translateY(-50%);
    }
}

@media screen and (max-width: 1080px) {
    .store_information_wrap {
        margin: 0 clamp(1rem, 2.5vw, 40px);
    }
}

@media screen and (max-width: 905px) {
    .limited_edition_item:nth-child(6),
    .limited_edition_item:nth-child(7) {
        display: none;
    }
}

@media screen and (max-width: 753px) {
    .limited_edition_item:nth-child(5),
    .limited_edition_item:nth-child(6),
    .limited_edition_item:nth-child(7) {
        display: none;
    }
}

@media screen and (max-width: 604px) {
    .limited_edition_container {
        max-width: 300px;
    }
}

@media screen and (max-width: 428px) {
    .limited_edition_container {
        max-width: unset;
        justify-content: space-between;
        gap: clamp(1rem, 2.5vw, 40px);
    }

    .limited_edition_item {
        width: calc(50% - (clamp(1rem, 2.5vw, 40px) / 2));
        height: auto;
        object-fit: cover;
    }
}
