@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;
}

.header_adjustment {
    height: 145px;
}

.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
------------------ */

.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: 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("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;
}

/* Top main
------------------ */

.kv_area {
    height: 580px;/*560px*/
    background-color: #dedede;
    padding: 10px 0;
    position: relative;
}

.kv_list_pc {
    width: 100%;
}

.kv_list_pc .slick-slide {
    margin: 0 8px;
}

.kv_list_sp {
    display: none;
}

.kv {
    width: 1000px;
    height: 560px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.headline_pc {
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.headline_sp {
    display: none;
}

.prev_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: clamp(1rem, 2.5%, 40px);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.next_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 185px;
    right: clamp(1rem, 2.5%, 40px);
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 3;
}

.kv_area .next_button {
    top: 50%;
}

.pagination_diamond {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 33px;
}

.kv_area .pagination_diamond {
    position: absolute;
    left: 50%;
    bottom: 27px;
    transform: translateX(-50%);
}

.pagination_diamond {
    margin: 0;
    padding: 0;
    text-align: center;
}
.pagination_diamond li {
    display: inline-block;
    margin: 0;
}
.pagination_diamond li button {
    position: relative;
    text-indent: -9999px;
}

.pagination_diamond li button {
    background: none;
    border: none;
    outline: none;
    padding: 0 7px;
}

.pagination_diamond li button::before {
    content: "";
    width: 11.3px;
    height: 11.3px;
    background-image: url("diamond.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.pagination_diamond li.slick-active button::before {
    background-image: url("diamond-active.svg");
}

.cautions {
    max-width: 1170px;
    margin: 22px auto;
    display: flex;
    justify-content: space-between;
    gap: 13.94px;
}

.cautions a {
    flex: 1;
}

.caution {
    max-width: 411px;
    height: 56px;
    color: #00ad9c;
    background-color: #ffffff;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding-left: 53.3px;
    border: 1px solid #00ad9c;
    align-content: center;
    box-sizing: border-box;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.caution::before {
    content: "";
    background-image: url("info-mark.svg");
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

.caution::after {
    content: "";
    background-image: url("arrow-icon-green.svg");
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(calc(-50% + 0.25em)); /* 垂直方向に中央揃え */
    width: 1.5em; /* アイコンの幅 */
    height: 1.5em; /* アイコンの高さ */
    background-size: contain;
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
}

@media (hover: hover) {
    .cautions a:hover .caution {
        color: #ffffff;
        background-color: #00ad9c;
    }

    .cautions a:hover .caution::before {
        background-image: url("info-mark-white.svg");
    }

    .cautions a:hover .caution::after {
        background-image: url("arrow-icon-white.svg");
    }
}

.recommend_video {
    height: 157.26px;
    margin: 40px 0 4.7vw clamp(1rem, 2.5vw, 40px);
    background-image: url(video.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
}

/* ホットキーワード */
.hot_keywords {
    height: 104px;
    background-color: #f9f9f9;
}

.hot_keywords_wrap {
    height: 100%;
    margin: 40px 0 4.7vw clamp(1rem, 2.5vw, 40px);
    display: flex;
    align-items: center;
}

.hot_keywords .h2.mincho {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: unset;
    padding-right: 20.81px;
    border-right: 1px solid #d0d0d0;
    flex-shrink: 0;
}

.hot_keywords .h2_sub.english {
    margin-top: 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.6875rem;
    color: #dbc086;
    display: block;
    letter-spacing: 1px;
}

.hot_keywords_area {
    height: 100%;
    padding-left: 25px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    position: relative;
    flex-grow: 1;
}

.hot_keyword {
    height: 36px;
    color: #00ad9c;
    display: inline-block;
    text-align: center;
    align-content: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 1px solid #00ad9c;
    border-radius: 100px;
    padding: 0 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

@media (hover: hover) {
    .hot_keyword:hover {
        color: #ffffff;
        background-color: #00ad9c;
    }
}

.hot_keyword + .hot_keyword {
    margin-left: 8px;
}

.hot_keywords_area .prev_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    cursor: pointer;
}

.hot_keywords_area .next_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 34px;
    transform: translateY(-50%);
    cursor: pointer;
}

.hot_keywords_area .prev_button.slick-disabled,
.hot_keywords_area .next_button.slick-disabled {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 特集アイテム */

.top_section {
    padding: clamp(35px, 5%, 60px) 0 3%;
}

.featured_items {
    background-color: #f8f2e9;
}

.featured_items_container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 1.2rem;
    position: relative;
}

.featured_items .prev_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 185px;
    left: clamp(1rem, 2.5%, 40px);
    transform: translateY(-50%);
    cursor: pointer;
}

.featured_items .next_button {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 185px;
    right: clamp(1rem, 2.5%, 40px);
    transform: translateY(-50%);
    cursor: pointer;
}

.featured_items .pagination_diamond {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 33px;
}

.card {
    width: 296px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: opacity 0.3s ease;
}

.card img {
    display: block;
    width: 296px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
}

.card p {
    text-align: justify;
}

.card.new::after {
    content: "";
    background-image: url("new-mark.svg");
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (hover: hover) {
    .featured_items.card:hover {
        opacity: 0.6;
    }
}

.featured_items.card.new::after {
    width: 60px;
    height: 60px;
}

/* 新商品 */
.new_item_container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0.83rem;
    overflow: hidden;
    position: relative;
}

.new_item.card {
    width: 196px;
    gap: 0.9375rem;
}

.new_item.card img {
    width: 196px;
    aspect-ratio: 4/5;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.new_item.card:hover img.default_image {
    opacity: 0;
    position: relative;
}

.new_item.card img.hover_image {
    opacity: 0;
    position: absolute;
    top: 0;
}

.new_item.card:hover img.hover_image {
    opacity: 1;
}

.new_item .h3 {
    font-size: 0.9375rem;
    text-align: left;
    height: 50px;
}

.new_item.card p {
    text-align: left;
    font-size: 0.9375rem;
}

.new_item .prev_button,
.new_item .next_button,
.new_item .pagination_diamond {
    display: none;
}

/* おすすめ商品エリア */

.recommendation {
    background-color: #f8f2e9;
}

.recommendation_container {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 1.2rem;
    position: relative;
}

.recommendation .h3 {
    text-align: left;
    height: 48px;
}

.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;
}

.recommendation.card:hover img.hover_image {
    opacity: 1;
}

.recommendation.card p {
    text-align: left;
    line-height: 2;
    margin-top: -1rem;
}

/* ギャラリー */
.h2_instagram {
    display: block;
    margin: 0 auto;
    width: 31px;
    aspect-ratio: 1/1;
    margin-bottom: 12.72px;
}

.gallery_container {
    margin: 0 clamp(1rem, 2.5vw, 40px);
}

.gallery-collection {
    background-image: url(gallery_1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    width: 100%;
    height: 362.56px;
    margin-bottom: 35.78px;
}

.customer-reviews {
    background-image: url(gallery_2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    width: 100%;
    height: 320.31px;
}

.top_section.information {
    border-top: 0.5px solid #cacaca;
}

.information_container {
    max-width: 1000px;
    margin: 0 auto;
}

.information_item {
    height: 63px;
    color: #8f8f8f;
    font-size: 0.9375rem;
    padding-left: 2.6rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
}

.information_item + .information_item {
    border-top: 0.5px solid #cacaca;
}

.information_item a {
    color: #222222;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 0.5px;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .information_item a:hover {
        opacity: 0.6;
    }
}

.site_info {
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 3%;
}

.senbikiya_container_pc,
.senbikiya_container_sp {
    display: flex;
    position: relative;
}

.senbikiya_container_pc img,
.senbikiya_container_sp img {
    width: 50%;
    display: block;
    object-fit: contain;
}

.senbikiya_container_sp {
    display: none;
}

.more_overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.14vw;
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateX(50%) translateY(-50%);
}

.more_overlay img {
    width: 15vw;
}

.more_overlay p {
    color: #ffffff;
    font-size: 1.125rem;
    text-align: center;
    letter-spacing: 6px;
    line-height: 1.94;
}

.senbikiya_more_area .more_button_container {
    margin-top: unset;
}

.senbikiya_more_area .more_button {
    color: #ffffff;
    background-color: unset;
    border: 1px solid #ffffff;
}

.site_links {
    max-width: 1260px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 3% auto 2%;
}
.site_link_item a {
    display: block;
    transition: opacity 0.3s ease;
}

@media (hover: hover) {
    .site_link_item a:hover {
        opacity: 0.6;
    }
}

.site_link_item img {
    width: auto;
    height: 110px;
    object-fit: cover;
}
