@charset "utf-8";

/* common
------------------ */

* {
    margin: 0;
    padding: 0;
}

a {
    all: unset; /* すべてのプロパティをリセット */
    display: inline-block; /* 再設定 */
    cursor: pointer; /* 再設定 */
    color: inherit; /* 親要素の色を継承 */
    text-decoration: none; /* テキストの装飾を削除 */
}

body {
    background-color: #ffffff;
    font-size: 14px;
    color: #222222;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    overflow-x: hidden;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

li {
    list-style-type: none;
}

/* 明朝体 */
.mincho {
    font-family: "Noto Serif JP", serif;
}

/* 英語 */
.english {
    font-family: "Cormorant Garamond", serif;
}

.green {
    background-color: #00ad9c;
}

.black {
    background-color: #222222;
}

/* 見出し */
.h2.mincho {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: clamp(25px, 6.4vw, 40px);
}

.h2_sub.english {
    margin-top: 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.8125rem;
    color: #dbc086;
    display: block;
    letter-spacing: 1px;
}

.h3 {
    padding: 29px 0;
    font-size: 1.25rem;
    font-weight: 400;
    border-top: 1px solid #dbc086;
    border-bottom: 1px solid #dbc086;
}

.number_of_reviews {
    display: block;
    color: #7b7b7b;
}

.stars {
    color: #ecbb54;
}

.more_button_container {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.more_button {
    width: 90px;
    height: 35px;
    font-size: 0.8125rem;
    text-align: center;
    align-content: center;
    background-color: #d9d9d9;
    border-radius: 100px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
    .more_button:hover {
        color: #ffffff;
        background-color: #222222;
    }
}

.header_adjustment {
    height: 145px;
}

.breadcrumb {
    height: 30px;
    font-size: 0.625rem;
    background-color: #fafafa;
    color: #a8a8a8;
    align-content: center;
}

.breadcrumb p {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 40px);
    box-sizing: content-box;
}

.breadcrumb a {
    text-align: center;
    width: fit-content;
}

.breadcrumb .current {
    color: #222222;
}

/* header
------------------ */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.header_top {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* ドロップシャドウの設定 */
    position: relative;
    z-index: 10;
}

.header_wrap {
    background-color: #ffffff;
    /*max-width: 1400px;*/
    height: 100px;
    margin: 0 auto;
    padding: 0 clamp(1rem, calc((100% - 1400px) / 2), 50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(14px, 3%, 61px);
}

.logo {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
}

.logo img {
    display: block;
    height: clamp(30px, 7.5vw, 46px);
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .logo img:hover {
        opacity: 0.6;
    }
}

.header_menu {
    width: 64%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    gap: clamp(14px, 3%, 61px);
}

.menu_list {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
}

.menu_list > li {
    flex: 1;
}

.menu {
    display: block;
    width: 100%;
    height: 100px;
    text-align: center;
    align-content: center;
    position: relative;
}

.menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #dbc086;
    transform: scaleX(0); /* 初期状態は非表示 */
    transition: transform 0.3s ease-in-out; /* アニメーション設定 */
}

.menu:hover::after {
    transform: scaleX(1); /* ホバー時に下線を表示 */
}

.sub_menu {
    visibility: hidden; /* 初期状態は非表示 */
    display: flex;
    justify-content: center;
    gap: 85px;
    position: absolute;
    top: -72px;
    right: 0;
    width: 100vw;
    height: 172px;
    background-color: #f1f1f1;
    z-index: -1;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* ドロップシャドウの設定 */
    transition: top 0.3s ease, visibility 0.3s ease; /* アニメーションの設定 */
}

.sub_menu li {
    height: 172px;
    flex-grow: unset;
}

.sub_menu a {
    height: 172px;
    align-content: center;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .sub_menu a:hover {
        opacity: 0.6;
    }
}

.menu_list li:hover .sub_menu {
    visibility: visible; /* ホバー時に表示 */
    top: 100px;
}

.sub_menu_item {
    width: 108px;
    height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sub_menu_item img {
    border-radius: 50%;
    object-fit: cover;
}

.sub_menu_item p {
    margin-top: 0.5rem;
    font-size: 0.81rem;
}

.pc_icon_group {
    width: 30%;
    max-width: 250px;
    display: flex;
    justify-content: flex-end;
}

.pc_icon_group a {
    display: inline-block;
    text-align: center;
}

.icon {
    width: 60px;
    height: 54px;
    font-size: 0.57rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .icon:hover {
        opacity: 0.6;
    }
}

.icon.logout.my-false {
    display: none;
}

.icon.login.my-true {
    display: none;
}

.icon.signup.my-true {
    display: none;
}

.icon p {
    margin-top: 0.57rem;
}

.search_bar {
    visibility: hidden; /* 初期状態は非表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(100% - 84px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* ドロップシャドウの設定 */
    z-index: -1;
    transition: top 0.3s ease, visibility 0.3s ease; /* アニメーションの設定 */
}

.search_bar.isOpen {
    visibility: visible;
    top: 100%;
}

.search_box {
    position: relative;
    width: 603px;
    height: 54px;
}

.search_box::before {
    content: "";
    background-image: url("search.svg");
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    background-size: contain;
    background-repeat: no-repeat;
}

.search_input {
    width: 100%;
    height: 100%;
    padding-left: 4em;
    font-size: 0.875rem;
    border: #e1e1e1;
    border-radius: 4px;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

.search_trigger,
.close_button {
    cursor: pointer;
}

.close_button img {
    display: block;
    margin-left: 1em;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 24px;
    height: 1px;
    background-color: #222222;
    margin: 6px 0;
    transition: transform 0.3s ease; /* 変化のアニメーションを追加 */
}

.menu-toggle .bar:nth-child(2) {
    width: 16px;
}

.toggle_menu_list {
    display: none;
    position: absolute;
    top: 100%;
    left: calc(0% - 300px); /* 初期位置を画面外に設定 */
    width: 300px;
    background-color: #f3f3f3;
    transition: left 0.3s ease; /* アニメーションの設定 */
}

.toggle_menu_list > li:first-child {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle_menu_list > li {
    max-height: 38px;
    align-content: center;
    background-color: #ffffff;
    position: relative;
}

.toggle_menu_list > li.melon {
    margin-top: 22.72px;
}

.toggle_menu_list a {
    width: 100%;
    height: 38px;
    padding-left: 1em;
    align-content: center;
    position: relative;
    box-sizing: border-box;
}

.toggle_menu_list > li:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.toggle_menu_list > li::after {
    content: "";
    background-image: url("arrow-icon.svg");
    position: absolute;
    top: 19px;
    right: 0;
    transform: translateY(calc(-50% + 0.1em)); /* 垂直方向に中央揃え */
    width: 0.8em; /* アイコンの幅 */
    height: 0.8em; /* アイコンの高さ */
    margin-right: 0.5em;
    background-size: contain;
    background-repeat: no-repeat;
}

.toggle_menu_list > li.toggle_has_sub_menu::after {
    transition: transform 0.3s ease-in-out; /* 回転時のアニメーションを追加 */
}

.toggle_menu_list > li.toggle_has_sub_menu::after {
    transform: translateX(-50%) rotate(90deg);
}

.toggle_menu_list > li.toggle_has_sub_menu.isOpen::after {
    transform: translateX(-50%) translateY(-50%) rotate(-90deg); /* ホバー時に45度回転 */
}

.toggle_sub_menu_item {
    display: flex;
    align-items: center;
    height: 50px;
}

.toggle_sub_menu_item img {
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 19px;
}

.sp_icon_group {
    display: none;
}

.message_bar {
    height: 45px;
}

.message {
    height: 100%;
    color: #ffffff;
    text-align: center;
    align-content: center;
}

.message span {
    font-weight: 700;
}

.sp_icon_bar {
    display: none;
}

/* footer
------------------ */

.footer {
    background-color: #f1f1f1;
    font-size: 0.81rem;
    position: relative;
}

.footer_wrap {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    padding: 40px 0 27.5px;
}

.sns_group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(23.6px, 2.5vw, 33.3px);
}

.sns_group img {
    width: clamp(20.6px, 2vw, 26.21px);
    display: block;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .sns_group img:hover {
        opacity: 0.6;
    }
}

.footer_menu_list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer_menu_item {
    flex: 1;
    text-align: center;
    border-left: 0.5px solid #333333;
}

.footer_menu_item:last-child {
    border-right: 0.5px solid #333333;
}

.footer_menu_item a {
    display: block;
    width: auto;
    height: fit-content;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .footer_menu_item a:hover {
        opacity: 0.6;
    }
}

.footer_menu_item div {
    width: auto;
    height: 50px;
    align-content: center;
    position: relative;
    padding-left: 2.2em;
}

.picto_icon::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* 垂直方向に中央揃え */
    width: 2em; /* アイコンの幅 */
    height: 1.6em; /* アイコンの高さ */
    margin-left: -2.2em;
    background-size: contain;
    background-repeat: no-repeat;
}

.store_info::before {
    background-image: url("store-info.svg");
}

.payment_delivery::before {
    background-image: url("payment-delivery.svg");
}

.gift_packaging::before {
    background-image: url("gift-packaging.svg");
}

.faq::before {
    background-image: url("faq.svg");
}

.footer_bottom_menu_list {
    width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer_bottom_menu_item a {
    display: block;
    width: auto;
    height: fit-content;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .footer_bottom_menu_item a:hover {
        opacity: 0.6;
    }
}

.footer_bottom_menu_item div {
    width: auto;
    height: 35px;
    align-content: center;
    position: relative;
}

.arrow_icon::after {
    content: "";
    background-image: url("arrow-icon.svg");
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% + 0.1em)); /* 垂直方向に中央揃え */
    width: 0.8em; /* アイコンの幅 */
    height: 0.8em; /* アイコンの高さ */
    margin-left: 0.5em;
    background-size: contain;
    background-repeat: no-repeat;
}

.copyright {
    height: 55px;
    color: #ffffff;
    font-size: 0.75rem;
    text-align: center;
    align-content: center;
}

.fixed_container {
    display: flex;
    flex-direction: row-reverse;
    position: fixed;
    bottom: 92.5px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}

.fixed_container.visible {
    opacity: 1;
}

.fixed_container.at-footer {
    position: absolute;
    top: 0;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
}

.page_top_button {
    width: 44px;
    height: 44px;
    margin-right: 13.6px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 1.5px 4px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: opacity 0.3s ease;
}

.page_top_button img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.fixed_faq div {
    width: 44px;
    height: 44px;
    margin-right: 13.6px;
    color: #dbc086;
    font-weight: 700;
    text-align: center;
    align-content: center;
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.for_corporations_pc div {
    width: 112px;
    height: 44px;
    margin-right: 16.68px;
    padding-left: 28.92px;
    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;
    transition: opacity 0.3s ease;
}

.for_corporations_pc div::before {
    position: absolute;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 0;
    transform: translateX(50%) translateY(-50%);
    background-image: url("office.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

@media (hover: hover) {
    .page_top_button:hover,
    .fixed_faq div:hover,
    .for_corporations_pc div:hover {
        opacity: 0.6;
    }
}

.for_corporations_sp div {
    display: none;
}

/* store_information main
------------------ */

html {
    scroll-behavior: smooth;
}

.store_information_kv {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.store_information_kv_sp {
    display: none;
}

.store_anchor_wrap {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #dbc086;
    gap: 40px;
}

.store_anchor_wrap li {
    height: 100%;
    position: relative;
    font-size: 0.875rem;
}

.store_anchor_wrap li::after {
    content: "";
    background-image: url("arrow-icon-gold.svg");
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(calc(-50% + 0.5em)) translateY(-50%);
    width: 1.8em; /* アイコンの幅 */
    height: 1.8em; /* アイコンの高さ */
    background-size: contain;
    background-repeat: no-repeat;
}

.store_anchor_item {
    height: 100%;
    padding: 1em 2.7em 1em 1em;
    display: inline-block;
    align-content: center;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.vision {
    max-width: 1000px;
    margin: 53.64px auto 0;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 2.3;
    letter-spacing: 1px;
    white-space: nowrap;
    font-weight: 500;
}

.store_information_section {
    width: 100%;
    margin-top: 60px;
    padding-top: 50px;
    padding-bottom: 84.58px;
    background-color: #f9f9f9;
}

.store_information_wrap {
    width: auto;
    max-width: 1000px;
    margin: 0 auto;
}

.store_information_wrap .h3 {
    text-align: center;
}

.store_information {
    margin: 0 auto;
    scroll-margin-top: 175px;
}

.store_information_container {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.store_img {
    width: 400px;
    max-width: 400px;
    aspect-ratio: 1/1;
    display: block;
    object-fit: contain;
}

.info_wrap {
    width: 100%;
    max-width: 560px;
}

.row {
    min-height: 22px;
    display: flex;
    flex-direction: column;
    padding: 1em 0;
    font-size: 0.875rem;
}

.row:first-child {
    padding-top: unset;
}

.row + .row {
    border-top: 1px solid #e2e2e2;
}

.table_header {
    width: 100px;
    font-weight: 700;
}

.table_data {
    flex: 1;
    font-weight: 300;
}

.tel {
    font-weight: 700;
}

.reserved_button {
    width: 100%;
    height: 75px;
    font-size: 1rem;
    font-weight: 700;
}

.info_wrap .reserved_button {
    margin-top: 0.681em;
    text-align: center;
    align-content: center;
    color: #ffffff;
    background-color: #00ad9c;
    border: 1px solid #00ad9c;
    border-radius: 4px;
    box-shadow: 0px 3px 0px #00897c;
}

.reserved_button div {
    display: inline-block;
    position: relative;
    margin-left: 2.75em;
}

.reserved_button div::before {
    content: "";
    background-image: url("reserved-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    height: 2em;
    transform: translateX(calc(-1.5em - 50%)) translateY(-50%);
}

.reserved_button .note {
    display: block;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.57;
}

.limited_edition {
    margin: 35px auto 0;
    padding: 26px 22.5px;
    border: 1px solid #dbc086;
    background-color: #ffffff;
}

.limited_edition .h2.mincho {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: unset;
}

.limited_edition_container {
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.limited_edition_item {
    width: 127px;
    aspect-ratio: 4/5;
}

.limited_edition_more {
    width: 338px;
    max-width: 338px;
    height: 48px;
    margin: 26px auto 0;
    display: block;
    color: #ffffff;
    text-align: center;
    align-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #dbc086;
    border: 1px solid #dbc086;
    transition: color 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
    .limited_edition_more:hover {
        color: #222222;
        background-color: #ffffff;
    }
}

.store_map {
    margin-top: 34px;
    width: 100%;
}

.store_map iframe {
    width: 100%;
    height: 350px;
    max-height: 350px;
    border: unset;
}

.store_information + .store_information {
    margin-top: 63.53px;
}

.fruitparlor_more {
    width: 100%;
    height: 75px;
    font-size: 1rem;
    font-weight: 500;
}

.info_wrap .fruitparlor_more {
    margin-top: 0.681em;
    text-align: center;
    align-content: center;
    color: #00ad9c;
    background-color: #ffffff;
    border: 1px solid #00ad9c;
    border-radius: 4px;
}

.fruitparlor_more div {
    display: inline-block;
    position: relative;
    margin-left: 2.75em;
}

.fruitparlor_more div::before {
    content: "";
    background-image: url("ice-cream-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    height: 2em;
    transform: translateX(calc(-1.5em - 50%)) translateY(-50%);
}
