/* ============================================================
   SUPERGIRL EC-CUBE MODULAR V4.4
   Design source: uploaded supergirl/index.html
   Header/footer are shared blocks; homepage sections remain homepage-scoped.
   ============================================================ */
:root {
    --sg-bg: #000;
    --sg-surface: #f5f5f5;
    --sg-white: #fff;
    --sg-text-muted: #9a9a9a;
    --sg-accent: #ef6440;
    --sg-yellow: #fecd00;
    --sg-border: rgba(255,255,255,.22);
    --sg-radius: 6px;
    --sg-transition: .45s cubic-bezier(.2,.7,.2,1);
}



/* ---------- EC-CUBE modular block integration ---------- */
.ec-layoutRole__header:has(.sg-header),
.ec-layoutRole__footer:has(.sg-footer),
.ec-layoutRole__mainTop:has(.sg-hero),
.ec-layoutRole__mainBottom:has(.sg-section),
.ec-layoutRole__mainBottom:has(.sg-benefits) {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Fallback for browsers without :has(). */
.sg-layout-fullwidth {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* When the new header block is present, suppress known legacy header blocks
   even if they were accidentally left in another layout slot. */
body.sg-has-new-header .ec-headerRole,
body.sg-has-new-header .ec-headerNaviRole,
body.sg-has-new-header .ec-headerNavSP,
body.sg-has-new-header #shopify-section-menu-tabs,
body.sg-has-new-header [id^="shopify-section-menu-tabs"] {
    display: none !important;
}

/* Never hide the new header itself. */
body.sg-has-new-header .sg-header {
    display: block !important;
}

body.sg-homepage {
    background: var(--sg-bg) !important;
    color: var(--sg-white);
    overflow-x: hidden;
    font-family: Inter, "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
}
body.sg-homepage .ec-layoutRole,
body.sg-homepage .ec-layoutRole__contents,
body.sg-homepage .ec-layoutRole__main,
body.sg-homepage .ec-layoutRole__mainTop,
body.sg-homepage .ec-layoutRole__mainBottom,
body.sg-homepage .ec-layoutRole__contentBottom,
body.sg-homepage .ec-layoutRole__footer {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
body.sg-homepage .ec-layoutRole__contents { display: block !important; }
body.sg-homepage .ec-layoutRole__left,
body.sg-homepage .ec-layoutRole__right { display: none !important; }

/* Old EC-CUBE carousel: keep code installed, suppress all visual/output space. */
body.sg-homepage .ec-sliderRole,
body.sg-homepage .ec-sliderRole.page-width,
body.sg-homepage .main_visual,
body.sg-homepage .main-visual,
body.sg-homepage [class*="mainVisual"],
body.sg-homepage [class*="main_visual"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.sg-shell {
    width: 90%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}
.sg-shell--header { width: 95%;  }
.sg-shell--content { width: 80%; max-width: 1260px; }
.sg-shell--ad { width: 82%; max-width: 1163px; }

/* ---------- Header ---------- */
.sg-header {
    position: relative;
    z-index: 1000;
    color: #fff;
    background: #000;
    padding: 12px 0 4px;
}
.sg-header a { color: inherit; text-decoration: none; }
.sg-header__logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 82px;
}
.sg-header__logo {
    display: block;
    width: 160px;
    width: clamp(132px, 10vw, 190px);
    line-height: 0;
}
.sg-header__logo img { width: 100%; height: auto; display: block; }
.sg-header__bar {
    position: relative;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* V4.3: category_nav_pc remains an independent, database-driven block. */
.sg-category-nav-slot {
    /*flex: 1 1 auto;*/
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: clamp(178px, 16vw, 300px);
}
.sg-category-nav-source {
    width: 100%;
    background: #000;
    color: #fff;
}
.sg-category-nav-source > .sg-desktop-nav {
    width: min(95%, 1480px);
    margin: 0 auto;
}
.sg-category-nav-source > .sg-mobile-nav { display: none; }
.sg-category-nav-source.is-mounted { display: none !important; }
.sg-desktop-nav { display: block; min-width: 0; max-width: 100%; }

.sg-nav-list,
.sg-nav-submenu { list-style: none; margin: 0; padding: 0; }
.sg-nav-list { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.sg-nav-item { position: relative; }
.sg-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px clamp(8px, .85vw, 18px);
    color: #fff !important;
    font-size: clamp(13px, .9vw, 16px);
    line-height: 1.5;
    white-space: nowrap;
    transition: color var(--sg-transition);
}
.sg-nav-link:hover,
.sg-nav-item:focus-within > .sg-nav-link,
.sg-nav-item:hover > .sg-nav-link { color: var(--sg-accent) !important; }
.sg-nav-chevron {
    display: inline-block;
    flex: 0 0 auto;
    margin-left: 2px;
    font-size: 10px;
    line-height: 1;
    transform: translateY(0);
    transition: transform .25s ease, color .25s ease;
}
.sg-nav-item:hover > .sg-nav-link .sg-nav-chevron,
.sg-nav-item:focus-within > .sg-nav-link .sg-nav-chevron {
    transform: rotate(180deg);
}
.sg-nav-chevron--right {
    margin-left: auto;
    font-size: 9px;
    transform: none !important;
}
.sg-nav-submenu {
    position: absolute;
    top: calc(100% - 4px);
    left: -22px;
    width: 238px;
    margin: 0;
    padding: 7px;
    list-style: none;
    background: #fff;
    color: #141516;
    border-radius: 6px;
    box-shadow: 0 10px 32px rgba(0,0,0,.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scaleY(.86) translateY(-8px);
    transform-origin: top center;
    transition: opacity .22s ease, visibility .22s ease, transform .28s ease;
    z-index: 1050;
}

.sg-nav-submenu--right,
.sg-nav-item--edge > .sg-nav-submenu {
    left: auto;
    right: -15px;
}

/* Dynamic category trees near the right edge open their deeper levels leftward. */
.sg-nav-item--edge > .sg-nav-submenu .sg-nav-submenu--nested,
.sg-nav-list > .sg-nav-item:nth-last-child(-n+2) > .sg-nav-submenu .sg-nav-submenu--nested {
    left: auto;
    right: calc(100% - 1px);
}

/* Show both the first dropdown and every deeper category level. */
.sg-nav-item:hover > .sg-nav-submenu,
.sg-nav-item:focus-within > .sg-nav-submenu,
.sg-nav-submenu > li:hover > .sg-nav-submenu,
.sg-nav-submenu > li:focus-within > .sg-nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scaleY(1) translateY(0);
}

.sg-nav-submenu li {
    position: relative;
    width: 100%;
}

.sg-nav-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border-radius: 5px;
    background: transparent;
    color: #141516 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    transition: background-color .22s ease, color .22s ease;
}

/* Match the design HTML: orange item background with white text on hover. */
.sg-nav-submenu li:hover > a,
.sg-nav-submenu li:focus-within > a {
    background-color: var(--sg-accent) !important;
    color: #fff !important;
}

.sg-nav-submenu li:hover > a .sg-nav-chevron--right,
.sg-nav-submenu li:focus-within > a .sg-nav-chevron--right {
    color: #fff !important;
    transform: translateX(3px) !important;
}

/* No horizontal gap: otherwise hover is lost before the cursor reaches level 3. */
.sg-nav-submenu--nested {
    top: -7px;
    left: calc(100% - 1px);
    z-index: 1060;
}

.sg-header-actions {
    /*position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);*/
    display: flex;
    align-items: center;
    gap: clamp(8px, .8vw, 14px);
}
.sg-header-icon,
.sg-menu-toggle {
    width: 44px;
    height: 44px;
    width: clamp(38px, 3vw, 46px);
    height: clamp(38px, 3vw, 46px);
    padding: 10px;
    border: 0;
    border-radius: 5px;
    background: var(--sg-surface);
    color: #1f1f1f !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--sg-transition), transform .25s ease;
}
.sg-header-icon:hover,
.sg-menu-toggle:hover { background: var(--sg-yellow); transform: translateY(-2px); }
.sg-header-icon > i,
.sg-menu-toggle > i {
    display: block;
    width: auto;
    height: auto;
    color: currentColor;
    font-size: clamp(16px, 1.042vw, 20px);
    line-height: 1;
    text-align: center;
}
/* Backward-compatible fallback if an old cached Twig still contains SVG. */
.sg-header-icon svg,
.sg-menu-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-header-search { position: relative; display: flex; align-items: center; }
.sg-header-search input {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) scaleX(.85);
    transform-origin: right center;
    width: clamp(220px, 19vw, 300px);
    height: 44px;
    padding: 0 15px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #000;
    color: #fff;
    outline: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease, transform .25s ease;
}
.sg-header-search input::placeholder { color: #aaa; }
.sg-header-search.is-open input {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scaleX(1);
}
.sg-header-search.is-open input:focus { border-color: var(--sg-accent); }
.sg-menu-toggle { display: none; }

/* ---------- Mobile drawer ---------- */
.sg-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}
.sg-mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.sg-mobile-drawer__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.64);
    opacity: 0;
    transition: opacity .35s ease;
}
.sg-mobile-drawer.is-open .sg-mobile-drawer__overlay { opacity: 1; }
.sg-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 390px);
    height: 100%;
    overflow-y: auto;
    background: #111;
    color: #fff;
    padding: 22px;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.2,.75,.2,1);
}
.sg-mobile-drawer.is-open .sg-mobile-drawer__panel { transform: translateX(0); }
.sg-mobile-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sg-mobile-drawer__head img { width: 116px; }
.sg-mobile-drawer__head button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.sg-mobile-search { position: relative; margin-bottom: 16px; }
.sg-mobile-search input { width: 100%; height: 46px; border: 1px solid #444; border-radius: 6px; background: #000; color: #fff; padding: 0 48px 0 14px; }
.sg-mobile-search button { position: absolute; right: 0; top: 0; width: 46px; height: 46px; border: 0; background: transparent; color: #fff; padding: 12px; }
.sg-mobile-search button > i { display: block; font-size: 18px; line-height: 1; }
.sg-mobile-search svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.sg-mobile-account-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.sg-mobile-account-links a { border: 1px solid #333; border-radius: 5px; padding: 10px; text-align: center; font-size: 13px; }
.sg-mobile-nav { width: 100%; }
.sg-mobile-nav__group { margin: 0; border-bottom: 1px solid #2d2d2d; }
.sg-mobile-nav__group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 15px 2px;
    color: #fff;
    font-weight: 600;
    list-style: none;
}
.sg-mobile-nav__group > summary::-webkit-details-marker { display: none; }
.sg-mobile-nav__chevron {
    flex: 0 0 auto;
    color: var(--sg-accent);
    font-size: 10px;
    transition: transform .25s ease;
}
.sg-mobile-nav__group[open] > summary .sg-mobile-nav__chevron { transform: rotate(180deg); }
.sg-mobile-nav__children {
    padding: 0 0 10px 12px;
    border-left: 1px solid #2d2d2d;
}
.sg-mobile-nav__all,
.sg-mobile-nav__link {
    display: block;
    padding: 9px 12px;
    color: #cfcfcf !important;
    font-size: 13px;
    line-height: 1.5;
}
.sg-mobile-nav__all {
    color: var(--sg-accent) !important;
    font-weight: 600;
}
.sg-mobile-nav__group--level-2 > summary,
.sg-mobile-nav__group--level-3 > summary { padding: 11px 10px; font-size: 13px; }
.sg-mobile-nav__link--level-2 { padding-left: 18px; }
.sg-mobile-nav__link--level-3 { padding-left: 26px; }
body.sg-menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.sg-hero { background: #000; padding: 18px 0 62px; }
.sg-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(30px, 4vw, 80px); }
.sg-hero__content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Maven Pro", Inter, "Noto Sans JP", sans-serif;
    font-size: clamp(52px, 6.2vw, 118px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.08;
}
.sg-hero__content h1 span { color: var(--sg-accent); }
.sg-hero__toggle {
    min-width: 120px;
    padding: 8px 18px;
    margin: 0 0 14px;
    border: 1px solid var(--sg-accent);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.sg-hero__description { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .32s ease, opacity .3s ease, margin .3s ease; }
.sg-hero__description.is-open { max-height: 220px; opacity: 1; margin-bottom: 22px; }
.sg-hero__description p { color: #fff; font-size: clamp(14px, 1vw, 17px); line-height: 1.75; max-width: 630px; }
.sg-hero__visual img { display: block; width: 100%; max-width: 852px; margin-inline: auto; }
.sg-outline-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #0f0f0f;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .4s ease, border-color .4s ease;
    float: right;
}
.sg-outline-button::before { content: ""; position: absolute; z-index: -1; width: 260px; height: 150px; border-radius: 50%; background: var(--sg-accent); top: 100%; left: 100%; transition: top .55s ease, left .55s ease; }
.sg-outline-button:hover::before { top: -45px; left: -45px; }
.sg-outline-button:hover { color: #fff !important; border-color: var(--sg-accent); }
.sg-outline-button--small { min-width: auto; padding: 13px 27px; }

/* ---------- Signup popup ---------- */
.sg-signup-popup { position: fixed; right: 20px; bottom: 20px; z-index: 1900; width: min(320px, calc(100vw - 40px)); padding: 20px 18px 18px; border-radius: 12px; background: linear-gradient(180deg,#ffeef6,#ffdce8); color: #2b2b2b; box-shadow: 0 12px 30px rgba(22,16,40,.28); }
.sg-signup-popup[hidden] { display: none; }
.sg-signup-popup__close { position: absolute; right: 8px; top: 6px; width: 28px; height: 28px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #ff4d85; font-size: 13px; cursor: pointer; }
.sg-signup-popup h2 { margin: 0 28px 6px 0; font-size: 22px; color: #222; }
.sg-signup-popup p { margin: 0 0 8px; color: #4b4b4b; font-size: 13px; }
.sg-signup-popup__note { font-size: 12px !important; color: #6b6b6b !important; }
.sg-signup-popup > a { display: flex; justify-content: center; padding: 11px 15px; border-radius: 8px; background: #ff6fa1; color: #fff !important; font-weight: 700; text-decoration: none; }

/* ---------- Shared section heading ---------- */
.sg-section { background: #000; padding: 54px 0; color: #fff; }
.sg-section-heading { margin-bottom: 42px; }
.sg-section-heading--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.sg-eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 8px; color: var(--sg-accent); font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .03em; }
.sg-eyebrow img { width: 22px; height: 22px; object-fit: contain; }
.sg-section-heading h2 { margin: 0; color: #fff; font-family: "Maven Pro", Inter, "Noto Sans JP", sans-serif; font-size: clamp(31px, 2.4vw, 42px); font-weight: 700; line-height: 1.2; }

/* ---------- Categories ---------- */
.sg-category-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px; }
.sg-category-card { display: block; min-width: 0; color: #fff !important; text-decoration: none; }
.sg-category-card__image { display: block; overflow: hidden; padding: 10px; border-radius: var(--sg-radius); background: var(--sg-surface); }
.sg-category-card__image img { width: 100%; aspect-ratio: 236/228; object-fit: cover; display: block; transition: transform .25s linear; }
.sg-category-card__title { display: block; margin-top: 15px; color: #fff; font-size: clamp(13px, 1vw, 17px); font-weight: 500; line-height: 1.4; transition: color var(--sg-transition); }
.sg-category-card:hover .sg-category-card__image img { transform: scale(1.1); }
.sg-category-card:hover .sg-category-card__title { color: var(--sg-accent); }

/* ---------- Product sliders/cards ---------- */
.sg-product-rows { display: grid; gap: 30px; }
.sg-slider-shell { position: relative; }
.sg-product-slider:not(.slick-initialized) { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.sg-product-slider.slick-initialized { margin: 0 -8px; padding-bottom: 8px; }
.sg-product-slider .slick-track { display: flex; }
.sg-product-slider .slick-slide { height: auto; padding: 0 8px; }
.sg-product-slider .slick-slide > div { height: 100%; }
.sg-product-card { height: 100%; min-width: 0; color: #fff; }
.sg-product-card__image-wrap { position: relative; overflow: hidden; background: #161616; border-radius: var(--sg-radius) var(--sg-radius) 0 0; }
.sg-product-card__image-link { display: block; aspect-ratio: 414/560; overflow: hidden; }
.sg-product-card__image-link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.sg-product-card:hover .sg-product-card__image-link img { transform: scale(1.025); }
.sg-product-card__sale { position: absolute; left: 16px; top: 16px; z-index: 3; padding: 4px 8px; border-radius: 3px; background: #0f0f0f; color: #fff; font-size: 12px; font-weight: 600; }
.sg-product-card__side-actions { position: absolute; right: -74px; top: 16px; z-index: 4; transition: right .45s ease; }
.sg-product-card__side-actions a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #808080; border-radius: 50%; background: rgba(255,255,255,.92); color: #141516; transition: background .35s ease, color .35s ease, border-color .35s ease; }
.sg-product-card__side-actions i { display: block; font-size: 16px; line-height: 1; }
.sg-product-card__side-actions svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
.sg-product-card__side-actions a:hover { background: var(--sg-accent); border-color: var(--sg-accent); color: #fff; }
.sg-product-card__bottom-action { position: absolute; left: 16px; right: 16px; bottom: -90px; z-index: 4; transition: bottom .45s ease; }
.sg-product-card__bottom-action a { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 50px; padding: 12px; border-radius: 4px; background: #0f0f0f; color: #fff !important; text-decoration: none; font-weight: 600; transition: background .35s ease; }
.sg-product-card__bottom-action a:hover { background: var(--sg-accent); }
.sg-product-card:hover .sg-product-card__side-actions { right: 16px; }
.sg-product-card:hover .sg-product-card__bottom-action { bottom: 16px; }
.sg-product-card__body { padding-top: 15px; }
.sg-product-card__comment { margin: 0 0 5px; color: var(--sg-accent); font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sg-product-card__title { display: -webkit-box; min-height: 24px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 1; color: #fff !important; font-size: 15px; line-height: 1.6; text-decoration: none; transition: color var(--sg-transition); }
.sg-product-card:hover .sg-product-card__title { color: var(--sg-accent) !important; }
.sg-product-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin: 8px 0; color: #fff; font-size: 14px; }
.sg-product-card__price strong { font-weight: 500; color: #fff; }
.sg-product-card__old-price { color: #808080; text-decoration: line-through; }
.sg-product-card__rating { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 12px; }
.sg-stars { color: #d9d9d9; letter-spacing: 1px; }
.sg-slider-arrow { position: absolute; top: 38%; z-index: 8; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #fff; color: #141516; cursor: pointer; box-shadow: 0 5px 18px rgba(0,0,0,.24); transition: background .25s ease, opacity .25s ease; }
.sg-slider-arrow:hover { background: var(--sg-yellow); }
.sg-slider-arrow--prev { left: 12px; transform: translate(-50%,-50%); }
.sg-slider-arrow--next { right: 12px; transform: translate(50%,-50%); }
.sg-slider-arrow i { display: block; font-size: 14px; line-height: 1; }
.sg-slider-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.25; }
.sg-slider-arrow.slick-disabled { opacity: .25; cursor: default; }

/* ---------- Ad banners ---------- */
.sg-ad-section { padding-top: 46px; padding-bottom: 54px; }
.sg-ad-banner { display: block; overflow: hidden; width: 100%; border-radius: 4px; text-decoration: none; }
.sg-ad-banner + .sg-ad-banner { margin-top: 26px; }
.sg-ad-banner img { display: block; width: 100%; height: auto; transition: transform .35s ease, filter .35s ease; }
.sg-ad-banner:hover img { transform: scale(1.012); filter: brightness(1.04); }

/* ---------- Benefits ---------- */
.sg-benefits { background: var(--sg-accent); color: #fff; padding: 42px 0; }
.sg-benefits__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); align-items: center; }
.sg-benefit-card { display: flex; align-items: center; gap: 16px; min-height: 86px; padding: 0 28px; border-right: 1px solid rgba(255,255,255,.25); }
.sg-benefit-card:last-child { border-right: 0; }
.sg-benefit-card img { width: clamp(48px, 3.3vw, 64px); height: clamp(48px, 3.3vw, 64px); object-fit: contain; flex: 0 0 auto; }
.sg-benefit-card h2 { margin: 0 0 7px; color: #fff; font-size: clamp(16px, 1.3vw, 21px); font-weight: 500; line-height: 1.35; }
.sg-benefit-card p { margin: 0; color: #fff; font-size: clamp(12px, .9vw, 14px); line-height: 1.55; }

/* ---------- Footer ---------- */
.sg-footer { background: #000; color: #fff; padding: 62px 0 28px; border-top: 1px solid rgba(255,255,255,.06); font-family: Inter, "Noto Sans JP", "Yu Gothic", sans-serif; }
.sg-footer a { color: #fff; text-decoration: none; transition: color .3s ease; }
.sg-footer a:hover { color: var(--sg-accent); }
.sg-footer__main { display: grid; grid-template-columns: minmax(280px,2.5fr) repeat(3,minmax(160px,1fr)); gap: 42px; align-items: start; }
.sg-footer__brand img { width: 180px; width: clamp(145px, 11vw, 210px); height: auto; display: block; }
.sg-footer__column h2 { margin: 0 0 20px; color: #fff; font-size: 24px; font-weight: 600; line-height: 1.45; }
.sg-footer__column ul { list-style: none; margin: 0; padding: 0; }
.sg-footer__column li { margin-bottom: 10px; }
.sg-footer__column a { font-size: 16px; line-height: 1.55; }
.sg-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 23px;}
.sg-footer__bottom small{
    display: none;
}
.sg-footer__payments { display: flex; align-items: center; gap: 14px; }
.sg-footer__payments img { width: 48px; height: 32px; object-fit: contain; }
.sg-footer__bottom small { color: #8f8f8f; font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
    .sg-desktop-nav,
    .sg-category-nav-slot { display: none; }
    .sg-header__bar { justify-content: flex-end; }
    .sg-header-actions { position: static; transform: none; }
    .sg-menu-toggle { display: inline-flex; }
    .sg-header-search,
    .sg-header-actions > a { display: none; }
    .sg-shell--content { width: min(90%, 1120px); }
    .sg-category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .sg-benefits__grid { width: min(95%, 1100px); }
    .sg-benefit-card { padding: 0 18px; }
}
@media (max-width: 900px) {
    .sg-hero { padding-top: 12px; }
    .sg-hero__grid { grid-template-columns: 1fr; }
    .sg-hero__content { text-align: center; padding-top: 14px; }
    .sg-hero__description p { margin-inline: auto; }
    .sg-hero__visual { width: min(78%, 650px); margin-inline: auto; }
    .sg-benefits__grid { grid-template-columns: 1fr; gap: 12px; }
    .sg-benefit-card { border: 1px solid rgba(255,255,255,.65); border-radius: 8px; padding: 18px; }
    .sg-footer__main { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .sg-footer__brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
    .sg-shell,
    .sg-shell--header,
    .sg-shell--content,
    .sg-shell--ad { width: calc(100% - 32px); }
    .sg-header { padding-top: 5px; }
    .sg-header__logo-row { min-height: 70px; }
    .sg-header__logo { width: 128px; }
    .sg-header__bar { min-height: 52px; }
    .sg-header-actions { gap: 8px; }
    .sg-menu-toggle { width: 44px; height: 44px; }
    .sg-hero { padding: 10px 0 38px; }
    .sg-hero__content h1 { font-size: clamp(41px, 13vw, 66px); letter-spacing: -.035em; }
    .sg-hero__visual { width: 100%; }
    .sg-section { padding: 42px 0; }
    .sg-section-heading { margin-bottom: 28px; }
    .sg-section-heading--row { align-items: center; }
    .sg-outline-button--small { padding: 10px 16px; font-size: 12px; }
    .sg-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px 12px; }
    .sg-category-card__image { padding: 8px; }
    .sg-category-card__title { font-size: 13px; margin-top: 10px; }
    .sg-product-slider:not(.slick-initialized) { grid-template-columns: 1fr 1fr; }
    .sg-slider-arrow { display: none !important; }
    .sg-product-card__side-actions { right: 12px; }
    .sg-product-card__bottom-action { /*position: static; margin-top: 8px;*/ }
    .sg-product-card__bottom-action a { min-height: 42px; font-size: 13px; }
    .sg-product-card__title { -webkit-line-clamp: 2; min-height: 45px; font-size: 13px; }
    .sg-product-card__rating { display: none; }
    .sg-ad-banner + .sg-ad-banner { margin-top: 16px; }
    .sg-benefits { padding: 22px 0; }
    .sg-benefit-card { align-items: center; }
    .sg-footer { padding-top: 44px; }
    .sg-footer__main { grid-template-columns: 1fr; gap: 28px; }
    .sg-footer__brand { grid-column: auto; }
    .sg-footer__column { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 20px; }
    .sg-footer__bottom { align-items: flex-start; flex-direction: column; }
    .sg-footer__payments { flex-wrap: wrap; }
    .sg-signup-popup { right: 12px; bottom: 12px; width: calc(100vw - 24px); }

    .sg-outline-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #0f0f0f;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color .4s ease, border-color .4s ease;
    float: none;
}
}

/* ========================================================================
   V4.1 product information visibility fix
   The current site still loads old EC-CUBE/theme styles.  These selectors are
   intentionally more specific so title, price and review remain visible.
   ======================================================================== */
body .sg-products-section .sg-product-slider .sg-product-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: #000 !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__image-wrap {
    flex: 0 0 auto !important;
}

body .sg-products-section .sg-product-card__body,
body .sg-products-section [data-sg-product-info] {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    z-index: 6 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 116px !important;
    height: auto !important;
    margin: 0 !important;
    padding: 15px 2px 4px !important;
    overflow: visible !important;
    background: #000 !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    clip: auto !important;
    clip-path: none !important;
}

body .sg-products-section .sg-product-card__body > * {
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section a.sg-product-card__title {
    display: -webkit-box !important;
    position: relative !important;
    width: 100% !important;
    min-height: 24px !important;
    max-height: 48px !important;
    margin: 0 0 7px !important;
    padding: 0 !important;
    overflow: hidden !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card:hover a.sg-product-card__title {
    color: var(--sg-accent) !important;
    -webkit-text-fill-color: var(--sg-accent) !important;
}

body .sg-products-section .sg-product-card__price {
    display: flex !important;
    position: relative !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    width: 100% !important;
    min-height: 24px !important;
    margin: 0 0 7px !important;
    padding: 0 !important;
    background: transparent !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__current-price {
    display: inline !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__old-price {
    display: inline !important;
    color: #8b8b8b !important;
    -webkit-text-fill-color: #8b8b8b !important;
    font-size: 13px !important;
    text-decoration: line-through !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__rating {
    display: flex !important;
    position: relative !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    min-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-stars {
    display: inline-block !important;
    color: #bdbdbd !important;
    -webkit-text-fill-color: #bdbdbd !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__review-text {
    display: inline !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

body .sg-products-section .sg-product-card__comment {
    display: block !important;
    position: relative !important;
    margin: 0 0 5px !important;
    color:#fff !important;
    /*color: var(--sg-accent) !important;
    -webkit-text-fill-color: var(--sg-accent) !important;*/
    opacity: 1 !important;
    visibility: visible !important;
}

/* The old V4 mobile rule hid reviews. V4.1 keeps them visible. */
@media (max-width: 640px) {
    body .sg-products-section .sg-product-card__body,
    body .sg-products-section [data-sg-product-info] {
        min-height: 128px !important;
        padding-top: 13px !important;
    }

    body .sg-products-section a.sg-product-card__title {
        min-height: 42px !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    body .sg-products-section .sg-product-card__price,
    body .sg-products-section .sg-product-card__current-price {
        font-size: 13px !important;
    }

    body .sg-products-section .sg-product-card__rating {
        display: flex !important;
    }
}

/* ========================================================================
   V4.2 Font Awesome integration
   EC-CUBE already loads assets/css/all.css before this file.  All SUPERGIRL
   interface icons now use that real icon font instead of Unicode characters
   or hand-drawn SVG paths.  No extra webfont package is required.
   ======================================================================== */
.sg-header .fas,
.sg-header .far,
.sg-products-section .fas,
.sg-products-section .far,
.sg-signup-popup .fas {
    speak: none;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Keep icon alignment independent from the Japanese text line-height. */
.sg-nav-link > .sg-nav-chevron,
.sg-header-icon > i,
.sg-menu-toggle > i,
.sg-mobile-search button > i,
.sg-mobile-drawer__head button > i,
.sg-mobile-nav__chevron,
.sg-product-card__side-actions i,
.sg-slider-arrow i,
.sg-signup-popup__close i {
    vertical-align: middle;
}


/* ========================================================================
   V4.4 dynamic category hover/deep-level fix
   - Level-2 hover follows the design: orange background + white text.
   - Any descendant submenu can open, including level 3 and deeper.
   - Nested menus touch the parent menu so pointer hover is not interrupted.
   ======================================================================== */
.sg-category-grid a{
    text-decoration: none;
}
/* ========================================================================
   V4.5 design parity update
   Built on the user's latest V4.4 stylesheet without resetting their manual
   header/footer sizing changes.
   ======================================================================== */

/* ---------- 1. Design floating popup (not Bootstrap modal-content) ---------- */
.floating-popup {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 320px;
    max-width: calc(100% - 40px);
    padding: 20px 18px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffeef6, #ffdce8);
    box-shadow: 0 12px 30px rgba(22, 16, 40, .25);
    color: #2b2b2b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    z-index: 12000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity .32s ease, visibility .32s ease, transform .32s cubic-bezier(.2, .9, .3, 1);
}
.floating-popup[hidden] { display: none !important; }
.floating-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-popup.is-closing {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.floating-popup__inner {
    padding-right: 6px;
    text-align: center;
}
.floating-popup__close {
    position: absolute;
    right: 8px;
    top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    color: #ff4d85;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}
.floating-popup h3 {
    margin: 0 22px 8px 0;
    color: #2b2b2b;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.05;
}
.floating-popup__image {
    display: block;
    width: 100%;
    max-width: 280px;
    height: 135px;
    margin: 0 auto 8px;
    object-fit: contain;
}
.floating-popup p {
    margin: 0 0 12px;
    color: #4b4b4b;
    font-size: 13px;
    line-height: 1.55;
}
.floating-popup__notice {
    margin-bottom: 10px !important;
    color: #6b6b6b !important;
    font-size: 12px !important;
}
.floating-popup__cta {
    display: flex;
    align-items: center;
    gap: 12px;
}
.floating-popup__btn {
    display: inline-flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: #ff6fa1;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .25s ease, transform .25s ease;
}
.floating-popup__btn:hover {
    background: #ff4d85;
    color: #fff !important;
    transform: translateY(-1px);
}
.floating-popup__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #ff85b8;
}
.floating-popup__play svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ---------- 2. Back-to-top copied from the design ---------- */
.ec-blockTopBtn,
.ec-blockTopBtn.pagetop {
    display: none !important;
}
.back-to-top {
    position: fixed;
    right: 12px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(114px, 6.25vw, 340px);
    height: clamp(114px, 6.25vw, 340px);
    padding: 11px 0;
    border-radius: 10px;
    background: #EF6440;
    color: #fff !important;
    font-size: 100px;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
    opacity: 0;
    visibility: hidden;
    transform: scale(.3);
    transform-origin: center center;
    z-index: 999;
    transition: opacity .3s ease, visibility .3s ease, background .3s ease;
}
.back-to-top i {
    display: block;
    color: inherit;
    /*font-size: .42em;*/
    line-height: 1;
}
.back-to-top:hover {
    background: #EF6440;
    color: #fff !important;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ---------- 3. Design image mobile-menu button ---------- */
.sg-menu-toggle.main-menu__toggler.mobile-nav__toggler {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    color: var(--sg-accent) !important;
    cursor: pointer;
    transform: none;
}
.sg-menu-toggle.main-menu__toggler.mobile-nav__toggler:hover {
    background: transparent;
    color: var(--sg-accent) !important;
    transform: none;
}
.sg-menu-toggle.main-menu__toggler.mobile-nav__toggler img {
    display: block;
    width: 32px;
    height: 22px;
    object-fit: contain;
}

/* ---------- 4. Product rows: PC two rows, mobile one unified row ---------- */
.sg-product-rows--mobile { display: none; }
.sg-product-rows--desktop { display: grid; }
.sg-product-slider--mobile:not(.slick-initialized) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.sg-product-slider--mobile.slick-initialized {
    margin: 0 -8px;
}
.sg-product-slider--mobile .slick-slide {
    padding: 0 8px;
}

/* ---------- 5. Mobile drawer follows the design's left orange panel ---------- */
.sg-mobile-drawer.mobile-nav__wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
}
.sg-mobile-drawer.mobile-nav__wrapper.is-open,
.sg-mobile-drawer.mobile-nav__wrapper.expanded {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.sg-mobile-drawer__overlay.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: #0F0F0F;
    opacity: .3;
}
.sg-mobile-drawer__panel.mobile-nav__content {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: 300px;
    max-width: 88vw;
    height: 100%;
    padding: 30px 15px;
    overflow-y: auto;
    background: #EF6440;
    color: #0F0F0F;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    z-index: 10;
}
.sg-mobile-drawer.is-open .sg-mobile-drawer__panel,
.sg-mobile-drawer.expanded .sg-mobile-drawer__panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}
.sg-mobile-drawer__close.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .32);
    color: #0F0F0F;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}
.sg-mobile-drawer__logo.logo-box {
    display: flex;
    margin-bottom: 40px;
    padding-right: 44px;
}
.sg-mobile-drawer__logo.logo-box img {
    display: block;
    width: clamp(120px, 15.625vw, 220px);
    max-width: 100%;
    height: auto;
}
.sg-mobile-drawer__top.mobile-nav__top {
    margin-bottom: 25px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
}
.sg-mobile-drawer__auth.mobile-nav__auth {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.mobile-nav__auth-btn {
    flex: 1 1 calc(50% - 5px);
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition: background .3s ease, color .3s ease;
}
.mobile-nav__auth-btn--register { background: #0F0F0F; }
.mobile-nav__auth-btn:hover { background: rgba(255, 255, 255, .18); }
.sg-mobile-drawer__search.mobile-nav__search {
    margin-bottom: 14px;
}
.sg-mobile-drawer__search.mobile-nav__search form {
    display: flex;
    gap: 8px;
}
.mobile-nav__search-input {
    flex: 1 1 auto;
    min-width: 0;
    height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.mobile-nav__search-input::placeholder { color: rgba(255, 255, 255, .75); }
.mobile-nav__search-btn {
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #EF6440;
    cursor: pointer;
}
.sg-mobile-drawer__quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}
.sg-mobile-drawer__quick-links .mobile-nav__favorite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
}
.mobile-nav__extra-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
.mobile-nav__extra-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .3s ease, transform .3s ease;
}
.mobile-nav__extra-btn:hover {
    background: rgba(255, 255, 255, .28);
    transform: translateY(-1px);
}

/* Dynamic EC-CUBE category tree inside the design drawer. */
.sg-mobile-nav-slot.mobile-nav__container { width: 100%; }
.sg-mobile-nav-slot .sg-mobile-nav {
    display: block;
    width: 100%;
    color: #0F0F0F;
}
.sg-mobile-nav-slot .sg-mobile-nav__group {
    margin: 0;
    border-bottom: 1px solid #1F1F1F;
}
.sg-mobile-nav-slot .sg-mobile-nav__group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 52px;
    padding: 8px 0;
    color: #0F0F0F;
    font-family: Inter, "Noto Sans JP", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: .35px;
    cursor: pointer;
    list-style: none;
    transition: color .3s ease;
}
.sg-mobile-nav-slot .sg-mobile-nav__group > summary::-webkit-details-marker { display: none; }
.sg-mobile-nav-slot .sg-mobile-nav__group[open] > summary { color: #fff; }
.sg-mobile-nav-slot .sg-mobile-nav__chevron {
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .12);
    color: #fff;
    font-size: 11px;
    transform: rotate(-90deg);
    transition: transform .35s ease, background .35s ease, color .35s ease;
}
.sg-mobile-nav-slot .sg-mobile-nav__group[open] > summary .sg-mobile-nav__chevron {
    background: #fff;
    color: #0F0F0F;
    transform: rotate(0deg);
}
.sg-mobile-nav-slot .sg-mobile-nav__children {
    padding: 0;
    border-top: 1px solid #1F1F1F;
    border-left: 0;
}
.sg-mobile-nav-slot .sg-mobile-nav__all,
.sg-mobile-nav-slot .sg-mobile-nav__link {
    display: block;
    min-height: 44px;
    padding: 12px 10px 12px 1.3em;
    border-bottom: 1px solid rgba(31, 31, 31, .72);
    color: #0F0F0F !important;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none !important;
}
.sg-mobile-nav-slot .sg-mobile-nav__all {
    color: #fff !important;
    font-weight: 700;
}
.sg-mobile-nav-slot .sg-mobile-nav__group--level-2 > summary,
.sg-mobile-nav-slot .sg-mobile-nav__group--level-3 > summary {
    min-height: 46px;
    padding-left: 1.3em;
    font-size: 14px;
}
.sg-mobile-nav-slot .sg-mobile-nav__group--level-3 > summary { padding-left: 2.1em; }
.sg-mobile-nav-slot .sg-mobile-nav__link--level-2 { padding-left: 1.7em; }
.sg-mobile-nav-slot .sg-mobile-nav__link--level-3 { padding-left: 2.5em; }

@media (max-width: 1240px) {
    .sg-menu-toggle.main-menu__toggler.mobile-nav__toggler {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .sg-product-rows--desktop { display: none !important; }
    .sg-product-rows--mobile { display: block !important; }
    .sg-product-slider--mobile:not(.slick-initialized) {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    .sg-product-slider--mobile .slick-list { overflow: hidden; }
    .sg-product-slider--mobile .slick-track { display: flex; }
    .sg-product-slider--mobile .slick-slide { height: auto; }
    .sg-product-slider--mobile .slick-slide > div { height: 100%; }
}

@media (max-width: 490px) {
    .back-to-top {
        right: -20px;
        bottom: -20px;
    }
    .floating-popup {
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
    }
    .floating-popup__notice { display: none !important; }
    .sg-mobile-drawer__panel.mobile-nav__content {
        width: clamp(250px, 76vw, 320px);
        max-width: 88vw;
    }
}

/* ========================================================================
   V4.7 homepage review stars synchronized with ProductReview detail page
   - Filled stars: ★
   - Empty stars: ☆
   - Star count uses the same rounded average as the detail-page plugin.
   ======================================================================== */
body .sg-products-section .sg-stars {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    width: auto !important;
    overflow: visible !important;
    font-family: Arial, "Noto Sans JP", sans-serif !important;
    font-size: 14px !important;
    line-height: 1 !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

body .sg-products-section .sg-stars__active {
    display: inline !important;
    color: #f5b301 !important;
    -webkit-text-fill-color: #f5b301 !important;
}

body .sg-products-section .sg-stars__inactive {
    display: inline !important;
    color: #777 !important;
    -webkit-text-fill-color: #777 !important;
}

body .sg-products-section .sg-product-card__review-text {
    display: inline !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    white-space: nowrap !important;
}
#sexyModal{
    display: none !important;
}
/* ========================================================================
   V5.18 mobile drawer black-flash fix
   - The old wrapper/overlay moved in before the orange navigation panel.
   - Keep the click-to-close overlay, but make it transparent.
   - Animate only the orange panel, with no delayed reveal.
   ======================================================================== */
.sg-mobile-drawer.mobile-nav__wrapper {
    transform: none;
    transition: visibility 0s linear .38s;
}

.sg-mobile-drawer.mobile-nav__wrapper.is-open,
.sg-mobile-drawer.mobile-nav__wrapper.expanded {
    transform: none;
    transition: visibility 0s linear 0s;
}

.sg-mobile-drawer__overlay.mobile-nav__overlay {
    background: transparent;
    opacity: 1;
    transition: none;
}

.sg-mobile-drawer__panel.mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%);
    transition: transform .38s cubic-bezier(.22, .72, .25, 1);
}

.sg-mobile-drawer.is-open .sg-mobile-drawer__panel,
.sg-mobile-drawer.expanded .sg-mobile-drawer__panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform .38s cubic-bezier(.22, .72, .25, 1);
}
