@charset "UTF-8";

/* --------------------------------------------------
PCヘッダーここから
---------------------------------------------------- */
img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    width: max(100vw, 1200px);
    margin: 0 calc(50% - max(50vw, 600px));
}

.site-header a {
    display: block;
    text-decoration: none;
}

.site-header a:hover {
    transition: opacity 0.2s ease;
    opacity: 0.5;
    color: #1a1a1a;
    text-decoration: none;
}

/* header共通ここまで */

.site-header .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 66px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    z-index: 9999;
    background: #fff;
    box-sizing: border-box;
}

.site-header .logo {
    width: 86px;
    width: clamp(0px, calc(100vw * 80 / 1920), 80px);
}

/* ヘッダー帯ここから */
.site-header .header-promo_bar {
    background: #1a1a1a;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header .promo_bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.site-header .header-promo_bar a:hover {
    opacity: 0.9;
}

.site-header .header-promo_bar p {
    color: #fff;
}

.site-header .header-promo_bar p:after {
        content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: 15px;
    vertical-align: middle;
    position: relative;
    transition: transform 0.2s ease;
}

.site-header .header-promo_bar p:hover:after {
    transform: translateX(6px) rotate(45deg);
}

.site-header .promo-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.site-header .promo-close::before,
.site-header .promo-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.site-header .promo-close::before {
    transform: translateY(-50%) rotate(45deg);
}

.site-header .promo-close::after {
    transform: translateY(-50%) rotate(-45deg);
}

.site-header .header-promo_bar.is-hidden {
    display: none !important;
}

/* ヘッダー帯ここまで */

/* ナビゲーション ここから*/
.site-header .global-nav>ul {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-left: 30px;
    font-size: 14px;
}

.site-header .global-nav>ul a {
    font-size: 13px;
}

.site-header .nav-item {
    position: relative;
    height: 66px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-header .nav-item {
    position: relative;
}


/* ▼リンク文言中央ぞろえ */
.site-header .nav-item a {
    height: 100%;
    display: flex;
    align-items: center;
}

/* ▲リンク文言中央ぞろえ */


/* ▼ナビリンク下線 */
.site-header .nav-item::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 18px;
    height: 1px;
    background: #929292;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s cubic-bezier(0.5, 0.5, 0, 0.8);
}

.site-header .nav-item:hover::after {
    transform: scaleX(1);
}

/* ▲ナビリンク下線 */

/* ▼ナビリンクホバーでドロワーメニュー展開 */
.site-header .mega-menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.site-header .nav-item.is-open .mega-menu {
    opacity: 1;
    pointer-events: auto;
}

.site-header .mega-full {
    position: fixed;
    top: 100px;
    left: 0;
    width: max(100vw, 1200px);
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
    padding: 40px 0 60px;
}

.site-header .mega-small {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 35px 27px;
    width: 263px;
}

/* ▲ナビリンクホバーでドロワーメニュー展開 */

/* ▼ドロワーメニュー内 */
.site-header .mega-menu a:hover {
    transition: opacity 0.1s ease;
    opacity: 0.5;
}

.site-header .mega-small>ul li {
    margin-bottom: 20px;
    position: relative;
    padding-right: 10px;
}

.site-header .mega-small>ul li:last-of-type {
    margin-bottom: 0;
}

.site-header .mega-small>ul li:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 4px;
    height: 4px;
    border-top: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
    transform: translateY(-50%) rotate(45deg);
}

.site-header .mega-small>ul li:hover:after {
    transition: opacity 0.1s ease;
    opacity: 0.5;
}

/* ▼アイテムドロワー固有 */
/* 各タイトルここから */
.site-header .section-title {
    font-weight: 500;
    letter-spacing: 0.25rem;
    font-size: 25px !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.site-header .section-title span {
    font-size: 15px;
    margin-left: 20px;
}


/* ■category ヘッダーナビここから
【/smaf/php/category-nav_pc.php】 */
.site-header .category-nav_pc_php {
    width: 57vw;
    margin: 0 auto;
}

.site-header .category-list {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
}

.site-header .category-list::-webkit-scrollbar {
    display: none;
}

.site-header .category-item.sale_coupon p.logo {
    background-color: #FAF8F6;
    width: 105px;
    aspect-ratio: 1 / 1.1;
    border-radius: 5px;
    font-size: 55px;
    font-weight: 400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .category-item {
    scroll-snap-align: start;
    position: relative;
}

.site-header .category-item a {
    display: block;
}

.site-header .category-item img {
    background: #FAF8F6;
    aspect-ratio: 1 / 1.1;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.site-header .category-item p {
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
}

/* ▲アイテムドロワー固有 */

/* ▼おすすめコンテンツ固有 */
.site-header .recommend .mega-small>ul li:first-of-type a {
    color: #55A5A3;
}

.site-header .recommend .mega-small>ul li:first-of-type:after {
    border-top: 1px solid #55A5A3;
    border-right: 1px solid #55A5A3;
}

/* ▲おすすめコンテンツ固有 */

/* ▼サポート固有 */
.site-header .mail-btn {
    font-size: 12px;
    background: #a6a6a6;
    text-align: center;
    padding: 9px 0;
    width: 226px;
}

.site-header .mega-small>ul li.contact:after {
    content: none;
}

/* ▲サポート固有 */

/* ▼法人窓口固有 */
.site-header .business-btn {
    color: #666;
    border: 1px solid #666;
    width: auto;
    padding: 7px 15px;
    font-size: 13px;
}

.site-header .nav-item.business::after {
    content: none;
}

/* ▲法人窓口固有 */

.site-header .global-nav.is-lock .nav-item:not(.is-open) {
    pointer-events: none;
}

/* ナビゲーション ここまで*/

/* header-iconsここから */
.search_navicons {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* ▼検索ボックス */
/* Chrome / Safari / Edge */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    display: none;
}

/* Chrome / Safari */
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


.site-header .search_area-container input {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding-right: 35px;
}

.site-header .search_box {
    position: relative;
    width: 225px;
}

.site-header .search_box:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -4px;
    left: -10px;
    right: -10px;
    height: 1px;
    background: #1a1a1a;
}

.site-header .search-icon {
    position: absolute;
    width: 15px;
    right: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

/* ▲検索ボックス */

/* ▼ナビアイコン */
.site-header .nav-icon {
    width: 21px;
}

.icons_area-container>ul {
    display: flex;
    gap: 20px;
}

/* ▲ナビアイコン */


/* 画面幅が 1800px 以下、ナビ調整 */
@media (min-width: 530px) and (max-width: 1800px) {

    /* ▼グローバルナビ */
    .site-header .header-inner {
        padding: 0;
    }

    .site-header .global-nav>ul {
        gap: 2.2vw;
        margin-left: 2vw;
        font-size: clamp(10px, 2.8vw, 12px);
    }

    .search_navicons {
        gap: 2vw;
    }

    .icons_area-container>ul {
        gap: 1.2vw;
    }

    .site-header .search_box {
        width: 11vw;
        min-width: clamp(148px, 41vw, 170px);
    }

    .site-header .business-btn {
        padding: 0.4vw 1vw;
    }

    .site-header .nav-icon {
        width: clamp(18px, 4.9vw, 20px);
    }

    /* ▲グローバルナビ */

    /* ▼カテゴリ　ドロワー */
    .site-header .mega-full {
        /* max-height: 75vh; */
        padding: 2rem 0 3rem;
    }

    .site-header .category-nav_pc_php {
        width: 60%;
    }

    .site-header .section-title {
        margin-bottom: 2rem;
        font-size: clamp(23px, 6.4vw, 27px);
    }

    .site-header .category-list {
        gap: 2rem 1.5rem;
    }

    .site-header .category-item p {
        font-size: clamp(10px, 2.8vw, 11px);
    }

    /* ▲カテゴリ　ドロワー */
}

@media (min-width: 530px) and (max-width: 1300px) {
    .site-header .header-inner {
        padding: 0 3vw;
    }

    .site-header .header-promo_bar {
        padding-right: 3vw;
        padding-left: 3vw;
    }
}

/* ▼529px以下は等倍で表示 */
@media (max-width: 529px) {
    .site-header .logo {
        width: 86px;
    }
}

/* header-iconsここまで */

/* PC画面の高さが750px以下の時、ヘッダー周りをスリム化 */
@media screen and (min-width: 768px) and (max-height: 750px) {
  
  /* 1. 帯（プロモバー）を細くする */
  .site-header .header-promo_bar {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .site-header .header-promo_bar p {
    font-size: 11px !important;
  }

  /* 2. ヘッダー本体を低くする */
  .site-header .header-inner {
    height: 50px !important;
  }

  .site-header .nav-item {
    height: 50px;
  }
  
  .site-header .logo {
    width: 60px !important;
  }
}


/* --------------------------------------------------
PCヘッダーここまで
---------------------------------------------------- */

/* --------------------------------------------------
SPヘッダーここから
---------------------------------------------------- */
@media screen and (max-width: 767px) {
    svg {
        display: block;
        max-width: 100%;
        height: auto;
    }

    #sp_hum_nav {
        position: sticky;
        top: 0;
        z-index: 99999;
        font-family: 'Noto Sans JP', sans-serif;
        transition: all 0.3s;
        /* overflow-x: hidden; */
    }

    #sp_hum_nav.hide {
        transform: translateY(-100%);
    }

    /* メニュー開いたらメインコンテンツ固定 */
    .fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }


    /* 商品・カテゴリページ用 */
    #main-content {
        margin-top: 0;
    }


    #hum {
        background: #FFF;
        /* box-shadow: 0 4px 8px -3px rgba(17, 17, 17, .06); */
        width: 100%;
        /* margin: 0 0 10px; */
        padding: 0;
        line-height: 1.5;
        color: #666;
        margin-bottom: 2rem !important;

        z-index: 99999;
        /* border-bottom: 1px solid #EEE; */
    }


    /* ヘッダー全体 */
    .hum a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        text-decoration: none !important;
    }

    .hum-wrapper {
        /* padding-bottom: 3vw; */
        position: relative;
        z-index: 1;
        background-color: #fff;
    }

    .hum-container {
        display: flex;
        justify-content: flex-end;
        background: #FFF;
        width: 100%;
        height: clamp(65px, 17.9vw, 74px);
        margin: 0 auto;
        padding: 0;
        align-items: center;
        position: relative;
        z-index: 2;
        background-color: #fff;
    }

    .hum-site a img,
    .hum-nav ul li a img,
    .sp-hum-sns img {
        width: 100%;
        margin: 0;
        padding: 0;
        /* display: block; */
    }

    /* 帯 */
    .hum-free {
        transition: 0.3s;
        position: relative;
        z-index: 1;
        background: #222;
        height: clamp(23px, 6.4vw, 27px);
    }

    .hum-free p {
        font-size: clamp(9px, 2.6vw, 11px);
        font-weight: normal;
        font-family: 'Noto Sans JP', sans-serif;
        color: #1a1a1a;
        line-height: 1rem;
        letter-spacing: 0.05rem;
        text-align: center;
        height: auto;
        border: none;
        padding: 8px;
        margin: 0;
        background: #222;
    }


    /* サイト名 */
    .hum-site {
        margin: 0 auto;
    }

    .hum-site a img {
        width: clamp(68px, 19vw, 79px);
        vertical-align: middle;
        max-width: initial;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* ロゴ　スクロール切り替えここから */
    /* .hum-site img {
    display: block;
    transition: opacity .1s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scrolled {
    opacity: 0;
}

.hum-wrapper.icons-scrolled .hum-container {
    height: clamp(51px, 14.1vw, 58px);
}

.hum-wrapper.icons-scrolled .logo-default {
    opacity: 0;
}

.hum-wrapper.icons-scrolled .logo-scrolled {
    opacity: 1;
} */
    /* ロゴ　スクロール切り替えここまで */

    /* アイコン */

    .hum-nav {
        margin-bottom: 0 !important;
        margin-right: 0%;
    }

    .hum-nav ul {
        list-style: none;
        display: flex;
    }



    .hum-nav ul li {
        list-style: none;
        margin-right: 4.6vw;
        padding: 0;
        margin-top: 0.2vw;
    }

    .hum-nav ul li.cart_icn {
        margin-left: -0.2vw;
    }

    .hum-nav ul li:last-child {
        list-style: none;
        margin-right: 0px;
    }

    .hum-nav ul li a {
        display: flex;
        width: 4vw;
        height: 4vw;
    }

    @media screen and (max-width: 500px) {
        .hum-nav ul li a {
            width: 5.3vw;
            height: 5.3vw;
        }
    }


    /* 2022.0822 TOPのみ訴求追加*/
    .hum-site-forte {
        width: 100vw;
        position: relative;
        display: none;
        padding-bottom: 0.48vw;
    }

    .hum-site-forte img {
        display: block;
        width: 96%;
        margin: 0 auto 0.2%;
    }

    .hum-site-forte::before {
        content: '';
        border-bottom: 0.5px solid #444;
        width: 89.5vw;
        transform: translate(-50%, -50%);
        position: absolute;
        left: 50%;

    }

    /* ハンバーガーメニュー */

    #hum-drawer {
        position: relative;
        margin: 0.0vw 6.4vw 0 5.5vw;
    }

    /*チェックボックス等は非表示に*/
    .hum-unshown {
        display: none;
        text-align: left;
    }

    /*アイコンのスペース*/
    #hum-open {
        display: inline-block;
        width: 4vw;
        height: 3.8vw;
        vertical-align: middle;
    }

    /*ハンバーガーアイコンをCSSだけで表現*/
    #hum-open span,
    #hum-open span:before,
    #hum-open span:after {
        position: absolute;
        height: 1px;
        width: 20px;
        border-radius: 0;
        background: #555;
        display: block;
        content: '';
        cursor: pointer;
    }

    #hum-open span:before {
        bottom: -7px;
    }

    #hum-open span:after {
        bottom: -14px;
    }

    /*メニューを閉じるカバーエリア*/
    #hum-close {
        display: none;
        /*はじめは隠しておく*/
        position: fixed;
        z-index: 9998;
        /*最前面のすぐ下に表示*/
        top: 0;
        /*全体に広がるように*/
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }



    /*メニューの内容*/
    #hum-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        /*最前面に表示*/
        width: 85%;
        /*右側に隙間を作る（閉じるカバーを表示）*/
        max-width: 400px;
        /* 最大幅（調整してください）*/
        height: 100%;
        background: #fff;
        /*背景色*/
        transition: .3s ease-in-out;
        /*滑らかに表示*/
        -webkit-transform: translateX(105%);
        transform: translateX(105%);
        /*左に隠しておく*/

    }

    /*チェックが入ったらもろもろ表示*/
    #hum-input:checked~#hum-close {
        display: block;
        /*メニューを閉じるカバーを表示*/
        opacity: .5;
        transition: .3s ease-in-out;
    }

    #hum-input:checked~#hum-content {
        display: block;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        /*中身を表示（右へスライド）*/
        box-shadow: 6px 0 25px rgba(0, 0, 0, .15);

        transition: .3s ease-in-out;
        position: fixed;

    }


    /* コンテンツタイトル */
    .sp-hum-ttl {
        font-size: clamp(13px, 3.6vw, 15px);
        font-weight: 500;
        margin: 0;
        padding: 1.5rem;
        display: block;
        background-color: #EDEAE7;
        text-align: left;
        color: #1a1a1a;
    }


    /* ログインのところ */
    .sp-hum-box {
        display: flex;
        padding: 5%;
    }

    .sp-hum-login,
    .sp-hum-new {
        width: 100%;
    }

    .sp-hum-login {
        margin-right: 3%;
    }

    .sp-hum-login a,
    .sp-hum-new a {
        border: #262626 1px solid;
        border-radius: clamp(3px, 0.8vw, 3px);
        width: 80%;
        font-weight: bold;
        padding: 10%;
        margin: 0;
        display: inline-block;
        text-align: center;
        font-size: 3.14vw;
        text-decoration: none;
        box-sizing: content-box;
    }

    .sp-hum-login a {
        background-color: #1a1a1a;
        color: #fff !important;
    }

    .sp-hum-new a {
        background-color: #fff;
        color: #1a1a1a !important;
    }


    /* 検索窓 */

    .head-clearfix .searchbox,
    .head-clearfix #search-btn {
        border: 1px solid #ccc;
        border-radius: 0rem;
        -moz-appearance: none;
        -webkit-appearance: none;
        -o-appearance: none;
        -ms-appearance: none;
        appearance: none;
    }

    .head-clearfix {
        padding: 0 5%;
        margin: 0 0 12% 0;
    }

    .head-clearfix .searchbox {
        margin: 0;
        padding: 3%;
        width: 73%;
    }


    .head-clearfix #search-btn {
        width: 25%;
        border: none;
        margin: 0;
        padding: 2.3%;
        background-color: #666;
        color: #fff;
        font-weight: bold;
        border: 1px solid #666;
    }

    input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
        /* デフォルトの×を消す */
    }

    /* 検索窓が隠れるのを防止 */
    #cat_search_area_hd .searchbox {
        font-size: clamp(16px, 3.8vw, 18px);
    }

    /* フォーカス中は動かさない */
    #sp_hum_nav.focus-lock {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none !important;
    }

    #cat_search_area_hd.force-visible {
        transform: translateY(0) !important;
        transition: none;
    }

    /* 検索窓が隠れるのを防止　ここまで */


    /* リスト */

    .sp-hum-membernav,
    .sp-hum-itemnav,
    .sp-hum-guidenav {
        margin: 0;
        padding: 0;
    }

    .sp-hum-companynav {
        margin: 0 0 10% 0;
        padding: 0;
    }

    .sp-hum-membernav li,
    .sp-hum-itemnav li,
    .sp-hum-guidenav li,
    .sp-hum-companynav li {
        list-style: none;
        border-bottom: solid 1px #EDEAE7;
    }

    .sp-hum-membernav li:last-child,
    .sp-hum-itemnav li:last-child,
    .sp-hum-guidenav li:last-child {
        border: 0;
    }

    .sp-hum-membernav li.events:nth-of-type(n+3) {
        border-bottom: none;
    }

    .sp-hum-membernav a,
    .sp-hum-itemnav a,
    .sp-hum-guidenav a,
    .sp-hum-companynav a {
        -webkit-tap-highlight-color: rgba(204, 204, 204, 0.5) !important;
        color: #1a1a1a !important;
        margin: 0;
        padding: 1.8rem 2rem;
        display: flex;
        /* block崩れるからこっち */
        align-items: center;
        position: relative;
        /* このタグを基準に矢印を作成 */
        font-size: clamp(12px, 3.3vw, 14px);
        font-weight: normal !important;
        text-decoration: none;
    }


    .sp-hum-membernav li a:after,
    .sp-hum-itemnav li a:after,
    .sp-hum-guidenav a:after,
    .sp-hum-companynav a:after {
        content: "";
        position: absolute;
        right: 6%;
        top: 50%;
        width: clamp(4px, 1vw, 4px);
        height: clamp(4px, 1vw, 4px);
        border-right: 1px solid #929292;
        border-top: 1px solid #929292;
        border-bottom: none;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }



    /* SNS */
    .sp-hum-sns {
        padding: 0 5%;
    }

    .sp-hum-sns ul {
        list-style: none;
    }

    .sp-hum-sns li {
        list-style: none;
        margin-bottom: 2%;
    }



    /* 閉じるボタン */
    .sp-hum-close-btn {
        display: inline-block;
        vertical-align: middle;
        color: #fff;
        line-height: 1;
        width: 2.0rem;
        height: 0.2rem;
        background: currentColor;
        border-radius: 0.1rem;
        position: relative;
        transform: rotate(45deg);
        top: 2%;
        left: 4%;
        text-align: left;
    }

    .sp-hum-close-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        transform: rotate(90deg);
    }



    /* 商品ページ（/products/detail.php）のみ、スクロールナビ追加 */
    .product-nav {
        display: none !important;
        background: #F5F5F5;
        width: 100%;
        margin: 0;
        border-top: 1px solid #DDD;
        border-bottom: 1px solid #DDD;
        transition: .3;
        z-index: 9999999;
    }

    #sp_hum_nav.hide .product-nav {
        position: fixed;
        left: 0;
    }

    .product-nav div {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .product-nav p {
        width: 50%;
        margin: 0;
        text-align: center;
        list-style: none;
    }

    .product-nav p a {
        display: block;
        padding: 10px 0;
        color: #666;
        font-size: 11px;
    }


    #lowerCarWrap.product {
        margin-top: 10vw;
    }

    #contentSt {
        margin-top: -115px;
        padding-top: 115px;
    }

    #Review {
        margin-top: -125px;
        padding-top: 125px;
    }

    /* ドロワーメニュー内検索ボックスここまで */

    /* 検索エリア */
    #cat_search_area_hd {
        position: absolute;
        top: 100%;
        /* .hum-wrapper の下端が基準 */
        left: 0;
        width: 100%;
        background-color: #fff;
        /* margin-top: -1px; */

        /* 初期は自分の高さ分だけ上に隠す */
        transform: translateY(-100%);
        transition: transform 0.1s ease-out;
    }

    #cat_search_area_hd.visible {
        position: sticky;
        padding-bottom: 0.1px;
        transform: translateY(0);
        box-shadow: 0 4px 8px -3px rgba(17, 17, 17, .06);
    }

    .search_area-container {
        margin: 0 clamp(14px, 3.8vw, 16px) 3vw;
    }

    #cat_search_area .cat_search_box,
    #cat_search_area_hd .cat_search_box {
        padding: 0 clamp(7px, 2.1vw, 8px);
        background-image: none;
        position: relative;
        background: #EDEAE7;
        border-radius: clamp(5px, 1.3vw, 5px);
        pointer-events: none;
    }

    #cat_search_area .cat_search_box .searchbox,
    #cat_search_area_hd .cat_search_box .searchbox {
        border: none;
        width: 100%;
        padding: 0.4em 7% 0.4em 0.4em;
        /* padding: .4em 0; */
        margin: 0;
        display: block;
        background: transparent none;
        outline: 0 !important;
        line-height: 1.4;
        font-size: 3.8vw;
        pointer-events: auto;
    }

    #cat_search_area .cat_search_box .searchbox::placeholder,
    #cat_search_area_hd .cat_search_box .searchbox::placeholder {
        color: #1a1a1a;
        font-size: clamp(11px, 3.1vw, 13px);
        font-weight: 500;
        letter-spacing: 0.1rem !important;
    }

    .search-icon {
        position: absolute;
        right: 3%;
        top: 50%;
        transform: translateY(-50%);
        width: clamp(17px, 4.6vw, 19px);
        height: clamp(17px, 4.6vw, 19px);
        pointer-events: none;
    }

    .search-icon .icon-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: opacity .3s ease;
    }


    .cat_page_wrap {
        padding: 0 6%;
        margin: 0 0 8% 0;
    }


    /* 閉じるボタン */
    #catenav-Wrap .closeBtn {
        display: block;
        border: none;
        background: #fff;
        width: 5vw;
        margin: 0 auto;
        position: relative;
    }

    #catenav-Wrap .closeBtn img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }



    /* メニュー背景 */
    .black-bg {
        position: fixed;
        /* 背景を固定位置に設定 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -999;
        display: none;
        /* 初期状態では非表示にする */
        background-color: rgba(0, 0, 0, 0.7);
        /* セミトランスペアレントな黒い背景 */
        transition: all, 1s;
        /* 0.6秒かけて表示する */
    }

    .black-bg.active {
        display: block;
        /* 背景を表示する */
        overflow: hidden;
    }



    /* 固定表示テスト用 */
    #slidewindow,
    #mypagecolumn {
        margin-top: 2rem;
    }


    /* 下層ではトップ用白ロゴ表示しない */
    .logo-light,
    .icon-light {
        display: none;
    }
}

/* --------------------------------------------------
SPヘッダーここまで
---------------------------------------------------- */