@charset "UTF-8";

/*============================
　css ハック
============================*/
html {
    -webkit-text-size-adjust: 100%;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
    font-weight: 400;
    position: relative;
    z-index: 1;
}

* {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-decoration: none;
    box-sizing: border-box;
}

img {
    height: auto;
    max-width: 100%;
    width: auto;
}

a {
    text-decoration: none;
}

a:hover {
    /* opacity: .6; */
    transition: 0.3s;
    filter: brightness(120%);
}

.look_pc {
    display: block;
}

.look_sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .look_pc {
        display: none;
    }

    .look_sp {
        display: block;
    }

    _::-webkit-full-page-media,
    _:future,
    :root input,
    _::-webkit-full-page-media,
    _:future,
    :root select,
    _::-webkit-full-page-media,
    _:future,
    :root textarea {
        color: initial !important;
        font-size: initial !important;
        /* ↑ iPhone safari の変なスタイルを上書きで無効化 */
    }
}

@media (min-width: 767px) {
    .sp-tel>a[href*="tel:"] {
        cursor: default;
        pointer-events: none;
        text-decoration: none;
    }
}

@media (max-width: 767px) {
    .sp-tel>a[href*="tel:"] {
        cursor: pointer;
        pointer-events: auto;
        text-decoration: underline;
    }
}

/*============================
　グローバルメニュー
============================*/

/* 基本要素 */
body>header {
    position: relative;
    z-index: 155;
    font-family: "Shippori Mincho", serif;
}

/* トリガーエリア */
.trigger-new_area.check_on {
    height: 100vh;
}

/* outer_inner */
.outer_inner {
    position: relative;
    display: block;
    z-index: 115;
    background-color: var(--contents_color_sub01);
    transition: .3s;
}

body.home .outer_inner.topPosition {
    background-color: rgba(255, 255, 255, 0);
    transition: .3s;
}

body.home .outer_inner.topPosition.check_on {
    background-color: var(--contents_color_sub01);
    transition: .3s;
}

/* メニュー */
.menu-outer {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 200;
}

.menu-outer .menu-box {
    display: grid;
    color: var(--contents_color_font02);
    width: 100%;
    grid-template-columns: auto 1fr auto;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    justify-items: stretch;
    align-content: center;
}

.menu-outer .menu-box .logo {
    display: flex;
    grid-template-columns: 1fr;
    border-right: 2px solid #fff;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    width: 260px;
    justify-content: center;
}

.menu-outer .menu-box .logo img {
    width: 100%;
    max-width: 170px;
    min-width: 100px;
}

.menu-outer a:hover,
.menu-outer p:hover {
    text-decoration: underline;
    cursor: pointer;
}

.shopping-menu {
    order: 3;
    display: flex;
    align-items: center;
}

.shopping-menu>ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: flex-end;
    width: 100%;
}

.shopping-menu>ul li {
    display: flex;
    border-left: 2px solid #fff;
    height: 100%;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    text-align: center;
    max-height: 105px;
}

.shopping-menu>ul li a,
.shopping-menu>ul li p {
    padding-left: 8px;
    padding-right: 8px;
    line-height: 1;
    cursor: pointer;
    display: inline-block;
    font-size: clamp(.625rem, .305rem + .668vw, .875rem);
    white-space: nowrap;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
}

.shopping-menu>ul li a img,
.shopping-menu>ul li p img {
    width: 60%;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
    min-width: 18px;
}

.shopping-menu>ul li:last-of-type p::before {
    content: "\e5d2";
    font-family: "Material Icons";
    width: 60%;
    font-size: 18px;
    aspect-ratio: 1/1;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-menu>ul li:last-of-type p.flag_on::before {
    content: "\e5cd";
}

.site-menu {
    order: 2;
}

.site-menu .menu-entity {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.site-menu .menu-entity>ul {
    display: flex;
}

.site-menu .menu-entity .noPC {
    display: none;
}

.drop-down {
    border-top: 1px solid #fff;
    overflow: hidden;
    color: var(--contents_color_font02);
}

.drop-down .drop-down_box ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: min(59%, 1230px);
    margin: 30px auto;
}

.drop-down .drop-down_box ul ul {
    margin: 0;
    width: 100%;
}

.drop-down .drop-down_box>.menu-entity {
    overflow-y: auto;
}

.shopping-box_search {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 105px;
    padding-left: 40px;
    padding-right: 40px;
}

.shopping-box_search>label::before {
    content: "\e8b6";
    font-family: "Material Icons";
    font-size: 30px;
    margin-right: 10px;
    display: inline-block;
}

.shopping-box_search>input[type=search] {
    background-color: rgba(255, 255, 255, 0);
    border: none;
    padding: 6px 12px;
    width: 100%;
}

.shopping-box_search>input[type=search]::-moz-placeholder {
    color: #fff;
}

.shopping-box_search>input[type=search]::placeholder {
    color: #fff;
}

.shopping-box_search>input[type=search]:valid {
    background: rgba(255, 255, 255, 0);
}

.shopping-box_search>input[type=search]:invalid {
    background: #ffc8c8;
}

.shopping-box_search>input[type=search]::-webkit-search-cancel-button {
    appearance: none;
}

.shopping-box_search>.open-close {
    display: block;
    width: 20px;
    text-align: center;
    cursor: pointer;
}

.shopping-box_search .open-close:hover {
    text-decoration: none;
    opacity: .8;
}

.shopping-box_search .open-close::before {
    content: "\e5cd";
    font-family: "Material Icons";
    font-size: 30px;
}

/* メニュー表示の切り替え */
.menu-outer .menu-box .shopping-menu .shopping-menu_sp {
    display: none;
}

/* ターゲット要素 */
.target-new {
    overflow: hidden;
    opacity: 0;
    display: grid;
    grid-template-rows: 0fr;
    transition: all .5s ease;
}

.target-new.flag_on {
    opacity: 1;
    grid-template-rows: 1fr;
}

.target-new .inner {
    overflow: hidden;
}

/* メディアクエリ: 1190px以下 */
@media screen and (max-width:1190px) {
    .menu-outer {
        top: 0;
    }

    .drop-down .drop-down_box ul li {
        border-bottom: 1px solid #fff;
    }

    .drop-down .drop-down_box ul {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-outer .menu-box .shopping-menu .shopping-menu_sp {
        display: flex;
    }

    .menu-outer .menu-box {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 0;
    }

    .menu-outer .menu-box .shopping-menu {
        order: 2;
        margin-left: 2px;
    }

    .menu-outer .menu-box .menu-entity>ul {
        display: block;
    }

    .drop-down ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: initial;
        border-top: 1px solid #fff;
    }

    .drop-down ul li>p {
        display: block;
        cursor: pointer;
        padding: 15px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .drop-down ul li>p::after {
        line-height: 1;
        font-family: "Material Icons";
        content: "\e313";
        display: inline-block;
    }

    .drop-down ul li>p.open::after {
        transform: rotate(180deg);
    }

    .drop-down ul li>a {
        padding: 15px 10px;
        display: block;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .drop-down ul li>a::after {
        line-height: 1;
        font-family: "Material Icons";
        content: "\e5cc";
        display: inline-block;
    }

    .drop-down ul li ul {
        margin: 0;
        width: 100%;
    }

    .drop-down ul li ul li:last-of-type {
        border-bottom: none;
    }

    /* .drop-down ul li ul li:last-of-type a {
        padding: 5px 10px 5px 0;
      } */

    .shopping-box_search {
        min-height: 70px;
    }

    .shopping-box_search>input[type=search] {
        font-size: 16px;
        -webkit-appearance: none;
    }
}

/* メディアクエリ: 767px以下 */
@media screen and (max-width:767px) {
    .menu-outer .menu-box .logo {
        width: initial;
    }

    .menu-outer .menu-box .logo img {
        max-width: 100px;
    }

    .shopping-menu>ul li {
        max-height: 50px;
    }

    .shopping-menu>ul li a img,
    .shopping-menu>ul li p img {
        width: 80%;
    }

    .drop-down {
        border-bottom: none;
    }

    .drop-down .drop-down_box ul {
        width: 80%;
    }

    body>header {
        padding: 0;
    }

    .menu-outer .menu-box .shopping-menu {
        margin-left: -2px;
    }

    .shopping-menu>ul li:first-of-type p img {
        width: min(25px, 64%);
    }

    .shopping-menu>ul li:nth-of-type(2) a img {
        width: min(25px, 81%);
    }

    .shopping-menu>ul li:nth-of-type(3) a img {
        width: min(25px, 64%);
    }

    .drop-down_box.sp a:hover,
    .drop-down_box.sp p:hover,
    .shopping-menu a:hover,
    .shopping-menu p:hover {
        text-decoration: none;
    }
}

/* メディアクエリ: 400px以下 */
@media screen and (max-width:400px) {
    .menu-outer .menu-box {
        grid-template-columns: auto 1fr auto;
    }

    .menu-outer .menu-box .shopping-menu {
        justify-content: space-between;
        width: 100%;
    }

    .shopping-menu>ul {
        width: 100%;
    }

    .shopping-menu>ul li {
        min-height: 50px;
        width: 25%;
    }
}

/*  */
.menu-outer .pc {
    display: inline;
}

.menu-outer .sp {
    display: none;
}

@media screen and (max-width:1190px) {

    .menu-outer .pc {
        display: none;
    }

    .menu-outer .sp {
        display: inline;
    }
}

/*  */
@media screen and (min-width: 1190px) {
    .site-menu .menu-entity>ul {
        display: inline-flex;
        gap: 2px 35px;
        flex-wrap: wrap;
        padding-left: 25px;
        padding-right: 10px;
    }
}

.drop-down .target-new.flag_on {
    border-bottom: 1px solid #fff;
}

.drop-down .itemMenu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 10px;
    width: min(90%, 1230px);
    margin: 45px auto;
    font-size: 19px;
}

.drop-down .priceMenu ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: min(59%, 1230px);
    margin: 45px auto;
    font-size: 19px;
    gap: 15px 20px;
}

.drop-down .hamburgerMenu {
    overflow: hidden;
}

.drop-down .hamburgerMenu .hamburgerMenu_inner {
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.drop-down .hamburgerMenu .hamburgerMenu_inner::-webkit-scrollbar {
    display: none;
    /* スクロールバーを非表示 */
}

.drop-down .hamburgerMenu .hamburgerMenu_inner>div {
    height: calc(100vh - 45px);
    padding-top: 45px;
}

.drop-down .hamburgerMenu .hamburgerMenu_inner>div>ul {
    width: min(59%, 1230px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 45px;
}

.drop-down .hamburgerMenu ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
}

.drop-down .hamburgerMenu ul li ul {
    width: 100%;
    margin: auto;
}

.drop-down .searchMenu {}

/* sp アコーディオン */
.target-aco {
    display: none;
}

.trigger-aco {
    cursor: pointer;
}

.trigger-aco:hover {
    opacity: 0.8;
}

/*============================
　コンテンツ関連
============================*/
/* ===== フェイドイン ===== */
.fade_d {
    opacity: 0;
    transform: translate(0px, 60px);
    transition: all 1600ms;
    visibility: hidden;
}

.fade_u {
    opacity: 0;
    transform: translate(0px, -60px);
    transition: all 1600ms;
    visibility: hidden;
}

.fade_l {
    opacity: 0;
    transform: translate(60px, 0px);
    transition: all 1600ms;
    visibility: hidden;
}

.fade_r {
    opacity: 0;
    transform: translate(-60px, 0px);
    transition: all 1600ms;
    visibility: hidden;
}

.fade_in {
    opacity: 0;
    transform: translate(0px, 0px);
    transition: all 2000ms;
    visibility: hidden;
}

.fadeEnd {
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

/* コンテンツ量が少なくてもフッターが画面下部へ */
html,
body {
    height: 100%;
}

body>footer {
    position: sticky;
    top: 100vh;
}

/* / コンテンツ量が少なくてもフッターが画面下部へ */
/* site header */
body>header {
    position: relative;
    z-index: 155;
    font-family: "Shippori Mincho", serif;
}

body>header>.wrapper {
    margin: auto;
    overflow: initial;
    padding: 0;
}

/* site main */
body>main {
    z-index: 51;
    font-family: "Shippori Mincho", serif;
}

/* site footer */
body>footer {
    z-index: 151;
    font-family: "Noto Sans JP", sans-serif;
}

/* その他 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    /* ↑ tableのボーダーを被らせる設定 */
}

.js-tel a {
    color: #00f;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    body>header {
        padding: 0;
    }
}

/*============================
　トップページ
============================*/
body.topPage {
    background-color: #fefcf3;
}

/*  */
.box_slider {
    position: relative;
}

/*  */
main>header {
    margin-top: 20px;
}

/*============================
#js_pagetop
============================*/
.pagetop_posision {
    position: relative;
    /*margin-top: 55px;
  margin-bottom: -55px;*/
}

@media screen and (max-width: 767px) {
    .pagetop_posision {
        /*margin-top: 25px;
    margin-bottom: -25px;*/
    }
}

#js_pagetop {
    /*bottom: clamp(0.313rem, -3.181rem + 7.29vw, 1.875rem);*/
    bottom: 55px;
    right: clamp(0.313rem, -3.181rem + 7.29vw, 1.875rem);
    display: none;
    opacity: 0;
    position: fixed;
    transition: all 600ms;
    transition: opacity 600ms;
    z-index: 152;
}

@media screen and (max-width: 767px) {

    #js_pagetop {
        bottom: 15px
    }
}

#js_pagetop.fade {
    animation: fadeIn 0.4s ease-in 0s forwards;
    display: block;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        display: block;
        opacity: 1;
    }

    1% {
        display: none;
        opacity: 0;
    }

    100% {
        display: none;
        opacity: 0;
    }
}

#js_pagetop a {
    align-items: center;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background-color: var(--contents_color_default);
    opacity: 0.75;
    border-radius: 50%;
    display: flex;
    height: 50px;
    justify-content: center;
    text-align: center;
    width: 50px;
    z-index: 152;
}

#js_pagetop a:hover {
    opacity: 1;
}

#js_pagetop a>i {
    color: #fff;
    display: inline-block;
    font-size: inherit;
    /* font-size: 22px; */
    font-size: 14px;
    font-style: normal;
    /* margin-top: -3px; */
    margin-top: -1px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: auto;
}

#js_pagetop a>i::before {
    content: "▲";
}

@media screen and (max-width: 767px) {
    #js_pagetop a {
        height: 40px;
        opacity: 0.9;
        width: 40px;
    }

    #js_pagetop a>i {
        font-size: 20px;
    }
}

/*============================
 .clump_forrow
============================*/
.clump_forrow {
    margin-top: clamp(7.1875rem, 5.987rem + 2.504vw, 8.125rem);
    margin-bottom: clamp(7.1875rem, 5.987rem + 2.504vw, 8.125rem);
}

.clump_forrow header {
    line-height: 1;
}

.clump_forrow header::after {
    color: var(--contents_color_default);
    content: "\e313";
    font-family: "Material Icons";
    font-size: 30px;
    line-height: 1;
}

.clump_forrow header h2 {
    color: var(--contents_color_default);
    font-family: "Antic Slab", serif;
    font-size: 23px;
    color: #000;
    font-size: 18px;
    letter-spacing: 0.02em;
    font-weight: 600;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .clump_forrow header h2 {
        font-size: 23px;
    }
}

.clump_forrow a {
    display: inline-block;
    margin: auto;
}

.clump_forrow a:hover {
    text-decoration: underline;
}

.clump_forrow a img {
    margin: auto;
    margin-top: 5px;
    margin-bottom: 15px;
    width: clamp(3.75rem, 2.149rem + 3.339vw, 5rem);
}

.clump_forrow a p {
    font-size: clamp(0.875rem, 0.795rem + 0.167vw, 0.9375rem);
    line-height: 1.5;
    margin-top: 10px;
    color: #3D1E0A;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
}

/*============================
 .clump_guide
============================*/
.clump_guide {
    overflow: hidden;
    --guide-column_wide: 300px;
    background-color: #F8F7F6;
    padding-bottom: clamp(5.625rem, 3.224rem + 5.008vw, 7.5rem);
    padding-top: clamp(5.625rem, 0.823rem + 10.017vw, 9.375rem);
}

.clump_guide .clump_guide_title {
    font-size: clamp(1rem, 0.68rem + 0.668vw, 1.25rem);
    margin-bottom: 25px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.clump_guide .clump_guide_title h2 {
    color: var(--contents_color_sub01);
    font-family: "Antic Slab", serif;
    font-size: clamp(2.5rem, 3.78rem - 2.671vw, 1.5rem);
    margin-bottom: 10px;
    font-weight: 600;
}

.clump_guide .clump_guide_title h2::after {
    margin: 6px auto 10px;
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--contents_color_sub01);
}

.clump_guide .clump_guide_column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--guide-column_wide), 1fr));
    gap: 22px;
}

.clump_guide .clump_guide_column section {
    text-align: left;
}

.clump_guide .clump_guide_column section>header {
    border-bottom: 1px solid var(--contents_color_default);
    font-size: clamp(1.0625rem, 0.982rem + 0.167vw, 1.125rem);
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 30px;
    padding-bottom: 10px;
}

.clump_guide .clump_guide_column section>header h3 {
    color: var(--contents_color_default);
    font-family: "Antic Slab", serif;
    font-size: clamp(0.9375rem, 0.857rem + 0.167vw, 1rem);
}

.clump_guide .clump_guide_column section>header p {
    font-family: "Shippori Mincho", serif;
    font-size: clamp(1.0625rem, 0.982rem + 0.167vw, 1.125rem);
    font-weight: 400;
}

.clump_guide .clump_guide_column section p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(0.875rem, 0.795rem + 0.167vw, 0.9375rem);
    line-height: 28px;
}

.clump_guide .clump_guide_column section img.cardlogo {
    margin-bottom: 75px;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .clump_guide .clump_guide_column {
        grid-template-columns: 1fr;
    }
}

/*============================
 body>footer
============================*/
/*  */
body>footer {
    background-color: var(--contents_color_default);
}

body>footer>img {
    height: auto;
    width: 100%;
}

body>footer .footer-info {
    margin-top: 50px;
    margin-bottom: 20px;
}

body>footer .footer-info>img {
    max-width: 300px;
}

body>footer .footer-info_column {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 330px 1fr;
    padding: 30px 0;
}

body>footer .footer-info_column .column-in:nth-of-type(1) {
    text-align: left;
}

body>footer .footer-info_column .column-in .accordion_sp {
    text-align: left;
}

body>footer .footer-info_column .column-in .accordion_sp ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}

body>footer .footer-info_column .column-in .accordion_sp ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

body>footer .footer-info_column .column-in .accordion_sp ul li a:hover {
    text-decoration: underline;
}

body>footer .footer-info_column .column-in .accordion_sp .toggle {
    display: none;
}

body>footer .footer-info_column .column-in .accordion_sp label {
    color: #fff;
    font-size: clamp(1rem, 0.92rem + 0.167vw, 1.0625rem);
    margin-bottom: 20px;
    pointer-events: none;
}

body>footer .footer-info_box {
    display: inline-block;
}

body>footer .footer-info_box .tel {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-family: "Noto Sans JP", serif;
    margin-bottom: 20px;
}

body>footer .footer-info_box .tel::before {
    aspect-ratio: 1/1;
    background-image: url(../image/icon_tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    margin-right: 15px;
    width: 30px;
    margin-bottom: 20px;
}

body>footer .footer-info_box .tel p {
    display: inline-grid;
    gap: 0;
    justify-items: start;
}

body>footer .footer-info_box .tel p a {
    font-size: 30px;
    line-height: 1.2;
}

body>footer .footer-info_box .button {
    display: inline-block;
    width: auto;
}

body>footer .footer-info_box .button a {
    position: relative;
    width: 250px;
    align-items: center;
    background-color: #fff;
    border: 1px solid #d6b88a;
    display: inline-flex;
    font-size: clamp(0.8125rem, 0.572rem + 0.501vw, 1rem);
    height: 55px;
    justify-content: center;
    padding: 10px;
    font-weight: 400;
}

body>footer .footer-info_box .button a::before {
    aspect-ratio: 1/1;
    background-image: url(../image/icon_mail.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: block;
    margin-right: 8px;
    width: 20px;
}

body>footer .footer-info_box .button a::after {
    color: #d6b88a;
    content: "\e5cc";
    font-family: "Material Icons";
    font-size: 140%;
    position: absolute;
    right: 0;
    margin-right: 10px;
}

body>footer>aside {
    background-color: #f3eadc;
    padding: 10px 0;
}

body>footer>aside ul {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    margin: 10px auto;
}

body>footer>aside small {
    display: block;
    font-family: "Noto Sans JP", serif;
    font-size: 12px;
}

@media screen and (min-width: 767px) {
    body>footer .footer-info_column .column-in:nth-of-type(1) {
        border-right: 2px solid #ccc;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul {
        margin: 0 0 15px 0;
        gap: 0 20px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul li::after {
        color: #fff;
        content: "/";
        display: inline-block;
        margin-left: 20px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul li:nth-last-of-type(1)::after {
        content: "";
    }

    body>footer .footer-info_column .column-in .accordion_sp ul li.cuffs::after {
        content: "";
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s {
        margin: 25px 0 0;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s li::after {
        display: none;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s li a {
        font-size: 12px;
    }

    body>footer .footer-info_box .tel a[href*="tel:"] {
        cursor: default;
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    body>footer .footer-info>img {
        margin-left: auto;
        margin-right: auto;
    }

    body>footer .footer-info_column {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body>footer .footer-info_column .column-in>img {
        margin: auto;
        max-width: 256px;
        width: 100%;
    }

    body>footer .footer-info_column .column-in:nth-of-type(1) {
        text-align: center;
    }

    body>footer .footer-info_column .column-in .accordion_sp {
        border-bottom: 2px solid #fff;
        margin-left: -20px;
        margin-right: -20px;
        margin-top: 0;
        text-align: center;
    }

    body>footer .footer-info_column .column-in .accordion_sp:nth-of-type(1) {
        border-top: 2px solid #fff;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul {
        background-color: rgba(255, 255, 255, 0.3019607843);
        flex-direction: column;
        flex-wrap: initial;
        margin-top: 0;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul li {
        width: 100%;
    }

    body>footer .footer-info_column .column-in .accordion_sp label {
        cursor: pointer;
        pointer-events: initial;
        position: relative;
        box-sizing: content-box;
        cursor: pointer;
        display: block;
        margin-bottom: 0;
        padding: 20px 10px;
        text-align: left;
    }

    body>footer .footer-info_column .column-in .accordion_sp label::after {
        content: "\e313";
        display: inline-block;
        font-family: "Material Icons";
        font-size: 30px;
        font-weight: 100;
        line-height: 1;
        position: absolute;
        right: 0;
        top: calc(50% - 15px);
    }

    body>footer .footer-info_column .column-in .accordion_sp a {
        box-sizing: content-box;
        cursor: pointer;
        display: block;
        margin-bottom: 0;
        padding: 20px 10px;
        text-align: left;
    }

    body>footer .footer-info_column .column-in .accordion_sp .toggle+label+div {
        max-height: 0;
        overflow: hidden;
        transition: all 0.6s ease;
    }

    body>footer .footer-info_column .column-in .accordion_sp .toggle:checked+label+div {
        max-height: 500px;
        transition: all 1s ease-in;
    }

    body>footer .footer-info_column .column-in .accordion_sp .toggle:checked+label::after {
        transform: rotate(-180deg);
    }

    body>footer>aside ul {
        margin-right: 0;
    }
}

/*============================
　slick ハック
============================*/
.js_slider {
    display: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

/* .js_slider.slick-initialized {
  display: block;
} */

.js_slider.slick-initialized .slick-slide {
    z-index: 99 !important;
}

.slick-slide {
    margin: 0;
}

.slick-slide img {
    height: auto;
    max-width: 100%;
    width: 100%;
}

.slick-slide>div>li {
    float: left;
}

.slick-prev::before,
.slick-next::before {
    color: black;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    bottom: 0;
    margin-bottom: 100px;
    position: absolute;
}

.slick-dots li button::before {
    font-size: 18px;
}

@media screen and (max-width: 520px) {
    .slick-dots li {
        margin: 0 1px;
    }

    .slick-dots li button::before {
        font-size: 14px;
    }
}

.slider_up {
    width: 100%;
    aspect-ratio: 1/0.3848;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .slider_up {
        aspect-ratio: 1/1.6795;
    }
}

/*  */

.inquiry_posision_style {
    position: fixed;
    bottom: 0;
    z-index: 199;
    width: 100%;
    text-align: right;
    padding-right: 20px;
    pointer-events: none;
}

#js_inquiry_style {
    /* transition: all 1s; */
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 130px;
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    #js_inquiry_style {
        margin-bottom: 0;
        justify-content: flex-start;
        margin-left: 10px;
        margin-right: 20px;
    }
}

.js_inquiry_style_inner {
    display: inline-flex;
    position: relative;
    pointer-events: auto;
}

@media screen and (max-width: 767px) {
    .js_inquiry_style_inner {
        max-width: 50vw;
    }
}

#js_inquiry_style .inquiry-btn-check_tri::before {
    background-color: #fff;
    color: #b2242d;
    content: "\e5cd";
    display: inline-block;
    font-family: "Material Icons";
    font-weight: 600;
    line-height: 1;
    margin-top: 12px;
    margin-right: 5px;
    padding: 2px;
}

#js_inquiry_style.fade {
    animation: fadeIn 0.4s ease-in 0s forwards;
    display: block;
    opacity: 1;
}

#js_inquiry_style #inquiry-btn-check {
    display: none;
}

#js_inquiry_style #inquiry-btn-check~.inquiry-btn,
#js_inquiry_style #inquiry-btn-check~.inquiry-btn-check_tri {
    display: inline-block;
    transition: all 600ms;
}

#js_inquiry_style #inquiry-btn-check:checked~.inquiry-btn,
#js_inquiry_style #inquiry-btn-check:checked~.inquiry-btn-check_tri {
    display: none;
}

#js_inquiry_style .inquiry-btn-check_tri {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 101;
}

#js_inquiry_style .inquiry-btn {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 99;
}

#js_inquiry_style picture img {
    aspect-ratio: 1/0.4667;
}

/* 須見追記＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ヘッダーメニュー */
.target.open,
.target_hamburger.open {
    padding: 1.5rem 0;
}

.drop-down .drop-down_box.pc .target.act01 ul {
    gap: 15px 10px;
    width: min(90%, 1230px);
}

.drop-down .drop-down_box.pc ul {
    gap: 15px 20px;
}

.drop-down .drop-down_box.pc ul li {
    font-size: 19px;
}

.shopping-box_search>input[type=search] {
    font-size: 19px;
}

.shopping-box_search>input[type=search]:focus-visible {
    outline: none;
}

.shopping-box_search>.open-close:hover {
    text-decoration: none;
    opacity: 0.7;
}

:where(:focus-visible) {
    box-shadow: none;
}

@media screen and (max-width: 1190px) {
    .shopping-box_search {
        min-height: 70px;
    }

    .shopping-box_search>input[type=search] {
        font-size: 16px;
        -webkit-appearance: none;
    }
}

@media screen and (max-width: 767px) {
    .menu-outer>.inner .shopping-menu {
        margin-left: -2px;
    }

    /* アイコン */
    .shopping-menu>ul li:nth-of-type(1) p img {
        width: min(25px, 64%);
    }

    .shopping-menu>ul li:nth-of-type(2) a img {
        width: min(25px, 81%);
    }

    .shopping-menu>ul li:nth-of-type(3) a img {
        width: min(25px, 64%);
    }

    /* ホバー装飾解除 */
    .shopping-menu a:hover,
    .shopping-menu p:hover,
    .drop-down_box.sp a:hover,
    .drop-down_box.sp p:hover {
        text-decoration: none;
    }
}

/* フッター */
body>footer .footer-info_column .column-in .accordion_sp label {
    font-family: "Shippori Mincho", serif;
    padding: 20px;
}

body>footer .footer-info_column .column-in .accordion_sp label::after {
    right: 28px;
}

.clump_guide .clump_guide_column section p.icon_holiday {
    font-size: 15px;
}

body>footer>aside small {
    font-weight: 300;
    letter-spacing: 0.08em;
}

.cardlogo {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cardlogo>img {
    width: 100px;
}

@media screen and (max-width: 767px) {
    #js_pagetop {
        /*bottom: clamp(0.313rem, -3.181rem + 7.29vw, 1.875rem);*/
    }

    /* =========== /max-width:767px =========== */
}

@media screen and (max-width: 767px) {
    body>footer .footer-info_column {
        margin-bottom: -1px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul {
        background: var(--contents_color_sub01);
        border: none;
    }

    /* サブメニュー */
    body>footer .footer-info {
        margin-bottom: 0;
    }

    body>footer .footer-info_column {
        padding-bottom: 0;
    }

    body>footer .footer-info_column .column-in .accordion_sp:has(ul.font_s) {
        border-bottom: none;
    }

    body>footer .footer-info_column .column-in .accordion_sp>div:not(:has(ul.font_s)) {
        padding: 1.5rem 1rem;
    }

    body>footer .footer-info_column .column-in .accordion_sp>div:has(ul.font_s) {
        padding: 1.5rem 1rem 1rem;
        background: #f3eadc;
    }

    body>footer .footer-info_column .column-in .accordion_sp:nth-of-type(1) {
        border-bottom: none;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s {
        background: #f3eadc;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 40px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul li a,
    body>footer .footer-info_column .column-in .accordion_sp ul.font_s li a {
        padding: 20px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s li a {
        font-size: 14px;
        color: #000;
        padding: 6px;
    }

    body>footer .footer-info_column .column-in .accordion_sp ul.font_s li {
        width: -moz-fit-content;
        width: fit-content;
    }

    body>footer>aside {
        padding: 10px 0 2em;
    }

    body>footer>aside small {
        font-size: 11px;
    }

    /* =========== /max-width:767px =========== */
}

@media screen and (max-width: 767px) and (min-width: 565px) {
    body>footer .footer-info_box .button a {
        margin: 0 0 0 2vw;
    }
}

@media screen and (max-width: 400px) {
    .menu-outer>.inner {
        grid-template-columns: auto 1fr auto;
    }

    .menu-outer>.inner .shopping-menu {
        justify-content: space-between;
        width: 100%;
    }

    .shopping-menu>ul {
        width: 100%;
    }

    .shopping-menu>ul li {
        /* aspect-ratio: 1 / 0.86; */
        min-height: 50px;
        width: 25%;
    }
}

/* 須見追記＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */