/*
Theme Name: CLT36MS Theme
Theme URI: https://example.com/clt36ms
Author: Mustafa Iftikhar
Author URI: https://example.com
Description: Custom WordPress theme for CLT36MS with customizer support
Version: 1.3
License: GPL v2 or later
Text Domain: clt36ms
*/

/* All your original CSS goes here - COMPLETELY UNCHANGED */
/* ===== RESET & FONT ===== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');
    /* ===== RESET & FONT ===== */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    body {
    font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
    background-color: #ffffff !important;

}

    /* ===== HEADER ===== */
    /* ===== HEADER ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    
    /* STICKY HEADER */
    position: sticky;
    top: 0;
    z-index: 9999;
}


    .logo-clt img {
        height: 50px;
        width: auto;
        display: block;
    }

    .right-side-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #333;
        font-weight: 500;
    }
    .nav-menu a {
        text-decoration: none;
        color: #333;
        transition: color 0.2s;
    }
    .nav-menu a:hover {
        color: #78C069;
    }
    .nav-divider {
        color: #ccc;
    }

    .logo-meiken img {
        height: 24px;
        width: auto;
        display: block;
    }

    /* Responsive Header */
    @media (max-width: 900px) {
        .site-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        .right-side-wrapper {
            align-items: flex-start;
            width: 100%;
        }
        .nav-menu {
            flex-wrap: wrap;
        }
    }/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;      /* Allows absolute positioning inside */
    width: 100%;
    max-width: 1440px;
    margin: 20px auto 0;
    height: 500px;
    background-color: #ffffff; /* The entire background is now white */
    overflow: hidden; 
    display: flex;
    justify-content: flex-end; /* Pushes the text content to the right */
}

/* LEFT SIDE (The Image Layer) */
.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;             /* Adjust this percentage to control where the cut happens */
    height: 100%;
    z-index: 1;
}

.hero-left-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* ONLY the image gets clipped now */
    clip-path: polygon(0 0, 100% 0, 66% 100%, 0 100%);
}

.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-50%);
    color: white;
    font-size: 85px;
    font-weight: 400;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size: 52px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 85px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 52px;
}

/* RIGHT SIDE (Just clean text/content now, NO CLIP PATH) */
.hero-right {
    width: 50%;             /* Takes up the right half of the banner */
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;             /* Sits safely on/above the background layout */
}

.hero-logo {
    position: absolute;
    top: 20px;
    right: 20px;
}
.hero-logo img {
    height: 129px;
    width: 254px;
}

.hero-text {
    font-size: 36px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}

.hero-house-right img {
    width: 100%;
    max-width: 555px;
    height: 169px;
    display: block;
}

.wood-bar {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-image: url('./wood-bar.png');
    background-size: fill;
    background-position: center;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6F0500;
    letter-spacing: 0.3em;
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
}

/* ===== INFO SECTION ===== */
.info-section {
    width: 100%;
    max-width: 1440px;

    background-color: #ffffff; /* Full width white background */
    padding: 40px 0; /* Padding top/bottom */
}

/* Inner container - 809px width, centered */
.info-container {
    width: 890px;
    max-width: 100%;
    margin: 0 auto; /* Centers horizontally */
    padding: 0 20px; /* Safety padding for mobile */
}

/* Top Disclaimer Text */
.info-top-text {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Main Box */
.info-box {
    border: 2px solid #000;
    padding: 20px 40px;
    background-color: #fff;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 22px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-list li sup {
    font-size: 12px;
}

/* Black Footer Strip */
.info-footer {
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    padding-left: 30px;
    text-align: center;
    font-size: 26px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.info-footer .highlight {
    color: #4ADE80; /* Bright green */
}

.info-footer sup {
    font-size: 12px;
}

/* Bottom small text */
.info-bottom-note {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 860px) {
    .info-container {
        width: 100%;
    }
    .info-box {
        padding: 20px;
    }
    .info-list li {
        font-size: 15px;
    }
    .info-footer {
        font-size: 16px;
        padding: 12px 20px;
    }
}


/* ===== CHALLENGE SECTION ===== */
.challenge-section {
    width: 100%;
    max-width: 1440px;
    position:relative;

    background-color: #f0f0f0;
    padding: 60px 0 0;
}

/* Title */
.section-title {
    text-align: center;
      font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
    margin-bottom: 50px;
}

/* Top 3 Icons Row */
.icons-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 290px;
}

/* White box with rounded corners */
.icon-box-wrapper {
    width: 202px;
    height: 200px;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Image inside the box */
.icon-img {
    width: 126px;
    height: 129px;
    object-fit: contain;
}

/* Text outside (below) the box */
.icon-text {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 33px;
    color: #000;
    max-width: 340px;
}

/* Green highlight for specific words */
.highlight-green {
    color: #389F3A; /* Same green as the icons */
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .icons-row {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}
/* Rest of the CSS remains the same... */

/* Bottom Section (Man + Content) */
.bottom-section {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-left: 180px;
    gap: 40px;
    padding-bottom: 0;
}

.man-wrapper {
    flex-shrink: 0;
}

.man-img {
    width: 250px;
    height: auto;
    display: block;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
}

/* White boxes */
/* White boxes */
.white-box {
    background-color: #fff;
    padding: 8px 20px;
    font-size: 30px;
    font-weight: 500;
    color: #000;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: auto;
    white-space: nowrap;
    align-self: flex-start;  /* THIS FIXES THE STRETCHING */
}
.top-box {
    margin-left: 0;
}



/* Green boxes */
.green-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}

.green-item {
    background-color: #389F3A;
    color: #fff;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 700;
    width: 100%;
    min-width: 400px;
}

/* Bottom Wood Bar */
.wood-bar-bottom {
    position: relative;
    width: 100%;
    margin-top: 0;
    line-height: 0;
}

.wood-bar-img {
    width: 100%;
    height: 151px;
    object-fit: fill;
    display: block;
}

.wood-bar-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 589px;
    height: 57px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 5px 0px;
    font-size: 38px;
    line-height: 100%;
    font-weight: 500;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
    .icons-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .bottom-section {
        flex-direction: column;
        align-items: center;
        margin-left:0;
    }
    
    .green-item {
        min-width: auto;
        width: 100%;
    }
    
    .wood-bar-text {
        font-size: 18px;
        padding: 8px 20px;
        white-space: normal;
    }


}


.sky-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* 1. Sky Background */
.sky-bg {
    position: relative;
    width: 100%;
}

.sky-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. CLT Logo - Positioned over the sky */
.clt-logo-overlay {
    position: absolute;
    bottom: 150px;  /* Adjusted to sit above the building area */
    left: 20%;
    z-index: 2;
}

@media (min-width: 767px) {
    .clt-logo-overlay .clt-logo-img {
        height: 202px !important;
        width: 379px !important;
    }
}

/* 3. Building - Positioned at the bottom of the sky */
.building-overlay {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: 2;
}

.building-img {
    height: 400px;
    width: auto;
    display: block;
}

/* 4. Text - Top Center */
.sky-text {
    position: absolute;
    top: 100px;
    left: 47%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
        font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
    pointer-events: none;
}

/* 5. White Space Below the Building */
.sky-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 80px; /* Adjust this to control the white space height */
    background-color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .clt-logo-img {
        height: 60px;
    }
    .building-img {
        height: 200px;
    }
    .sky-text {
        font-size: 20px;
        top: 20px;
    }
    .clt-logo-overlay {
        bottom: 80px;
        left: 20px;
    }
    .sky-section::after {
        height: 40px;
    }
}

.system-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 25px 40px;
    overflow: hidden;
    min-height: 400px;
}

/* Background Image */
.system-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* Left Side */
.left-side {
    position: relative;
    width: 45%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* Green Graphic */
.green-graphic-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.green-graphic-img {
    width: 486px;
    height: 438px;
    display: block;
}

/* CLT Logo (Center of the green graphic) */
.clt-logo-center {
    position: absolute;
    top: 52%;
    left: 49%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.clt-logo-img {
    width: 121px;
    height: 61px;
    display: block;
    /* Drop shadow: X 7px, Y 7px, Blur 9px, Color #00000040 */
    filter: drop-shadow(7px 7px 9px rgba(0, 0, 0, 0.25));
}

/* Text inside the 3 white circles */
.circle-text {
    position: absolute;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #55B65C;
    pointer-events: none;
    z-index: 3;
}

.circle-text.top {
    top: 12%;
    left: 49%;
    transform: translateX(-50%);
}

.circle-text.bottom-left {
    bottom: 18%;
    left: 18%;
}

.circle-text.bottom-right {
    bottom: 18%;
    right: 22%;
}

/* Right Side: Text */
.right-text-content {
    width: 57%;
    z-index: 1;
    padding-left: 40px;
}

.system-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 56px;
    color: #000;
    margin-bottom: 10px;
}

.system-title span{
    font-size: 24px;
}

.system-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .system-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    .left-side {
        width: 100%;
        height: 300px;
        margin-bottom: 40px;
    }
    .right-text-content {
        width: 100%;
        padding-left: 0;
    }
    .system-title {
        font-size: 24px;
    }
    .system-description {
        font-size: 16px;
    }
}


/* ===== SOLUTION SECTION ===== */
.solution-section {
    width: 100%;
    max-width: 1440px;

    background-color: #ffffff;
    padding: 60px 40px;
}

.solution-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Title */
.solution-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.solution-title .highlight-green {
    color: #389F3A;
}

.solution-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 50px;
}

/* Cards Grid */
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 384px;
    display: flex;
    flex-direction: column;
}

/* Card Header - Full Black Bar */
.card-header {
    background-color: #000;
    color: #fff;
    padding: 0;
    display: flex;
    align-items: stretch;
    height: 40px;
    margin-bottom: 10px;
}

/* Number Image - Full Height, White Background */
.number-img {
    height: 100%;
    width: auto;
    display: block;
    background-color: #ffffff;
    border-right: 1px solid #000;
}

/* Card Title - Padding Top/Bottom */
.card-title {
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

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

.card-text {
    font-size: 18px;
    line-height: 28px;
    
    padding: 15px 0;
    text-align: justify;
}

.card-text span{
    font-size: 12px;
}

/* Bottom Note */
.bottom-note {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-top: 0px;
    margin-bottom: 40px;
    width: 830px;
}

/* ===== CLT BOX ===== */
.clt-box {
    border: 3px solid #000;
    padding: 0;
    background-color: #fff;
    width: 840px;
    max-width: 100%;
    margin: 0 auto;
}

.clt-box-header {
    background-color: #000;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    padding: 15px 30px;
    text-align: center;
}

.clt-box-header span{
    font-size: 21px;
}

.clt-box-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 1. TOP CENTER - Main Title Text */
.clt-top-text {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 46px;
    color: #000;
}

/* 2. BOTTOM GRID - Left: Text | Right: Image */
.clt-bottom-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.clt-left-text {
    flex: 1;
}

.clt-feature-title {
    font-size: 30px;
    font-weight: 700;
    color: #389F3A;
    display: block;
    margin-bottom: 15px;
}

.clt-feature-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;

}

.clt-feature-list li {
    margin-bottom: 8px;
}

.clt-right-image {
    flex: 0 0 350px;
}

.clt-construction-img {
    width: 311px;
    height: 226px;
    display: block;
}

/* Button */
.clt-button-wrapper {
    padding: 0 40px 40px 40px;
    text-align: center;
}

.clt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to bottom, #55B65C, #0F9334);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    padding: 12px 0;
    border-radius: 50px;
    width: 424px;
    height: 50px;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s;
}

.clt-button:hover {
    opacity: 0.8;
}

.arrow-img {
    width: 33px;   /* Adjust based on your image */
    height: 33px;  /* Adjust based on your image */
    display: block;
    object-fit: contain;
    margin-left: 30px;
}

/* Responsive */
@media (max-width: 770px) {
    .clt-box {
        width: 100%;
    }
    .clt-bottom-grid {
        flex-direction: column;
    }
    .clt-right-image {
        flex: 0 0 auto;
        width: 100%;
    }
}
/* Responsive */
@media (max-width: 900px) {
    .cards-grid {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 400px;
    }
    .clt-box-content {
        flex-direction: column;
        padding: 20px;
    }
    .clt-image-area {
        flex: 0 0 auto;
    }
    .clt-box-title {
        font-size: 22px;
    }
}

/* ===== MODULE SECTION ===== */
.module-section {
    width: 100%;
    max-width: 1440px;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 60px 40px;
}

.module-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.module-title {
    font-family: 'Noto Serif JP', serif;;
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    padding-bottom: 20px;
    display: inline-block;
}

/* Description Text */
.module-description {
    font-size: 22px;
    line-height: 42px;
  
    margin-bottom: 40px;
}

.module-sub-text {
    margin-top: 20px;
}

/* ===== BLACK BOX ===== */
.module-black-box {
    border: 2px solid #000;
    margin: 0 auto 40px;
    max-width: 600px;
}

/* Black Header */
.module-black-header {
    background-color: #000;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 0;
    text-align: center;
}

/* Content with 4 items */
.module-black-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 20px;
}

.module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.module-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    border: 2px solid #000;
    margin-bottom: 10px;
}

.module-label {
    font-size: 22px;
    font-weight: 700;

    color: #000;
    text-align: center;
    line-height: 30px;
}

/* ===== GREEN ARROW ===== */
/* ===== GREEN ARROW ===== */
/* ===== GREEN ARROW ===== */
.module-arrow {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.arrow-shape {
    /* Applying your exact gradient and Noto Serif JP font from earlier */
    background: linear-gradient(to bottom, #55B65C, #0F9334);
    font-family: 'Noto Sans JP', serif;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 42px;
    
    /* The 7-point Arrow Clip-Path:
      1. Top-left -> 2. Top-right -> 3. Wing right -> 4. Right inner corner 
      -> 5. Bottom tip -> 6. Left inner corner -> 7. Wing left
    */
    clip-path: polygon(
        13% 0%,    13% 45%,   0% 45%, 
        50% 100%, 
        100% 45%,  87% 45%,   87% 0%
    );
    
    /* Adjusted size to comfortably fit the text and the arrow wings */
    width: 400px;
    height: 150px;
    
    display: flex;
    flex-direction: column; /* Stack the two lines of text neatly */
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-bottom: 35px; /* Pushes text up slightly so it centers in the rectangle part */
}

/* ===== BOTTOM LAYOUTS ===== */
.module-layouts {
    max-width: 900px;
    margin: 0 auto;
}

.module-layouts-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .module-title {
        font-size: 28px;
    }
    .module-description {
        font-size: 16px;
    }
    .module-black-content {
        flex-wrap: wrap;
        gap: 20px;
    }
    .arrow-shape {
        font-size: 18px;
        padding: 15px 40px;
    }
}

/* ===== DIAGRAM INSIDE MODULE SECTION ===== */
/* ===== DIAGRAM INSIDE MODULE SECTION ===== */
.module-diagram {
    margin-top: 50px;
    width: 100%;
}

.diagram-exploded {
    width: 100%;
    margin-bottom: 50px;
}

.diagram-exploded-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom wrapper with 3 layers */
.diagram-bottom-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

/* Layer 1: Green Background */
.diagram-green-bg {
    width: 100%;
    opacity: 0.5;
}

.diagram-green-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Layer 2: CLT Logo */
.diagram-logo {
    position: absolute;
    bottom: 160px;
    left: 150px;
    z-index: 2;
}

.diagram-logo-img {
    height: 97px;
    width: 190px;
    display: block;
}

/* Layer 3: Building Image */
.diagram-building {
    position: absolute;
    bottom: 0;
    right: 25%;
    z-index: 3;
}

.diagram-building-img {
    height: 300px;
    width: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .diagram-logo-img {
        height: 50px;
    }
    .diagram-building-img {
        height: 150px;
    }
    .diagram-logo {
        bottom: 20px;
        left: 20px;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .module-diagram {
        margin-top: 30px;
    }
}

/* ===== FEATURE SECTION ===== */
.feature-section {
    width: 100%;
    max-width: 1440px;
    margin: 40px auto 0;
    background-color: #ffffff;
    padding: 20px 40px 60px;
}

.feature-container {
    max-width: 940px;
    margin: 0 auto;
}

/* Black Box Header */
.feature-box-header {
    background-color: #000;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 42px;
    padding: 15px 0;
    text-align: center;
    border: 3px solid #000;
    border-bottom: none;
}
.feature-box-header  span{
    font-size: 30px;
}

/* Main Box Content */
.feature-box-content {
    border: 3px solid #000;
    border-top: none;
    padding: 30px;
}

/* Grid: 2x2 */
.feature-grid {
    display: grid;
    grid-template-columns: 420px 420px;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-img {
    width: 100%;
    height: 226px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 10px;
    line-height: 42px;
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
   font-weight: 400;
    line-height: 26px;
    color: #000000;
    margin-top: 20px;
    margin-left: 70px;
}

.feature-list li {
    margin-bottom: 4px;
}

/* Small Note */
.feature-note {
    font-size: 12px;
    color: #000;
    margin-top: 20px;
    line-height: 26px ;
}

/* Green Button */
.feature-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #55B65C, #0F9334);
    color: #fff;
    font-size: 22px;
    line-height: 39px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    width: 291px;
    text-decoration: none;
    transition: opacity 0.2s;
     box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25); 
}

.feature-button:hover {
    opacity: 0.8;
}


.feature-arrow {
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-box-header {
        font-size: 18px;
    }
    .feature-title {
        font-size: 20px;
    }
}/* ===== VIDEO SECTION ===== */
.video-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Wood Background (Full Width) */
.video-wood-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    min-height: 400px;
    z-index: 0;
}

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

/* Content Container (Centered) */
.video-content-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0px;
}

/* Black Header */
.video-header {
    background-color: #000;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 42px;
    padding: 15px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
}

/* Video Wrapper */
.video-wrapper {
    margin-bottom: 50px;
}

.video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin-bottom: 20px;
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Title */
.video-title {
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Video Description */
.video-desc {
    font-size: 19px;
    text-align: center;
    color: #000;
    line-height: 28px;
}

/* ===== BUILDING SECTION INSIDE VIDEO SECTION ===== */
.video-building-section {
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0; /* Optional separator */
}

.video-building-img-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-building-img {
    width: 100%;
    height: auto;
    display: block;
}

.video-building-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    line-height: 52px;
    text-align: left;
    margin-bottom: 40px;
    margin-left: 80px;
    width: 700px;
}

.video-building-title .highlight-green {
    color: #389F3A;
}

.video-building-desc {
    font-size: 17px;
    line-height: 26px;
    color: #000;
    text-align: left;
     margin-left: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .video-building-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    .video-building-title {
        font-size: 26px;
    }
    .video-building-desc {
        font-size: 16px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-header {
        font-size: 18px;
        padding: 12px 0;
    }
    .video-wrapper {
        margin-bottom: 30px;
    }
    .video-title {
        font-size: 20px;
    }
    .video-desc {
        font-size: 14px;
    }
}

/* ===== STRENGTH SECTION ===== */
    .strength-section {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 20px;
    min-height: 580px;
}
/* Wood Background (Full Width) */
.strength-wood-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

/* Content Container (Centered) */
.strength-content-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Title */
.strength-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP', serif;
}

/* Grid */
.strength-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.strength-item {
    width: 352px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

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

.strength-image-credit {
    position: absolute;
    bottom: 5px;
    left: 5px;
    font-size: 10px;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    padding: 2px 6px;
}

.strength-text {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 47px;
    color: #000;
}

/* Right Overlay (Green Illustration + Man) */
.strength-right-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 350px;
    height: 170px;
    pointer-events: none;
}

.strength-illustration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.strength-illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



/* Responsive */
@media (max-width: 900px) {
    .strength-section {
        padding: 40px 20px;
    }
    .strength-grid {
        flex-direction: column;
        align-items: center;
    }
    .strength-item {
        width: 100%;
        max-width: 400px;
    }
    .strength-right-overlay {
        width: 250px;
        height: 200px;
    }
    .strength-man-img {
        height: 200px;
    }
    .strength-title {
        font-size: 28px;
    }
}


/* ===== CASE SECTION ===== */
.case-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px 40px;
}

.case-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Section Title */
.case-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 50px;
    font-family: 'Noto Serif JP', serif;
}

/* Grid */
.case-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.case-item {
    width: 450px;
    display: flex;
    flex-direction: column;
}

.case-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

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

.case-arrow-left,
.case-arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-arrow-left {
    left: 10px;
}

.case-arrow-right {
    right: 10px;
}

/* Updated Header with Number Image */
.case-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.case-number-img {
    height: 30px;
    width: auto;
    display: block;
}

.case-name {
    font-size: 23px;
    line-height: 23px;
    font-weight: 700;
    color: #000;
}

/* Table remains the same... */
.case-table {
    width: 100%;
    border-collapse: collapse;
}

.case-table tr {
   
}

.case-table tr:last-child {
    border-bottom: none;
}

.case-label {
    padding: 8px 0;
    font-size: 18px;
    color: #000;
    line-height: 30px;
    width: 100px;
}

.case-value {
    padding: 8px 0;
    font-size: 18px;
    color: #000;
    line-height: 30px;
}

/* Green Buttons */
.case-button-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.case-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #55B65C, #0F9334);
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.2s; 
    width: 468px;/* Added box-shadow to transition */
    
    /* Corrected Drop Shadow */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25); 
}

.case-button.small{
    width: 232px;
    padding: 10px 30px;
}


.case-button:hover {
    opacity: 0.8;
}

.case-arrow {
    font-size: 20px;
}

/* Disclaimer */
.case-disclaimer {
    text-align: center;
    font-size: 17px;
    line-height: 28px;
    color: #000;
    margin-bottom: 30px;
}

/* Footer Notes */
.case-notes {
    font-size: 12px;
    line-height: 1.6;
    color: #000;
    margin-top: 20px;
}

.case-notes p {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 900px) {
    .case-grid {
        flex-direction: column;
        align-items: center;
    }
    .case-item {
        width: 100%;
        max-width: 500px;
    }
    .case-title {
        font-size: 28px;
    }
    .case-button {
        font-size: 16px;
        padding: 12px 30px;
    }
    .left-side {
    position: relative;
    width: 45%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
}
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #000;
        z-index: 10;
    }
}

/* ===== HEADER - DEFAULT (Desktop) ===== */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 40px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Desktop structure - visible by default */
.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.logo-clt img {
    height: 50px;
    width: auto;
    display: block;
}

.right-side-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.logo-meiken img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #78C069;
}

/* Mobile structure - hidden by default */
.mobile-header {
    display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    /* Header */
    .site-header {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
    }
    
    .mobile-header {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }
    
    .logo-meiken img {
        height: 40px;
        width: 252px;
    }
    
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #000;
    }
    
    .desktop-header {
        display: none;
    }
    
    /* CLT Logo - Below header, above hero */
    .mobile-clt-logo {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #ffffff;
    position: sticky;
    top: 60px; /* Adjust based on mobile header height */
    z-index: 9998;
}
    
    .mobile-clt-logo img {
        height: 50px;
        width: 100px;
    }
    
    /* Hide desktop CLT logo inside header */
    .logo-clt {
        display: none;
    }
    
    /* Navigation - Hidden by default */
    .right-side-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        z-index: 1000;
        padding: 20px;
    }
    
    .right-side-wrapper.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 5px 0;
        width: 100%;
        text-align: center;
        color: #333;
        text-decoration: none;
    }
    
    .nav-menu span {
        display: none;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
    
    .mobile-clt-logo {
        display: none;
    }
    
    .hamburger {
        display: none;
    }
    
    .site-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 15px 40px;
    }
    
    .logo-clt {
        display: block;
    }
    
    .logo-clt img {
        height: 50px;
        width: auto;
    }
    
    .right-side-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    
    .logo-meiken img {
        height: 40px;
        width: 253px;
        object-fit: contain;  /* This keeps the aspect ratio without stretching */
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
    }
    
    .nav-menu span {
        display: inline;
        color: #ccc;
    }
}

/* /* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        height: auto;
        min-height: auto;
        position: relative;
        margin-top: 10px;
        width: 100%;
        overflow: hidden;
    }

    .hero-left {
        position: relative;
        width: 100%;
        height: 270px;
        margin-right: 0;
        padding-right: 0;
        clip-path: none;
    }

    .hero-left-img {
        width: 100%;
        height: 100%;
        clip-path: none;
        object-fit: cover;
    }

    .hero-left-text {
        position: absolute;
        top: 1%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 45px;
        letter-spacing: 0.1em;
        width: 100%;
    }

    .hero-left-text span {
        font-size: 45px;
    }

    .hero-left-text .glow {
        font-size: 45px;
        text-shadow: 0 0 8px #ffffff;
        letter-spacing: 0.1em;
    }

    .hero-left-text .glow span {
        font-size: 28px;
    }

    .hero-right {
        width: 100%;
        padding: 30px 20px;
        position: relative;
        margin-left: 0;
        clip-path: none;
        background-color: #ffffff;
    }

    .hero-logo {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-logo img {
        height: 80px;
        width: auto;
    }

    .hero-text {
        font-size: 32px;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-house-right img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* ===== WOOD BAR ===== */
    .wood-bar {
        height: 146px;
        background-size: cover;
        width: 100%;
        overflow: hidden;
    }

    .wood-bar p {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 36px;
        padding: 0 30px;
        text-align: center;
    }
}

/* ===== INFO SECTION MOBILE ===== */
@media (max-width: 768px) {
    .info-section {
        padding: 20px 0;
    }
    
    .info-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .info-top-text {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .info-box {
        padding: 5px;
        border-width: 2px;
        padding-bottom:25px;
    }
    
    .info-list li {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
        padding-right:10px;
        font-weight: 400;
        display: flex;
        align-items: flex-start;
    }
    
    .info-list li sup {
        font-size: 10px;
    }
    
    .info-footer {
        font-size: 18px;
        line-height: 1.5;
        padding: 20px;

        text-align: center;
    }
    
    .info-footer .highlight {
        color: #4ADE80;
    }
    
    .info-bottom-note {
        font-size: 12px;
        line-height: 28px;
        text-align: right;
        margin-top: 10px;
    }
}

@media (min-width: 769px) {
    .mobile-br{
        display: none;
    }
}

/* ===== CHALLENGE SECTION MOBILE ===== */
@media (max-width: 768px) {
    .challenge-section {
        padding: 40px 10px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .icons-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 100px;
    }
    
    .icon-box {
        width: 100%;
        max-width: 300px;
    }
    
    .icon-box-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .icon-img {
        width: 130px;
        height: 101px;
    }
    
    .icon-text {
        font-size: 22px;
        line-height: 33px;
    }
    
    /* Bottom Section */
.bottom-section {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-right: 0;
    gap: 40px;
    padding-bottom: 0;
    width: 100%;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    width: 100%;
    align-items: centr;
    margin: 0 auto;
}

    
    .white-box {
        font-size: 24px;
        padding: 0px 10px;
        white-space: normal;
    }
    .white-box.middle-box{
        margin-bottom: 10px;

    }
    
    .green-list {
        gap: 8px;
    }
    
    .green-item {
        font-size: 16px;
        padding: 8px 5px;
        min-width: auto;
        width: 100%;
        line-height: 1.4;
    }
    
    /* Bottom Wood Bar */
    .wood-bar-bottom {
        margin-top: 10px;
      height: 215px;
    }
    
    .wood-bar-img {
        height: 200px;
    }
    
    .wood-bar-text {
        font-size: 32px;
        width: auto;
        height: auto;
        padding: 8px 10px;
        white-space: normal;
        width: 300px;
        text-align: center;
    }
}

/* ===== SKY SECTION MOBILE ===== */
@media (max-width: 900px) {
    .sky-section {
        padding: 0 0px;
    }
    
   .sky-bg-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
 /* Fills the area, maintains aspect ratio, crops if necessary */
}
    
    .clt-logo-overlay {
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Changed from 60% */
}

.clt-logo-img {
    width: 183px !important;
    height: 93px !important;
    max-width: none !important;
}
    
    .building-overlay {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    display: flex;           /* Add this */
    justify-content: center; /* Add this */
    align-items: center;     /* Add this */
}

.building-img {
    height: auto;
    width: 100%;
    max-width: 300px;
    display: block;          /* Add this */
    margin: 0 auto;          /* Add this */
}
    
    .sky-text {
        font-size: 32px;
        line-height: 46px;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Noto Serif JP', serif;
        width: 90%;
    }
    
    .sky-section::after {
        height: 50px;
    }
}

/* ===== SYSTEM SECTION MOBILE ===== */
@media (max-width: 768px) {
    .system-section {
        flex-direction: column;
        padding: 40px 15px;
        min-height: auto;
    }
    
    .left-side {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        padding: 20px 0;
    }
    
    .green-graphic-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
    }
    
    .green-graphic-img {
        width: 350px;
        height: auto;
    }
    
    .clt-logo-center {
        top: 53%;
        left: 49%;
        transform: translate(-50%, -50%);
        width: 86px;
        height: 44px;
    }
    
    .clt-logo-img {
        width: 86px;
        height: auto;
    }
    
    .circle-text {
        font-size: 24px;
    }
    
    .circle-text.top {
        top: 20%;
        left:48%;
        transform: translateX(-50%);
    }
    
    .circle-text.bottom-left {
        bottom: 25%;
        left: 13%;
    }
    
    .circle-text.bottom-right {
        bottom: 25%;
        right: 17%;
    }
    
    .right-text-content {
        width: 100%;
        padding-left: 0;
    }
    
    .system-title {
        font-size: 23px;
        line-height: 1.5;
        text-align: left;
    }
    
    .system-title span {
        font-size: 16px;
    }
    
    .system-description {
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }

    .desktop-br{
        display: none;
    }
}

/* ===== SYSTEM SECTION (Desktop) ===== */
.clt-logo-center .system-logo-img {
    width: 121px;
    height: 61px;
    display: block;
    filter: drop-shadow(7px 7px 9px rgba(0, 0, 0, 0.25));
}

/* ===== SYSTEM SECTION MOBILE ===== */
@media (max-width: 768px) {
    .clt-logo-center .system-logo-img {
        width: 86px;
        height: 44px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
  .solution-subtitle {
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 50px;
}

.solution-section {
    padding: 60px 20px;
}

.solution-title {

    font-size: 33px;
  
}

.card-title {
    font-size: 24px;
 line-height: 27px;
}

.card-text{
    font-size: 16px;
}

}

/* ===== CLT BOX MOBILE ===== */
@media (max-width: 768px) {
    .clt-box {
        width: 100%;
        border-width: 2px;
        margin: 0 auto;
    }
    
    .clt-box-header {
        font-size: 20px;
        line-height: 1.4;
        padding: 12px 10px;
    }
    
    .clt-box-header span {
        font-size: 20px;
    }
    
    .clt-box-content {
        padding: 10px;
        gap: 20px;
    }
    
    .clt-top-text {
        font-size: 20px;
        line-height: 30px;
        text-align: left;
    }
    
    .clt-bottom-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .clt-left-text {
        width: 100%;
    }
    
    .clt-feature-title {
        font-size: 24px;
        line-height: 42px;
        margin-bottom: 10px;
    }
    
    .clt-feature-list {
        font-size: 16px;
        line-height: 28px;
    }
    
    .clt-feature-list li {
        margin-bottom: 6px;
    }
    
    .clt-right-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .clt-construction-img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .clt-button-wrapper {
        padding: 0 15px 20px;
    }
    
    .clt-button {
        width: 100%;
        max-width: 100%;
        height: 45px;
        font-size: 16px;
        padding: 10px 0;
            filter: drop-shadow(0px 3px 0px rgba(0, 0, 0, 0.25));
    }
    
    .arrow-img {
        width: 24px;
        height: 24px;
        margin-left: 10px;
    }
}

/* ===== MODULE SECTION MOBILE ===== */
@media (max-width: 768px) {
    .module-section {
        padding: 40px 18px;
    }
    
    .module-container {
        max-width: 100%;
    }
    
    .module-title {
        font-size: 32px;
        padding-bottom: 15px;
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    
    .module-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: left;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 30px;
    }
    
    .module-sub-text {
        margin-top: 10px;
    }
    
    /* ===== BLACK BOX ===== */
    .module-black-box {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .module-black-header {
        font-size: 20px;
        line-height: 24px;
        padding: 10px 0;
    }
    
    .module-black-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .module-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .module-img {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    .module-label {
        font-size: 16px;
        line-height: 1.4;
    }
    
    /* ===== GREEN ARROW ===== */
    .module-arrow {
        margin-bottom: 30px;
    }
    
    .arrow-shape {
        width: 280px;
        height: 130px;
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 40px;
        clip-path: polygon(
            10% 0%, 10% 40%, 0% 40%,
            50% 100%,
            100% 40%, 90% 40%, 90% 0%
        );
    }
    
    /* ===== BOTTOM LAYOUTS ===== */
    .module-layouts-img {
        width: 100%;
        height: auto;
    }
    
    /* ===== DIAGRAM ===== */
    .module-diagram {
        margin-top: 30px;
    }
    
    .diagram-exploded {
        margin-bottom: 30px;
    }
    
    .diagram-exploded-img {
        width: 100%;
        height: auto;
    }
    
    .diagram-bottom-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .diagram-green-bg {
        width: 100%;
        opacity: 0.5;
    }
    
    .diagram-green-bg-img {
        width: 100%;
        height: auto;
    }
    
    .diagram-logo {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -40px 0 10px 0;
        z-index: 2;
    }
    
    .diagram-logo-img {
        height: 50px;
        width: auto;
    }
    
    .diagram-building {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
        z-index: 3;
    }
    
    .diagram-building-img {
        height: auto;
        width: 100%;
        max-width: 300px;
    }
}

/* Desktop: show desktop image, hide mobile */
.desktop-layouts {
    display: block;
}
.mobile-layouts {
    display: none;
}

/* Mobile: show mobile image, hide desktop */
@media (max-width: 768px) {
    .desktop-layouts {
        display: none;
    }
    .mobile-layouts {
        display: block;
        width: 100%;
        height: auto;
    }
}

/* ===== DIAGRAM BOTTOM MOBILE ===== */
@media (max-width: 768px) {
    .diagram-bottom-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 10px 5px;
    }
    
    /* Layer 1: Green Background - smaller and positioned behind */
    .diagram-green-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.6;
    }
    
    .diagram-green-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Layer 2: CLT Logo - on the left */
    .diagram-logo {
    position: relative;
    top: auto;
    left: -5%;
    z-index: 3;
    flex: 0 0 0;
    margin: 0;
    transform: translateY(-70px); /* Moves up 10px */
}
    .diagram-logo-img {
        height: 48px;
        width: 98px;
    }
    
    /* Layer 3: Building Image - on the right */
    .diagram-building {
        position: relative;
        bottom: auto;
        right: 10%;
        z-index: 2;
        flex: 0 0 auto;
        margin: 0;
    }
    
    .diagram-building-img {
        height: 130px;
        width: 170px;
    }
}

/* ===== FEATURE SECTION FIX (1030px - 769px) ===== */

@media (min-width: 769px) and (max-width: 1030px) {
    .feature-section {
        padding: 20px 20px 40px !important;
    }
    
    .feature-container {
        max-width: 100% !important;
    }
    
    .feature-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    
    .feature-item {
        width: 100% !important;
    }
    
    .feature-img {
        height: 160px !important;
        object-fit: cover !important;
    }
    
    .feature-title {
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 5px !important;
    }
    
    .feature-list {
        margin-left: 15px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .feature-item:nth-child(3) .feature-list {
        margin-left: 15px !important;
    }
    
    .feature-note {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-top: 10px !important;
    }
    
    .feature-box-header {
        font-size: 18px !important;
        line-height: 1.4 !important;
        padding: 10px !important;
    }
    
    .feature-box-header span {
        font-size: 22px !important;
    }
    
    .feature-box-content {
        padding: 20px !important;
        border-width: 2px !important;
    }
    
    .feature-button-wrapper {
        margin-top: 30px !important;
    }
    
    .feature-button {
        width: 100% !important;
        max-width: 280px !important;
        height: 45px !important;
        font-size: 18px !important;
        justify-content: center !important;
        padding: 0 20px !important;
    }
}

/* ===== FEATURE SECTION MOBILE ===== */
@media (max-width: 768px) {
    .feature-section {
        padding: 20px 15px 40px;
    }
    
    .feature-container {
        max-width: 100%;
    }
    
    .feature-box-header {
        font-size: 20px;
        line-height: 1.4;
        padding: 12px 10px;
    }
    
    .feature-box-header span {
        font-size: 26px;
    }
    
    .feature-box-content {
        padding: 15px;
        border-width: 2px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .feature-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin-bottom: 10px;
    }
    
    .feature-title {
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .feature-list {
        margin-left: 20px;
        font-size: 16px;
        line-height: 23px;
    }
    .feature-item:nth-child(3) .feature-list {
    margin-left: 60px; /* Apply margin only to the 3rd box */
}
    
    .feature-list li {
        margin-bottom: 4px;
    }
    
    .feature-note {
        font-size: 11px;
        line-height: 1.5;
        margin-top: 15px;
    }
    
    .feature-button-wrapper {
        margin-top: 60px;
        justify-content: end;
    }
    
    .feature-button {
        height: 48px;
        font-size: 20px;
       justify-content: flex-end;
       text-align: right;
       padding-right: 30px  ;
      
    }
    
    
}


/* ===== VIDEO SECTION MOBILE ===== */
@media (max-width: 768px) {
    .video-section {
        padding-bottom: 40px;
    }
    
    .video-wood-bg {
        height: 200px;
        min-height: 380px;
    }
    
    .video-content-container {
        padding: 40px 15px;
        max-width: 100%;
    }
    
    .video-header {
        font-size: 26px;
        line-height: 42px;
        padding: 12px 0;
        margin-bottom: 20px;
    }
    
    .video-wrapper {
        margin-bottom: 30px;
    }
    
    .video-box {
        margin-bottom: 15px;
    }
    
    .video-title {
        font-size: 28px;
        line-height: 42px;
        text-align: left;
        margin-top: 10px;
        margin-bottom: 8px;
    }
    
    .video-desc {
        font-size: 18px;
        line-height: 28px;
        text-align: left;
    }
    
    /* ===== BUILDING SECTION ===== */
    .video-building-section {
        margin-top: 30px;
        padding-top: 20px;
    
    }
    
    .video-building-img-wrapper {
        margin-bottom: 20px;
    }
    
    .video-building-img {
        width: 100%;
        height: auto;
    }
    
    .video-building-title {
        font-size: 29px;
        line-height: 40px;
        text-align: left;
        margin-left: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .video-building-desc {
        font-size: 17px;
        line-height: 26px;
        text-align: left;
        margin-left: 0;
    }
}

/* ===== STRENGTH SECTION MOBILE ===== */
@media (max-width: 768px) {
    .strength-section {
        padding: 40px 15px 60px;
        min-height: auto;
    }
    
    /* Hide the right overlay (man + illustration) on mobile */
    .strength-right-overlay {
        display: none;
    }
    
    .strength-content-container {
        max-width: 100%;
    }
    
    .strength-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .strength-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .strength-item {
        width: 100%;
        max-width: 100%;
    }
    
    .strength-image-wrapper {
        margin-bottom: 15px;
    }
    
    .strength-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .strength-image-credit {
        font-size: 10px;
        bottom: 5px;
        left: 5px;
    }
    
    .strength-text {
        font-size: 24px;
        line-height: 35px;
        text-align: center;
    }
}

/* ===== CASE SECTION MOBILE ===== */
@media (max-width: 768px) {
    .case-section {
        padding: 40px 15px 20px;
    }
    
    .case-container {
        max-width: 100%;
    }
    
    .case-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .case-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .case-item {
        width: 100%;
        max-width: 100%;
    }
    
    .case-image-wrapper {
        margin-bottom: 15px;
    }
    
    .case-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .case-arrow-left,
    .case-arrow-right {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .case-header {
        padding-bottom: 8px;
        margin-bottom: 10px;
    }
    
    .case-number-img {
        height: 24px;
    }
    
    .case-name {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .case-table {
        font-size: 16px;
    }
    
    .case-label {
        font-size: 16px;
        line-height: 1.6;
        width: 80px;
        padding: 4px 0;
    }
    
    .case-value {
        font-size: 14px;
        line-height: 1.6;
        padding: 4px 0;
    }
    
    .case-button-wrapper {
        margin-bottom: 20px;
    }
    
    .case-button {
        width: 100%;
        max-width: 350px;
        height: 72px;
        justify-content: flex-end;

        font-size: 16px;
        line-height: 1.4;
        padding: 12px 15px;
    }
.case-button .button-text {
 margin-right: 20px;
 font-size:20px;
}
    
    
    .case-button.small {
        width: 100%;
        max-width: 232px;
        padding: 12px 15px;
        height: 48px;
    }
    
    .case-disclaimer {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .case-notes {
        font-size: 16px;
        line-height: 24px;
        padding-right: 10px;
    }
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 40px ;
        padding-bottom: 40px;
        margin-top: 40px;
        padding-right: 0;
        padding-left: 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 30px;
        width: auto;
    }
    
    .footer-text {
        font-size: 13px;
        line-height: 28px;
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #55B65C;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 300px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 31px;
    font-weight: 500;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-menu-btn-wrapper {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu-btn {
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    font-size: 25px !important;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25); /* Y: 3px, Blur: 6px, Color: #00000040 */
}

/* ===== Add this to each section ===== */
.info-section,
.challenge-section,
.sky-section,
.system-section,
.solution-section,
.module-section,
.feature-section,
.video-section,
.strength-section,
.case-section {
    margin: 0 auto;
}



/* ===== FOOTER ===== */
.site-footer {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 10px;
    background-color: #fff;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1030px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    width: 253px;
    display: block;
     object-fit: contain;
    
}

.footer-text {
    font-size: 16px;
    line-height: 42px;
    color: #333;
    text-align: center;
}


/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #55B65C;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 300px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 31px;
    font-weight: 500;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-menu-btn-wrapper {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu-btn {
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    font-size: 25px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* ===== MOBILE CONTACT FORM ===== */
@media (max-width: 768px) {
 
  
    
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-text {
        font-size: 12px;
    }
}






/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #55B65C;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 300px;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-menu-btn-wrapper {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}


/* ===== DESKTOP ONLY ===== */

.mobile-only {
    display: none;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}








/* Hide old arrow buttons since Swiper handles navigation */
.case-arrow-left,
.case-arrow-right {
    display: none !important;
}

/* Style Swiper navigation to match your design */
.case-img-slider-1 .swiper-button-next,
.case-img-slider-1 .swiper-button-prev,
.case-img-slider-2 .swiper-button-next,
.case-img-slider-2 .swiper-button-prev {
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
}

.case-img-slider-1 .swiper-button-next:after,
.case-img-slider-1 .swiper-button-prev:after,
.case-img-slider-2 .swiper-button-next:after,
.case-img-slider-2 .swiper-button-prev:after {
    font-size: 16px;
}











@media (max-width: 768px) {
    .case-notes .note-title {
        font-weight: bold;
        padding-left: 0;
        text-indent: 0;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .case-notes .note-item {
        padding-left: 1.5em;
        text-indent: -1.5em;
        margin-bottom: 8px;
        font-size: 12px;
        line-height: 1.8;
    }
}

}


@media (max-width: 400px){



.man-wrapper {
        position: absolute;
        right: 60px;
        top: 2690px !important;
        z-index: 10;
        width: 73px;
        height: auto;
        pointer-events: none;
    }
}



.strength-man {
    position: absolute;
    right: 15%;
    top: 27%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.strength-man-img {
    height: 350px;
    width: auto;
    display: block;
}

@media (max-width: 1360px){


.strength-man {
 
    right: 11%;
  
   
}


}

@media (max-width: 1375px){


.hero-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}







}



@media (max-width: 1255px){


.hero-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}


.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-50%);
    color: white;
    font-size: 70px;
    font-weight: 400;
    margin-top:10px;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size:52px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 70px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 42px;
}



}


@media (max-width: 1200px){


.hero-text {
    font-size: 28px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}

.strength-man {
 
    right: 9%;
    
    


}

.system-title{
    font-size:32px;
}
.system-title span {
        font-size: 20px;
    }
    
   .system-title .desktop-br{
        display:none;
    }
}




@media (max-width: 1138px){


.hero-text {
    font-size: 26px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}


.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-50%);
    color: white;
    font-size: 65px;
    font-weight: 400;
    margin-top:10px;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size:52px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 65px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 42px;
}

}

@media (max-width: 1120px){
    .strength-man{
        right:5%;
    }
    .strength-illustration{
        width:200px;
        height:190px;
        
    }
     
     .strength-grid{
         gap: 30px;
         
     }
     .strength-item {
    width: 322px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strength-text {
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    line-height: 47px;
    color: #000;
}
         
     
}

@media (max-width: 1078px){
    .hero-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}




.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-50%);
    color: white;
    font-size: 60px;
    font-weight: 400;
    margin-top:10px;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size:52px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 60px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 42px;
}



.diagram-green-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Layer 2: CLT Logo */
.diagram-logo {
    position: absolute;
    bottom: 160px;
    left: 110px;
    z-index: 2;
}

.diagram-logo-img {
    height: 97px;
    width: 190px;
    display: block;
}

/* Layer 3: Building Image */
.diagram-building {
    position: absolute;
    bottom: 0;
    right: 17%;
    z-index: 3;
}

.diagram-building-img {
    height: 300px;
    width: auto;
    display: block;
}

}

@media(max-width:901px){
    .diagram-green-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Layer 2: CLT Logo */
.diagram-logo {
    position: absolute;
    bottom: 160px;
    left: 110px;
    z-index: 2;
}

.diagram-logo-img {
    height: 97px;
    width: 190px;
    display: block;
}

/* Layer 3: Building Image */
.diagram-building {
    position: absolute;
    bottom: 0;
    right: 13%;
    z-index: 3;
}

.diagram-building-img {
    height: 280px;
    width: auto;
    display: block;
}
  .strength-man{
        display:none;
    }
    .strength-right-overlay{
        display:none;
    }
}

@media (max-width: 1010px){
    .hero-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 161%;
    text-align: center;
    margin-top: 120px;
    margin-left: 60px;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 30px;
    color: #000000;
}


.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-50%);
    color: white;
    font-size: 58px;
    font-weight: 400;
    margin-top:10px;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size:42px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 58px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 40px;
}
}



/* Right Overlay (Green Illustration + Man) */
.strength-right-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 300px;
    height: 170px;
    pointer-events: none;
}







/* INFO SECTION - Fix text wrapping indentation */
.info-list li {
    display: block;
    position: relative;
    padding-left: 30px;
    list-style: none;
    margin-bottom: 15px;
    word-wrap: break-word;
    word-break: break-word;
}

.info-list li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
}

/* For GREEN ITEMS (challenge section) */
.green-item {
    display: block;
    position: relative;
    padding-left: 35px;
    word-wrap: break-word;
    word-break: break-word;
}

.green-item::before {
    content: "☑";
    position: absolute;
    left: 10px;
    top: 12px;
    color: #fff;
    font-weight: bold;
}

/* Mobile specific */
@media (max-width: 768px) {
    .info-list li {
        padding-left: 25px;
    }
    
    .info-list li::before {
        width: 20px;
        font-size: 14px;
    }
    
    .green-item {
        padding-left: 30px;
    }
    
    .green-item::before {
        left: 8px;
        top: 10px;
        width: 18px;
    }
}

/* CLT FEATURE LIST - Text wraps UNDER THE TEXT, not under the bullet */


/* Mobile */
@media (max-width: 768px) {
    .clt-feature-list li {
        padding-left: 1.3em;
        text-indent: -1.3em;
        margin-bottom: 15px;
       
    }
  
}


/* ===== FLOATING MAN - Desktop ===== */
.man-wrapper {
    position: absolute;
    left: 20%;
    top: 500px;
    z-index: 10;
    pointer-events: none;
    max-width: 1440px;
    flex-shrink: 0;
}

.man-img {
    width: 250px;
    height: auto;
    display: block;
}



@media (max-width: 1370px) {
    .man-wrapper { left: 17%; }
}

@media (max-width: 1275px) {
    .man-wrapper { left: 15%; }
}

@media (max-width: 1199px) {
    .man-wrapper { left: 13%; }
}
@media (max-width: 1133px) {
    .man-wrapper { left: 11%; }
    
  
    

}
@media (max-width: 1053px) {
    .man-wrapper { left: 9%; }
     .wood-bar p {
        font-size: 22px;
        letter-spacing: 0.1em;
        line-height: 36px;
        padding: 0 30px;
        text-align: center;
    }
    
    
}

@media (max-width: 1010px) {
    .man-wrapper { left: 6%; }
    
   
    
    
    
}
/* ===== MOBILE MAN WRAPPER - COMPLETELY OVERRIDE ===== */
@media (max-width: 900px) {
    
    
       .man-wrapper {
        position: absolute !important;
        left: auto !important;
        right: 200px !important;
        top: 1120px !important;
        bottom: auto !important;
        width: 73px !important;
        height: 100px !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }
    
    .man-img {
        width: 100% !important;
        height: 140px !important;
        max-height: 120px !important;
        transform: scaleX(-1) !important;
    }

    .hero-text{
        font-size:20px;
    }
    


.hero-left-text {
    position: absolute;
    top: 0px;
    font-family: 'Noto Serif JP', serif;
    left: 45%;             /* Centered relative to the visible image area */
    transform: translateX(-48%);
    color: white;
    font-size: 55px;
    font-weight: 400;
    margin-top:10px;
    letter-spacing: 30%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 3;
}
.hero-left-text span{
    font-weight: 400;
    font-size:42px;
}
/* The best and most precise way to target it */
.hero-left-text .glow {
    font-size: 55px;
    /* 13.54px blur, 0px X-offset, 0px Y-offset, solid white */
    text-shadow: 0 0 13.54px #ffffff; 
    
    /* FIX: CSS letter-spacing doesn't support % well. Use em instead (30% = 0.3em) */
    letter-spacing: 0.3em; 
}

.hero-left-text .glow span{
    font-size: 40px;
}
}

@media (max-width:768px){
        .man-wrapper {
        position: absolute !important;
        left: auto !important;
        left: 310px !important;
        top: 1110px !important;
        bottom: auto !important;
        width: 73px !important;
        height: auto !important;
        z-index: 10 !important;
        pointer-events: none !important;
    }
    
    .man-img {
        width: 100% !important;
        height: auto !important;
        max-height: 120px !important;
        transform: scaleX(-1) !important;
    }
}


/* ===== IMAGE HOVER ANIMATIONS ===== */

/* Hero Section Images */
.hero-left-img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.hero-left:hover .hero-left-img {
    transform: scale(1.02);
    filter: brightness(0.95);
}

/* Hero House Image */
.hero-house-right img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.hero-house-right img:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* CLT Logo Images */
.clt-logo-img,
.system-logo-img,
.diagram-logo-img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.clt-logo-img:hover,
.system-logo-img:hover,
.diagram-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* Building Images */
.building-img,
.diagram-building-img {
    transition: transform 0.4s ease;
}

.building-img:hover,
.diagram-building-img:hover {
    transform: translateY(-5px);
}

/* Challenge Section Icons */
.icon-box-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.icon-img {
    transition: transform 0.3s ease;
}

.icon-box-wrapper:hover .icon-img {
    transform: scale(1.05);
}

/* Solution Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-img {
    transition: transform 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.02);
}

/* Feature Section Images */
.feature-img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.feature-item:hover .feature-img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

/* Strength Section Images */
.strength-img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.strength-item:hover .strength-img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

/* Case Section Images */
.case-img {
    transition: transform 0.4s ease;
}

.case-img:hover {
    transform: scale(1.02);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
    transform: scale(1.1);
}

/* Module Section Images */
.module-img {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.module-item:hover .module-img {
    transform: scale(1.08);
    border-color: #55B65C;
}

.module-label {
    transition: color 0.3s ease;
}

.module-item:hover .module-label {
    color: #55B65C;
}

/* Green Arrow Shape */
.arrow-shape {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arrow-shape:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Diagram Images */
.diagram-exploded-img {
    transition: transform 0.4s ease;
}

.diagram-exploded-img:hover {
    transform: scale(1.01);
}

/* CLT Construction Image */
.clt-construction-img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.clt-construction-img:hover {
    transform: scale(1.02);
    filter: brightness(0.95);
}

/* Wood Bar Images */
.wood-bar-img,
.system-bg-img,
.video-wood-bg-img,
.strength-wood-bg-img {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.wood-bar-bottom:hover .wood-bar-img,
.system-section:hover .system-bg-img {
    transform: scale(1.01);
    filter: brightness(0.98);
}

/* Sky Section Building */
.building-overlay img {
    transition: transform 0.3s ease;
}

.building-overlay:hover img {
    transform: translateY(-5px);
}

/* Green Graphic */
.green-graphic-img {
    transition: transform 0.3s ease;
}

.green-graphic-wrapper:hover .green-graphic-img {
    transform: scale(1.02);
}

/* Circle Text Animation */
.circle-text {
    transition: transform 0.3s ease, color 0.3s ease;
}

.circle-text:hover {
    transform: scale(1.05);
    color: #389F3A;
}

/* Mobile - Disable some hover effects for better touch experience */
@media (max-width: 768px) {
    .card:hover,
    .icon-box-wrapper:hover,
    .feature-item:hover .feature-img,
    .strength-item:hover .strength-img {
        transform: none;
    }
    
    .card:hover {
        box-shadow: none;
    }
    
    /* Keep simple transitions on mobile */
    .card-img,
    .feature-img,
    .strength-img {
        transition: opacity 0.3s ease;
    }
    
    .card-img:active,
    .feature-img:active,
    .strength-img:active {
        opacity: 0.9;
    }
}


/* ===== CONTACT SECTION ===== */
.contact-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    font-family: 'Noto Serif JP', serif;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.form-label .required {
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 2px;
    margin-left: 5px;
}

/* ===== FORM INPUTS ===== */
.wpcf7-form .form-input,
.wpcf7-form .form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #000;
    border-radius: 2px;
    font-size: 16px;
    background-color: #fff;
    box-sizing: border-box;
}

.wpcf7-form .form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== CHECKBOX GROUP ===== */
.wpcf7-form .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px 15px;
    padding: 15px;
    border: 1px solid #000;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form .checkbox-group .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.wpcf7-form .checkbox-group .wpcf7-list-item-label {
    font-size: 14px;
    white-space: nowrap;
}

.wpcf7-form .checkbox-group .wpcf7-list-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ===== "その他" ===== */
.wpcf7-form .checkbox-group .wpcf7-list-item:last-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.wpcf7-form .other-input {
    flex: 1;
    min-width: 150px;
    padding: 6px 10px;
    border: 1px solid #000;
    border-radius: 2px;
    font-size: 14px;
}



/* ===== SUBMIT BUTTON ===== */
.submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.wpcf7-form .submit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 50px;
    border: 1px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.wpcf7-form .submit-button:hover {
    background-color: #000;
    color: #fff;
}




/* ===== HORIZONTAL CHECKBOX WRAPPER ===== */
.horizontal-checkbox-wrapper .checkbox-group {
    display: block !important;
    grid-template-columns: none !important;
}

.horizontal-checkbox-wrapper .checkbox-group .wpcf7-list-item {
    display: inline-flex !important;
    margin-right: 20px !important;
}

/* ===== KEEP FIRST CHECKBOX AS GRID ===== */
.wpcf7-form .checkbox-group:not(.horizontal-checkbox-wrapper .checkbox-group) {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 8px 15px !important;
    padding: 15px !important;
    border: 1px solid #000 !important;
    border-radius: 2px !important;
    background-color: #fff !important;
    width: 100% !important;
}

.wpcf7-form .checkbox-group:not(.horizontal-checkbox-wrapper .checkbox-group) .wpcf7-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* ===== REMOVE CF7 AUTO BR TAGS ===== */
.agreement-text br {
    display: none !important;
}

.agreement-text {
    display: block !important;
}

/* ===== AGREEMENT SECTION ===== */
.agreement-section {
    text-align: center;
    margin-top: 40px;
}

.agreement-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.agreement-text .privacy-link {
    display: inline-block;
}

.agreement-text .privacy-link a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s;
}

.agreement-text .privacy-link a:hover {
    color: #55B65C;
}

/* ===== AGREEMENT CHECKBOX ===== */
.agreement-checkbox {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.agreement-checkbox .wpcf7-list-item {
    margin: 0 !important;
    padding: 0 !important;
}

.agreement-checkbox .wpcf7-list-item-label {
    font-size: 14px;
    color: #333;
    margin-left: 4px;
}

.agreement-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* ===== SUBMIT BUTTON ===== */
.submit-wrapper {
    text-align: center;
    margin-top: 30px;
    margin-left: 60px;
}

.wpcf7-form .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 50px;
    border: 1px solid #000;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25); /* 3px Y, 6px Blur, #00000040 */
}

.wpcf7-form .submit-button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.wpcf7-form .submit-button:hover {
    background-color: #000;
    color: #fff;
}




/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 30px 15px 50px;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .wpcf7-form .form-input {
        font-size: 14px;
        padding: 8px 10px;
    }
    
    .wpcf7-form .form-textarea {
        font-size: 14px;
        padding: 8px 10px;
        min-height: 100px;
    }
    
    .wpcf7-form .checkbox-group {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 4px 8px;
        padding: 12px;
    }
    
    .submit-wrapper{
    margin-left:30px !important;
    }
    
    .wpcf7-form .submit-button {
        font-size: 16px;
        padding: 10px 40px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
 

    
    @media (max-width: 400px) {
    .wpcf7-form .checkbox-group {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2px 4px;
        padding: 8px;
    }
    
    .wpcf7-form .checkbox-group .wpcf7-list-item-label {
        font-size: 10px;
        white-space: nowrap;
    }
    
    .wpcf7-form .checkbox-group .wpcf7-list-item input[type="checkbox"] {
        width: 11px;
        height: 11px;
        flex-shrink: 0;
    }
}
    
/* /* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        height: auto;
        min-height: auto;
        position: relative;
        margin-top: 10px;
        width: 100%;
        overflow: hidden;
    }

    .hero-left {
        position: relative;
        width: 100%;
        height: 270px;
        margin-right: 0;
        padding-right: 0;
        clip-path: none;
    }

    .hero-left-img {
        width: 100%;
        height: 100%;
        clip-path: none;
        object-fit: cover;
    }

    .hero-left-text {
        position: absolute;
        top: 1%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 45px;
        letter-spacing: 0.1em;
        width: 100%;
    }

    .hero-left-text span {
        font-size: 45px;
    }

    .hero-left-text .glow {
        font-size: 45px;
        text-shadow: 0 0 8px #ffffff;
        letter-spacing: 0.1em;
    }

    .hero-left-text .glow span {
        font-size: 28px;
    }

    .hero-right {
        width: 100%;
        padding: 30px 20px;
        position: relative;
        margin-left: 0;
        clip-path: none;
        background-color: #ffffff;
    }

    .hero-logo {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-logo img {
        height: 80px;
        width: auto;
    }

    .hero-text {
        font-size: 32px;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .hero-house-right img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* ===== WOOD BAR ===== */
    .wood-bar {
        height: 146px;
        background-size: cover;
        width: 100%;
        overflow: hidden;
    }

    .wood-bar p {
        font-size: 24px;
        letter-spacing: 0.1em;
        line-height: 36px;
        padding: 0 30px;
        text-align: center;
    }
}

/* For very small screens */
@media (max-width: 400px) {
    .man-wrapper {
        right: 10px !important;
        top: 1126px !important;
        width: 60px !important;
    }
}
@media (max-width:1321px){
    

/* 3. Building - Positioned at the bottom of the sky */
.building-overlay {
    position: absolute;
    bottom: 0;
    right: 8%;
    z-index: 2;
}

.building-img {
    height: 350px;
    width: 500px;
    display: block;
}

/* 4. Text - Top Center */
.sky-text {
    position: absolute;
    top: 100px;
    left: 47%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
        font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
    pointer-events: none;
}

/* 5. White Space Below the Building */
.sky-section::after {
    content: '';
    display: block;
    width: 100%;
    height: 80px; /* Adjust this to control the white space height */
    background-color: #ffffff;
}
.clt-logo-overlay .clt-logo-img {
        height: 182px !important;
        width: 329px !important;
    }
    
    /* 2. CLT Logo - Positioned over the sky */
.clt-logo-overlay {
    position: absolute;
    bottom: 150px;  /* Adjusted to sit above the building area */
    left: 12%;
    z-index: 2;
}

}

@media (max-width:981px){
        /* 2. CLT Logo - Positioned over the sky */
.clt-logo-overlay {
    position: absolute;
    bottom: 150px;  /* Adjusted to sit above the building area */
    left: 8%;
    z-index: 2;
}

/* 3. Building - Positioned at the bottom of the sky */
.building-overlay {
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 2;
}

/* 4. Text - Top Center */
.sky-text {
    position: absolute;
    top: 60px;
    left: 47%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
        font-family: 'Noto Serif JP', serif;
    font-size: 38px;
    line-height: 38px;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
    pointer-events: none;
}
    
}

/* ===== SKY SECTION MOBILE ===== */
@media (max-width: 900px) {
    .sky-section {
        padding: 0 0px;
    }
    
   .sky-bg-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
 /* Fills the area, maintains aspect ratio, crops if necessary */
}
    
    .clt-logo-overlay {
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: auto; /* Changed from 60% */
}

.clt-logo-img {
    width: 183px !important;
    height: 93px !important;
    max-width: none !important;
}
    
    .building-overlay {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    display: flex;           /* Add this */
    justify-content: center; /* Add this */
    align-items: center;     /* Add this */
}

.building-img {
    height: auto;
    width: 100%;
    max-width: 350px;
    display: block;          /* Add this */
    margin: 0 auto;          /* Add this */
}
    
    .sky-text {
        font-size: 32px;
        line-height: 46px;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Noto Serif JP', serif;
        width: 90%;
    }
    
    .sky-section::after {
        height: 50px;
    }
}



/* ===== DIAGRAM BOTTOM MOBILE ===== */
@media (max-width: 768px) {
    .diagram-bottom-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 5px;
        padding: 10px 5px;
    }
    
    /* Layer 1: Green Background - smaller and positioned behind */
    .diagram-green-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.6;
    }
    
    .diagram-green-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Layer 2: CLT Logo - on the left */
    .diagram-logo {
    position: relative;
    top: auto;
    left: -5%;
    z-index: 3;
    flex: 0 0 0;
    margin: 0;
    transform: translateY(100px); /* Moves up 10px */
}
    .diagram-logo-img {
        height: 48px;
        width: 98px;
    }
    
    /* Layer 3: Building Image - on the right */
    .diagram-building {
        position: relative;
        bottom: auto;
        right: 6%;
        z-index: 2;
        flex: 0 0 auto;
        margin: 0;
    }
    
    .diagram-building-img {
        height: 130px;
        width: 170px;
    }
}

/* ===== SYSTEM SECTION MOBILE ===== */
@media (max-width: 768px) {
    .system-section {
        flex-direction: column;
        padding: 40px 15px;
        min-height: auto;
    }
    
    .left-side {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        padding: 20px 0;
    }
    
    .green-graphic-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: flex;
        justify-content: center;
    }
    
    .green-graphic-img {
        width: 350px;
        height: auto;
    }
    
    .clt-logo-center {
        top: 53%;
        left: 49%;
        transform: translate(-50%, -50%);
        width: 86px;
        height: 44px;
    }
    
    .clt-logo-img {
        width: 86px;
        height: auto;
    }
    
    .circle-text {
        font-size: 24px;
    }
    
    .circle-text.top {
        top: 20%;
        left:48%;
        transform: translateX(-50%);
    }
    
    .circle-text.bottom-left {
        bottom: 25%;
        left: 13%;
    }
    
    .circle-text.bottom-right {
        bottom: 25%;
        right: 17%;
    }
    
    .right-text-content {
        width: 100%;
        padding-left: 0;
    }
    
    .system-title {
        font-size: 23px;
        line-height: 1.5;
        text-align: left;
    }
    
    .system-title span {
        font-size: 16px;
    }
    
    .system-description {
        font-size: 16px;
        line-height: 25px;
        text-align: left;
    }

    .desktop-br{
        display: none;
    }
}
/* Make success message font size 45px */
.wpcf7-response-output,
.wpcf7-mail-sent-ok {
    font-size: 26px !important;
}

