@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;
}

.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;
}

.breadcrumb2024 {
    height: 30px;
    font-size: 0.625rem;
    background-color: #fafafa;
    color: #a8a8a8;
    align-content: center;
}

.breadcrumb2024 p {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 40px);
    box-sizing: content-box;
}

.breadcrumb2024 a {
    text-align: center;
    width: fit-content;
	color: #a8a8a8;/*追加*/
}

/* .breadcrumb2024 .current.fs-c-breadcrumb__listItem */
.breadcrumb2024 .fs-c-breadcrumb__listItem{
    color: #222222!important;
}



/* 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("/item/2024/search.svg");
    position: absolute;
    left: 1.5em;/*1em*/
	top: 60%;/*50%*/
    transform: translateY(-50%);
    width: 2em;
    height: 2em;
    background-size: contain;
    background-repeat: no-repeat;
}

.search_input {
    width: 100%;
    height: 50px!important;/*100%;*/
    padding-left: 4em;
    font-size: 0.875rem;
    border: none!important;/*#e1e1e1*/
    border-radius: 4px;
    background-color: #f0f0f0;
    box-sizing: border-box;
}

.search_trigger,
.close_button {
    cursor: pointer;
}

.close_button img {
    display: block;
    margin-left: 1.7em;/*1em*/
	margin-top: 30%;
}

/* ハンバーガーメニュー */
.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("/item/2024/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("/item/2024/store-info.svg");
}

.payment_delivery::before {
    background-image: url("/item/2024/payment-delivery.svg");
}

.gift_packaging::before {
    background-image: url("/item/2024/gift-packaging.svg");
}

.faq::before {
    background-image: url("/item/2024/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("/item/2024/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("/item/2024/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;
}

/* list main
------------------ */

.list_item_wrap {
    max-width: 1256px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 2.5vw, 40px);
    padding-bottom: 37px;
}

.list_item_wrap .h2.mincho {
    font-size: 1.75rem;
    font-weight: 400;
    margin: 40px 0;
    text-align: left!important;
}

.list_item_wrap .h2_sub.english {
    font-size: 1rem;
    color: #ddc6a5;
    margin-left: 0.8rem!important;
    display: inline!important;
}

.count_wrap {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    align-items: center;
}

.select_wrapper {
    width: 193px;
    height: 35px;
    position: relative;
    border: 1px solid #5f5f5f;
}

.select_wrapper select {
    width: 100%;
    height: 100%;
    font-size: 0.8125rem;
    text-align: center;
    -webkit-appearance: none; /* Safari, Chrome */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* Standard */
    background: none;
    border: none;
    padding: 0 10px;
    box-sizing: border-box;
    cursor: pointer;
}

.select_wrapper::before {
    content: "";
    background-image: url("/item/2024/order-mark.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0.8rem;
    width: 1rem;
    height: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.list_wrap {
    margin: 14px auto 0;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 14px;
    row-gap: 48.5px;
}

.list_wrap .card.new::after {
    content: "";
    background-image: url(/item/2024/new-mark.svg);
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 63px;
    height: 63px;
    background-size: contain;
    background-repeat: no-repeat;
}

.list_item.card {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    padding-bottom: unset;
}

.list_item .to_detail img {
    display: block;
    width: 240px;
    aspect-ratio: 1/1;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.list_item .to_detail:hover img.default_image {
    opacity: 0;
    position: relative;
}

.list_item .to_detail img.hover_image {
    opacity: 0;
    position: absolute;
    top: 0;
}

.list_item .to_detail:hover img.hover_image {
    opacity: 1;
}

.list_item .h3 {
    font-size: 0.875rem;
    font-weight: 400;
    text-align: left;
    margin-top: 0.75rem;
}

.list_item.card p {
    line-height: 2;
    margin-top: -0.4rem;
}

.list_item .cart_in_button {
    width: 240px;
    height: 45px;
    color: #00ad9c;
    font-size: 0.75rem;
    text-align: center;
    padding-left: 2rem;
    align-content: center;
    border-radius: 4px;
    border: 1px solid #00ad9c;
    display: block;
    position: relative;
    box-sizing: border-box;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.list_item .cart_in_button::before {
    content: "";
    background-image: url("/item/2024/cart-in.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 2.5rem;
    width: 1.1rem;
    height: 1.1rem;
    transform: translateY(-50%);
    transition: background-image 0.3s ease;
}

@media (hover: hover) {
    .list_item .cart_in_button:hover {
        color: #ffffff;
        background-color: #00ad9c;
    }

    .list_item .cart_in_button:hover::before {
        background-image: url("/item/2024/cart-in-white.svg");
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 33.5px;
}

.pagination a {
    width: 34px;
    height: 32px;
    text-decoration: none;
    margin: 0 6px;
    background-color: #f1f1f1;
    text-align: center;
    align-content: center;
}

.pagination a.active {
    color: #ffffff;
    background-color: #222222;
}

.pagination a.prev {
    display: none;
}

.pagination a.prev,
.pagination a.next {
    background-color: #ffffff;
    position: relative;
}

.pagination a.next::after {
    content: "";
    background-image: url("/item/2024/next-mark.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    transform: translateY(-50%);
}

/* おすすめ商品エリア */

.top_section {
    padding: clamp(35px, 5%, 60px) 0 3%;
    overflow: hidden;
}

.recommendation {
    background-color: #f8f2e9;
}

.recommendation_container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 1.2rem;
    position: relative;
}

.h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

.recommendation .h3 {
    text-align: left;
    height: 48px;
}

.card {
    width: 296px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.recommendation.card {
    margin-bottom: 1.2rem;
}

.recommendation.card img {
    display: block;
    width: 296px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.recommendation.card:hover img.default_image {
    opacity: 0;
    position: relative;
}

.recommendation.card img.hover_image {
    opacity: 0;
    position: absolute;
    top: 0;
}

.recommendation.card:hover img.hover_image {
    opacity: 1;
}

.recommendation.card p {
    text-align: left;
    line-height: 2;
    margin-top: -1rem;
}
