@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 {
    font-size: 1.25rem;
    font-weight: 400;
}

.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 {
    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;
}

/* special main
------------------ */

html {
    scroll-behavior: smooth;
}

.special_kv {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.special_kv_sp {
    display: none;
}

.special_anchor_wrap {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #dbc086;
    gap: 40px;
}

.special_anchor_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.special_anchor_wrap li {
    height: 100%;
    position: relative;
    font-size: 0.875rem;
}

.special_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;
}

.special_anchor_item {
    height: 100%;
    padding: 1em 2.7em 1em 1em;
    display: inline-block;
    align-content: center;
    box-sizing: border-box;
    scroll-behavior: smooth;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .special_anchor_item:hover {
        opacity: 0.6;
    }
}

.gift_catalog_button {
    display: block;
    text-align: center;
    align-content: center;
    width: 178px;
    height: 53px;
    border: 1px solid #dbc086;
    background-color: #f8f2e9;
    transition: opacity 0.3s ease;
}

.gift_catalog_button span {
    position: relative;
    margin-left: 2em;
}

.gift_catalog_button span::before {
    content: "";
    background-image: url("catalog-icon.svg");
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(calc(-100% - 0.5em)) translateY(-50%);
    width: 1.8em; /* アイコンの幅 */
    height: 1.8em; /* アイコンの高さ */
    background-size: contain;
    background-repeat: no-repeat;
}

@media (hover: hover) {
    .gift_catalog_button:hover {
        opacity: 0.6;
    }
}

.special_message {
    max-width: 1000px;
    margin: 53.64px auto 105px;
}

h2.english.special {
    color: #dbc086;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.5em 0;
    position: relative;
}

h2.english.special::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background-color: #dbc086;
}

.h3.mincho.horizon {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.6875;
    border: unset;
    margin: 29px 0;
}

.center {
    text-align: center;
}

.special.paragraph {
    max-width: 1000px;
    margin: 0;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 2.3;
    letter-spacing: 1px;
    white-space: nowrap;
    font-weight: 400;
}

#about_gift {
    scroll-margin-top: 175px;
}

.bg_gray {
    background-color: #f9f9f9;
    padding-top: clamp(39.91px, 10.64vw, 81.96px);
    padding-bottom: clamp(52.8px, 14vw, 89.93px);
}

.bg_gray_inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.special.horizon {
    width: 100%;
    height: clamp(238px, 63.5vw, 460px);
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.special.horizon + .special.horizon {
    margin-top: clamp(64.71px, 17.25vw, 86px);
}

.special.horizon.right {
    align-self: flex-end;
}

.special.horizon .h3.mincho.horizon {
    width: clamp(347px, 39.8vw, 478.56px);
    font-size: clamp(20px, 5.3vw, 30px);
    padding-bottom: 0.78em;
    position: relative;
}

.special.horizon.right .h3.mincho.horizon {
    padding-left: 1rem;
}

.special.horizon.left .h3.mincho.horizon {
    padding-right: 1rem;
}

.special.horizon.left .h3.mincho.horizon {
    align-self: end;
}

.special.horizon .h3.mincho.horizon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(45px, 1.2vw, 56px);
    height: 2px;
    background-color: #dbc086;
}

.special.horizon.right .h3.mincho.horizon::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: clamp(45px, 1.2vw, 56px);
    height: 2px;
    background-color: #dbc086;
}

.special.horizon .image_wrap {
    width: fit-content;
    height: fit-content;
    font-size: clamp(34px, 9vw, 48px);
    order: 2;
    position: absolute;
    top: 0;
}

.special.horizon.right .image_wrap {
    right: 0;
}

.special.horizon.left .image_wrap {
    left: 0;
}

.special.horizon.right .image_wrap {
    padding: 0 0 6px 6px;
}

.special.horizon.left .image_wrap {
    padding: 0 6px 6px 0;
}

.special.horizon .image_wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: calc(100% - 1em);
    border: 0.5px solid #dbc086;
}

.special.horizon.right .image_wrap::before {
    left: 0;
    transform-origin: left bottom;
}

.special.horizon.left .image_wrap::before {
    right: 0;
    transform-origin: right bottom;
}

.special.horizon .image_wrap img {
    display: block;
    width: clamp(343px, 53.68vw, 644.15px);
    aspect-ratio: 644.15 / 440.11;
    object-fit: cover;
    position: relative;
}

.english.decoration {
    position: absolute;
    color: #dbc086;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0.5em;
    top: 0;
}

.special.horizon.right .english.decoration {
    left: 0;
    transform: rotate(90deg) translateY(calc(-50% - 6px));
    transform-origin: top left;
}

.special.horizon.left .english.decoration {
    right: 0;
    transform: rotate(90deg) translateX(100%) translateY(calc(-50% + 6px));
    transform-origin: top right;
}

.special.horizon .special.paragraph {
    width: clamp(347px, 39.8vw, 478.56px);
    text-align: justify;
    white-space: wrap;
}

.special.horizon.right .special.paragraph {
    padding-left: 1rem;
}

.special.horizon.left .special.paragraph {
    align-self: end;
    padding-right: 1rem;
}

.space {
    width: 100%;
    height: clamp(62px, 16.53vw, 96.91px);
}

.special.vertical {
    width: 95.43%;
    height: clamp(638px, 54.167vw, 650px);
    max-width: 1074.13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.special.vertical + .special.vertical {
    margin-top: clamp(64.71px, 17.25vw, 86px);
}

.special.vertical.right {
    align-self: end;
    transform: translateX(-6.8%);
}

.special.vertical.left {
    align-self: start;
    transform: translateX(6.8%);
}

.special_vertical_wrap {
    width: clamp(450px, 55vw, 538px);
    display: flex;
    flex-direction: column;
}

.special.vertical .h3.mincho.vertical {
    font-size: clamp(20px, 5.3vw, 28px);
    padding: 1.285em 0.78em 0.78em 1em;
    position: relative;
    border: unset;
    writing-mode: vertical-rl;
    white-space: nowrap;
    letter-spacing: 10px;
    line-height: 2;
    display: block;
    margin: 0 auto 1.27em;
}

.special.vertical.left .special_vertical_wrap {
    align-self: end;
}

.special.vertical .h3.mincho.vertical::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 38.46px;
    border-top: 1px solid #d6d6d6;
    border-left: 1px solid #d6d6d6;
}

.special.vertical .h3.mincho.vertical::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 38.46px;
    border-bottom: 1px solid #d6d6d6;
    border-right: 1px solid #d6d6d6;
}

.special.vertical .image_wrap {
    width: fit-content;
    height: fit-content;
    font-size: clamp(34px, 9vw, 48px);
    order: 2;
    position: absolute;
    top: 0;
}

.special.vertical.right .image_wrap {
    right: 0;
}

.special.vertical.left .image_wrap {
    left: 0;
}

.special.vertical.right .image_wrap {
    padding: 0 0 6px 6px;
}

.special.vertical.left .image_wrap {
    padding: 0 6px 6px 0;
}

.special.vertical .image_wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: calc(100% - 6px);
    height: calc(100% - 1em);
    border: 0.5px solid #dbc086;
}

.special.vertical.right .image_wrap::before {
    left: 0;
    transform-origin: left bottom;
}

.special.vertical.left .image_wrap::before {
    right: 0;
}

.special.vertical .image_wrap img {
    display: block;
    height: clamp(331px, 53.68vw, 644.15px);
    aspect-ratio: 440.11/ 644.15;
    object-fit: cover;
    position: relative;
}

.english.decoration {
    position: absolute;
    color: #dbc086;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 0.5em;
    top: 0;
}

.special.vertical.right .english.decoration {
    left: 0;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: top left;
}

.special.vertical.left .english.decoration {
    right: 0;
    transform: rotate(90deg) translateX(100%) translateY(-50%);
    transform-origin: top right;
}

.special.vertical .special.paragraph {
    text-align: justify;
    white-space: wrap;
}

.special.vertical.right .special.paragraph {
    padding-left: 1rem;
}

.special.vertical.left .special.paragraph {
    align-self: end;
    padding-right: 1rem;
}

/* ギフト人気ランキング */

.top_section {
    padding: clamp(35px, 5%, 60px) 0 3%;
}

.gift_ranking {
    background-color: #f8f2e9;
    scroll-margin-top: 175px;
}

.gift_ranking_container {
    width: calc(100% - clamp(1rem, 2.5vw, 40px));
    max-width: calc(100% - clamp(1rem, 2.5vw, 40px));
    overflow: hidden;
    margin: 0 0 0 clamp(1rem, 2.5vw, 40px);
    position: relative;
}

.gift_ranking_container a + a {
    margin-left: 1.2rem;
}

.h3.gothic {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

.gift_ranking .h3 {
    text-align: left;
    height: 48px;
}

.card {
    width: 296px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.gift_ranking.card {
    margin-bottom: 1.2rem;
}

.gift_ranking.card img {
    display: block;
    width: 296px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gift_ranking.card:hover img.default_image {
    opacity: 0;
    position: relative;
}

.gift_ranking.card img.hover_image {
    opacity: 0;
    position: absolute;
    top: 0;
}

.gift_ranking.card:hover img.hover_image {
    opacity: 1;
}

.gift_ranking.card p {
    text-align: left;
    line-height: 2;
    margin-top: -1rem;
}

.gift_ranking_container .prev_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 185px;
    left: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.gift_ranking_container .next_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 185px;
    right: clamp(1rem, 2.5%, 40px);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.gift_ranking_container .prev_button.slick-disabled,
.gift_ranking_container .next_button.slick-disabled {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card.rank::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36.54px;
    height: 59px;
    background-size: contain;
    background-repeat: no-repeat;
}

.card.rank.rank1::after {
    background-image: url("rank-tag-1.svg");
}

.card.rank.rank2::after {
    background-image: url("rank-tag-2.svg");
}

.card.rank.rank3::after {
    background-image: url("rank-tag-3.svg");
}

.card.rank.rank4::after {
    background-image: url("rank-tag-4.svg");
}

.card.rank.rank5::after {
    background-image: url("rank-tag-5.svg");
}

.gift_ranking .cart_in_button {
    width: 100%;
    height: 45px;
    color: #00ad9c;
    background-color: #ffffff;
    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;
    cursor: pointer;
}

.gift_ranking .cart_in_button::before {
    content: "";
    background-image: url("cart-in.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 1.1rem;
    transform: translateX(calc(-50% - 5em)) translateY(-50%);
    transition: background-image 0.3s ease;
}

@media (hover: hover) {
    .gift_ranking .cart_in_button:hover {
        color: #ffffff;
        background-color: #00ad9c;
    }

    .gift_ranking .cart_in_button:hover::before {
        background-image: url("cart-in-white.svg");
    }
}

/* ギフトサービス */

.gift_service_area {
    scroll-margin-top: 175px;
}

.gift_service_container {
    max-width: 1000px;
    padding: 50.34px 0 71.27px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.small_wrap {
    display: flex;
    gap: 20.11px;
    align-items: stretch;
}

.small_wrap .gift_service_type.simple_small {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gift_service_header {
    width: 100%;
    height: 46.65px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #dbc086;
    text-align: center;
    align-content: center;
    letter-spacing: 2px;
}

.small_wrap .gift_service_type.simple_small .service_content_wrap {
    flex: 1;
}

.service_content_wrap {
    border: 1px solid #e3e3e3;
    border-top: unset;
    padding: 27px;
}

.impressive_large .service_content_wrap {
    display: flex;
    justify-content: space-between;
    gap: 56.65px;
    position: relative;
}

.impressive_large .actual_element {
    width: 467.36px;
    flex-shrink: 1;
}

.impressive_large .pseudo_element {
    width: 420px;
    aspect-ratio: 420/260;
    flex-shrink: 1;
}

.simple_large .service_content_wrap {
    display: flex;
    justify-content: space-between;
    gap: 56.65px;
}

.content_text_wrap {
    text-align: justify;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
}

.gift_service_note {
    font-size: 0.75rem;
    font-weight: 300;
}

.accentuate_text {
    font-weight: 700;
}

.main_text + .gift_service_note,
.gift_service_note + .main_text,
.simple_small .content_text_wrap + .content_image {
    margin-top: 1.387em;
}

.impressive_large .content_image,
.simple_large .content_image {
    width: 420px;
    aspect-ratio: 420/260;
    object-fit: cover;
    border-radius: 6px;
}

.impressive_large .content_image {
    position: absolute;
    top: 27px;
    right: 27px;
}

.simple_small .content_image,
.content_sub_image {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.content_sub_image {
    margin-top: 1.387em;
}

/* ギフトカタログ */

.top_section.gift_catalog {
    padding: clamp(35px, 5%, 60px) 0 75px;
}

.gift_catalog {
    background-color: #f8f2e9;
    scroll-margin-top: 175px;
}

.gift_catalog_container {
    width: auto;
    max-width: 1072px;
    /*padding: 0 clamp(1rem, 2.5vw, 40px);*/
    margin: 0 auto;
}

.tab_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tab_list label {
    width: 24.8%;
    max-width: 265px;
    height: 56px;
    padding: 0.5em;
    flex-wrap: nowrap;
    color: #ffffff;
    background-color: #00ad9c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    box-sizing: border-box;
    white-space: nowrap;
}

.tab_list label.isOpen {
    color: #000000;
    background-color: #ffffff;
}

.tab_content {
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 29px 36px 43px;
    row-gap: 53px;
    column-gap: 19px;
}

.gift_catalog .h3 {
    text-align: left;
    height: 48px;
}

.gift_catalog.card {
    width: 235px;
    background-color: #ffffff;
}

.gift_catalog.card img {
    display: block;
    width: 235px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gift_catalog.card:hover img.default_image {
    opacity: 0;
    position: relative;
}

.gift_catalog.card img.hover_image {
    opacity: 0;
    position: absolute;
    top: 0;
}

.gift_catalog.card:hover img.hover_image {
    opacity: 1;
}

.gift_catalog.card p {
    text-align: left;
    line-height: 2;
    margin-top: -1rem;
}

.gift_catalog .cart_in_button {
    width: 100%;
    height: 45px;
    color: #00ad9c;
    background-color: #ffffff;
    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;
    cursor: pointer;
}

.gift_catalog .cart_in_button::before {
    content: "";
    background-image: url("cart-in.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.1rem;
    height: 1.1rem;
    transform: translateX(calc(-50% - 5em)) translateY(-50%);
    transition: background-image 0.3s ease;
}

@media (hover: hover) {
    .gift_catalog .cart_in_button:hover {
        color: #ffffff;
        background-color: #00ad9c;
    }

    .gift_catalog .cart_in_button:hover::before {
        background-image: url("cart-in-white.svg");
    }
}

/* 特集ページ幅調整用 --------------------------------------------------- */
#content {
width: unset!important;
    margin: 0 auto;
    text-align: left;
}

/* 商品展示非表示にする場合
.fs-c-productList {display:none!important} */