@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;
}

.h2.gothic {
    font-size: 1.875rem;
    font-weight: 400;
    letter-spacing: 3px;
}

.h3 {
    padding: 29px 0;
    font-size: 1.25rem;
    font-weight: 400;
    border-top: 1px solid #dbc086;
    border-bottom: 1px solid #dbc086;
	text-align: left!important;/*追加*/
}

.h4 {
    padding: 6.84px 0 6.84px 25.97px;
    font-size: 1.25rem;
    font-weight: 400;
    border-left: 3px solid #dbc086;
}

.paragraph {
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 2;
}

.blockquote {
    width: 95%;
    max-width: 950px;
    margin: 0 auto;
    padding: 34px 26px 34px 34px;
    font-size: 1.125rem;
    background-color: #f5f5f5;
    border-bottom: 1px solid #dbc086;
    line-height: 1.67;
    box-sizing: border-box;
}

/* ヘッダー調整 */
.header_adjustment {
    height: 145px;
}

/* レビュー */
.number_of_reviews {
    display: block;
    color: #7b7b7b;
}

.stars {
    color: #ecbb54;
}

/* moreボタン */
.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;
    }
}

/* パンくずリスト */
.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("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: 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;
}

/* detail main
------------------ */
.detail_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 37px;/*padding: 0 clamp(1rem, 2.5vw, 40px) 37px;*/
}

.detail_section.cart_in {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.img_wrap {
    width: fit-content;
}

.text_wrap {
    width: 100%;
    max-width: 500px;
}

.main_image_wrap {
    width: fit-content;
    aspect-ratio: 1/1;
    margin: 0 auto;
    position: relative;
    margin-bottom: 6px;
}

.detail_main_img {
    max-width: 460px;
    aspect-ratio: 1/1;
    display: block;
}

.main_image_wrap .prev_button,
.main_image_wrap .next_button {
    width: 53.8px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.main_image_wrap .prev_button {
    left: 9px;
}

.main_image_wrap .next_button {
    right: 9px;
}

.other_image_wrap {
    max-width: 460px;
    margin: 0 auto;
}

.other_image_top,
.other_image_bottom {
    margin-bottom: 6px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 6px;
}

.other_img {
    width: calc((100% - 24px) / 5);
    cursor: pointer;
}

.detail_caution {
    font-size: 0.625rem;
}

.detail .tag {
    height: 30px;
    padding: 0 1.923em;
    display: inline-block;
    align-content: center;
    text-align: center;
    font-size: 0.8125rem;
    color: #aa8c5f;
    border: 1px solid #dbc086;
}

.detail .tag.special {
    color: #ffffff;
    background-color: #dbc086;
}

.detail .text_wrap .h2.gothic {
    margin-top: 14px;
}

.detail .text_wrap .number_of_reviews {
    font-size: 1.125rem;
    margin-top: 0.5em;
}

/* 価格表記 */
.price {
    font-size: 1.875rem;
}

.price .tax {
    font-size: 1.125rem;
}

.detail .text_wrap .price {
    margin: 0.16em 0 0.37em;
}

.delivery_date {
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid #dfdfdf;
}

.requested_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
    gap: 8px;
}

.requested_date_select_wrapper {
    flex-grow: 1;
}

.requested_date_select {
    width: 100%;
    height: 50px;
}

select.requested_date_select {
    font-size: 0.9375rem;
    padding-left: 0.837em;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    background-color: #fafafa;
}

.detail .text_wrap .note {
    color: #c84747;
    font-size: 0.9375rem;
    margin-top: 1.1em;
}

.confirmed_button {
    font-size: 0.9375rem;
    margin-top: 1.067em;
}

.required_label {
    display: inline-block;
    height: 25px;
    padding: 0 1.375em;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #c84747;
    border-radius: 2px;
    align-content: center;
}

.confirmed_button input[type="radio" i] {
    font-size: 0.9375rem;
    margin-left: 0.5em;
    vertical-align: middle;
    cursor: pointer;
}

.confirmed_button label {
    cursor: pointer;
}

.requested_quantity {
    font-size: 1rem;
    padding-top: 1.1875em;
    border-top: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity_wrap {
    align-self: center;
}

.quantity_wrap input {
    width: 72.52px;
    height: 58px;
    margin-left: 0.4635em;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #191919;
}

button.quantity_button {
    width: 70px;
    height: 56px;
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 4px;
    cursor: pointer;
}

button.quantity_button.decrease {
    color: #707070;
    background-color: #ececec;
    border: 1px solid #ececec;
}

button.quantity_button.increase {
    color: #ffffff;
    background-color: #707070;
    border: 1px solid #707070;
}

button.cart_in_button {
    width: 100%;
    height: 76px;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

button.cart_in_button::before {
    content: "";
    background-image: url("cart-in-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.2em;
    height: 1.2em;
    transform: translateX(calc(-6em - 50%)) translateY(-50%);
}

.detail .text_wrap button.cart_in_button {
    margin-top: 0.681em;
    color: #ffffff;
    background-color: #00ad9c;
    border: 1px solid #00ad9c;
    border-radius: 4px;
    box-shadow: 0px 3px 0px #00897c;
}

.detail .text_wrap .note_area {
    color: #c84747;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.538;
    margin-top: 1.34em;
    padding: 1.164em 1.07em 1.07em 1.55em;
    border: 1px solid #c84747;
}

.description_area {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #dfdfdf;
}

.description_area .sub_heading {
    color: #b4b4b4;
    font-size: 1rem;
}

/* 見出し上側マージン */
.description_area .h2.gothic,
.description_area .paragraph,
.description_area .h3,
.description_area .h4,
.description_area .blockquote {
    margin-top: 37px;
}

.detail_img_pc {
    width: 600px;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    margin: 37px auto 0;
}

.detail_img_sp {
    display: none;
}

.overview {
    background-color: #f5f5f5;
}

.overview_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 45.8px clamp(1rem, 2.5vw, 40px) 49.57px;
}

.overview_wrap .sub_heading {
    color: #222222;
    font-size: 1.25rem!important;
    font-weight: 700;
}

.overview_wrap .table {
    margin-top: 24.6px;
    border-top: 1px solid #e2e2e2;
}

.row {
    min-height: 22px;
    display: flex;
    padding: 15px 0;
    gap: 19.5px;
    font-size: 0.875rem;
    border-bottom: 1px solid #e2e2e2;
}

.row.allergen {
    min-height: 22px;
    position: relative;
    cursor: pointer;
}

.row.allergen.isOpen {
    height: 438px;
    border-bottom: unset;
}

.table_header {
    width: 100px;
    font-weight: 700;
}

.table_data {
    flex: 1;
    font-weight: 300;
}

.row.allergen .table_data::after {
    content: "";
    background-image: url("arrow-icon.svg");
    position: absolute;
    top: 26px;
    right: 0;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    width: 0.8em; /* アイコンの幅 */
    height: 0.8em; /* アイコンの高さ */
    margin-right: 0.5em;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out; /* 回転時のアニメーションを追加 */
}

.allergen.toggle_menu {
    width: 100%;
    max-height: 0; /* 初期の高さを0に設定 */
    position: absolute;
    top: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e2e2;
    box-sizing: border-box;
    overflow: hidden; /* 内容がはみ出ないように隠す */
    transition: max-height 0.3s ease; /* 高さのトランジション */
}

.allergen.toggle_menu.isOpen {
    max-height: 416px; /* 必要に応じて適切な最大高さを設定 */
    padding-top: 20.61px;
}

.row.allergen.isOpen .table_data::after {
    transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.allergen_list_wrap {
    max-width: 480px;
    width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    object-fit: cover;
}

.allergen_list_top,
.allergen_list_bottom,
.labeling {
    max-width: 440px;/*480px;*/
    width: 440px;/*480px;*/
    height: auto;
    object-fit: cover;
}

/* 閉じない設定 */
.allergen_ncls {
	 min-height: 420px;
}

.allergen_ncls_block {
	 float: left;
}


.float_container {
    width: 375px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    box-sizing: border-box;
    cursor: pointer;
}

.float_container.visible {
    opacity: 1;
}

/* .float_container.at-overview {
    position: absolute;
    bottom: auto;
    opacity: 1;
} */

.cart_in_button.float {
    width: 343px;
    height: 55px;
    text-align: center;
    align-content: center;
    padding-left: 2em;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #00ad9c;
    border: 1px solid #00ad9c;
    border-radius: 4px;
    box-shadow: 0px 3px 0px #00897c;
    box-sizing: border-box;
}

.cart_in_button.float::before {
    content: "";
    background-image: url("cart-in-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 55%;
    width: 1.2em;
    height: 1.2em;
    transform: translateX(calc(-6em - 50%)) translateY(-50%);
}


/* 幅調整用 検索一覧のため解除
#content {
    width: unset!important;
}
*/
/* おすすめのマージントルツメ */
.users-content, .recommend-content{
	padding: 0!important;
} 