/* ===== SCROLL ANIMATION SYSTEM ===== */
[data-anim] {
    will-change: transform, opacity, filter, clip-path;
}
[data-anim="fade-up"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-anim="fade"] {
    opacity: 0;
    transition: opacity 1.8s ease;
}
[data-anim="fade"].is-visible {
    opacity: 1;
}
[data-anim="slide-left"] {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="slide-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}
[data-anim="slide-right"] {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="slide-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}
[data-anim="scale-in"] {
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 2.0s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="scale-in"].is-visible {
    opacity: 1;
    transform: scale(1);
}
.tmc_mask-wrap {
    overflow: hidden;
    display: block;
}
[data-anim="mask-up"] {
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.01s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="mask-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.tmc_poem-line-wrap {
    display: block;
    overflow: hidden;
}
.tmc_poem-line {
    display: block;
    opacity: 0;
    transform: translateY(0.9em);
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tmc_intro-poem.is-visible .tmc_poem-line {
    opacity: 1;
    transform: translateY(0);
}
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(1) .tmc_poem-line { transition-delay: 0.00s; }
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(2) .tmc_poem-line { transition-delay: 0.20s; }
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(3) .tmc_poem-line { transition-delay: 0.38s; }
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(4) .tmc_poem-line { transition-delay: 0.56s; }
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(5) .tmc_poem-line { transition-delay: 0.74s; }
.tmc_intro-poem.is-visible .tmc_poem-line-wrap:nth-child(6) .tmc_poem-line { transition-delay: 0.92s; }
[data-anim="rule-wipe"] {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-anim="rule-wipe"].is-visible {
    transform: scaleX(1);
}
[data-delay="100"] { transition-delay: 0.10s !important; }
[data-delay="200"] { transition-delay: 0.20s !important; }
[data-delay="300"] { transition-delay: 0.30s !important; }
[data-delay="400"] { transition-delay: 0.40s !important; }
[data-delay="500"] { transition-delay: 0.50s !important; }
[data-delay="600"] { transition-delay: 0.60s !important; }
[data-delay="700"] { transition-delay: 0.70s !important; }
[data-delay="800"] { transition-delay: 0.80s !important; }

/* ===== COMMON ===== */
.tmc_Package {
    font-optical-sizing: auto;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
    font-weight: 400;
    background-color: #fff;
}
.tmc_Package img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    vertical-align: top;
}
.tmc_Package h1, .tmc_Package h2, .tmc_Package h3 {
    line-height: 1.3em;
    padding: 0;
    font-weight: revert;
}
#tmc_header { display: none; }
#tmc_page-content { position: relative; z-index: 20; }

/* ボタン */
.tmc_btn_kinto {
    display: inline-block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.84vw, 15px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
    background: transparent;
    border: none;
    border-bottom: 2px solid #111;
    padding: 3px 0 3px;
    transition: opacity 0.25s;
    text-decoration: none;
}
.tmc_btn_kinto:hover { opacity: 0.45; }
@media screen and (max-width: 834px) {
    .tmc_btn_kinto { font-size: 12px; }
}
.tmc_btn_kinto--white {
    color: #fff;
    border-bottom-color: #fff;
}

/* セクション共通見出し */
.tmc_sec-label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.84vw, 22px);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1a1a;
}
@media screen and (max-width: 834px) {
    .tmc_sec-label { font-size: 5vw; }
}

/* ===== HERO ===== */
#tmc_hero {
    margin-top: 0;
    margin-bottom: 7vw;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 16/7;
}
@media screen and (max-width: 834px) {
    #tmc_hero {
        aspect-ratio: 2/3;
        margin-bottom: 26vw;
    }
}
.tmc_hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-image: url("https://www.tiemco.co.jp/contents/feature/lp/2026/wd_shoes/kv.jpg");
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1), transform 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmc_hero-bg.kv-show {
    opacity: 1;
    transform: scale(1.0);
}
@media screen and (max-width: 834px) {
    .tmc_hero-bg {
        background-image: url("https://www.tiemco.co.jp/contents/feature/lp/2026/wd_shoes/Cascade_KV_SP.jpg");
    }
}

.tmc_hero-body {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 5;
}
@media screen and (max-width: 834px) {
    .tmc_hero-body {
        top: auto;
        bottom: 9%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 80%;
    }
}
.tmc_hero-eyebrow {
    display: block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.15vw, 13px);
    font-weight: 600;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.2vw;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.0s ease 1.2s, transform 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s;
}
.tmc_hero-eyebrow.kv-show {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 834px) {
    .tmc_hero-eyebrow { font-size: 10px; margin-bottom: 3vw; }
}
.tmc_hero-title {
    display: block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(5.5vw, 76px);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 1.2s ease 1.4s, transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s;
}
.tmc_hero-title.kv-show {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 834px) {
    .tmc_hero-title { font-size: 10vw; }
}
.tmc_hero-catch {
    display: block;
    font-family: 'Shippori Mincho', sans-serif;
    font-weight: 700;
    font-size: min(2.0vw, 28px);
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.9);
    margin-top: 1.8vw;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.2s ease 2.0s, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.0s;
}
.tmc_hero-catch.kv-show {
    opacity: 1;
    transform: translateY(0);
}
@media screen and (max-width: 834px) {
    .tmc_hero-catch { font-size: 4.2vw; margin-top: 3vw; white-space: nowrap; }
}
.tmc_hero-dots {
    position: absolute;
    bottom: 4%;
    right: 5%;
    display: flex;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.8s ease 2.5s;
}
.tmc_hero-dots.kv-show { opacity: 1; }
.tmc_hero-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.4s;
}
.tmc_hero-dot.is-active { background: #fff; }

/* ===== INTRO SECTION ===== */
#tmc_section-intro {
    position: relative;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.70) 100%),
        url('https://www.tiemco.co.jp/contents/feature/lp/2026/wd_shoes/wd004.jpg') center center / cover no-repeat;
}
.tmc_intro-text-only {
    max-width: 900px;
    margin: 0 auto;
    padding: 8vw 6vw 10vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vw;
}
@media screen and (max-width: 834px) {
    .tmc_intro-text-only { padding: 16vw 7vw 18vw; gap: 6vw; }
}
.tmc_intro-text-only img {
    width: 17vw;
}
@media screen and (max-width: 834px) {
.tmc_intro-text-only img {
    width: 35vw;
}
}
.tmc_intro-kv__label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.15vw, 14px);
    font-weight: 700;
    letter-spacing: 0.46em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    display: block;
}
@media screen and (max-width: 834px) {
    .tmc_intro-kv__label { font-size: 11px; }
}
.tmc_intro-kv__brand {
    display: block;
    width: min(18vw, 200px);
    height: auto;
    max-width: 100%;
}
@media screen and (max-width: 834px) {
    .tmc_intro-kv__brand { width: 40vw; }
}
.tmc_intro-kv__sub {
    font-family: 'Shippori Mincho', serif;
    font-weight: 600;
    font-size: min(2.6vw, 36px);
    letter-spacing: 0.16em;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    display: block;
}
@media screen and (max-width: 834px) {
    .tmc_intro-kv__sub { font-size: 5.5vw; margin-top: 5vw; }
}
.tmc_intro-body--center {
    text-align: left;
    max-width: 680px;
}
.tmc_intro-body--center p {
    font-family: 'Shippori Mincho', serif;
    font-size: min(1.5vw, 18px);
    font-weight: 400;
    line-height: 2.6;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2em;
}
.tmc_intro-body--center p:last-child { margin-bottom: 0; }
@media screen and (max-width: 834px) {
    .tmc_intro-body--center p { font-size: 14px; }
}
.tmc_intro-rule {
    width: 40px; height: 1px;
    background: rgba(255,255,255,0.35);
    display: block;
    border: none;
    margin: 0 auto;
}

/* ===== CONCEPT SECTION ===== */
#tmc_section-concept {
    padding: 10vw 0;
    position: relative;
    background-color: #fff;
    background-image: url("https://www.tiemco.co.jp/contents/feature/lp/2026/wd_shoes/bk01.jpg");
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media screen and (max-width: 834px) {
    #tmc_section-concept {
        background-image: url("https://www.tiemco.co.jp/contents/feature/lp/2026/wd_shoes/bk01-sp.jpg");
        background-size: cover;
        background-attachment: scroll;
        padding: 14vw 0;
    }
}
#tmc_section-concept::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.78);
    pointer-events: none;
    z-index: 0;
}
.tmc_concept-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 6vw;
    text-align: center;
}
.tmc_concept-label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.15vw, 14px);
    font-weight: 700;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 1.5vw;
}
@media screen and (max-width: 834px) {
    .tmc_concept-label { font-size: 11px; margin-bottom: 4vw; }
}
.tmc_concept-title {
    font-family: 'Shippori Mincho', serif;
    font-size: min(3.22vw, 36px);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    margin-bottom: 5vw;
    line-height: 1.6;
}
@media screen and (max-width: 834px) {
    .tmc_concept-title { font-size: 6vw; margin-bottom: 10vw; }
}
.tmc_concept-rule {
    width: 40px; height: 1px;
    background: #c8c4be;
    margin: 0 auto 5vw;
    display: block;
    border: none;
}
@media screen and (max-width: 834px) {
    .tmc_concept-rule { margin-bottom: 10vw; }
}
.tmc_concept-body {
    font-family: 'Shippori Mincho', serif;
    font-size: min(1.61vw, 19px);
    font-weight: 300;
    line-height: 2.6;
    letter-spacing: 0.1em;
    color: #555;
    text-align: left;
}
@media screen and (max-width: 834px) {
    .tmc_concept-body { font-size: 15px; line-height: 2.4; }
}
.tmc_concept-body p { margin-bottom: 2.6em;
line-height: 2.6em;}
.tmc_concept-body p:last-child { margin-bottom: 0; }

/* ===== FEATURE BLOCKS (交互レイアウト) ===== */
#tmc_section-features .tmc_sole-hd__label { color: rgba(0,0,0,0.35); }
#tmc_section-features .tmc_sole-hd__title { color: #111; }
#tmc_section-features .tmc_sole-hd__sub   { color: rgba(0,0,0,0.55); }

#tmc_section-features {
    padding: 6vw 0 0;
    background: #fff;
}
.tmc_feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 0 0vw;
}
@media screen and (max-width: 834px) {
    .tmc_feature-block { grid-template-columns: 1fr; }
}
.tmc_feature-block__text {
    padding: 4vw 7vw 0vw 13vw;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
@media screen and (max-width: 1180px) {
    .tmc_feature-block__text { padding: 7vw 5vw 7vw 10vw; }
}
@media screen and (max-width: 834px) {
    .tmc_feature-block__text { padding: 10vw 8vw; }
}
.tmc_feature-block--reverse .tmc_feature-block__text {
    padding: 7vw 13vw 7vw 7vw;
    order: 2;
}
@media screen and (max-width: 1180px) {
    .tmc_feature-block--reverse .tmc_feature-block__text { padding: 7vw 10vw 7vw 5vw; }
}
@media screen and (max-width: 834px) {
    .tmc_feature-block--reverse .tmc_feature-block__text { order: 1; padding: 10vw 8vw; }
    .tmc_feature-block--reverse .tmc_feature-block__img { order: 2 !important; }
}
.tmc_feature-block__img {
    position: relative;
    background: #f0eeeb;
    margin-right: 0;
    overflow: hidden;
}
.tmc_feature-block--reverse .tmc_feature-block__img {
    order: 1;
}
@media screen and (max-width: 834px) {
    .tmc_feature-block__img { order: 1 !important; }
}
.tmc_feature-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 50vw;
    transition: transform 0.9s cubic-bezier(0, 0, 0, 1);
}
@media screen and (max-width: 834px) {
    .tmc_feature-block__img img { min-height: 70vw; }
}
.tmc_feature-block__img:hover img { transform: scale(1.04); }

.tmc_feature-accent {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.2vw;
}
@media screen and (max-width: 834px) {
    .tmc_feature-accent { margin-bottom: 5vw; }
}
.tmc_feature-accent::before { display: none; }
.tmc_feature-accent span {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.84vw, 19px);
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #fff;
    background: #4e7a6a;
    padding: 5px 16px 4px;
    display: inline-block;
}
@media screen and (max-width: 834px) {
    .tmc_feature-accent span { font-size: 14px; padding: 4px 14px 3px; }
}
.tmc_feature-title {
    font-size: min(3.8vw, 39px);
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1.45;
    color: #111;
    margin-bottom: 2.5vw;
}
@media screen and (max-width: 834px) {
    .tmc_feature-title { font-size: 6vw; margin-bottom: 5vw; }
}
.tmc_feature-body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(1.38vw, 17px);
    font-weight: 400;
    line-height: 2.4;
    letter-spacing: 0.06em;
    color: #555;
}
@media screen and (max-width: 834px) {
    .tmc_feature-body { font-size: 14px; }
}

/* ===== SOLE SECTION (dark) ===== */
#tmc_section-sole {
    background: #1a1a1a;
    padding: 10vw 0 0;
    margin: 0 0 10vw;
}
@media screen and (max-width: 834px) {
    #tmc_section-sole { padding: 14vw 0 0; }
}
.tmc_sole-inner {
    max-width: none;
    margin: 0;
}
.tmc_sole-hd {
    text-align: center;
    margin-bottom: 6vw;
    padding: 0 6vw;
}
@media screen and (max-width: 834px) {
    .tmc_sole-hd { padding: 0 5vw; margin-bottom: 10vw; }
}
.tmc_sole-hd__label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.04vw, 12px);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 1.5vw;
}
@media screen and (max-width: 834px) {
    .tmc_sole-hd__label { font-size: 11px; margin-bottom: 4vw; }
}
.tmc_sole-hd__title {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(3.8vw, 48px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    display: block;
    margin-bottom: 2vw;
}
@media screen and (max-width: 834px) {
    .tmc_sole-hd__title { font-size: 8vw; margin-bottom: 5vw; }
}
.tmc_sole-hd__sub {
    font-family: 'Shippori Mincho', serif;
    font-size: min(1.61vw, 18px);
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.65);
}
@media screen and (max-width: 834px) {
    .tmc_sole-hd__sub { font-size: 4vw; }
}
.tmc_sole-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #333;
}
@media screen and (max-width: 834px) {
    .tmc_sole-grid { grid-template-columns: 1fr; }
}
.tmc_sole-card {
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.tmc_sole-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 1.4s cubic-bezier(0, 0, 0, 1);
    z-index: 0;
}
.tmc_sole-card:hover .tmc_sole-card__bg { transform: scale(1.04); }
.tmc_sole-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.55) 0%,
        rgba(10,10,10,0.70) 50%,
        rgba(10,10,10,0.85) 100%);
    z-index: 1;
    pointer-events: none;
}
.tmc_sole-card__product {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 2vw 0 2.5vw;
    border: 1px solid rgba(255,255,255,0.12);
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__product { margin: 5vw 0 6vw; }
}
.tmc_sole-card__product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0, 0, 0, 1);
}
.tmc_sole-card:hover .tmc_sole-card__product img { transform: scale(1.04); }
.tmc_sole-card__img {
    overflow: hidden;
    background: #2e2a26;
}
.tmc_sole-card__img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0, 0, 0, 1);
}
.tmc_sole-card:hover .tmc_sole-card__img img { transform: scale(1.04); }
.tmc_sole-card__body {
    position: relative;
    z-index: 2;
    padding: 5.5vw 9vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #fff;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__body { padding: 10vw 7vw; }
}
.tmc_sole-card__hd {
    margin-bottom: 0.5vw;
}
.tmc_sole-card__tag {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.tmc_sole-card__sub {
    color: rgba(255,255,255,0.7);
}
.tmc_sole-card__text {
    font-size: min(1.15vw, 16px);
    font-weight: 300;
    line-height: 2.2;
    color: rgba(255,255,255,1);
    letter-spacing: 0.06em;
    margin-top: 1.5vw;
    padding-top: 2vw;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__text { font-size: 12.5px; margin-top: 4vw; padding-top: 5vw; }
}

.tmc_sole-card__btn {
    display: inline-block;
    margin-top: 2vw;
    color: #fff;
    border-bottom-color: #fff;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__btn { margin-top: 5vw; }
}

/* Comparison Spec List */
.tmc_sole-spec {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
}
.tmc_sole-spec__row {
    display: grid;
    grid-template-columns: minmax(110px, 30%) 1fr;
    align-items: center;
    gap: 2vw;
    padding: 1.6vw 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
@media screen and (max-width: 834px) {
    .tmc_sole-spec__row {
        grid-template-columns: 90px 1fr;
        padding: 4vw 0;
        gap: 3vw;
    }
}
.tmc_sole-spec__label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(0.92vw, 11px);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
@media screen and (max-width: 834px) {
    .tmc_sole-spec__label { font-size: 10.5px; }
}
.tmc_sole-spec__value {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(1.3vw, 17px);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}
@media screen and (max-width: 834px) {
    .tmc_sole-spec__value { font-size: 14px; }
}
.tmc_sole-spec__value--accent {
    font-family: 'Shippori Mincho', serif;
    font-size: min(2.6vw, 30px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
}
@media screen and (max-width: 834px) {
    .tmc_sole-spec__value--accent { font-size: 6.5vw; }
}
.tmc_sole-card__tag {
    display: inline-block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(0.92vw, 11px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: #444;
    padding: 3px 12px;
    margin-bottom: 1.5vw;
    font-weight: 700;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__tag { font-size: 10px; margin-bottom: 4vw; }
}
.tmc_sole-card__title {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(2.8vw, 32px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5vw;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__title { font-size: 6.5vw; margin-bottom: 4vw; }
}
.tmc_sole-card__sub {
    font-family: 'Shippori Mincho', serif;
    font-size: min(1.38vw, 16px);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2vw;
    line-height: 1.5;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__sub { font-size: 3.8vw; margin-bottom: 4vw; }
}
.tmc_sole-card__text {
    font-size: min(1.3vw, 14px);
    font-weight: 300;
    line-height: 2.4;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 834px) {
    .tmc_sole-card__text { font-size: 13px; }
}

/* ===== DETAIL / SPEC SECTION ===== */
#tmc_section-detail {
    padding: 6vw 8vw 10vw;
    background: #fff;
}
@media screen and (max-width: 834px) {
    #tmc_section-detail { padding: 14vw 6vw 18vw; }
}
.tmc_detail-hd {
    margin-bottom: 5vw;
}
.tmc_detail-hd__label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.04vw, 12px);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 0.8vw;
}
@media screen and (max-width: 834px) {
    .tmc_detail-hd__label { font-size: 11px; margin-bottom: 3vw; }
}
.tmc_detail-hd__title {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(4vw, 52px);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.1;
}
@media screen and (max-width: 834px) {
    .tmc_detail-hd__title { font-size: 10vw; }
}
.tmc_detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e4df;
    margin-top: 4vw;
}
@media screen and (max-width: 1180px) {
    .tmc_detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 834px) {
    .tmc_detail-grid { grid-template-columns: 1fr; }
}
.tmc_detail-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.tmc_detail-card__img {
    overflow: hidden;
    background: #f5f3ef;
}
.tmc_detail-card__img img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    transition: transform 0.8s cubic-bezier(0, 0, 0, 1);
}
.tmc_detail-card:hover .tmc_detail-card__img img { transform: scale(1.04); }
.tmc_detail-card__body {
    padding: 2.4vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
@media screen and (max-width: 834px) {
    .tmc_detail-card__body { padding: 7vw 6vw 10vw; gap: 3vw; }
}
.tmc_detail-card__tag {
    display: inline-block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(0.92vw, 11px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    padding: 2px 10px;
    align-self: flex-start;
    font-weight: 700;
}
@media screen and (max-width: 834px) {
    .tmc_detail-card__tag { font-size: 10px; }
}
.tmc_detail-card__name {
    font-size: min(1.84vw, 22px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #111;
    line-height: 1.4;
}
@media screen and (max-width: 834px) {
    .tmc_detail-card__name { font-size: 5vw; }
}
.tmc_detail-card__rule {
    width: 32px; height: 2px;
    background: #111;
    border: none;
    margin: 0.2vw 0;
}
.tmc_detail-card__text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(1.15vw, 15px);
    font-weight: 400;
    line-height: 2.0;
    letter-spacing: 0.05em;
    color: #666;
}
@media screen and (max-width: 834px) {
    .tmc_detail-card__text { font-size: 13px; }
}

/* ===== BOTTOM CTA ===== */
#tmc_section-cta {
    padding: 8vw 0 10vw;
    background: #fff;
    text-align: center;
}
@media screen and (max-width: 834px) {
    #tmc_section-cta { padding: 14vw 0 16vw; }
}

/* ===== COLLAGE / IMAGE GRID ===== */
#tmc_section-collage {
    padding: 0 0 8vw;
    background: #fff;
}
.tmc_collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e8e4df;
}
@media screen and (max-width: 834px) {
    .tmc_collage-grid { grid-template-columns: repeat(2, 1fr); }
}
.tmc_collage-item {
    overflow: hidden;
    background: #f5f3ef;
}
.tmc_collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0, 0, 0, 1);
}
.tmc_collage-item:hover img { transform: scale(1.04); }
.tmc_collage-item--wide {
    grid-column: span 2;
}
@media screen and (max-width: 834px) {
    .tmc_collage-item--wide { grid-column: span 2; }
}
.tmc_collage-item--full {
    grid-column: 1 / -1;
}
@media screen and (max-width: 834px) {

}

div#Wrap { margin-top: 0 !important; }


/* ===== ITEM SECTION ===== */
#tmc_section-items {
    padding: 0 8vw 10vw;
    background: #fff;
}
@media screen and (max-width: 834px) {
    #tmc_section-items { padding: 0 5vw 14vw; }
}
.tmc_items-hd {
    text-align: center;
    padding: 7vw 0 5vw;
    border-bottom: 1px solid #e0ddd9;
    margin-bottom: 5vw;
}
@media screen and (max-width: 834px) {
    .tmc_items-hd { padding: 12vw 0 8vw; margin-bottom: 8vw; }
}
.tmc_items-hd__label {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.04vw, 12px);
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 1.2vw;
}
@media screen and (max-width: 834px) {
    .tmc_items-hd__label { font-size: 10px; margin-bottom: 3vw; }
}
.tmc_items-hd__title {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(3.45vw, 42px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1.1;
    display: block;
}
@media screen and (max-width: 834px) {
    .tmc_items-hd__title { font-size: 8vw; }
}
.tmc_items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 834px) {
    .tmc_items-grid { grid-template-columns: 1fr; gap: 10vw; }
}
.tmc_item-card {
    display: block;
    text-decoration: none;
    background: #fafaf8;
    transition: opacity 0.25s;
}
.tmc_item-card:hover { opacity: 0.85; }
.tmc_item-card__img {
    overflow: hidden;
    background: #f5f3ef;
    position: relative;
}
.tmc_item-card__img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    display: block;
    transition: transform 0.8s cubic-bezier(0, 0, 0, 1);
}
.tmc_item-card:hover .tmc_item-card__img img { transform: scale(1.03); }
.tmc_item-card__body {
    padding: 2.2vw 2vw 2.6vw;
    border-top: 2px solid #111;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__body { padding: 5vw 3vw 6vw; }
}
.tmc_item-card__tag {
    display: inline-block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(0.92vw, 11px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: #1a1a1a;
    padding: 2px 10px;
    margin-bottom: 1.2vw;
    font-weight: 700;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__tag { font-size: 10px; margin-bottom: 3vw; }
}
.tmc_item-card__name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(2.0vw, 22px);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.8vw;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__name { font-size: 5.5vw; margin-bottom: 2vw; }
}
.tmc_item-card__name-en {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.15vw, 13px);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 1.5vw;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__name-en { font-size: 11px; margin-bottom: 4vw; }
}
.tmc_item-card__sole {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: min(1.15vw, 13px);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #777;
    line-height: 1.8;
    display: block;
    margin-bottom: 2vw;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__sole { font-size: 12px; margin-bottom: 5vw; }
}
.tmc_item-card__btn {
    display: inline-block;
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.15vw, 13px);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111;
    border-bottom: 2px solid #111;
    padding: 3px 0;
}
.tmc_item-card__price {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: min(1.84vw, 20px);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    display: block;
    margin-bottom: 1.8vw;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__price { font-size: 5vw; margin-bottom: 4vw; }
}
.tmc_item-card__tax {
    font-size: 0.65em;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #888;
}
@media screen and (max-width: 834px) {
    .tmc_item-card__btn { font-size: 11px; }
}
