@charset "UTF-8";

/* ==========================================================================
   Techno Structure EX Page - Site Tone Match (Green/Brown) + Dynamic Layout
   ========================================================================== */

.technostructure-ex-page {
    /* Brand Colors (Extracted from style.css & Reference) */
    --ts-green: #839c74;
    /* Site Primary */
    --ts-green-dark: #5e7052;
    /* Stronger Green for Headings/Impact */
    --ts-green-light: #eff5eb;
    /* Backgrounds */
    --ts-brown: #bbaa9d;
    /* Site Secondary */
    --ts-brown-dark: #8c7b6d;
    --ts-accent: #cfa875;
    /* Gold/Earth tone for CTA/Buttons */
    --ts-accent-hover: #b58e5e;

    --ts-text-main: #191919;
    --ts-text-muted: #5a4a3c;
    --ts-white: #ffffff;

    /* Layout & Spacing */
    --ts-space-section: 100px;
    /* More space for modern feel */
    --ts-radius: 4px;
    /* Site uses sharper corners mostly, keeping it subtle */

    /* Dynamic Elements */
    --ts-skew-angle: -3deg;
    /* Angle for diagonal dividers */
    --ts-shadow-float: 0 15px 40px rgba(0, 0, 0, 0.08);

    font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
    color: var(--ts-text-main);
    line-height: 2.0;
    /* Site style is 2.0 */
    letter-spacing: 0.1em;
    overflow-x: hidden;
    /* For full-width diagonals */
}

/* Dynamic Wide Layout */
.technostructure-ex-page .container {
    max-width: 1400px;
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
}

/* Typography Matching Site */
.technostructure-ex-page h1,
.technostructure-ex-page h2,
.technostructure-ex-page h3 {
    font-family: "Libre Baskerville", "Yu Mincho", serif;
    font-weight: 600;
}

/* 
   1. Dynamic Hero Section
   -------------------------------------------------- */
/* 
   1. Dynamic Hero Section
   -------------------------------------------------- */
/* 
   1. Dynamic Hero Section
   -------------------------------------------------- */
.technostructure-ex-page .ts-hero {
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    z-index: 1;
}

.technostructure-ex-page .ts-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Diagonal Background removed */

.technostructure-ex-page .ts-hero h1 {
    font-size: 2.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .technostructure-ex-page .ts-hero h1 {
        font-size: 3.5rem;
    }
}

/* Hero Button */
.technostructure-ex-page .ts-btn-accent {
    display: inline-block;
    background-color: var(--ts-accent);
    color: #fff;
    padding: 1.25rem 4rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-family: "Libre Baskerville", serif;
    transition: all 0.4s ease;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.technostructure-ex-page .ts-btn-accent:hover {
    background-color: var(--ts-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

/* 
   2. Sections with Dynamic Flow
   -------------------------------------------------- */
.technostructure-ex-page .ts-section {
    padding: 80px 0;
    position: relative;
}

.technostructure-ex-page .ts-section-gray {
    background-color: var(--ts-green-light);
    position: relative;
}

/* Diagonal Section Dividers removed */

/* Section Headings - Dynamic & Modern (Left Aligned Reference) */
.technostructure-ex-page .ts-heading-primary,
.technostructure-ex-page .ts-heading-accent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

/* 1. Accent Line (Top) */
.technostructure-ex-page .ts-heading-primary::before {
    content: "";
    display: block;
    width: 100px;
    height: 6px;
    background: var(--ts-green);
    margin-bottom: 1rem;
    order: 1;
}

.technostructure-ex-page .ts-heading-accent::before {
    content: "";
    display: block;
    width: 100px;
    height: 6px;
    background: var(--ts-green);
    margin-bottom: 1rem;
    order: 1;
}

/* 2. English Title (Middle) */
.technostructure-ex-page .ts-heading-primary::after,
.technostructure-ex-page .ts-heading-accent::after {
    content: attr(data-en);
    display: block;
    font-family: "Oswald", "Libre Baskerville", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ts-text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    order: 2;
    letter-spacing: 0.05em;
}

/* 3. Japanese Title (Bottom) */
.technostructure-ex-page .ts-heading-primary span,
.technostructure-ex-page .ts-heading-accent span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ts-green-dark);
    order: 3;
    display: block;
}

@media (max-width: 767px) {

    .technostructure-ex-page .ts-heading-primary::after,
    .technostructure-ex-page .ts-heading-accent::after {
        font-size: 1.75rem;
    }

    .technostructure-ex-page .ts-heading-primary span,
    .technostructure-ex-page .ts-heading-accent span {
        font-size: 0.875rem;
    }
}

/* 
   3. Content Cards (Floating)
   -------------------------------------------------- */
.technostructure-ex-page .ts-card {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    border-top: 4px solid var(--ts-green);
    border-radius: 8px;
    border: 1px solid #eee;
}

.technostructure-ex-page .ts-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.technostructure-ex-page .ts-subheading {
    font-size: 1.5rem;
    color: var(--ts-green-dark);
    margin-bottom: 1.5rem;
    border-left: none;
    display: flex;
    align-items: center;
}

.technostructure-ex-page .ts-subheading::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--ts-brown);
    margin-right: 15px;
    transform: rotate(45deg);
}

/* Text Highlights with Marker Animation */
@keyframes markerDraw {
    from {
        background-size: 0% 100%;
    }

    to {
        background-size: 100% 100%;
    }
}

.technostructure-ex-page .ts-text-green {
    color: var(--ts-green);
    font-size: 1.3em;
    font-weight: 700;
    background: linear-gradient(to right, rgba(131, 156, 116, 0.25) 100%, transparent 0);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.technostructure-ex-page .ts-text-green.is-visible {
    animation: markerDraw 0.8s ease forwards;
    animation-delay: 0.3s;
}

.technostructure-ex-page .ts-text-red {
    color: #c53030;
    font-size: 1.3em;
    font-weight: 700;
    background: linear-gradient(to right, rgba(197, 48, 48, 0.15) 100%, transparent 0);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.technostructure-ex-page .ts-text-red.is-visible {
    animation: markerDraw 0.8s ease forwards;
    animation-delay: 0.3s;
}

.technostructure-ex-page .ts-text-heading {
    color: var(--ts-green-dark);
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: 2px solid var(--ts-green);
    padding-bottom: 2px;
}

.technostructure-ex-page .ts-text-accent {
    color: var(--ts-accent);
    font-size: 1.4em;
    font-weight: 700;
}

.technostructure-ex-page .ts-text-primary {
    color: var(--ts-green-dark);
    font-size: 1.1em;
    font-weight: 700;
}

/* Key phrase highlight */
.technostructure-ex-page .ts-highlight {
    background: linear-gradient(transparent 60%, rgba(207, 168, 117, 0.3) 60%);
    font-weight: 700;
}

/* Strong text within content - Marker Animation */
.technostructure-ex-page .ts-lead-text strong,
.technostructure-ex-page .ts-problem-text strong,
.technostructure-ex-page .ts-solution-text strong,
.technostructure-ex-page .ts-mechanism-desc strong,
.technostructure-ex-page .ts-mechanism-note strong {
    color: var(--ts-green-dark);
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(131, 156, 116, 0.3) 60%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
}

.technostructure-ex-page .ts-lead-text strong.is-visible,
.technostructure-ex-page .ts-problem-text strong.is-visible,
.technostructure-ex-page .ts-solution-text strong.is-visible,
.technostructure-ex-page .ts-mechanism-desc strong.is-visible,
.technostructure-ex-page .ts-mechanism-note strong.is-visible {
    animation: markerDraw 0.6s ease forwards;
    animation-delay: 0.2s;
}

/* 
   4. Flow Steps (Zigzag Layout)
   -------------------------------------------------- */
/* NOTE: While the HTML might use col-md-4, we can override the layout behavior or rely on the user to update HTML.
   Assuming content flow:
   .row
     .col-md-4 (.ts-flow-item)
     .col-md-4 (.ts-flow-item)
     ...
   If we want a ZigZag "Feature" layout, we usually need "Image + Text", but here inputs are just .ts-flow-item.
   I will style them to look better side-by-side or as distinct cards first.
   To truly make them "shifted", we can use margins on specific children.
*/

.technostructure-ex-page .ts-flow-item {
    height: 100%;
    background: var(--ts-green);
    color: #fff;
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: 8px;
    position: relative;
    margin-top: 0;
}

/* Shift the 2nd item down to create a staggered rhythm */
@media (min-width: 768px) {
    .technostructure-ex-page .row:has(.ts-flow-item) .col-md-4:nth-child(2) .ts-flow-item {
        margin-top: 4rem;
        /* Push the middle card down */
    }
}

/* If :has is not supported or if structure differs, this is a safe progressive enhancement */


.technostructure-ex-page .ts-flow-number {
    font-family: "Libre Baskerville", serif;
    font-size: 3rem;
    color: var(--ts-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.technostructure-ex-page .ts-flow-image {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.technostructure-ex-page .ts-flow-image img {
    border-radius: 8px;
}

/* 
   5. Note / Annotation Areas
   -------------------------------------------------- */
.technostructure-ex-page .ts-note {
    background-color: #fcfcfc;
    border: 1px solid var(--ts-brown);
    padding: 2rem;
    position: relative;
}

.technostructure-ex-page .ts-note::before {
    content: "NOTE";
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--ts-brown);
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 10px;
    font-family: "Libre Baskerville", serif;
}

/* 
   8. Small Headings & Utilities
   -------------------------------------------------- */
.technostructure-ex-page .ts-center-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ts-text-muted);
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.technostructure-ex-page .ts-center-title::before,
.technostructure-ex-page .ts-center-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--ts-brown);
}

.technostructure-ex-page .ts-note-title {
    font-family: "Libre Baskerville", "Yu Mincho", serif;
    font-weight: 700;
    color: var(--ts-green-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    border-bottom: 1px dashed var(--ts-brown);
    padding-bottom: 0.5rem;
    display: inline-block;
}

/* 
   9. Video Wrapper
   -------------------------------------------------- */
/* Video Card */
.technostructure-ex-page .ts-video-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    max-width: 640px;
    margin: 0 auto 2rem;
    border: 1px solid #e5e5e5;
    position: relative;
}

.technostructure-ex-page .ts-video-card::before {
    content: "MOVIE";
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--ts-green);
    color: #fff;
    font-family: "Libre Baskerville", serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 4px;
}

.technostructure-ex-page .ts-video-card-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ts-green-dark);
    text-align: center;
    margin-bottom: 16px;
    margin-top: 8px;
}

.technostructure-ex-page .ts-video-card-caption {
    font-size: 0.875rem;
    color: var(--ts-text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.7;
}

.technostructure-ex-page .ts-video-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.technostructure-ex-page .ts-video-wrapper::before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}

.technostructure-ex-page .ts-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* 
   10. Mechanism Tags (Badges)
   -------------------------------------------------- */
.technostructure-ex-page .ts-tag {
    display: inline-block;
    padding: 0.5rem 1.75rem;
    /* Larger padding */
    font-size: 1.25rem;
    /* Larger font size */
    font-weight: 700;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 0.1em;
    vertical-align: middle;
}

.technostructure-ex-page .ts-tag-navy {
    background-color: var(--ts-green-dark);
}

.technostructure-ex-page .ts-tag-orange {
    background-color: var(--ts-accent);
}

/* 
   7. CTA Section - Big Impact
   -------------------------------------------------- */
/* 
   7. CTA Section - Big Impact
   -------------------------------------------------- */
.technostructure-ex-page .ts-cta-section {
    position: relative;
    background-color: var(--ts-green-dark);
    color: #fff;
    padding: 80px 0;
    margin-top: 0;
    z-index: 10;
}

/* Top Diagonal for CTA removed */

.technostructure-ex-page .ts-cta-section h2 {
    color: #fff;
}

.technostructure-ex-page .ts-cta-card {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent/Glassy */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.technostructure-ex-page .ts-cta-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.technostructure-ex-page .ts-cta-card-highlight {
    background: #fff;
    /* Highlight card is white */
    color: var(--ts-green-dark);
    transform: scale(1.05);
    /* Popped out */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: none;
    z-index: 10;
}

.technostructure-ex-page .ts-cta-card-highlight .ts-cta-card-title {
    color: var(--ts-green-dark);
}

.technostructure-ex-page .ts-cta-card-highlight .ts-cta-card-desc {
    color: #666;
}

/* Invert icon color for the white highlight card (assuming icons are white) */
.technostructure-ex-page .ts-cta-card-highlight .ts-cta-card-icon img {
    filter: invert(1);
    opacity: 0.8;
}

.technostructure-ex-page .ts-cta-card-icon {
    margin-bottom: 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.technostructure-ex-page .ts-cta-card-icon img {
    width: auto;
    height: 100%;
    max-width: 80px;
    object-fit: contain;
    transition: all 0.3s;
}

.technostructure-ex-page .ts-cta-card-title {
    font-size: 1.25rem;
    font-family: "Yu Mincho", serif;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.technostructure-ex-page .ts-cta-card-desc {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    transition: color 0.3s;
}

/* Card Hover Effects (Invert Colors) */
.technostructure-ex-page .ts-cta-card:hover {
    background: #fff;
    transform: translateY(-5px);
}

.technostructure-ex-page .ts-cta-card:hover .ts-cta-card-title,
.technostructure-ex-page .ts-cta-card:hover .ts-cta-card-desc,
.technostructure-ex-page .ts-cta-card:hover .ts-micro-copy {
    color: var(--ts-green-dark);
    opacity: 1;
}

.technostructure-ex-page .ts-cta-card:hover .ts-cta-card-icon img {
    filter: invert(1);
}

.technostructure-ex-page .ts-cta-card:hover .ts-btn-white {
    background: var(--ts-green-dark);
    color: #fff;
    border-color: var(--ts-green-dark);
}

/* Buttons inside CTA */
.technostructure-ex-page .ts-btn-white,
.technostructure-ex-page .ts-btn-accent-solid {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-family: "Libre Baskerville", serif;
    text-decoration: none;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.3s;
}

.technostructure-ex-page .ts-btn-white:hover {
    background: #fff;
    color: var(--ts-green-dark);
}

.technostructure-ex-page .ts-btn-accent-solid {
    background: var(--ts-accent);
    border-color: var(--ts-accent);
    color: #fff;
}

.technostructure-ex-page .ts-btn-accent-solid:hover {
    background: var(--ts-accent-hover);
}

/* 
   Responsive Adjustments
   -------------------------------------------------- */
@media (max-width: 767px) {

    /* ベースフォントサイズを大きく */
    .technostructure-ex-page {
        font-size: 1rem;
    }

    .technostructure-ex-page .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .technostructure-ex-page .ts-hero {
        padding-top: 70px;
        padding-bottom: 0;
    }

    .technostructure-ex-page .ts-section {
        padding: 60px 0;
    }

    .technostructure-ex-page .ts-cta-section {
        padding: 60px 0;
    }

    .technostructure-ex-page .ts-cta-card-highlight {
        transform: scale(1);
        margin: 1rem 0;
    }

    .technostructure-ex-page .ts-card {
        padding: 1.5rem;
    }

    .technostructure-ex-page .ts-heading-primary,
    .technostructure-ex-page .ts-heading-accent {
        margin-bottom: 32px;
    }

    .technostructure-ex-page .ts-feature-row {
        margin-top: 32px;
        margin-bottom: 32px;
        padding-top: 32px;
    }

    .technostructure-ex-page .ts-simulation-section {
        margin-top: 32px;
        padding-top: 32px;
    }

    .technostructure-ex-page .ts-lead-row {
        margin-bottom: 32px;
    }

    .technostructure-ex-page .ts-subheading {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
    }

    .technostructure-ex-page .ts-subheading::before {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        flex-shrink: 0;
        margin-right: 10px;
    }

    .technostructure-ex-page .ts-video-section {
        margin: 32px 0;
    }

    /* 本文テキストサイズ */
    .technostructure-ex-page .ts-lead-text,
    .technostructure-ex-page .ts-problem-text,
    .technostructure-ex-page .ts-solution-text,
    .technostructure-ex-page .ts-mechanism-desc,
    .technostructure-ex-page .ts-mechanism-note,
    .technostructure-ex-page .ts-simulation-intro,
    .technostructure-ex-page .ts-mechanism-list li,
    .technostructure-ex-page p {
        font-size: 14px !important;
        line-height: 1.9;
    }

    /* 小見出し */
    .technostructure-ex-page .ts-small-title {
        font-size: 1rem;
    }

    /* 中央タイトル */
    .technostructure-ex-page .ts-center-title {
        font-size: 1rem;
    }

    /* キャプション */
    .technostructure-ex-page .ts-caption {
        font-size: 0.8125rem;
    }

    /* CTAセクション */
    .technostructure-ex-page .ts-cta-heading {
        font-size: 1.125rem;
    }

    .technostructure-ex-page .ts-cta-lead {
        font-size: 1rem;
    }

    .technostructure-ex-page .ts-cta-sub {
        font-size: 0.9375rem;
    }

    .technostructure-ex-page .ts-cta-card-desc {
        font-size: 0.9375rem;
    }

    /* ビデオカード */
    .technostructure-ex-page .ts-video-card-title {
        font-size: 1rem;
    }

    .technostructure-ex-page .ts-video-card-caption {
        font-size: 0.9375rem;
    }

    /* フローアイテム */
    .technostructure-ex-page .ts-flow-title {
        font-size: 1rem;
    }

    .technostructure-ex-page .ts-flow-desc {
        font-size: 0.9375rem;
    }

    /* ノート */
    .technostructure-ex-page .ts-note-text {
        font-size: 0.9375rem;
    }

    .technostructure-ex-page .ts-note-wrapper {
        margin-top: 32px;
    }

    .technostructure-ex-page .ts-video-card {
        padding: 16px;
        margin-bottom: 1.5rem;
    }

    .technostructure-ex-page .mt-64 {
        margin-top: 32px;
    }

    /* 耐震・制震タグ */
    .technostructure-ex-page .ts-tag {
        padding: 0.25rem 1rem;
        font-size: 0.875rem;
    }

    /* テキストハイライト */
    .technostructure-ex-page .ts-text-red,
    .technostructure-ex-page .ts-text-green {
        font-size: 1.1em;
        padding: 0.05em 0.2em;
    }

    .technostructure-ex-page .ts-text-heading {
        font-size: 1em;
    }

    .technostructure-ex-page .ts-text-accent {
        font-size: 1.2em;
    }
}

/* 
   12. Refactored Utilities (From Inline Styles)
   -------------------------------------------------- */
/* Hero */
.technostructure-ex-page .ts-hero-area-list {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-bottom: 16px;
}

.technostructure-ex-page .ts-hero-target {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.technostructure-ex-page .ts-hero-desc {
    opacity: 0.9;
    margin-bottom: 24px;
}

.technostructure-ex-page .ts-hero-badges {
    margin-bottom: 32px;
}

/* Lead / Problem */
.technostructure-ex-page .ts-lead-row {
    margin-bottom: 48px;
}

.technostructure-ex-page .ts-lead-text-wrapper {
    padding-right: 24px;
}

@media (max-width: 767px) {
    .technostructure-ex-page .ts-lead-text-wrapper {
        padding-right: 0;
        margin-bottom: 24px;
    }
}

.technostructure-ex-page .ts-lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.technostructure-ex-page .ts-lead-text.mb-32 {
    margin-bottom: 32px;
}

.technostructure-ex-page .ts-lead-image-wrapper {
    text-align: center;
}

.technostructure-ex-page .ts-lead-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.technostructure-ex-page .ts-problem-text-wrapper {
    margin-bottom: 32px;
}

/* Feature Images (Mechanism Section) */
.technostructure-ex-page .ts-feature-img {
    text-align: center;
}

.technostructure-ex-page .ts-feature-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.technostructure-ex-page .ts-feature-row {
    margin-bottom: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.technostructure-ex-page .ts-feature-row:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.technostructure-ex-page .ts-problem-text {
    margin-bottom: 16px;
    /* This is inside a col-6, so default width is fine */
}

.technostructure-ex-page .ts-small-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ts-green-dark);
    text-align: left;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--ts-green);
    line-height: 1.6;
}

.technostructure-ex-page .ts-caption {
    font-size: 0.75rem;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

.technostructure-ex-page .ts-caption.mt-24 {
    margin-top: 24px;
}

/* Solution */
.technostructure-ex-page .ts-solution-text {
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-video-wrapper.mb-16 {
    margin-bottom: 16px;
}

.technostructure-ex-page .ts-video-caption {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Mechanism */
.technostructure-ex-page .ts-mechanism-desc {
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-mechanism-list {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.technostructure-ex-page .ts-mechanism-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.technostructure-ex-page .ts-mechanism-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.technostructure-ex-page .ts-mechanism-note {
    font-size: 0.875rem;
}

.technostructure-ex-page .ts-simulation-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.technostructure-ex-page .ts-simulation-intro {
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-flow-title {
    font-weight: bold;
    margin-bottom: 12px;
    color: #fff;
}

.technostructure-ex-page .ts-flow-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 12px;
    line-height: 1.6;
}

.technostructure-ex-page .ts-video-section {
    margin: 48px 0;
}

.technostructure-ex-page .ts-note-wrapper {
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-note-text {
    font-size: 0.875rem;
}

/* CTA */
.technostructure-ex-page .ts-cta-heading {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.technostructure-ex-page .ts-cta-lead {
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-cta-sub {
    color: #fff;
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.technostructure-ex-page .ts-cta-footer-msg {
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-top: 16px;
}


.technostructure-ex-page .ts-micro-copy {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

/* Flow Image Utility */
.technostructure-ex-page .ts-flow-img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.technostructure-ex-page .mb-24 {
    margin-bottom: 24px;
}

.technostructure-ex-page .ts-mt-0 {
    margin-top: 0;
}

.technostructure-ex-page .mt-64 {
    margin-top: 64px;
}

/* Responsive Line Break Utilities */
.technostructure-ex-page .br-pc {
    display: none;
}

.technostructure-ex-page .br-sp {
    display: block;
}

@media (min-width: 768px) {
    .technostructure-ex-page .br-pc {
        display: block;
    }

    .technostructure-ex-page .br-sp {
        display: none;
    }
}

/* ==========================================================================
   Scroll Animation
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーション対象要素 - 初期状態 */
.technostructure-ex-page .ts-animate {
    opacity: 0;
    transform: translateY(30px);
}

/* アニメーション発火時 */
.technostructure-ex-page .ts-animate.is-visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* 遅延アニメーション */
.technostructure-ex-page .ts-animate.delay-1 {
    animation-delay: 0.1s;
}

.technostructure-ex-page .ts-animate.delay-2 {
    animation-delay: 0.2s;
}

.technostructure-ex-page .ts-animate.delay-3 {
    animation-delay: 0.3s;
}

.technostructure-ex-page .ts-animate.delay-4 {
    animation-delay: 0.4s;
}

/* モーション軽減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
    .technostructure-ex-page .ts-animate {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .technostructure-ex-page .ts-text-green,
    .technostructure-ex-page .ts-text-red,
    .technostructure-ex-page .ts-lead-text strong,
    .technostructure-ex-page .ts-problem-text strong,
    .technostructure-ex-page .ts-solution-text strong,
    .technostructure-ex-page .ts-mechanism-desc strong,
    .technostructure-ex-page .ts-mechanism-note strong {
        background-size: 100% 100%;
        animation: none;
    }
}

.renovation_modelhouse {
    padding-top: 100px !important;
}