@charset "utf-8";

:root {
    --picnic-red: #ff6b6b;
    --picnic-green: #a8e6cf;
    --bg-color: #fdfaf6;
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* 各パネルの基本設定 */
.panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: transform;
    /* これが重要：カクつき防止 */
}

.p-red {
    background-color: var(--accent);
    z-index: 3;
}

.p-white {
    background-color: var(--white1);
    z-index: 2;
}

.p-green {
    background-color: var(--white2);
    z-index: 1;
}

.loader-content {
    position: relative;
    z-index: 10;
    color: #fff;
    font-family: sans-serif;
    font-weight: bold;
}

/*============================
#lp_wrapper
============================*/
#lp_wrapper {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    color: var(--bk);
}

#lp_wrapper .lp_container_base {
    position: relative;
    width: calc(390 / var(--designwidth) * 100vw);
    margin-left: calc(525 / var(--designwidth) * 100vw);
    box-shadow: 4px 4px 4px rgba(36, 36, 36, 0.25);
    background-color: var(--white);
    z-index: 100;
    overflow-x: hidden;
}

#lp_wrapper .background_pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#lp_wrapper .background_pc .bg_left,
#lp_wrapper .background_pc .bg_right {
    position: fixed;
    top: 0;
    width: calc(525 / var(--designwidth) * 100vw);
    height: 100%;
    overflow-x: hidden;
}

#lp_wrapper .background_pc .bg_left {
    left: 0;
}

#lp_wrapper .background_pc .bg_right {
    margin-left: calc(915 / var(--designwidth) * 100vw);
}

#lp_wrapper .background_pc .bg_color {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--base2);
    background-image: url(../img/bg_noise.png);
    background-repeat: repeat;
    background-size: auto;
    z-index: -1;
}

@media (max-width: 1024px) {
    #lp_wrapper .background_pc {
        display: none;
    }

    #lp_wrapper .lp_container_base {
        width: 100%;
        margin-left: unset;
        box-shadow: unset;
    }
}

/*============================
.bg_left
============================*/

div.bg_left div.bg_left_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(350 / var(--designwidth) * 100vw);
}

div.bg_left div.bg_left_wrapper figure {
    width: 100%;
}

div.bg_left div.bg_left_wrapper figure img {
    width: 100%;
}


/*============================
.bg_right
============================*/

div.bg_right nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(500 / var(--designwidth) * 100vw);
}

div.bg_right nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: calc(16 / var(--designwidth) * 100vw);
    width: 100%;
    margin: 0 auto;
}

div.bg_right nav ul li {
    width: calc(60 / var(--designwidth) * 100vw);
    border-bottom: 2px solid var(--white);
    padding-bottom: 8px;
}

div.bg_right nav ul li a {
    text-decoration: none;
    color: var(--white);
    display: block;
}

div.bg_right nav ul li a div.nav_flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

div.bg_right nav ul li a div.nav_flex figure {
    width: calc(100 / var(--designwidth) * 100vw);
}

div.bg_right nav ul li a div.nav_flex figure img {
    width: 100%;
    /* animation: buruburu 1s infinite linear alternate; */
}



@keyframes buruburu {
    0% {
        -webkit-transform: translate(0, 0) rotate(-3deg);
    }

    5% {
        -webkit-transform: translate(0, -1px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(0, 0)rotate(3deg);
    }

    15% {
        -webkit-transform: translate(0, 0) rotate(-3deg);
    }

    20% {
        -webkit-transform: translate(0, -1px) rotate(0deg);
    }

    25% {
        -webkit-transform: translate(0, 0)rotate(3deg);
    }

    30% {
        -webkit-transform: translate(0, 0) rotate(-3deg);
    }

    35%,
    100% {
        -webkit-transform: translate(0, -1px) rotate(0deg);
    }

}

div.bg_right nav ul li a div.nav_flex p {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
}

div.bg_right nav ul li a div.nav_flex p span.dela_font {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-family: var(--dela-font);
}

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

.slider1,
.slider2 {
    display: flex;
    align-items: center;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: auto;
    overflow: hidden;
}

.slider1 ul,
.slider2 ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    margin: 0;
    line-height: 1;
}

.slider1 li,
.slider2 li {
    width: 300px;
    list-style: none;
}

.slider1 li img,
.slider2 li img {
    width: 100%;
    object-fit: cover;
}

.slider1 ul:first-child {
    animation: slide_l_01 100s -50s linear infinite;
    -webkit-animation: slide_l_01 100s -50s linear infinite;
}

.slider1 ul:last-child {
    animation: slide_l_02 100s linear infinite;
    -webkit-animation: slide_l_02 100s linear infinite;
}

.slider1 ul li:first-child,
.slider2 ul li:first-child {
    margin-left: 24px;
}

@keyframes slide_l_01 {
    0% {
        transform: translateX(100%);
    }

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

@keyframes slide_l_02 {
    0% {
        transform: translateX(0);
    }

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

.slider2 ul:first-child {
    animation: slide_r_01 100s -50s linear infinite;
    -webkit-animation: slide_r_01 100s -50s linear infinite;
}

.slider2 ul:last-child {
    animation: slide_r_02 100s linear infinite;
    -webkit-animation: slide_r_02 100s linear infinite;
}

@keyframes slide_r_01 {
    0% {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

@keyframes slide_r_02 {
    0% {
        transform: translateX(-200%);
    }

    to {
        transform: translateX(0);
    }
}

/* ~~~~~~~~ */




.fixed-banner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.fixed-banner.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


header>div.header_degital_wrapper>div.degital_text {
    display: flex;
    align-items: center;
    padding: var(--space-xs) 0;
    overflow: hidden;
    background-color: var(--accent);
    width: 100%;
}

header>div.header_degital_wrapper>div.degital_text>p {
    display: inline-block;
    line-height: 1.2;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    color: var(--green);
    font-weight: 700;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* KV */
section.kv {
    width: 100%;
    /* background: var(--base);howto_inner
         radial-gradient(circle at 0% 0%, rgba(184, 210, 0, 0.45) 0, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(75, 180, 255, 0.35) 0, transparent 45%),
        var(--green);  */
    padding: 40px 0 80px;
    padding: 24px 0 var(--space-3xl);
    z-index: 0;
}

section.kv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--green);
    /* 新緑のイメージ */
    background-size: cover;
    background-position: center center;
    mix-blend-mode: overlay;
    opacity: 0.4;
    z-index: -1;
}

/* KVとSPRINGの間のカーブは一旦無効化 */
section.kv::after {
    content: none;
}

section.kv div.kv_inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    gap: var(--space-5xl);
}

section.kv figure.kv_img {
    flex: 0 0 40%;
    aspect-ratio: 3 / 4;
    /*常に正方形*/
    overflow: hidden;
    position: relative;
    line-height: 1;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

section.kv figure.kv_img .kv_top_illust {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    object-fit: cover;
}

section.kv figure.kv_img .kv_bottom_illust {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: auto;
    object-fit: cover;
}

section.kv figure.kv_img .kv_ttl_logo {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    width: 80%;
    height: auto;
}


section.kv figure.kv_img img {
    display: block;
    width: calc(100% + 1px);
    height: 100%;
    object-fit: cover;
    /* 正方形枠にフィットさせる */
    line-height: 1;
}

/* KV画像のPC/SP出し分けを明示的に制御（PCではpcのみ表示） */
section.kv figure.kv_img img.sp {
    display: none;
}

section.kv figure.kv_logo {
    width: 160px;
    margin: 0 auto;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

section.kv div.kv_txt_box {
    text-align: center;
}

.kv_badge {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

section.kv h2.v_ttl {
    font-size: 2.4rem;
    color: var(--green);
    font-family: var(--jp-font);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5;
    padding: 32px 0 24px 0;
}

section.kv p.lead_txt {
    font-size: 1.4rem;
    color: var(--bk);
    line-height: 1.85;
    letter-spacing: 0.1em;
    font-weight: 500;
}

@media (min-width: 1440px) {
    section.kv {
        padding: 24px 0 var(--space-3xl);
    }

    section.kv div.kv_inner {
        /* transform: translateX(20px); */
        gap: 88px;
    }

    section.kv figure.kv_img {
        flex: 0 0 42%;
        max-width: 100%;
    }

    section.kv div.kv_txt_box {
        flex: 0 0 42%;
        gap: var(--space-lg);
    }

    section.kv h2.v_ttl {
        font-size: 3.2rem;
        letter-spacing: 0.05em;
    }

    section.kv p.lead_txt {
        font-size: 1.6rem;
        line-height: 1.9;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 768px) {
    section.kv {
        padding: var(--space-xl) 0 48px;
    }

    section.kv div.kv_inner {
        flex-direction: column;
        gap: var(--space-lg);
        padding: 0 16px;
    }

    section.kv figure.kv_img {
        width: 100%;
        margin: 0 auto;
    }

    section.kv figure.kv_img img.pc {
        display: none;
    }

    section.kv figure.kv_img img.sp {
        display: block;
    }

    section.kv div.kv_txt_box {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    section.kv h2.v_ttl {
        font-size: 2.4rem;
        letter-spacing: 0.08em;
    }

    section.kv p.lead_txt {
        font-size: 1.4rem;
        line-height: 1.75;
        letter-spacing: 0.06em;
    }
}

/* 各セクション上方向の影（立体感・濃い目） */
/* section.kv,
section.section_howto,
section.season_spring,
section.season_summer,
section.season_autumn,
.top_box {
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.35);
} */

/* ========================================
   How to：いつもの公園が特別なリビングに変わる、3つの遊び方
   ======================================== */
section.section_howto {
    /* background: linear-gradient(180deg, #f7faf6 0%, #eef5eb 100%); */
    background-color: var(--white2);
    padding: var(--space-4xl) 0 var(--space-4xl);
    position: relative;
}

.howto_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
    position: relative;
}

.howto_ttl {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.howto_lead {
    font-size: 1.6rem;
    line-height: 1.95;
    color: var(--bk);
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.howto_list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.howto_item {
    background: var(--white2);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    -ms-border-radius: 0 0 4px 4px;
    -o-border-radius: 0 0 4px 4px;
}

.howto_img {
    aspect-ratio: 4 / 3;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

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

.howto_body {
    padding: var(--space-lg) var(--space-sm) var(--space-lg) var(--space-sm);
}

.howto_num {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-align: left;
}

.howto_item_ttl {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: left;
    display: block;
}

.howto_txt {
    font-size: 1.4rem;
    line-height: 1.75;
    color: var(--bk);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.04em;
    text-align: left;
    font-weight: 400;
}

.howto_tip {
    font-size: 1.2rem;
    text-align: left;
    line-height: 1.7;
    color: var(--gray);
    letter-spacing: 0.03em;
    padding: var(--space-sm) var(--space-sm);
    background: var(--white1);
    border-left: 4px solid var(--green);
    margin: 0;
}

@media (max-width: 768px) {
    section.section_howto {
        padding: var(--space-2xl) 0 var(--space-3xl);
    }

    .howto_ttl {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }

    .howto_lead {
        margin-bottom: var(--space-xl);
        font-size: 1.35rem;
        line-height: 1.9;
        padding: 0 var(--space-xs);
    }

    .howto_list {
        gap: var(--space-xl);
    }

    .howto_item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .howto_img {
        max-width: 100%;
    }

    .howto_body {
        padding: var(--space-md) var(--space-md) var(--space-lg);
    }

    .howto_item_ttl {
        font-size: 1.6rem;
    }

    .howto_txt {
        font-size: 1.4rem;
    }

    .howto_tip {
        font-size: 1.2rem;
    }
}

/* Product Sections */
section.season_spring {
    position: relative;
    overflow: hidden;
    padding-bottom: var(--space-4xl);
}

section.season_summer {
    background-image: url(../img/last_bg.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.season_autumn {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.45) 0, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.28) 0, transparent 65%),
        #ff8a3c;
}

/* 季節ごとの背景柄 */
section.season_spring::before,
section.season_summer::before,
section.season_autumn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

/* セクション間のカーブは一旦すべて無効化 */
section.season_spring::after,
section.season_summer::after,
section.season_autumn::after {
    content: none;
}

div.season_ttl_bg {
    position: relative;
    text-align: center;
}

div.season_ttl_bg h3 {
    font-size: 3rem;
    color: var(--green);
    font-weight: 700;
    padding: 24px 0;
    background-color: var(--accent);
    position: relative;
    line-height: 1.3;
}

div.season_ttl_bg h3 span.fukidashi {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    border-radius: 0;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
}

div.season_ttl_bg h3 ::before {
    content: "";
    position: absolute;
    bottom: -24px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 25px;
    height: 25px;
    background-color: var(--accent);
    clip-path: polygon(50% 50%, 0 0, 100% 0);
}


/* 季節ごとのフキダシ色調整 */
/* .season_summer div.season_ttl_bg h3 span.fukidashi {
    background-color: #e3f4ff;
    color: #1468a7;
}

.season_autumn div.season_ttl_bg h3 span.fukidashi {
    background-color: #fff1da;
    color: #b24b00;
} */

.spring_copy {
    max-width: 720px;
    margin: 40px auto 0 auto;
    padding: 0 16px 64px 16px;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
}

.season_teaser {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.3;
}

.season_teaser_sub {
    font-weight: 200;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    div.season_ttl_bg {
        padding: 0;
    }

    div.season_ttl_bg h3 span.fukidashi {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        min-height: 40px;
    }

    .spring_copy {
        max-width: 92%;
        margin: var(--space-sm) auto 0;
        padding: 0 var(--space-sm);
        font-size: 1.35rem;
        line-height: 1.85;
        letter-spacing: 0.08em;
    }

    .season_teaser {
        font-size: 1.9rem;
        letter-spacing: 0.1em;
    }

    .season_teaser_sub {
        letter-spacing: 0.05em;
    }

    div.season_inner {
        margin: var(--space-xl) auto 0;
    }

    section.season_spring,
    section.season_summer,
    section.season_autumn {
        padding-bottom: 96px;
    }

    /* モバイル時はアールのサイズと影を少し弱めに */
    section.kv::after,
    section.season_spring::after,
    section.season_summer::after,
    section.season_autumn::after {
        left: 0;
        width: 100%;
        bottom: -28px;
        height: 60px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.16);
    }
}

div.season_inner {
    max-width: 1480px;
    margin: var(--space-3xl) auto 0;
    padding: 0 var(--container-padding);
}

/* 季節セクション内カテゴリ見出し（GEAR / BAG / APPAREL） */
.season_inner .en-ttl {
    font-size: 2.25rem;
    margin: 0 0 var(--space-xs);
    letter-spacing: 0.08em;
    padding-bottom: var(--space-xs);
}

.season_inner .en-ttl:not(:first-child) {
    margin-top: var(--space-2xl);
}

/* Grid */
.present_img_grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.present_img_1 {
    grid-column: span 8;
    border-radius: 20px;
    overflow: hidden;
}

.present_img_2 {
    grid-column: span 4;
    border-radius: 20px;
    overflow: hidden;
}

.present_img_3 {
    grid-column: span 4;
    grid-column-start: 9;
    border-radius: 20px;
    overflow: hidden;
}

.present_img_grid img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.present_img_grid img:hover {
    transform: scale(1.05);
}

/* 製品サムネイルグリッド（スマホ1列／タブレット2列／PC最大3列） */
.product-thumb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
    max-width: 1440px;
    margin: var(--space-lg) auto var(--space-xl);
    /* 中央寄せ */
}


.product-thumb:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


.product-thumb a {
    display: block;
    background: transparent;
    border-radius: 12px;
    color: var(--bk);
    box-shadow: none;
    text-align: left;
}

.product-thumb h4 {
    margin: var(--space-sm) 0 var(--space-xs);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-align: left;
}

.product-thumb .product-description {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* サムネイル画像フレーム：カード自体を正方形にし、中の画像は縦横比を維持して中央配置 */
.img_parent {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    overflow: hidden;
    background-color: var(--white1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_parent .js-main-image {
    width: 100%;
    transition: opacity 0.3s;
}

.img_parent img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 正方形カード内でレターボックス表示（トリミングなし） */
}

.coupon_tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--accent);
    color: var(--green);
    font-weight: 700;
    padding: 4px 12px;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    border-radius: 4px 0 0 0;
    -webkit-border-radius: 4px 0 4px 0;
    -moz-border-radius: 4px 0 0 0;
    -ms-border-radius: 4px 0 0 0;
    -o-border-radius: 4px 0 0 0;
}

.price_box {
    margin-top: var(--space-xs);
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.coupon_price {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--green);
}

.price {
    font-size: 1rem;
    margin-right: 4px;
    font-weight: 400;
}

.tax {
    font-size: 1rem;
    margin-left: 4px;
    font-weight: 400;
}

/* ボタンカラー切替 */

div.color-selector {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

div.color-selector span {
    font-size: 1rem;
    color: var(--gray);
}

div.color-selector div.swatches {
    display: flex;
    gap: 8px;
}

div.color-selector div.swatches div.js-swatch.active {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

div.color-selector div.swatches div.js-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 1px #ccc;
}

/* Button */
.btn_toec {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btn_toec a {
    display: block;
    background-color: var(--accent);
    color: var(--green);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
    padding: 18px 64px;
    font-weight: 600;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btn_toec a i {
    padding-left: 8px;
}

.btn_toec a:hover {
    background-color: transparent;
    color: var(--green);
    border: 1px solid var(--green);
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.btn_toec a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    div.budget_ttl_bg h3 {
        font-size: 2rem;
    }

    .product-thumb-grid {
        grid-template-columns: 1fr;
        /* スマホでは常に1列 */
        gap: var(--space-md);
        margin: var(--space-md) auto var(--space-lg);
    }

    .product-thumb a {
        padding: 0;
    }

    .product-thumb h4 {
        font-size: 1.5rem;
    }

    .btn_toec {
        margin-top: 0;
        width: 100%;
    }

    .btn_toec a {
        font-size: 1.5rem;
        letter-spacing: 0.06em;
        padding: 16px var(--space-lg);
        width: auto;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* タブレット幅（例: 769〜1200px）は2列表示にしてカード幅を確保 */
@media (min-width: 769px) and (max-width: 1200px) {
    .product-thumb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========================================
   FEATURES 特集（DODトップ同様のリンクバナー）
   ======================================== */
/* FEATURES 見出し（メインでないことを示すニュートラルな背景） */
.top_box .features_ttl_bg {
    background-color: var(--white2);
    padding: var(--space-lg) 0 var(--space-md);
}

.top_box .features_ttl_bg h3 {
    color: #4a4a4a;
}

.top_box .features_ttl_bg h3 span.fukidashi {
    background-color: #c0c4c2;
    color: #2d2d2d;
}

.top_box {
    background-color: var(--white2);
}

.top_box .page_center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px var(--container-padding);
}

.top_box_inner.liquid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.top_box_inner.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.special_box {
    break-inside: avoid;
}

.special_box a {
    display: block;
    color: var(--bk);
    transition: opacity 0.25s ease;
}

.special_box a:hover {
    opacity: 0.85;
}

.special_box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.special_box h3 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.55;
    margin: var(--space-sm) 0 0;
    padding: 0;
    text-align: left;
    letter-spacing: 0.04em;
}

/* 特集エリアのボタン（メインでないことを示すニュートラル色） */
.top_box .btn_toec {
    margin-top: 0;
}

/* 
.top_box .btn_toec a {
    background-color: #5a5d5c;
    color: #fff;
    border-color: #5a5d5c;
}

.top_box .btn_toec a:hover {
    background-color: transparent;
    color: #3d403f;
    border-color: #5a5d5c;
    box-shadow: 0 0 0 3px rgba(90, 93, 92, 0.3);
} */

@media (max-width: 600px) {
    .top_box {
        padding: 0;
    }

    .top_box .features_ttl_bg {
        padding: var(--space-md) 0 var(--space-sm);
    }

    .top_box .page_center {
        padding-top: var(--space-md);
    }

    .top_box_inner.liquid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .special_box h3 {
        font-size: 1.25rem;
        line-height: 1.5;
    }

    .top_box .btn_toec {
        margin-top: var(--space-xl);
    }
}