@charset 'utf-8';

:root {

    --mv: #101619;
    --bg: #f5ecdf;
    --orange: #E6A68A;
    --blue: #bfe2f4;
    --yellow: #F3ED9A;
    --pink: #f8cfd7;
    --ink: #222;
    --gray: #D9D9D9;
    --card-stroke: #4a4d50;
    --sk: transparent;

    --radius: 18px;
    --header-h: 80px;

    --step-x: clamp(12px, 3vw, 48px);
    --offset-y: clamp(-280px, -20vw, -160px);
    --lift-x: clamp(-8px, -1.5vw, -20px);
    --lift-y: clamp(-40px, -7vw, -100px);
    --list-drop: clamp(10px, 2vw, 24px);

    /* fluid type */
    --fz-xs: clamp(10px, .75vw, 12px);
    --fz-sm: clamp(12px, 1vw, 14px);
    --fz-md: clamp(14px, 1.2vw, 16px);
    --fz-lg: clamp(18px, 1.8vw, 22px);
    --fz-xl: clamp(24px, 3.4vw, 40px);

    /* 装飾的要素 */
    --easing: cubic-bezier(.22, .72, .16, 1);
    --upDur: 1.1s;
    --leftDur: .95s;
    --start: .45s;
    --gap: .80s;
    --snsStart: 1.75s;
    --snsStep: .28s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    line-height: 1.2;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

body {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: italic;
    color: #333;
}

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

a,
a:visited {
    color: #333;
    text-decoration: none;
}

h1,
h2 {
    margin: 0;
}

h2 {
    font-size: 1.8rem;
    ;
}

h3 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 1rem;
}

p {
    font-size: 0.9rem;
}


small {
    font-size: var(--fz-xs);
    color: var(--muted);
}

ul {
    list-style: none;
}


/* ------------------------------
  ページトップ
------------------------------ */

/* 外側：表示/非表示＆画面右下の固定だけ担当（見た目は持たせない） */
.pagetop {
    position: fixed;
    right: 25px;
    bottom: 32px;
    z-index: 900;
    display: grid;
    place-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
}

.pagetop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease, visibility 0s;
}

/* 内側：ここに“丸の見た目”を全部移す → この要素をアニメ */
.pagetop__float {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg);
    border: 2px solid var(--card-stroke);

    display: grid;
    place-items: center;
    will-change: transform;
}




/*  */
.section-title {
    background-color: #D9D9D9;
    border: solid 1px var(--card-stroke);
    padding: 1rem;
}

.visual-card {
    margin-inline: auto;
    max-width: 469px;
    width: max(300px, 89%);
    aspect-ratio: 5 / 4;
    padding: 10px;
    background-color: var(--gray);
    border-radius: var(--radius);
    border: 3px solid var(--card-stroke);
    margin: 1rem;

}

.visual-card img {
    aspect-ratio: 5/4;
    border-radius: var(--radius);
    border: 3px solid var(--card-stroke);

}

/* slick */

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 50px;
    line-height: 1;
    opacity: 1;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev,
.slick-next {
    z-index: 5;
    width: 36px;
    height: 36px;
}


.slick-next {
    right: 0px;
}



.slick-list {
    margin: 0 auto;
    max-width: 800px;
}


/* header */
/* ===== reset-ish ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== header ===== */
.ot-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ot-bar {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    max-width: 1280px;
    margin-inline: auto;
}

.ot-right {
    display: flex;
    gap: 8px;
}

.ot-iconBtn {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.ot-logo {
    margin: 0 auto;
    align-items: center;
    width: 2.3rem;
}

.ot-logo span {
    font-weight: 900;
}

.ot-tabs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 12px 10px;
    font-size: 10px;
    letter-spacing: .14em;
    font-weight: 800;
}

.ot-tab {
    flex: 1 1 0;
    text-align: center;
    opacity: .7;
    padding: 6px 0;
}

.ot-tab.is-active {
    opacity: 1;
    position: relative;
}

.ot-tab.is-active::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -8px;
    height: 2px;
    background: #000;
}


/* ===== demo page ===== */
.demo-page {
    padding: 18px 14px;
    min-height: 50vh;
}

/* ===== drawer ===== */
.ot-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.ot-drawer.is-open {
    pointer-events: auto;
}

.ot-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: opacity .22s ease;
}

.ot-drawer.is-open .ot-drawer__backdrop {
    opacity: 1;
}

.ot-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(664px, 92vw);
    height: 100%;
    background: #fff;
    transform: translateX(-102%);
    transition: transform .24s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-right: 1px solid rgba(0, 0, 0, .12);
}

.ot-drawer.is-open .ot-drawer__panel {
    transform: translateX(0);
}

.ot-drawer__top {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ot-x {
    font-size: 22px;
}

.ot-logo--mini {
    margin: 0 auto;
    align-items: center;
    width: 2.3rem;
}


/* tabs inside drawer */
.ot-drawerTabs {
    display: flex;
    gap: 10px;
    padding: 10px 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ot-drawerTab {
    flex: 1 1 0;
    padding: 12px 0;
    border: 0;
    background: transparent;
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 10px;
    cursor: pointer;
    opacity: .65;
    position: relative;
}

.ot-drawerTab.is-active {
    opacity: 1;
}

.ot-drawerTab.is-active::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 2px;
    background: #000;
}

/* panels */
.ot-panel {
    display: none;
    padding: 10px 0 18px;
}

.ot-panel.is-active {
    display: block;
}

/* list like screenshot */
.ot-list {
    list-style: none;
    padding: 4px 0;
    margin: 0;
}

.ot-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: 12px;
}

.ot-list li a {
    flex: 1 1 auto;
}

.ot-arrow {
    opacity: .55;
    font-size: 18px;
}

.ot-subTitle {
    margin: 14px 14px 10px;
    font-size: 10px;
    letter-spacing: .14em;
    font-weight: 900;
    opacity: .75;
}

/* featured grid (2 columns) */
.ot-featureGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 14px 10px;
}

.ot-card {
    display: block;
}

.ot-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 2px;
}

.ot-card span {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

/* two big tiles */
.ot-twoGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 10px 14px 6px;
}

.ot-miniCard img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
}

.ot-miniCard span {
    display: block;
    margin-top: 8px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
}

/* account buttons like screenshot */
.ot-accountBtns {
    padding: 14px;
    display: grid;
    gap: 10px;
}

.ot-btn {
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, .25);
    background: #fff;
}

.ot-btn--primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.ot-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* tabs：表示状態 */
.ot-tabs {
    transform: translateY(0);
    opacity: 1;
    max-height: 60px;
    overflow: hidden;
    transition: transform .22s ease, opacity .22s ease, max-height .22s ease;
}

/* tabs：格納状態 */
.ot-header.is-compact .ot-tabs {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
}

.demo-page {
    min-height: 200vh;
    /* ←テスト用。あとで消してOK */
}

/* header内のbuttonのフォーカスを無効化 */
.ot-header button {
    color: #000;
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* フォーカス・アクティブ時も色固定 */
.ot-header button:focus,
.ot-header button:focus-visible,
.ot-header button:active {
    color: #000;
    outline: none;
    box-shadow: none;
}

/* モバイルの青いタップハイライトを消す */
.ot-header button {
    -webkit-tap-highlight-color: transparent;
}

.ot-iconBtn {
    font-size: 18px;
    line-height: 1;
    color: #000;
    /* ←これが最重要 */
}


/* main */
/* 外枠 */
.mv {
    max-width: 1280px;
    margin-inline: auto;
    border: 1px solid var(--card-stroke);
}

/* ここで「高さの基準」を必ず作る（重要） */
.main-visual {
    max-width: 1280px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(360px, 75svh, 760px);
    /* ここを好みに調整 */
}

/* @media (width >=1200px) {
    .main-visual{
       height: 90vh;
    }
} */

.main-visual-title {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    /* ← 完全中央 */
    z-index: 10;
    pointer-events: none;
    padding: clamp(12px, 2vw, 24px);
    /* 端末幅が狭い時の安全マージン */
}

.main-visual-title .mvttl {
    grid-area: 1 / 1;
    margin: 0;
    text-align: center;
}

.main-visual-title .mvttl--text {
    font-size: clamp(28px, 6vw, 72px);
    letter-spacing: .02em;
    line-height: 1.05;
    color: #111;
    text-wrap: balance;
    /* 対応ブラウザで見栄えUP（未対応でもOK） */
}

.main-visual-title .mvttl--logo {
    width: min(72vw, 300px);
    /* 端末で可変、上限あり */
    max-width: 300px;
}

.main-visual-title .mvttl--logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* ← ロゴは contain が安全 */
}

:root {
    --mvttl-wait: 10s;
    --mvttl-fade: .8s;
}

.main-visual-title .mvttl--text {
    opacity: 1;
    animation: mvttlText calc(var(--mvttl-wait) + var(--mvttl-fade)) ease forwards;
}

.main-visual-title .mvttl--logo {
    opacity: 0;
    animation: mvttlLogo calc(var(--mvttl-wait) + var(--mvttl-fade)) ease forwards;
}

@keyframes mvttlText {

    0%,
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes mvttlLogo {

    0%,
    70% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-visual-title .mvttl--text {
        opacity: 0;
        animation: none;
    }

    .main-visual-title .mvttl--logo {
        opacity: 1;
        animation: none;
    }
}



/* SPスライドショー / PCワイド どちらも親いっぱい */
.mv-slideshow,
.mv-wide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* --- SP：スライドショー（デフォルト表示） --- */
.mv-slideshow {
    display: block;
}

/* スライドは重ねる。余白ゼロ（cover固定） */
.mv-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← 余白を出さない */
    object-position: center;
    opacity: 0;
    will-change: opacity;
    animation: mvCross 36s ease-in-out infinite;
}

.mv-slideshow .s1 {
    animation-delay: 0s;
}

.mv-slideshow .s2 {
    animation-delay: 12s;
}

.mv-slideshow .s3 {
    animation-delay: 24s;
}

@keyframes mvCross {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    35% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mv-slideshow .slide {
        animation: none !important;
        opacity: 0;
    }

    .mv-slideshow .s1 {
        opacity: 1;
    }
}

/* --- 462px以上：ワイド画像に切替 --- */
.mv-wide {
    display: none;
}

@media (min-width: 462px) {
    .mv-slideshow {
        display: none;
    }

    .mv-wide {
        display: block;
    }
}

/* mv-wide 内の画像は「親いっぱい + cover」で余白ゼロ */
.mv-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ← ストレッチしない＆余白なし */
    object-position: center;
    /* display: block; */
}


/* どちらを出すか（あなたの意図に合わせて） */
.mv_hide-pc {
    display: block;
}

.mv_hide-sp {
    display: none;
}

@media (min-width: 1200px) {

    .mv-wide img {
        object-fit: contain;

    }

    .mv_hide-pc {
        display: none;
    }

    .mv_hide-sp {
        display: block;
    }
}

/* 外枠 */
.loopTxt {
    --gap: 2.5rem;
    /* アイテム間隔 */
    --speed: 18s;
    /* 速度（小さいほど速い） */
    overflow: hidden;
    background: #e6e0d8;
    /* 近い色に調整してOK */
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

/* 中身：横一列に */
.loopTxt__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: loopTxtMarquee var(--speed) linear infinite;
}

/* 1グループ（これをJSで複製して途切れなくする） */
.loopTxt__group {
    display: inline-flex;
    align-items: center;
    gap: var(--gap);
    padding: 0.5rem var(--gap);
    white-space: nowrap;
}

/* アイテム */
.loopTxt__item {
    font-size: 0.95rem;
    letter-spacing: .06em;
    line-height: 1;
    color: #222;
}

.loopTxt img {
    display: block;
}

.loopTxt__img {
    width: 3rem;
    letter-spacing: .06em;
    flex: 0 0 auto;

}

.loopTxt__img img {
    width: 100%;
    height: auto;
    max-height: 1.2em;
    /* ← 文字高さに合わせて暴れ防止（好みで調整） */
    object-fit: contain;
    /* ロゴはcoverよりcontainが自然 */
}

.loopTxt__group {
    padding: .6rem var(--gap);
    min-height: 2.4rem;
    /* ← 行の高さの下限。好みで調整 */
}

/* 右→左へ。複製がある前提で「半分」移動すると継ぎ目が消える */
@keyframes loopTxtMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* 動きが苦手な人へ配慮 */
@media (prefers-reduced-motion: reduce) {
    .loopTxt__track {
        animation: none;
    }
}

/*  */

/* .feature */

.feature {
    max-width: 1280px;
    margin-inline: auto;
    padding: 1rem;
}

.feature-item {
    margin: 2rem 1rem 1rem;
}

.feature-title h2,
p {
    text-align: center;
    letter-spacing: .02em;
}

/*  */
/*.items  */
.items {
    max-width: 1280px;
    margin-inline: auto;
    padding: 3rem 0;
}

.shoes-list {
    max-width: 90%;
    margin-inline: auto;
}

.shoes-list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;

}

.shoes-list ul>li {

    flex: 0 0 40%;
}

.feature-slider {
    margin-top: 1rem;
}

.feature-item-info {
    margin: 0 auto;
}

.feature-item-info img {
    width: clamp(300px, 80vw, 600px);
    object-fit: contain;
    background-color: black;
    margin-inline: auto;
}



/* category */

.category {
    max-width: 1280px;
    margin-inline: auto;
}

.category .categoryGrid {
    position: relative;
    /* 矢印の基準 */
}

/* 列グリッド（小さくなったら1列） */
.categoryGrid {
    list-style: none;
    margin: 0;

    gap: 1rem;

}

.category .categoryGrid .slick-prev,
.category .categoryGrid .slick-next {
    z-index: 5;
    width: 36px;
    height: 36px;
}

.category .categoryGrid .slick-prev {
    left: 8px;
    /* 好みで調整 */
}

.category .categoryGrid .slick-next {
    right: 13px;
    /* 好みで調整 */
}

/* @media (max-width: 640px) {
    .storeGrid {
        grid-template-columns: 1fr;
    }
} */

.categoryItem {
    margin: 0;
    aspect-ratio: 1/1;
    max-width: 220px;
}

/* カード枠：黒・細ボーダー */
.categoryCard {
    display: block;
    /* background: #000; */
    border: 1px solid rgba(255, 255, 255, .35);
    text-decoration: none;

}

/* 画像とキャプションの“内側余白” */
.categoryFigure {
    margin: 0;
    padding: 1rem;
    /* ←スクショみたいな内側の余白 */
}

/* 画像：縦長・中央トリミング */
.categoryImg {
    display: block;
    aspect-ratio: 1 / 1;
    /* ←縦長の比率（ここで雰囲気が決まる） */
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #111;
}

/* 店名：白・小さめ・左寄せ */

.categoryName {
    margin-top: 0.8rem;
    font-size: 0.6rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .02em;
    color: #000;
}

/* ちょい“それっぽい”ホバー（任意） */
.categoryCard:hover {
    border-color: rgba(255, 255, 255, .6);
}

.category:hover .storeImg {
    border-color: rgba(255, 255, 255, .5);
}

/* slickが有効になったら grid をやめる */
.categoryGrid.slick-initialized {
    display: block;
}

/* slickの各スライドに余白（任意） */
.categoryGrid .slick-slide {
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* 画像が縮まない/崩れない保険 */
.categoryImg {
    width: 100%;
    height: auto;
    display: block;
}

.category .slick-prev:before,
.slick-next:before {
    font-size: 50px;
    color: #000;
    opacity: 1;
}



/* .news */

.news {
    max-width: 1280px;
    margin-inline: auto;
}

.news ul {
    margin: 2rem;
}

.news ul li {
    margin: 1rem 0;
    border-bottom: solid 1px var(--card-stroke);
}

.news-item-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* 画像カラム：PC側は最低200pxを保証 */
.news-item-info>a {
    flex: 0 0 clamp(200px, 32vw, 280px);
    /* min200 / 可変 / max280 */
}

/* 画像：ストレッチなし */
.news-item-info>a img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
}




/* テキスト側 */
.news-item-details {
    flex: 1;
    min-width: 0;
    /* 長文はみ出し防止 */
}

.news-item-details h3,
.news-item-details p {
    text-align: left;
}





/* スマホ：min200を解除して横並びのまま縮める */
@media (max-width: 600px) {
    .news-item-info {
        gap: .75rem;
    }

    .news-item-info>a {
        flex: 0 0 96px;
        /* ここを好みで 80〜140px くらいに */
        max-width: 96px;
    }



    /* 説明文は潰れ防止に2行で省略（不要なら消してOK） */
    .short-description {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


}

@media (min-width: 600px) {

    .news-item-details h3 {
        margin-bottom: 2.8rem;
    }

    .news-item-details p {
        margin: 0.5rem;
    }

    .news-item-details h3 {
        font-size: 1.7rem;
    }

    .short-description p {
        font-size: 1.2rem;
    }

    .amblog-dates p {
        font-size: 1rem;
    }


}


/*.product-review  */

.product-review {
    max-width: 1280px;
    margin-inline: auto;
}

/* 全体（任意） */
.reviews {
    list-style: none;
    padding: 0;
    margin: 3rem;
}

.review {
    margin: 16px;
}

/* カード本体 */
.review-card {
    width: min(300px, 100%);
    max-width: 420px;
    border: 1px solid #cfcfcf;
    background: #fff;
    padding: 14px 14px 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
    color: #111;
}

/* 上段：星 + 日時（右上） */
.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.review-rating {
    font-size: 18px;
    line-height: 1;
    letter-spacing: 2px;
}

.review-date {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

/* タイトル・本文 */
.review-title {
    font-size: 13px;
    font-weight: 700;
    margin: 6px 0 6px;
}

.review-text {
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 56px;
    /* ←スクショみたいに本文の下を少し空ける */
}

/* 商品行：左テキスト + 右サムネ */
.review-productRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.review-productMeta {
    min-width: 0;
    /* これがないと省略(… )が効きづらい */
}

.reviewer-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.reviewer-name {
    font-size: 12px;
    font-weight: 700;
}

.reviewer-badge {
    font-size: 11px;
    color: #333;
}

.product-name {
    display: block;
    font-size: 11px;
    color: #111;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 240px;
    /* ここで1行省略の幅を調整 */
}

.product-name:hover {
    text-decoration: underline;
}

.product-thumb {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border: 1px solid #cfcfcf;
    display: grid;
    place-items: center;
    background: #fff;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 最下段：役に立ちましたか */
.review-helpful {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #e6e6e6;
    font-size: 11px;
    color: #444;
}

.helpful-label {
    margin-right: auto;
    white-space: nowrap;
}

.helpful-btn {
    border: none;
    background: transparent;
    padding: 2px 4px;
    cursor: pointer;
    font-size: 11px;
    color: #333;
}

.helpful-btn:hover {
    text-decoration: underline;
}




/*  */




/* .infomation */

.infomation {
    max-width: 1280px;
    margin-inline: auto;
}

.amblog-post-list.recent-information ul.amblog-list {
    padding: 0 0 40px;
    margin: 0;
}

.amblog-list {
    list-style: none;
    margin: 0;
    padding: 0 25px 25px;
}

.amblog-post-list.recent-information ul.amblog-list li:first-child {
    border-top: 1px solid #babec2;
}

.amblog-post-list.recent-information ul.amblog-list li {
    float: none;
    width: 100%;
    border-bottom: 1px solid #babec2;
    margin: 0;
}

@media only screen and (max-width: 1023px) {
    .page-wrapper .amblog-post-list.recent-information ul.amblog-list li a {
        font-size: 12px;
        line-height: 18px;
        padding: 16px 42px 16px 10px;
    }
}

.amblog-post-list.recent-information ul.amblog-list li a {
    height: auto;
    border: none;
    background: 0 0;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 20px 42px 20px 10px;
    color: #212322;
    position: relative;
    cursor: pointer;
    font-weight: 500;
    display: block;
    text-decoration: none;
}


@media only screen and (max-width: 1023px) {
    .page-wrapper .amblog-post-list.recent-information ul.amblog-list li a:after {
        right: 12px;
        font-size: 10px;
        margin-top: -7px;
    }
}

.amblog-post-list.recent-information ul.amblog-list li a:after {
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    font-weight: 400;
    margin-top: -8px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.amblog-post-list.recent-information ul.amblog-list li a:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 14px;
    color: #212322;
    content: "\e902";
    font-family: 'onitsukatiger-icon';
    vertical-align: middle;
    display: inline-block;
    font-weight: 400;
    overflow: hidden;
    speak: none;
    text-align: center;
}


/* .shop-list */

.shop-list {
    max-width: 1280px;
    margin-inline: auto;
}

/* 2列グリッド（小さくなったら1列） */
.storeGrid {
    list-style: none;
    padding: 2rem;
    margin: 0;
    display: grid;
    gap: 1rem;

    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* @media (max-width: 640px) {
    .storeGrid {
        grid-template-columns: 1fr;
    }
} */

.storeItem {
    margin: 0;
}

/* カード枠：黒・細ボーダー */
.storeCard {
    display: block;
    background: #000;
    border: 1px solid rgba(255, 255, 255, .35);
    text-decoration: none;
}

/* 画像とキャプションの“内側余白” */
.storeFigure {
    margin: 0;
    padding: 10px 10px 12px;
    /* ←スクショみたいな内側の余白 */
}

/* 画像：縦長・中央トリミング */
.storeImg {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* ←縦長の比率（ここで雰囲気が決まる） */
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #111;
}

/* 店名：白・小さめ・左寄せ */

.storeName {
    margin-top: 0.8rem;
    font-size: 0.6rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}

/* ちょい“それっぽい”ホバー（任意） */
.storeCard:hover {
    border-color: rgba(255, 255, 255, .6);
}

.storeCard:hover .storeImg {
    border-color: rgba(255, 255, 255, .5);
}


/* footer */

/* ===============================
  Footer base
=============================== */
.page-footer {
    background: #111;
    color: #fff;
    padding: 18px 0 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
}

.page-footer a {
    color: #fff;
    text-decoration: none;
}

.page-footer a:hover {
    text-decoration: underline;
}

.footer-content {
    width: min(520px, 100%);
    /* スマホ風の幅に寄せる（PCでは中央寄せ） */
    margin: 0 auto;
    padding: 0 18px 18px;
}

/* 大枠の並び（今回はSP想定なので縦） */
.footer-links-maincontainer {
    display: grid;
    gap: 14px;
}

/* ===============================
  Titles
=============================== */
.footer-link-title h3,
.social-share h3 {
    font-size: 12px;
    letter-spacing: .06em;
    font-weight: 700;
    margin: 0;
    padding: 10px 0;
    text-transform: uppercase;
}

/* ブロックの区切り線（スクショの横線の雰囲気） */
.mail-magazine-box,
.links-block,
.social-share,
.footer-bottom-links {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    padding-bottom: 12px;
}

/* ===============================
  Lists
=============================== */
.footer-magazine-box-content ul,
.links-block .footer-link-content ul,
.footer-bottom-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-magazine-box-content a,
.links-block .footer-link-content a,
.footer-bottom-links a {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    padding: 2px 0;
    color: rgba(255, 255, 255, .92);
}

/* ===============================
  Newsletter (メール入力 + 登録ボタン)
=============================== */
.newsletter-section .title strong {
    display: block;
    font-size: 12px;
    letter-spacing: .06em;
    font-weight: 700;
    margin: 0 0 8px;
}

.form.subscribe .field-inner-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.control.newsletter-textfiled {
    flex: 1 1 auto;
}

.control.newsletter-textfiled input {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #141414;
    color: #fff;
    padding: 0 12px;
    font-size: 12px;
    outline: none;
}

.control.newsletter-textfiled input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.actions.newsletter-button {
    flex: 0 0 auto;
}

.actions.newsletter-button .action.subscribe {
    height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: #1b1b1b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.actions.newsletter-button .action.subscribe:hover {
    background: #222;
}

/* プライバシーチェック */
.privacy-check {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.privacy-check input {
    margin-top: 2px;
    accent-color: #fff;
}

.privacy-check label {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
}

/* ===============================
  App badges（Google Play / App Store風）
  ※画像が無いので“バッジ風ボタン”で再現
=============================== */
.download-options ul {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.download-options li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: #0d0d0d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .02em;
}

.download-options li a:hover {
    background: #141414;
    text-decoration: none;
}

/* ===============================
  SNS（アイコンだけの丸ボタン風）
  ※本物のロゴ画像が無いので「丸＋文字」をCSSで代用
=============================== */
.social-share {
    padding-top: 10px;
}

.social-share h3 {
    margin-bottom: 8px;
}

/* アイコンの並びを“グリッド”にする */
.social-share ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 画像の雰囲気（横並び多め） */
    gap: 10px;
}

/* アイコンの見た目 */
.social-share a.icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #0f0f0f;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* テキストは隠して、疑似要素で“記号”を表示（課題用の簡易再現） */
.social-share a.icon {
    text-indent: -9999px;
}

.social-share a.icon::before {
    content: "SNS";
    text-indent: 0;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    letter-spacing: .02em;
}

/* 各SNSの“中身”だけ変える */
.social-share a.icon-instagram::before {
    content: "IG";
}

.social-share a.icon-facebook::before {
    content: "f";
}

.social-share a.icon-twitter::before {
    content: "X";
}

.social-share a.icon-youtube::before {
    content: "▶";
}

.social-share a.icon-tiktok::before {
    content: "♪";
}

.social-share a.icon-sns::before {
    content: "@";
}

.social-share a.icon-pinterest::before {
    content: "P";
}

.social-share a.icon-line::before {
    content: "LINE";
    font-size: 9px;
}

/* ===============================
  Footer bottom links（利用規約など）
=============================== */
.footer-bottom-links {
    padding-top: 6px;
}

.footer-bottom-links ul {
    gap: 12px;
}

.footer-bottom-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, .82);
}

/* ===============================
  Back to top（右側に丸いボタン）
=============================== */
#back-top {
    position: fixed;
    right: 16px;
    bottom: 110px;
    /* スクショの“少し上”の位置 */
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: #121212;
    display: grid;
    place-items: center;
    z-index: 9999;
    cursor: pointer;
}

#back-top .icon-uparrow {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

/* ===============================
  Copyright
=============================== */
.homepage-container-bottom {
    padding: 14px 0 22px;
    text-align: center;
    color: rgba(255, 255, 255, .7);
}

.copyright {
    display: block;
    margin-top: 12px;
    font-size: 11px;
}

/* ===============================
  PCでは幅を広げて“列”にする（任意）
=============================== */
@media (min-width: 900px) {
    .footer-content {
        width: min(1100px, 100%);
    }

    .footer-links-maincontainer {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 22px;
        align-items: start;
    }

    .download-options ul {
        justify-content: flex-start;
    }

    .social-share ul {
        grid-template-columns: repeat(8, 34px);
        justify-content: flex-start;
    }
}




/* .slick */

/* .slick-dots li:nth-of-type(1) button::before {
    background-image: url(../images/1.jpg);

}

.slick-dots li:nth-of-type(2) button::before {
    background-image: url(../images/2.jpg);

}

.slick-dots li:nth-of-type(3) button::before {
    background-image: url(../images/3.jpg);

}

.slick-dots li:nth-of-type(4) button::before {
    background-image: url(../images/4.jpg);

}

.slick-dots li:nth-of-type(5) button::before {
    background-image: url(../images/5.jpg);

} */

/* slick の ajax-loader を無効化（404回避） */
.slick-loading .slick-list {
  background: none !important;
}