@charset "UTF-8";


:root {

	/* color */
	--c-b: #292929;
    --c-b-h: #000000;
	--c-w: #ffffff;
	--c-g-1: #8b8b8b;
    --c-g-2:#b2b2b2;
    --c-g-3:#ececec;
    --c-g-4:#e1e1e1;
    --c-g-5:#999999;
    --c-g-6:#878787;
    --c-g-7:#515151;
    --c-g-8:#8a8a8a;
    --c-g-9:#595959;
	--c-red: #ff3145;
    --c-orange: #ff522d;
    --c-blue:#6eacff;
    --c-pink:#ff1b80;
    --c-gold:#c7ad5a;
    --c-silver:#9a9b9b;
    --c-copper:#a78d72;
    --c-gnb: #ededed;
  
	/* font */
	--f-f-jp-1: "Noto Sans JP", sans-serif;
	--f-f-en-1: "Montserrat", sans-serif;

}

/* --------------------------------------------------------------------- */
/* simplebar */
/* --------------------------------------------------------------------- */
@media (pointer: fine) {
/* ========== 共通：ドラッグ見た目 ========== */
[data-simplebar] .simplebar-content-wrapper {
  cursor: grab;
  user-select: none;
}
}
[data-simplebar].is-grabbing .simplebar-content-wrapper {
  cursor: grabbing;
}

/* ========== 共通：トラック ========== */
/* 横トラック：デフォ透明／高さ3px */
[data-simplebar] .simplebar-track.simplebar-horizontal {
    background: transparent;
    height: 3px !important;
}
/* 横スクロール可能時のみ色付け（JSで .has-x-scroll を付与） */
[data-simplebar].has-x-scroll .simplebar-track.simplebar-horizontal {
    background: var(--c-g-4);
}

/* 縦トラック：幅と背景（必要な場合） */
[data-simplebar] .simplebar-track.simplebar-vertical {
    width: 12px;
    background: #B5B5B5;
}

/* ========== 共通：サム（thumb） ========== */
[data-simplebar] .simplebar-scrollbar {
    background: var(--c-b);
    border-radius: 0;
    height: 3px;            /* 主に横トラック用（縦はトラック幅で見た目が決まります） */
    opacity: 1 !important;
}
[data-simplebar] .simplebar-scrollbar::before {
    /* サム擬似要素を全体に広げる（色は親で指定） */
    top: 0; left: 0; right: 0; bottom: 0;
}
/* モバイル：横パンを許可 & 慣性スクロール */
[data-simplebar] .simplebar-content-wrapper{
touch-action: pan-x;                 /* ← 横方向に最適化 */
-webkit-overflow-scrolling: touch;   /* iOS 慣性 */
overscroll-behavior-x: contain;      /* 親への引き継ぎ抑止 */
}

/* --------------------------------------------------------------------- */
/* font */
/* --------------------------------------------------------------------- */

.f-f-jp-1{
    font-family: var(--f-f-jp-1);
}

.f-f-en-1{
    font-family: var(--f-f-en-1);
}

.f-s-i{
	font-style: italic;
}

.f-w-b{
	font-weight: bold;
}

.f-w-100{
	font-weight: 100;
}

.f-w-200{
	font-weight: 200;
}

.f-w-300{
	font-weight: 300;
}

.f-w-400{
	font-weight: 400;
}

.f-w-500{
	font-weight: 500;
}

.f-w-600{
	font-weight: 600;
}

.f-w-700{
	font-weight: 700;
}

.f-w-800{
	font-weight: 800;
}

.f-w-900{
	font-weight: 900;
}

/* --------------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------------- */

.l-h{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.l-h-b{
    width: 100%;
    height: 100%;
    position: relative;
}

.l-h-b::after{
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    opacity: .5;
    z-index: 2;
}

.is-page .l-h-b::after,.is-index .is-sc .l-h-b::after{
    background: var(--c-g-2);
}

.is-index .l-h-b::after{
    background: transparent;
}


.l-h .l-h-b::before{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    transition: .3s;
}

.is-page .l-h-b::before,.is-index .is-sc .l-h-b::before{
    background: var(--c-w);
    opacity: 1;
}

ヘッダー最初の黒透過
/* .is-index .l-h-b::before{
    background: var(--c-b);
    opacity: .4;
} */


.is-index .l-h-b::before{
    background: var(--c-b);
    opacity: .0;
}

.l-h.open .l-h-b::before{
    background:var(--c-gnb);
    opacity: 1;
}

.l-h-gnavi{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 70px;
}

.l-h-gnavi .logo{
    width: 72px;
    position: absolute;
    top: 14px;
    left: 30px;
    -webkit-mask: url(../img/add/logo.svg) no-repeat center / cover;
    mask: url(../img/add/logo.svg) no-repeat center / cover;
}

.is-page .l-h-gnavi .logo,.is-index .is-sc .l-h-gnavi .logo,.is-index .l-h.open .l-h-gnavi .logo{
    background-color: var(--c-b);
}

.is-index .l-h-gnavi .logo{
    background-color: var(--c-w);
}

.l-h-gnavi .logo img{
    opacity: 0;
}

.l-h-gnavi .form{
    width: 180px;
    height: 38px;
    position: absolute;
    top: 14px;
    left: 130px;
}

.l-h-gnavi .form form{
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-clip: padding-box;
    border-radius: calc(infinity * 1px);
}

.is-page .l-h-gnavi .form form,.is-index .is-sc .l-h-gnavi .form form,.is-index .l-h.open .l-h-gnavi .form form{
    border: 1px solid rgb(0, 0, 0, .5);
}

.is-index .l-h-gnavi .form form{
    border: 1px solid rgb(255, 255, 255, .5);
}

.l-h-gnavi .form form .keyword{
    width: 100%;
    height: 100%;
    border: none;
    box-sizing: border-box;
    padding: 10px 14px;
    background: none;
    font-size: 12px;
    line-height: 1;
}

.is-page .l-h-gnavi .form form .keyword,.is-index .is-sc .l-h-gnavi .form form .keyword,.is-index .l-h.open .l-h-gnavi .form form .keyword{
    color: var(--c-b);
}

.is-index .l-h-gnavi .form form .keyword{
    color: var(--c-w);
}

.l-h-gnavi .form form .keyword::placeholder{
    font-size: 12px;
    font-family: var(--f-f-jp-1);
    opacity: .5;
}

.is-page .l-h-gnavi .form form .keyword::placeholder,.is-index .is-sc .l-h-gnavi .form form .keyword::placeholder,.is-index .l-h.open .l-h-gnavi .form form .keyword::placeholder{
    color: var(--c-b);
}

.is-index .l-h-gnavi .form form .keyword::placeholder{
    color: var(--c-w);
}

.l-h-gnavi .form form button{
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 100%;
    outline: none;
    border: none;
    font-size: 0;
    -webkit-mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
    mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
    opacity: .5;
    cursor: pointer;
}

.is-page .l-h-gnavi .form form button,.is-index .is-sc .l-h-gnavi .form form button,.is-index .l-h.open .l-h-gnavi .form form button{
    background-color: var(--c-b);
}

.is-index .l-h-gnavi .form form button{
    background-color: var(--c-w);
}

.l-h-gnavi .gnavi{
    display: flex;
    position: absolute;
    right: 90px;
    top: 20px;
    align-items: center;
    gap: 0 20px;
}

.l-h-gnavi .gnavi .g{
    display: flex;
    gap: 0 16px;
    align-items: center;
}

.l-h-gnavi .gnavi .g li{
    font-size: 11px;
    line-height: 1;
}

.is-page .l-h-gnavi .gnavi .g li a,.is-index .is-sc .l-h-gnavi .gnavi .g li a,.is-index .l-h.open .l-h-gnavi .gnavi .g li a{
    color: var(--c-b);
}

.is-index .l-h-gnavi .gnavi .g li a{
    color: var(--c-w);
}

.l-h-gnavi .gnavi .st{
    display: flex;
    gap: 0 20px;
    align-items: center;
}

.l-h-gnavi .gnavi .st li{
    position: relative;
}

.l-h-gnavi .gnavi .st li a{
    display: block;
}

.l-h-gnavi .gnavi .st .cart .count{
    position: absolute;
    top: -12px;
    right: -8px;
    background: var(--c-red);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    display: inline-block;
    font-size: 11px;
    color: var(--c-w);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.l-h-gnavi .gnavi .st li img{
    opacity: 0;
}

.l-h-gnavi .gnavi .st .search{
    display: none;
}

.l-h-gnavi .gnavi .st .line a{
    width: 30px;
    -webkit-mask: url(../img/add/i-line.svg) no-repeat center / cover;
    mask: url(../img/add/i-line.svg) no-repeat center / cover;
}

.l-h-gnavi .gnavi .st .fav a{
    width: 22px;
    -webkit-mask: url(../img/add/i-fav.svg) no-repeat center / cover;
    mask: url(../img/add/i-fav.svg) no-repeat center / cover;
}

.l-h-gnavi .gnavi .st .user a{
    width: 16px;
    -webkit-mask: url(../img/add/i-user.svg) no-repeat center / cover;
    mask: url(../img/add/i-user.svg) no-repeat center / cover;
}

.l-h-gnavi .gnavi .st .cart a{
    width: 26px;
    -webkit-mask: url(../img/add/i-cart.svg) no-repeat center / cover;
    mask: url(../img/add/i-cart.svg) no-repeat center / cover;
}

.is-page .l-h-gnavi .gnavi .st li a,.is-index .is-sc .l-h-gnavi .gnavi .st li a,.is-index .l-h.open .l-h-gnavi .gnavi .st li a{
    background-color: var(--c-b);
}

.is-index .l-h-gnavi .gnavi .st li a{
    background-color: var(--c-w);
}

.l-h-cat{
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: .3s;
    display: grid;
    grid-template-rows: 1fr;
}

.is-sc .l-h-cat{
    grid-template-rows: 0fr;
}

.l-h-cat nav{
    overflow: hidden;
}

.l-h-cat::before{
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    opacity: .5;
}

.is-page .l-h-cat::before{
    background: var(--c-g-2);
    opacity: .5;
}

.is-index .l-h-cat::before{
    background: var(--c-w);
}

.l-h-cat nav ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
}

.l-h-cat nav ul li {
    font-size: 13px;
    line-height: 1;
}

.l-h-cat nav ul li a{
    display: block;
    box-sizing: border-box;
    border-bottom: 1px solid transparent;
}

.is-page .l-h-cat nav ul li a{
    color: var(--c-b);
}

.is-index .l-h-cat nav ul li a{
    color: var(--c-w);
}

.l-h-cat nav ul li a p{
    padding: 19px 0 18px 0;
    position: relative;
}

.l-h-cat nav ul li.new a p::before{
    content: "NEW";
    font-size: 9px;
    line-height: 1;
    color: var(--c-w);
    font-family: var(--f-f-en-1);
    color: var(--c-orange);
    position: absolute;
    top: 8px;
    left: 0;
}

@media (hover: hover) and (pointer: fine) {
    .l-h-gnavi .gnavi .g li a:hover{
        text-decoration: underline;
        text-underline-offset: .6em;
    }
    .is-page .l-h-cat nav ul li a:hover{
        border-bottom: 1px solid var(--c-b-h);
    }
    .is-index .l-h-cat nav ul li a:hover{
        border-bottom: 1px solid var(--c-w);
    }
}

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

    .l-h{
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
    }

    .l-h-b{
        width: 100%;
        height: 100%;
        position: relative;
    }

    .l-h-b::after{
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        position: absolute;
        bottom: 0px;
        left: 0;
        opacity: .5;
        z-index: 2;
    }

    .is-page .l-h-b::after,.is-index .is-sc .l-h-b::after{
        background: var(--c-g-2);
    }

    .is-index .l-h-b::after{
        background: transparent;
    }


    .l-h .l-h-b::before{
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
        transition: .3s;
    }

    .is-page .l-h-b::before,.is-index .is-sc .l-h-b::before{
        background: var(--c-w);
        opacity: 1;
    }

    /* ヘッダの黒透過　スマホ */
    /* .is-index .l-h-b::before{
        background: var(--c-b);
        opacity: .4;
    } */
     .is-index .l-h-b::before{
        background: var(--c-b);
        opacity: .0;
    }

    .l-h.open .l-h-b::before{
        background:var(--c-gnb);
        opacity: 1;
    }

    .l-h-gnavi{
        position: relative;
        z-index: 2;
        width: 100%;
        height: 48px;
        transition: .3s;
    }

    .is-search-open .l-h-gnavi{
        height: 110px;
    }

    .l-h-gnavi .logo{
        width: 46px;
        position: absolute;
        top: 10px;
        left: 16px;
        -webkit-mask: url(../img/add/logo.svg) no-repeat center / cover;
        mask: url(../img/add/logo.svg) no-repeat center / cover;
    }

    .is-page .l-h-gnavi .logo,.is-index .is-sc .l-h-gnavi .logo,.is-index .l-h.open .l-h-gnavi .logo{
        background-color: var(--c-b);
    }

    .is-index .l-h-gnavi .logo{
        background-color: var(--c-w);
    }

    .l-h-gnavi .logo img{
        opacity: 0;
    }

    .l-h-gnavi .form{
        width: 100%;
        height: auto;
        position: absolute;
        top: 46px;
        left: 0px;
        transition: .2s;
        overflow: hidden;
    }

    .l-h-gnavi .form .c{
        display: grid;
        overflow: hidden;
        grid-template-rows: 0fr;
        transition: .2s;
    }

    .l-h-gnavi .form.is-open .c{
        grid-template-rows: 1fr;
        overflow: hidden;
    }

    .l-h-gnavi .form .c .i{
        overflow: hidden;
        padding: 6px 0 0 0;
    }

    .l-h-gnavi .form .c .i .d{
        width: 320px;
        height: 44px;
        margin: 0 auto;
    }

    .l-h-gnavi .form form{
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
        background-clip: padding-box;
        border-radius: calc(infinity * 1px);
        margin: 0px;
    }

    .is-page .l-h-gnavi .form form,.is-index .is-sc .l-h-gnavi .form form,.is-index .l-h.open .l-h-gnavi .form form{
        border: 1px solid rgb(0, 0, 0, .5);
    }

    .is-index .l-h-gnavi .form form{
        border: 1px solid rgb(255, 255, 255, .5);
    }

    .l-h-gnavi .form form .keyword{
        width: 100%;
        height: 100%;
        border: none;
        box-sizing: border-box;
        padding: 10px 14px;
        background: none;
        font-size: 16px;
        line-height: 1;
    }

    .is-page .l-h-gnavi .form form .keyword,.is-index .is-sc .l-h-gnavi .form form .keyword,.is-index .l-h.open .l-h-gnavi .form form .keyword{
        color: var(--c-b);
    }

    .is-index .l-h-gnavi .form form .keyword{
        color: var(--c-w);
    }

    .l-h-gnavi .form form .keyword::placeholder{
        font-size: 12px;
        font-family: var(--f-f-jp-1);
        opacity: .5;
    }

    .is-page .l-h-gnavi .form form .keyword::placeholder,.is-index .is-sc .l-h-gnavi .form form .keyword::placeholder,.is-index .l-h.open .l-h-gnavi .form form .keyword::placeholder{
        color: var(--c-b);
    }

    .is-index .l-h-gnavi .form form .keyword::placeholder{
        color: var(--c-w);
    }

    .l-h-gnavi .form form button{
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 100%;
        outline: none;
        border: none;
        font-size: 0;
        -webkit-mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
        mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
        opacity: .5;
        cursor: pointer;
    }

    .is-page .l-h-gnavi .form form button,.is-index .is-sc .l-h-gnavi .form form button,.is-index .l-h.open .l-h-gnavi .form form button{
        background-color: var(--c-b);
    }

    .is-index .l-h-gnavi .form form button{
        background-color: var(--c-w);
    }

    .l-h-gnavi .gnavi{
        display: flex;
        position: absolute;
        right: 56px;
        top: 10px;
        align-items: center;
        gap: 0 20px;
    }

    .l-h-gnavi .gnavi .g{
        display: none;
    }

    .l-h-gnavi .gnavi .g li{
        font-size: 11px;
        line-height: 1;
    }

    .is-page .l-h-gnavi .gnavi .g li a,.is-index .is-sc .l-h-gnavi .gnavi .g li a,.is-index .l-h.open .l-h-gnavi .gnavi .g li a{
        color: var(--c-b);
    }

    .is-index .l-h-gnavi .gnavi .g li a{
        color: var(--c-w);
    }

    .l-h-gnavi .gnavi .st{
        display: flex;
        gap: 0 10px;
        align-items: center;
    }

    .l-h-gnavi .gnavi .st li{
        transform: scale(0.8);
    }

    .l-h-gnavi .gnavi .st li img{
        opacity: 0;
    }

    .l-h-gnavi .gnavi .st .search{
        display: block;
        width: 24px;
        -webkit-mask: url(../img/add/i-search.svg) no-repeat center / contain;
        mask: url(../img/add/i-search.svg) no-repeat center / contain;
    }

    .l-h-gnavi .gnavi .st .line a{
        width: 30px;
        -webkit-mask: url(../img/add/i-line.svg) no-repeat center / cover;
        mask: url(../img/add/i-line.svg) no-repeat center / cover;
    }

    .l-h-gnavi .gnavi .st .fav a{
        width: 22px;
        -webkit-mask: url(../img/add/i-fav.svg) no-repeat center / cover;
        mask: url(../img/add/i-fav.svg) no-repeat center / cover;
    }

    .l-h-gnavi .gnavi .st .user a{
        width: 16px;
        -webkit-mask: url(../img/add/i-user.svg) no-repeat center / cover;
        mask: url(../img/add/i-user.svg) no-repeat center / cover;
    }

    .l-h-gnavi .gnavi .st .cart a{
        width: 26px;
        -webkit-mask: url(../img/add/i-cart.svg) no-repeat center / cover;
        mask: url(../img/add/i-cart.svg) no-repeat center / cover;
    }

    .is-page .l-h-gnavi .gnavi .st li a,.is-index .is-sc .l-h-gnavi .gnavi .st li a,.is-index .l-h.open .l-h-gnavi .gnavi .st li a{
        background-color: var(--c-b);
    }

    .is-index .l-h-gnavi .gnavi .st li a{
        background-color: var(--c-w);
    }

    .l-h-cat{
        display: none;
    }

}

/* --------------------------------------------------------------------- */
/* ttl */
/* --------------------------------------------------------------------- */

.i-ttl{
    margin: 0 auto;
}

.i-ttl.type-1,.i-ttl.type-3{
    max-width: 1280px;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.i-ttl.type-1 .ttl-jp,.i-ttl.type-3 .ttl-jp{
    font-size: 28px;
    line-height: 1.6;
    color: var(--c-b);
}

.i-ttl.type-1 .ttl-en,.i-ttl.type-3 .ttl-en{
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-g-1);
    padding: 3px 0 0 14px;
    letter-spacing: 1px;
}

.i-ttl.type-2 .ttl-jp{
    font-size: 28px;
    line-height: 1.6;
    color: var(--c-b);
}

.i-ttl.type-2 .ttl-en{
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-g-1);
    padding: 3px 0 0 0;
    letter-spacing: 1px;
}

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

    .i-ttl{
        margin: 0 auto;
    }

    .i-ttl.type-1{
        max-width: 1280px;
        padding: 0 20px;
        box-sizing: border-box;
        display: block;
    }

    .i-ttl.type-3{
        max-width: 1280px;
        padding: 0 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .i-ttl.type-2{
       margin: 0;
    }

    .i-ttl.type-1 .ttl-jp{
        font-size: 18px;
        line-height: 1.6;
        color: var(--c-b);
        text-align: center;
    }

    .i-ttl.type-1 .ttl-en{
        font-size: 10px;
        line-height: 1.6;
        color: var(--c-g-1);
        padding: 3px 0 0 0px;
        letter-spacing: 1px;
        text-align: center;
    }

    .i-ttl.type-2{
        display: flex;
        align-items: center;
    }

    .i-ttl.type-2 .ttl-jp,.i-ttl.type-3 .ttl-jp{
        font-size: 18px;
        line-height: 1.6;
        color: var(--c-b);
    }

    .i-ttl.type-2 .ttl-en,.i-ttl.type-3 .ttl-en{
        font-size: 10px;
        line-height: 1.6;
        color: var(--c-g-1);
        padding: 3px 0 0 10px;
        letter-spacing: 1px;
        flex: 1;
    }
}



/* --------------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------------- */

.l-f{
    background: var(--c-b);
    padding:80px 40px 120px 40px
}

.l-f{
    background: var(--c-b);
    padding:0px 40px 120px 40px
}

.l-f-cnavi{
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

.l-f-cnavi .box_select .box_nav {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.l-f-cnavi .box_select .box_nav h2 {
    float: none;
    font-family: var(--f-f-en-1);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0px;
    padding-left: 0px;
    color: var(--c-w);
}

.l-f-cnavi .box_select .box_nav ul{
	float: none;;
	margin-left:0;
	padding-top:0;
    padding: 0 0 0 24px;
    display: flex;
    gap: 4px 4px;
    flex-wrap: wrap;
}

.l-f-cnavi .box_select .box_nav ul li{
	letter-spacing:0.5px;
	margin:0;
    font-family: var(--f-f-en-1);
    display: inline-flex;
    align-items: baseline;
    overflow-wrap: break-word;
    min-width: 0;
}

.l-f-cnavi .box_select .box_nav ul li span{
	font-size:11px;
	display:inline-block;
	cursor:pointer;
	padding:4px 12px;
	border:none;
    border-radius: calc(infinity * 1px);
    background: var(--c-g-6);
    transition: .3s;
}

.l-f-cnavi .box_select .box_nav ul li span:hover,
.l-f-cnavi .box_select .box_nav ul li.active span{
	color:var(--c-b);
	background: var(--c-g-3);
}

.l-f-cnavi .box_select {
    font-family: var(--f-f-en-1);
    margin-bottom: 0;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.l-f-cnavi .box_select .box_list {
    font-size: 10px;
    letter-spacing: 0.5px;
    padding-top: 0;
}

.l-f-cnavi .box_select .box_list ul{
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    grid-column-gap: 10px;
    grid-row-gap: 3px;
}

.l-f-cnavi .box_select .box_list ul li{
    width: auto;
    position: relative;
    float: none;
    margin-bottom: 0;
    padding-left: 0;
}

.l-f-cnavi .box_select .box_list li a {
    padding: 0;
    color: var(--c-g-6);
    transition: .3s;
    display: inline-block;
}

.l-f-cnavi .box_select .box_list li:hover a,
.l-f-cnavi .box_select .box_list li a:hover{
	color:#fff;
	background:transparent;
}


@media (hover: hover) and (pointer: fine) {
    .l-f-cnavi .box_select .box_list li a:hover{
        color: var(--c-w);
        background: transparent;
    }
}

.l-f-cnavi .box_select .box_list ul li div{
	position:absolute;
	left:0px;
	display:none;
	padding:0 0 10px 0;
	background:none;
}

.l-f-cnavi .box_select .box_list ul li div ul{
	width:100%;
	letter-spacing:0.5px;
	padding:8px 10px;
    box-sizing: border-box;
	background:var(--c-g-3);
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    grid-column-gap: 0px;
    grid-row-gap: 3px;
}

.l-f-cnavi .box_select .box_list ul li div ul::after{
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    bottom: 4px;
    left: 10px;
    background: var(--c-g-3);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.l-f-cnavi .box_select .box_list ul li:hover div{
	display:block;
}

.l-f-cnavi .box_select .box_list ul li div ul li{
	font-size:10px;
	line-height:1.4;
	width:100%;
	float:none;
	margin:0;
	padding:0;
}

.l-f-cnavi .box_select .box_list ul li div ul li a{
	display:block;
	color:var(--c-g-5) !important;
	padding:0 !important;
    background: transparent !important;
}

.l-f-cnavi .box_select .box_list ul li div ul li a:hover{
	text-decoration:none;
	background:none;
}

@media (hover: hover) and (pointer: fine) {
    .l-f-cnavi .box_select .box_list ul li div ul li a:hover{
        text-decoration:none;
	    background:none;
        color: var(--c-b) !important;
    }
}

/* .l-f-u{
    border-top: 1px solid var(--c-g-7);
    padding: 50px 0 0 0;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
} */

.l-f-u{
    
    padding: 80px 0 0 0;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
}


.l-f-u-h{
    width: 180px;
}

.l-f-u-h .logo{
    max-width: 128px;
    margin: 0 auto;
}

.l-f-u-h .logo a{
    display: block;
    background: var(--c-g-6);
    -webkit-mask: url(../img/add/logo.svg) no-repeat center / cover;
    mask: url(../img/add/logo.svg) no-repeat center / cover;
    transition: .3s;
}

.l-f-u-h .logo a img{
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .l-f-u-h .logo a:hover{
        background: var(--c-w);
    }
}

.l-f-u-h .form{
    width: 100%;
    height: 38px;
    margin: 40px 0 0 0;
}

.l-f-u-h .form form{
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-clip: padding-box;
    border: 1px solid rgb(255, 255, 255, .5);
    border-radius: calc(infinity * 1px);
}

.l-f-u-h .form form .keyword{
    width: 100%;
    height: 100%;
    border: none;
    box-sizing: border-box;
    padding: 10px 14px;
    background: none;
    font-size: 12px;
    line-height: 1;
    color: var(--c-w);
}

.l-f-u-h .form form .keyword::placeholder{
    font-size: 12px;
    font-family: var(--f-f-jp-1);
    color: var(--c-w);
    opacity: .5;
}

.l-f-u-h .form form button{
    position: absolute;
    top: 0;
    right: 0;
    width: 46px;
    height: 100%;
    outline: none;
    border: none;
    font-size: 0;
    background-color: var(--c-w);
    -webkit-mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
    mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
    opacity: .5;
}

.l-f-u-h .snslist{
    margin: 30px 0 0 0;
}

.l-f-u-h .snslist ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
}

.l-f-u-h .snslist ul li{
    width: 22px;
    height: 22px;
}

.l-f-u-h .snslist ul li a{
    font-size: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.l-f-u-h .snslist ul li.facebook a::before{
    width: 9px;
    height: 19px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    transition: .3s;
    background-color: var(--c-g-6);
    -webkit-mask: url(../img/add/i-facebook.svg) no-repeat center / cover;
    mask: url(../img/add/i-facebook.svg) no-repeat center / cover;
}

.l-f-u-h .snslist ul li.x a::before{
    width: 22px;
    height: 17px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    transition: .3s;
    background-color: var(--c-g-6);
    -webkit-mask: url(../img/add/i-x.svg) no-repeat center / cover;
    mask: url(../img/add/i-x.svg) no-repeat center / cover;
}

.l-f-u-h .snslist ul li.ig a::before{
    width: 20px;
    height: 20px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    transition: .3s;
    background-color: var(--c-g-6);
    -webkit-mask: url(../img/add/i-instagram.svg) no-repeat center / cover;
    mask: url(../img/add/i-instagram.svg) no-repeat center / cover;
}

.l-f-u-h .snslist ul li.line a::before{
    width: 22px;
    height: 21px;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    transition: .3s;
    background-color: var(--c-g-6);
    -webkit-mask: url(../img/add/i-line.svg) no-repeat center / cover;
    mask: url(../img/add/i-line.svg) no-repeat center / cover;
}

@media (hover: hover) and (pointer: fine) {
    .l-f-u-h .snslist ul li a:hover::before{
        background: var(--c-w);
    }
}

.l-f-u-c{
    flex: 1;
    padding: 0 0 0 84px;
    display: flex;
}

.l-f-u-navi{
    flex: 1;
    
}

.l-f-u-navi .gnavi{
    display: inline-block;
    padding: 0 40px 30px 0;
    border-bottom: 1px solid var(--c-g-7);
}

.l-f-u-navi .gnavi nav{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
	gap: 12px 70px;
    
}

.l-f-u-navi .gnavi nav ul{
    grid-template-columns: repeat(1, 1fr);
    display: grid;
	gap: 14px 0;
}

.l-f-u-navi .gnavi nav ul li{
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-g-5);
}

.l-f-u-navi .gnavi nav ul li a{
    color: var(--c-g-6);
}

.l-f-u-navi .snavi{
    margin: 30px 0 0 0;
}

.l-f-u-navi .snavi ul{
    gap: 10px 28px;
    flex-wrap: wrap;
    display: flex;
}

.l-f-u-navi .snavi ul li{
    display: inline-flex;
    align-items: baseline;
    overflow-wrap: break-word;
    font-size: 11px;
    line-height: 1.6;
    color: var(--c-g-5);
}

.l-f-u-navi .snavi ul li a{
    color: var(--c-g-6);
}


.l-f-u-o{
    width: 41.4%;
}

.l-f-u-o .fpbos{
    margin: 0;
}

.l-f-u-o .fpbos a{
    display: block;
    position: relative;
}

.l-f-u-o .fpbos a::before{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/add/b-fpbos-h.webp) no-repeat;
    background-size: cover;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

.l-f-u-o .fpbos a img{
    width: 100%;
    height: auto;
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .l-f-u-o .fpbos a:hover::before{
        opacity: 1;
    }
}

.l-f-u-o .cr{
    font-size: 10px;
    line-height: 1;
    color: var(--c-g-6);
    text-align: right;
    margin: 40px 0 0 0;
}

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

    .l-f{
        background: var(--c-b);
        padding:90px 36px 90px 36px
    }

    .l-f-cnavi{
        max-width: 1260px;
        margin: 0 auto;
        padding: 0 0 0px 0;
    }

    .l-f-u{
        border-top:none;
        padding: 0px 0 0 0;
        max-width: 1300px;
        margin: 0 auto;
        display: block;
    }

    .l-f-u-h{
        width: 100%;
    }

    .l-f-u-h .logo{
        max-width: 100px;
        margin: 0 auto;
    }

    .l-f-u-h .logo a{
        display: block;
        background: var(--c-g-6);
        -webkit-mask: url(../img/add/logo.svg) no-repeat center / cover;
        mask: url(../img/add/logo.svg) no-repeat center / cover;
        transition: .3s;
    }

    .l-f-u-h .logo a img{
        opacity: 0;
    }

    .l-f-u-h .form{
        width: 226px;
        height: 38px;
        margin: 40px auto 0 auto;
    }

    .l-f-u-h .form form{
        position: relative;
        box-sizing: border-box;
        overflow: hidden;
        background-clip: padding-box;
        border: 1px solid rgb(255, 255, 255, .5);
        border-radius: calc(infinity * 1px);
    }

    .l-f-u-h .form form .keyword{
        width: 100%;
        height: 100%;
        border: none;
        box-sizing: border-box;
        padding: 10px 14px;
        background: none;
        font-size: 16px;
        line-height: 1;
        color: var(--c-w);
    }

    .l-f-u-h .form form .keyword::placeholder{
        font-size: 12px;
        font-family: var(--f-f-jp-1);
        color: var(--c-w);
        opacity: .5;
    }

    .l-f-u-h .form form button{
        position: absolute;
        top: 0;
        right: 0;
        width: 46px;
        height: 100%;
        outline: none;
        border: none;
        font-size: 0;
        background-color: var(--c-w);
        -webkit-mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
        mask: url(../img/add/i-search.svg) no-repeat center / 15px 14px;
        opacity: .5;
    }

    .l-f-u-h .snslist{
        margin: 30px 0 0 0;
    }

    .l-f-u-h .snslist ul{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 20px;
    }

    .l-f-u-h .snslist ul li{
        width: 22px;
        height: 22px;
    }

    .l-f-u-h .snslist ul li a{
        font-size: 0;
        width: 100%;
        height: 100%;
        display: block;
        position: relative;
    }

    .l-f-u-h .snslist ul li.facebook a::before{
        width: 9px;
        height: 19px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        pointer-events: none;
        transition: .3s;
        background-color: var(--c-g-6);
        -webkit-mask: url(../img/add/i-facebook.svg) no-repeat center / cover;
        mask: url(../img/add/i-facebook.svg) no-repeat center / cover;
    }

    .l-f-u-h .snslist ul li.x a::before{
        width: 22px;
        height: 17px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        pointer-events: none;
        transition: .3s;
        background-color: var(--c-g-6);
        -webkit-mask: url(../img/add/i-x.svg) no-repeat center / cover;
        mask: url(../img/add/i-x.svg) no-repeat center / cover;
    }

    .l-f-u-h .snslist ul li.ig a::before{
        width: 20px;
        height: 20px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        pointer-events: none;
        transition: .3s;
        background-color: var(--c-g-6);
        -webkit-mask: url(../img/add/i-instagram.svg) no-repeat center / cover;
        mask: url(../img/add/i-instagram.svg) no-repeat center / cover;
    }

    .l-f-u-h .snslist ul li.line a::before{
        width: 22px;
        height: 21px;
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        pointer-events: none;
        transition: .3s;
        background-color: var(--c-g-6);
        -webkit-mask: url(../img/add/i-line.svg) no-repeat center / cover;
        mask: url(../img/add/i-line.svg) no-repeat center / cover;
    }

    .l-f-u-c{
        flex: none;
        width: 100%;
        padding: 36px 0 0 0;
        display: block;
    }

    .l-f-u-navi{
        flex: none;
        width: 100%;
    }

    .l-f-u-navi .gnavi{
        display: inline-block;
        width: 100%;
        padding: 0px 0px 0px 0;
        border-bottom: 1px solid var(--c-g-7);
    }

    .l-f-u-navi .gnavi nav{
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        gap: 0px;
        
    }

    .l-f-u-navi .gnavi nav ul{
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        gap: 0 0;
    }

    .l-f-u-navi .gnavi nav ul li{
        font-size: 12px;
        line-height: 1.6;
        color: var(--c-g-5);
        border-top: 1px solid var(--c-g-7);
    }

    .l-f-u-navi .gnavi nav ul li a{
        color: var(--c-g-6);
        padding: 12px 10px;
        display: block;
    }

    .l-f-u-navi .snavi{
        margin: 24px 0 0 0;
    }

    .l-f-u-navi .snavi ul{
        gap: 10px 28px;
        flex-wrap: wrap;
        display: flex;
        justify-content: center;   /* ← 中央寄せ */
        align-items: center;       /* 縦も揃える（任意） */
        list-style: none;          /* ポチ消し（任意） */
        padding: 0;                /* 既定の余白をリセット */
        margin: 0 auto;
            }

    .l-f-u-navi .snavi ul li{
        display: inline-flex;
        align-items: baseline;
        overflow-wrap: break-word;
        font-size: 10px;
        line-height: 1.6;
        color: var(--c-g-5);
    }

    .l-f-u-navi .snavi ul li a{
        color: var(--c-g-6);
    }

    .l-f-u-o{
        width: 100%;
    }

    .l-f-u-o .fpbos{
        margin: 80px 0 0 0;
    }

    .l-f-u-o .fpbos a{
        display: block;
        position: relative;
    }

    .l-f-u-o .fpbos a::before{
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(../img/add/b-fpbos-h.webp) no-repeat;
        background-size: cover;
        transition: .3s;
        opacity: 0;
        pointer-events: none;
    }

    .l-f-u-o .fpbos a img{
        width: 100%;
        height: auto;
        transition: .3s;
    }

    .l-f-u-o .cr{
        font-size: 10px;
        line-height: 1;
        color: var(--c-g-6);
        text-align: center;
        margin: 60px 0 0 0;
    }

}

/* --------------------------------------------------------------------- */
/* c */
/* --------------------------------------------------------------------- */


.l-c{
	position: relative;
	overflow-x: hidden;
}

.is-page .l-c{
	position: relative;
	overflow-x: hidden;
    padding: 120px 0 0 0;
}

@media screen and (max-width: 768px){
	.l-c{
		position: relative;
		overflow-x: hidden;
	}
}



/* --------------------------------------------------------------------- */
/* hm */
/* --------------------------------------------------------------------- */

.m-hm{
	width: 30px;
	height: 30px;
	z-index: 300;
	cursor: pointer;
	margin: 0px;
	position: fixed;
	right: 30px;
	top: 20px;
	transition: .3s;
	z-index: 34;
	display: block;
	border: none;
	background: transparent;
}

.m-hm .line{
	display: block;
	position: absolute;
	top: 0;
    bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	transition: .3s;
}

.m-hm .line::before{
	display: block;
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	transition: .3s;
}

.m-hm .line::after{
	display: block;
	content: "";
	position: absolute;
	bottom: 6px;
	left: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 2px;
	border-radius: 2px;
	transition: .3s;
}

.is-page .m-hm .line,.is-page .m-hm .line::before,.is-page .m-hm .line::after,.is-index .m-hm.is-sc .line,.is-index .m-hm.is-sc .line::before,.is-index .m-hm.is-sc .line::after{
    background: var(--c-b);
}

.is-index .m-hm .line,.is-index .m-hm .line::before,.is-index .m-hm .line::after{
    background: var(--c-w);
}

.is-page .m-hm.open .line,.is-page .m-hm.open .line::before,.is-page .m-hm.open .line::after{
	background: var(--c-b);
}

.is-index .m-hm.open .line,.is-index .m-hm.open .line::before,.is-index .m-hm.open .line::after{
	background: var(--c-b);
}

.is-page .m-hm.open .line,.is-index .m-hm.open .line{
	background: transparent;
}

.m-hm.open .line::before{
	transform: rotate(45deg);
    top: 0;
}

.m-hm.open .line::after{
	transform: rotate(-45deg);
    bottom: 0;
}

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

    .m-hm{
        width: 20px;
        height: 20px;
        right: 16px;
        top: 14px;
    }

    .m-hm .line{
        width: 20px;
        height: 1px;
    }

    .m-hm .line::before{
        width: 20px;
        height: 1px;
        top: 4px;
    }

    .m-hm .line::after{
        width: 20px;
        height: 1px;
        bottom:4px;
    }
}

/* --------------------------------------------------------------------- */
/* gn */
/* --------------------------------------------------------------------- */

.m-gn{
    position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
	margin: 0 auto;
	transition: .4s;
	box-sizing: border-box;
	z-index: 25;
	opacity: 1;
	visibility: hidden;
	pointer-events: none;
	overscroll-behavior: contain;
	clip-path: inset(0 0 100% 0);
}

.m-gn.open{
	right: 0;
	pointer-events: auto;
	visibility:visible;
	overflow: auto;
	opacity: 1;
	clip-path: inset(0 0 0 0);
}

.m-gn-b{
    background: var(--c-gnb);
    overflow-x: hidden;
}

.m-gn-c{
	max-width: 1240px;
    margin: 0 auto;
    padding: 100px 40px 100px 40px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.m-gn-navi{
    flex: 1;
    padding: 0 10% 0 0;
}

.m-gn-navi nav ul{
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
}

.m-gn-navi nav ul li{
    border-bottom: 1px solid var(--c-g-2);
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-g-8);
}

.m-gn-navi nav ul li a{
    display: block;
    padding: 20px 7px;
    color: var(--c-g-9);
    transition: .3s;
    position: relative;
}

.m-gn-navi nav ul li a::before{
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-top: solid 1px var(--c-b);
    border-right: solid 1px var(--c-b);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    margin: auto;
    pointer-events: none;
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .m-gn-navi nav ul li a:hover{
        color: var(--c-b-h);
    }
    .m-gn-navi nav ul li a:hover::before{
        right: 12px;
    }
}

.m-gn-o{
    width: 31.5%;
}

.m-gn-o .fpbos{
    margin: 0;
    width: 100%;
}

.m-gn-o .fpbos a{
    display: block;
    position: relative;
}

.m-gn-o .fpbos a::before{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/add/b-fpbos-h.webp) no-repeat;
    background-size: cover;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

.m-gn-o .fpbos a img{
    width: 100%;
    height: auto;
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .m-gn-o .fpbos a:hover::before{
        opacity: 1;
    }
}

.m-gn-o .snavi{
    width: 100%;
    margin: 30px 0 0 0;
}

.m-gn-o .snavi ul{
    display: flex;
    gap: 10px 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.m-gn-o .snavi li{
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-g-8);
    display: inline-flex;
    align-items: baseline;
    overflow-wrap: break-word;
}

.m-gn-o .snavi li a{
    color: var(--c-g-8);
    transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
    .m-gn-o .snavi li a:hover{
        color: var(--c-b-h);
    }
}

.m-gn-cat{
    width: 100%;
    margin: 60px 0 0 0;
}

.m-gn-cat .ttl{
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-g-1);
    letter-spacing: 1px;
    margin: 0 0 0 14px;
}

.m-gn-cat-s-b{
    max-width: 1200px;
    margin: 14px auto 0 auto;
    padding: 0 0;
    box-sizing: border-box;
}

.m-gn-cat-scroller{
    margin-right: calc(50% - 50vw);
    overflow-x: visible;
    overflow-y: hidden;

}

.m-gn-cat-scroller-i{
    padding: 0 0px 40px 0;
}

/* SimpleBar の中身を必ず“親より横に長く”する */
.m-gn-cat .list{
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0 4px;
    /* これで内容幅がそのまま要素幅になり、必ず横オーバーフローが発生 */
    min-width: max-content;
    margin: 0;
    padding: 0 40px 0 0;
    list-style: none;
}

.m-gn-cat .list li{
    white-space: nowrap;
}

.m-gn-cat .list a{
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--c-b);
    background: var(--c-w);
    padding: 10px 20px;
    border-radius: calc(infinity * 1px);
    text-decoration: none;
    position: relative;
    transition: .3s;
}

.m-gn-cat .list li.new a::after{
    content: "NEW";
    font-size: 9px;
    line-height: 1;
    color: var(--c-w);
    font-family: var(--f-f-en-1);
    color: var(--c-orange);
    display: inline-block;
    padding: 0 0 0 4px;
    vertical-align: .2em;
}

.m-gn-cat .list li.all a::before{
    display: inline-block;
    content: "";
    width: 2px;
    height: 12px;
    margin: 0 10px 0 0 ;
    background-color: var(--c-b);
    -webkit-mask: url(../img/add/i-more.svg) no-repeat center / contain;
    mask: url(../img/add/i-more.svg) no-repeat center / contain;
    transition: .3s;
    vertical-align: -.05em;
}

@media (hover: hover) and (pointer: fine) {
    .m-gn-cat .list li a:hover{
        background: var(--c-b);
        color: var(--c-w);
    }
    .m-gn-cat .list li.all a:hover::before{
        background-color: var(--c-w);
    }
}



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

    .m-gn{
        position: fixed;
        top: 48px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 48px);
        max-height: calc(100dvh - 48px);
        margin: 0 auto;
        transition: .4s;
        box-sizing: border-box;
        z-index: 25;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
        clip-path: inset(0 0 100% 0);
    }

    .m-gn.open{
        right: 0;
        pointer-events: auto;
        visibility:visible;
        overflow: auto;
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }

    .m-gn-b{
        background: var(--c-gnb);
        overflow-x: hidden;
    }

    .m-gn-c{
        max-width: 1240px;
        margin: 0 auto;
        padding: 20px 46px 60px 46px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
    }

    .m-gn-navi{
        flex: none;
        width: 100%;
        padding: 0 0 0 0;
        order: 1;
    }

    .m-gn-navi nav ul{
        grid-template-columns: repeat(1, 1fr);
        display: grid;
        grid-column-gap: 30px;
        grid-row-gap: 0px;
    }

    .m-gn-navi nav ul li{
        border-bottom: 1px solid var(--c-g-2);
        font-size: 12px;
        line-height: 1.6;
        color: var(--c-g-8);
    }

    .m-gn-navi nav ul li a{
        display: block;
        padding: 14px 5px;
        color: var(--c-g-9);
        transition: .3s;
        position: relative;
    }

    .m-gn-navi nav ul li a::before{
        content: '';
        width: 5px;
        height: 5px;
        border: 0;
        border-top: solid 1px var(--c-b);
        border-right: solid 1px var(--c-b);
        transform: rotate(45deg);
        position: absolute;
        top: 0;
        right: 16px;
        bottom: 0;
        margin: auto;
        pointer-events: none;
        transition: .3s;
    }

    .m-gn-o{
        width: 100%;
        order: 3;
        display: flex;
        flex-wrap: wrap;
    }

    .m-gn-o .fpbos{
        margin: 50px 0 0 0;
        width: 100%;
        order: 2;
    }

    .m-gn-o .fpbos a{
        display: block;
        position: relative;
    }

    .m-gn-o .fpbos a::before{
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: url(../img/add/b-fpbos-h.webp) no-repeat;
        background-size: cover;
        transition: .3s;
        opacity: 0;
        pointer-events: none;
    }

    .m-gn-o .fpbos a img{
        width: 100%;
        height: auto;
        transition: .3s;
    }

    .m-gn-o .snavi{
        width: 100%;
        margin: 40px 0 0 0;
        order: 1;
    }

    .m-gn-o .snavi ul{
        display: flex;
        gap: 10px 24px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .m-gn-o .snavi li{
        font-size: 10px;
        line-height: 1.6;
        color: var(--c-g-8);
        display: inline-flex;
        align-items: baseline;
        overflow-wrap: break-word;
    }

    .m-gn-o .snavi li a{
        color: var(--c-g-8);
        transition: .3s;
    }

    .m-gn-cat{
        width: 100%;
        order: 2;
        margin: 30px 0 0 0;
    }

    .m-gn-cat .ttl{
        font-size: 14px;
        line-height: 1.6;
        color: var(--c-g-1);
        letter-spacing: 1px;
        margin: 0 0 0 0;
        text-align: center;
    }

    .m-gn-cat-s-b{
        max-width: 1200px;
        margin: 14px auto 0 auto;
        padding: 0 0;
        box-sizing: border-box;
    }

    .m-gn-cat-scroller{
        margin-right: calc(50% - 50vw);
        overflow-x: visible;
        overflow-y: hidden;
    }

    .m-gn-cat-scroller-i{
        padding: 0 0px 20px 0;
    }

    /* SimpleBar の中身を必ず“親より横に長く”する */
    .m-gn-cat .list{
        display: inline-flex;
        flex-wrap: nowrap;
        gap: 0 4px;
        /* これで内容幅がそのまま要素幅になり、必ず横オーバーフローが発生 */
        min-width: max-content;
        margin: 0;
        padding: 0 40px 0 0;
        list-style: none;
    }

    .m-gn-cat .list li{
        white-space: nowrap;
    }

    .m-gn-cat .list a{
        display: block;
        font-size: 12px;
        line-height: 1.6;
        color: var(--c-b);
        background: var(--c-w);
        padding: 10px 20px;
        border-radius: calc(infinity * 1px);
        text-decoration: none;
        position: relative;
        transition: .3s;
    }

    .m-gn-cat .list li.new a::after{
        content: "NEW";
        font-size: 9px;
        line-height: 1;
        color: var(--c-w);
        font-family: var(--f-f-en-1);
        color: var(--c-orange);
        display: inline-block;
        padding: 0 0 0 4px;
        vertical-align: .2em;
    }

    .m-gn-cat .list li.all a::before{
        display: inline-block;
        content: "";
        width: 2px;
        height: 12px;
        margin: 0 10px 0 0 ;
        background-color: var(--c-b);
        -webkit-mask: url(../img/add/i-more.svg) no-repeat center / contain;
        mask: url(../img/add/i-more.svg) no-repeat center / contain;
        transition: .3s;
        vertical-align: -.05em;
    }
}

/* --------------------------------------------------------------------- */
/* overlay */
/* --------------------------------------------------------------------- */

.m-ol{
    position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: calc(100vh);
    height: calc(100dvh);
	margin: 0 auto;
	pointer-events: none;
	display: block;
	transition: .3s;
	box-sizing: border-box;
	z-index: 8;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
    background: var(--c-b);
}

.m-ol.open{
	opacity: .8;
	visibility:visible;
	pointer-events:auto;
}




/* FP
---------------------------------------- */
.fp_area{
	background: url(../img/fp_bg.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	height: 520px;
	position: relative;
}

.fp_c_m{
	position: absolute;
	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
	text-align: left;
	
}

.fp_c_m img{
	width: 102PX;
	margin: 0 70px 0 0;
	display: inline-block;
}

.fp_c_tx_area{
	width: 460px;
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 2.0em;
	color: #d4d4d4;
	vertical-align: top;
}

@media screen and (max-width:768px){
	.fp_area{
		background: url(../img/fp_bg_sp.jpg);
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
		height: 650px;
		position: relative;
	}
	
	.fp_c_m{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		width: 90%;
		padding: 250px 0 250px 0;
	}
	
	.fp_c_m img{
		margin: 0 0 35px 0;
	}
	
	.fp_c_tx_area{
		width: 75%;
		display: block;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 13px;
		line-height: 2em;
		color: #d4d4d4;
		vertical-align: top;
		text-align: left;
		margin: 0 auto	;
	}
}
