/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    /* Breakpoints */
    --bp-xs: 320px;
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
    --bp-2xl: 1536px;
    
    /* Container Max Widths */
    --container-xs: 100%;
    --container-sm: 100%;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1200px;
    --container-2xl: 1400px;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    
    /* Typography Scale */
    --font-xs: clamp(0.625rem, 0.5rem + 0.3125vw, 0.75rem);      /* 10-12px */
    --font-sm: clamp(0.75rem, 0.625rem + 0.3125vw, 0.875rem);    /* 12-14px */
    --font-base: clamp(0.875rem, 0.75rem + 0.3125vw, 1rem);      /* 14-16px */
    --font-lg: clamp(1rem, 0.875rem + 0.3125vw, 1.125rem);       /* 16-18px */
    --font-xl: clamp(1.125rem, 1rem + 0.3125vw, 1.25rem);        /* 18-20px */
    --font-2xl: clamp(1.25rem, 1.125rem + 0.3125vw, 1.5rem);     /* 20-24px */
    --font-3xl: clamp(1.5rem, 1.25rem + 0.625vw, 2rem);          /* 24-32px */
    --font-4xl: clamp(2rem, 1.5rem + 1.25vw, 3rem);              /* 32-48px */
    
    /* Touch Targets */
    --touch-target-min: 44px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    font-size: var(--font-base);
    line-height: 1.6;
    position: relative;
}

  
.page-wrapper {
    width: 100%;
    /* max-width: var(--container-xl); */
    margin: 0 auto;
    background-color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Keep the 425px layout intact on small devices */

@media (min-width: 481px) and (max-width: 767px) {
    
    .page-wrapper {
        max-width: var(--container-sm);
    }
}





/* ========================================
   NEW HERO LAYOUT (Image-based Design)
   ======================================== */

/* Hero 2000 Container */
.hero-2000 {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Dark overlay for initial state */
.hero-2000::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 100;
    animation: heroDarkFadeOut 0.1s ease-out 0s forwards;
}

@keyframes heroDarkFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Full screen green background that appears first */
.hero-2000::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d5a3d;
    z-index: 99;
    opacity: 0;
    animation: heroGreenBgFullFadeIn 0.7s ease-out 0s forwards, heroGreenBgSlideUp 0.5s ease-out 1.7s forwards;
}

@keyframes heroGreenBgFullFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroGreenBgSlideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Top Banner - Dark Green with SYNS */
.new-hero-top-banner {
    background-color: #2d5a3d;
    padding: 16px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* padding-top: 4px; */
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: heroTopBannerFadeIn 0.1s ease-out 2.2s forwards;
}

@keyframes heroTopBannerFadeIn {
    to {
        opacity: 1;
    }
}

.new-hero-top-text {
    display: flex;
    align-items: center;
    gap: 2px;
    opacity: 0;
    transform: scale(0.5);
    animation: heroLogoScaleIn 0.6s ease-out 2.2s forwards;
    margin-left: 0;
    margin-right: auto;
}

.hero-letter-img {
    height: clamp(30px, 2.5vw, 40px);
    width: auto;
    display: block;
}

@keyframes heroLogoScaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Container - Building Image + Green Overlay */
.new-hero-main-container {
    display: flex;
    width: 100%;
    position: relative;
    min-height: 400px;
    /* min-height: 92vh; */
    border: none;
    background-color: transparent;
    padding-top: 20px;
    padding-left: clamp(16px, 12vw, 180px);
    padding-right: clamp(16px, 12vw, 180px);
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 5;
    opacity: 0;
    animation: heroMainContainerFadeIn 0.1s ease-out 2.2s forwards, heroMainContainerBgChange 0.3s ease-out 2.2s forwards, heroMainContainerHeightChange 0.5s ease-out 2.5s forwards;
}

@keyframes heroMainContainerBgChange {
    from {
        background-color: transparent;
    }
    to {
        background-color: #1c1d22;
    }
}

@keyframes heroMainContainerFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes heroMainContainerHeightChange {
    from {
        min-height: 400px;
    }
    to {
        min-height: 92vh;
    }
}

/* Left: Building Image Section */
.new-hero-image-section {
    flex: 1;
    position: relative;
    overflow: visible;
    z-index: 1;
    min-width: 0;
    flex-basis: 0;
}

.new-hero-building-img {
    width: 100%;
    height: 96%;
    display: block;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    animation: heroBuildingFadeIn 0.7s ease-out 2.5s forwards;
}

@keyframes heroBuildingFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Right: Green Overlay with Text */
.new-hero-text-section {
    background-color: #10502Bdd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
    gap: 20px;
    width: 100%;
    margin-left: auto;
    text-align: center;
    /* Green background fade in after full screen green disappears */
    background-color: transparent;
    animation: heroGreenBgFadeIn 0.7s ease-out 2.2s forwards;
    margin-top: auto;
}

@keyframes heroGreenBgFadeIn {
    from {
        background-color: transparent;
    }
    to {
        background-color: #10502Bdd;
    }
}

.new-hero-tagline-text-bold{
    background-color: white;
    color: #2d5a3d;
}

.new-hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.new-hero-title {
    color: #ffffff;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 2.8s forwards;
}

@keyframes heroTextSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-hero-subtitle {
    color: #ffffff;
    font-size: clamp(16px, 2.5vw, 40px);
    font-weight: 500;
    line-height: 0.5;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 3.0s forwards;
}
.new-hero-subtitle-bold{
    font-size: 60px;
}

/* 4行テキスト構造（hero-2000用） */
.new-hero-title-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 2.8s forwards;
}
.new-hero-line1 {
    color: #ffffff;
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}
.new-hero-line2 {
    color: #ffffff;
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}
.new-hero-line3 {
    color: #ffffff;
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}
.new-hero-line4 {
    color: #ffffff;
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* 4行テキスト構造（landing-section用） */
.main-title-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #fff;
}
.main-line1 {
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}
.main-line2 {
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}
.main-line3 {
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}
.main-line4 {
    font-size: clamp(28px, 7.5vw, 42px);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}
.new-hero-tagline-box {
    padding: 0;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 3.2s forwards;
}

.fukuokanara-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
}

.new-hero-tagline-text {
    color: #ffffff;
    font-size: clamp(14px, 2vw, 28px);
    font-weight: 600;
}

.new-hero-price-section {
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 10px;
    background: linear-gradient(to top left, #FFFACD, #ffffff);
    padding: 10px;
    display: flex;
    align-items: baseline;
    gap: 0px;
    margin-top: 8px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 3.4s forwards;
}

.new-hero-price-label {
    font-size: clamp(24px, 9.75vw, 39px);
    color: #2d5a3d;
    letter-spacing: -8.5px;
    font-weight: 500;
}

.new-hero-price-amount {
    font-family: initial;
    font-size: clamp(48px, 18vw, 80px);
    font-weight: 900;
    color: #2d5a3d;
    line-height: 1;
}

.new-hero-price-unit {
    font-size: clamp(24px, 9.75vw, 39px);
    color: #2d5a3d;
    /* font-weight: 600; */
    /* text-align: center; */
    margin-top: auto !important;
    /* font-size: 28px; */
}

.new-hero-price-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

/* Red Promotional Banner */
.new-hero-red-banner {
    background-color: #d71e1b;
    /* padding: 10px 16px; */
    padding-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextSlideUp 0.6s ease-out 3.6s forwards;
}
.new-hero-title-bold{
    font-size: 60px;
}
.new-hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-left: clamp(-80px, -8vw, -40px);
    flex: 0 0 auto;
    padding-top: 10px;
    width: clamp(300px, 36vw, 560px);
    max-width: 100%;
    max-height: 100%;
    min-width: 0;
}
/* Bottom Banner - Black with SYNS */
.new-hero-bottom-banner {
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    animation: heroBottomBannerBgChange 0.3s ease-out 2.2s forwards,
               heroBottomBannerFadeOut 0.5s ease-out 3.0s forwards;
    padding: 20px;
}

@keyframes heroBottomBannerBgChange {
    from {
        background-color: transparent;
    }
    to {
        background-color: #1c1d22;
    }
}

@keyframes heroBottomBannerFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.new-hero-bottom-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(2px, 0.4vw, 6px);
    width: 100%;
    position: relative;
    z-index: 101;
    padding-left: 20px;
    margin-left: 0;
    animation: heroBottomTextAlignCenter 0.8s ease-out 2.2s forwards;
}

@keyframes heroBottomTextAlignCenter {
    from {
        padding-left: 20px;
        margin-left: 0;
    }
    to {
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

.bottom-text-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    z-index: 102;
}

.bottom-text-letter:nth-child(1) {
    animation: heroBottomLetterSlideUp 0.6s ease-out 0.1s forwards, 
               heroBottomLetterFadeOut 0.3s ease-out 1.7s forwards,
               heroBottomLetterFadeInCenter 0.6s ease-out 2.2s forwards;
}

.bottom-text-letter:nth-child(2) {
    animation: heroBottomLetterSlideUp 0.6s ease-out 0.3s forwards, 
               heroBottomLetterFadeOut 0.3s ease-out 1.7s forwards,
               heroBottomLetterFadeInCenter 0.6s ease-out 2.2s forwards;
}

.bottom-text-letter:nth-child(3) {
    animation: heroBottomLetterSlideUp 0.6s ease-out 0.5s forwards, 
               heroBottomLetterFadeOut 0.3s ease-out 1.7s forwards,
               heroBottomLetterFadeInCenter 0.6s ease-out 2.2s forwards;
}

.bottom-text-letter:nth-child(4) {
    animation: heroBottomLetterSlideUp 0.6s ease-out 0.7s forwards, 
               heroBottomLetterFadeOut 0.3s ease-out 1.7s forwards,
               heroBottomLetterFadeInCenter 0.6s ease-out 2.2s forwards;
}

.bottom-letter-img {
    height: 160px;
    width: auto;
    display: block;
    filter: brightness(0);
    animation: heroBottomLetterColorChange 0.5s ease-out 1.7s forwards,
               heroBottomLetterImgFadeOut 0.3s ease-out 1.7s forwards,
               heroBottomLetterImgFadeIn 0.6s ease-out 2.2s forwards;
}

@keyframes heroBottomLetterSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroBottomLetterColorChange {
    from {
        filter: brightness(0);
    }
    to {
        filter: brightness(0) invert(1);
    }
}

@keyframes heroBottomLetterFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes heroBottomLetterFadeInCenter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroBottomLetterImgFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes heroBottomLetterImgFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-2000::before,
    .hero-2000::after,
    .new-hero-top-banner,
    .new-hero-main-container,
    .new-hero-top-text,
    .new-hero-building-img,
    .new-hero-text-section,
    .new-hero-title,
    .new-hero-subtitle,
    .new-hero-tagline-box,
    .new-hero-price-section,
    .new-hero-red-banner,
    .new-hero-bottom-text,
    .bottom-text-letter {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
        color: #ffffff;
        background-color: #10502Bdd;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .new-hero-main-container {
        flex-direction: column;
        min-height: auto;
        padding-left: 0;
        padding-right: 0;
        gap: 0;
    }
    
    .new-hero-image-section {
        height: 300px;
        width: 100%;
        flex: none;
    }
    
    .new-hero-text-container {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }
    
    .new-hero-text-section {
        padding: 35px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .new-hero-red-banner {
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .new-hero-price-image {
        max-width: 280px;
    }
    
    .price-box-image {
        max-width: 280px;
    }
    
    .fukuokanara-image {
        max-width: 350px;
    }
}

/* Medium screens - ensure text fits */
@media (min-width: 769px) and (max-width: 1200px) {
    .new-hero-main-container {
        padding-left: clamp(40px, 8vw, 120px);
        padding-right: clamp(40px, 8vw, 120px);
    }
    
    .new-hero-text-container {
        width: clamp(280px, 36vw, 500px);
        margin-left: clamp(-60px, -6vw, -40px);
    }
}

/* Large screens - full layout */
@media (min-width: 1201px) {
    
    .new-hero-main-container {
        flex-wrap: nowrap;
    }
}

/* Landing Page Section */
.landing-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Initial Dark Overlay */
.landing-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 100;
    animation: fadeOut 0.2s ease-out 0s forwards;
}

/* Green Background */
.landing-green-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d5a3d;
    z-index: 2;
    opacity: 0;
    animation: fadeInGreen 0.7s ease-out 0.2s forwards, fadeOutGreen 0.5s ease-out 1.6s forwards;
}

/* Background Image */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #87CEEB 0%, #87CEEB 50%, #E8E8E8 50%);
    background-image: url('assets/img/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: 3;
    filter: blur(10px);
    opacity: 0;
    animation: imageReveal 0.7s ease-out 1.1s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInGreen {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOutGreen {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes imageReveal {
    from {
        filter: blur(10px);
        opacity: 0;
    }
    to {
        /* Keep a subtle blur on the hero background after reveal */
        filter: blur(4px);
        opacity: 1;
    }
}

/* Logo Section */
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: scale(0.5);
    animation: logoAppear 0.6s ease-out 0.5s forwards;
}

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-text {
    font-size: clamp(22px, 8vw, 32px);
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
}

.company-name {
    font-size: clamp(10px, 3vw, 12px);
    color: #000;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* Content Overlay - Dark Green Box */
.content-overlay {
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 360px;
    background-color: #10502Bdd;
    padding: 55px 15px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Text Animation Classes */
.animate-text-1,
.animate-text-2,
.animate-text-3,
.animate-text-4 {
    opacity: 0;
    transform: translateY(20px);
}

.animate-text-1 {
    animation: slideUpFade 0.6s ease-out 1.8s forwards;
}

.animate-text-2 {
    animation: slideUpFade 0.6s ease-out 2.0s forwards;
}

.animate-text-3 {
    animation: slideUpFade 0.6s ease-out 2.2s forwards;
}

.animate-text-4 {
    animation: slideUpFade 0.6s ease-out 2.4s forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Section */
.text-section {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.main-title {
    font-size: clamp(20px, 5vw, 36px);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}
.main-subtitle{
    font-size: clamp(40px, 12vw, 80px);
}
.subtitle {
    font-size: clamp(18px, 6vw, 24px);
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    letter-spacing: -2px;
    text-align: center;
    white-space: nowrap;
}

.highlight-large {
    font-size: clamp(32px, 14vw, 57px);
    font-weight: 900;
}

.tagline {
    font-size: clamp(18px, 6.5vw, 26px);
    font-weight: bold;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    padding-top: 10px;
}

.nowrap-text {
    white-space: nowrap;
}

.highlight-box {
    background-color: #fff;
    color: rgba(6, 40, 25);
    padding: 6px 6px;
    font-weight: 600;
    display: inline-block;
}

.brand-name {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 900;
    margin-left: 6px;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

/* ロゴ画像用スタイル */
.brand-name-logo {
    height: clamp(20px, 5vw, 28px);
    width: auto;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
}

/* レスポンシブ調整 */
@media (max-width: 480px) {
    .brand-name-logo {
        height: clamp(18px, 4.5vw, 24px);
    }
}

@media (min-width: 1024px) {
    .brand-name-logo {
        height: 28px;
    }
}

/* Yellow Price Box */
.price-box {
    background: linear-gradient(to top left, #FFFACD, #ffffff);
    padding: 10px;
    display: flex;
    align-items: baseline;
    gap: 0px;
    margin-top: 8px;
    justify-content: center;
}

.price-box-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}
.footer-cta-section{
    text-decoration: none;
}
.price-label {
    font-size: clamp(24px, 9.75vw, 39px);
    color: #2d5a3d;
    letter-spacing: -8.5px;
    /* padding-bottom: 4px; */
}

.price-amount {
    font-size: clamp(48px, 18vw, 80px);
    font-weight: 900;
    color: #2d5a3d;
    font-family: initial;
    /* margin-top: 6px !important; */
    line-height: 1;
}

.price-unit {
    font-size: clamp(24px, 9.75vw, 39px);
    color: #2d5a3d;
    /* font-weight: 500; */
    text-align: center;
    /* margin-top: auto !important; */
}

.price-from {
    font-size: clamp(16px, 3vw, 12px);
    margin-left: 2px;
    text-align: right;
}

/* Promotional Section Styles */

/* Red Banner Section */
.red-banner {
    background-color: rgb(215, 29, 30);
    padding: 11px 11px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.banner-text {
    color: #fde16c;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

.highlight-amount {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 900;
}

.banner-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.amazon-button,
.interview-button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 600;
    transition: transform 0.2s;
}
.amazon-button {
    width: 40vw;
}
.interview-button {
    width: 60%;
}
.amazon-button:hover,
.interview-button:hover {
    transform: scale(1.02);
}

.amazon-button:active,
.interview-button:active {
    transform: scale(0.98);
}

.amazon-text {
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.amazon-arrow {
    width: 20px;
    height: 20px;
}

.interview-button {
    color: #E60012;
}

.button-text {
    color: #E60012;
    font-weight: 700;
}

.play-icon {
    width: 18px;
    height: 18px;
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120vw;
    background-image: url('assets/img/sec2back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* Video Introduction Section */
.video-intro {
    padding: 24px 16px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    background:#f2eeeb;
}

.intro-text {
    font-size: clamp(14px, 4.5vw, 18px);
    font-weight: 600;
    color: #12512d;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.intro-slash-left {
    display: inline-block;
    width: 2px;
    height: 30px;
    line-height: 1;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    transform: rotate(158deg);
    transform-origin: center center;
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    background-color: #12512d;
    margin-right: 10px;
}

.intro-slash-right {
    display: inline-block;
    width: 2px;
    height: 30px;
    line-height: 1;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    transform: rotate(204deg);
    transform-origin: center center;
    overflow: hidden;
    vertical-align: middle;
    position: relative;
    background-color: #12512d;
    margin-left: 10px;
}

/* Video Player Section */
.video-section {
    width: 100%;
    padding: 0 16px 24px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: clamp(320px, 75%, 1200px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #2d5a3d;
    margin: 0 auto;
    
    /* filter: blur(2px) brightness(0.7); */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    cursor: pointer;
}

.video-container {
    cursor: pointer;
    user-select: none;
}

.green-shape {
    position: absolute;
    z-index: 2;
    background-color: #2d5a3d;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    opacity: 1;
}

.green-shape.top-right {
    top: -20%;
    right: -10%;
    width: 60%;
    height: 50%;
    transform: rotate(-15deg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.green-shape.bottom-left {
    bottom: -15%;
    left: -10%;
    width: 55%;
    height: 45%;
    transform: rotate(15deg);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
}

/* Green shape scroll animations */
.green-shape.top-right.animate-fall {
    animation: greenTopFall 1s ease-out forwards;
}

.green-shape.bottom-left.animate-slide {
    animation: greenBottomSlide 1s ease-out forwards;
}

@keyframes greenTopFall {
    from {
        transform: translateY(-120%) rotate(-15deg);
    }
    to {
        transform: translateY(0) rotate(-15deg);
    }
}

@keyframes greenBottomSlide {
    from {
        transform: translateX(-120%) rotate(15deg);
    }
    to {
        transform: translateX(0) rotate(15deg);
    }
}

/* Hide animations for overlays when video is playing */
.green-shape.top-right.hide {
    animation: greenTopHide 0.5s ease-out forwards;
}

.green-shape.bottom-left.hide {
    animation: greenBottomHide 0.5s ease-out forwards;
}

.green-shape.top-right.show {
    animation: greenTopShow 0.5s ease-out forwards;
}

.green-shape.bottom-left.show {
    animation: greenBottomShow 0.5s ease-out forwards;
}

@keyframes greenTopHide {
    from {
        transform: translateY(0) rotate(-15deg);
        opacity: 1;
    }
    to {
        transform: translateY(-120%) rotate(-15deg);
        opacity: 0;
    }
}

@keyframes greenBottomHide {
    from {
        transform: translateX(0) rotate(15deg);
        opacity: 1;
    }
    to {
        transform: translateX(-120%) rotate(15deg);
        opacity: 0;
    }
}

@keyframes greenTopShow {
    from {
        transform: translateY(-120%) rotate(-15deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotate(-15deg);
        opacity: 1;
    }
}

@keyframes greenBottomShow {
    from {
        transform: translateX(-120%) rotate(15deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotate(15deg);
        opacity: 1;
    }
}

/* Text Overlay */
.video-text-overlay {
    position: absolute;
    top: 16px;
    left: 12px;
    right: 12px;
    z-index: 3;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.video-text-overlay.hide {
    opacity: 0;
    transform: translateY(-20px);
}

.video-text-overlay.show {
    opacity: 1;
    transform: translateY(0);
}

.video-title {
    color: #fff;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 600;
    line-height: 1.6;
}

.green-box {
    background-color: #2d5a3d;
    color: #fff;
    padding: 2px 8px;
    display: inline-block;
    border-radius: 4px;
    margin: 0 2px;
}

/* SYNS Logo Overlay */
.syns-logo-overlay {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.syns-logo-overlay.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.syns-logo-overlay.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.syns-logo-3d {
    font-size: clamp(24px, 8vw, 80px);
    font-weight: 900;
    color: white;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.15),
        1px 1px 2px rgba(255, 255, 255, 0.4),
        4px 4px 6px rgba(0, 0, 0, 0.2);
    transform: perspective(100px) rotateX(2deg);
    line-height: 1;
    display: flex;
    align-items: center;
}

.separator-line {
    width: 3px;
    height: 60px;
    background-color: #fff;
    opacity: 0.8;
    align-self: center;
    /* margin-top: 10px; */
}

.syns-phonetic {
    font-size: clamp(11px, 3.25vw, 24px);
    color: white;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    min-width: 100px;
}

/* Play Button */
.play-button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    opacity: 1;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.play-button-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button-container.visible {
    opacity: 1;
    pointer-events: auto;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 3px solid #2d5a3d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    color: #2d5a3d;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.play-button:active {
    transform: scale(0.95);
}

.play-button svg {
    width: 24px;
    height: 24px;
    fill: #2d5a3d;
}

.play-button .play-icon {
    margin-left: 2px;
}

.play-button .pause-icon {
    margin-left: 0;
}

/* Reasons Section */
.reasons-section {
    width: 100%;
    padding: 40px 16px;
    background-color: #f2eeeb;
}

.reasons-header {
    text-align: center;
    margin-bottom: 5px;
}

.reason-label {
    font-size: clamp(16px, 5vw, 20px);
    color: #10502b;
    font-weight: bold;
}

.reason-title {
    font-size: clamp(28px, 10vw, 40px);
    font-weight: bold;
    color: #2d5a3d;
    margin: 0;
}

.reasons-content {
    background-color: white;
    padding: 24px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reasons-content {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Section Heading */
.section-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.section-number {
    width: 40px;
    height: 40px;
    background-color: rgb(83,148,82);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 4.5vw, 18px);
    font-weight: 700;
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(14px, 4vw, 20px);
    font-weight: 600;
    color: black;
    margin: 0;
    line-height: 1.5;
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Chart Container */
.chart-container {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

.chart-title {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-end;
    text-align: right;
    align-items: flex-end;
}

.chart-title-with-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
}

.chart-main-title {
    font-size: clamp(14px, 5vw, 18px);
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    white-space: nowrap;
}

.chart-subtitle {
    font-size: clamp(11px, 3vw, 10px);
    color: black;
    font-weight: bold;
    white-space: nowrap;
    margin-left: auto;
    transform: translateY(-50%);
}
.rank-first{
    /* font-size: clamp(14px, 4.5vw, 18px); */
    font-weight: bold;
    color: rgb(83,148,82) !important;
}
.chart-scale {
    display: flex;
    justify-content: space-between;
    font-size: clamp(9px, 2.5vw, 10px);
    color: #666;
    margin-bottom: 8px;
    padding: 0 4px;
}

.chart-bars {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-top: 20px;
}

.chart-bars-left{
    max-width: 30vw;
    display: flex;
    flex-direction: column;
    gap: 7px; /* Match chart-bars-right gap */
    justify-content: flex-start;
    padding-top: 7px; /* Match chart-bars-right padding-top */
}

/* Ensure each bar-item matches the height of its corresponding bar-wrapper */
.chart-bars-left .bar-item {
    min-height: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.chart-bars-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    padding-left: 16px;
    padding-top: 7px;
}

.chart-no1-badge {
    position: relative;
    width: 100px;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    flex-shrink: 0;
}

.chart-bars-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 0;
    bottom: 0;

    pointer-events: none;
    z-index: 0;
}

.chart-axis {
    position: absolute;
    top: -5%;
    left: 0;
    height: 110%;
    width: 4px;
    background-color: black;
    border-radius: 4px;
    z-index: 2;
}

.chart-second-bar {
    position: absolute;
    top: -5%;
    left: 30px;
    height: 110%;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 3;
}

.chart-axis-dotted {
    position: absolute;
    top: -5%;
    height: 110%;
    width: 2px;
    border-left: 4px dotted #2d5a3d;
    z-index: 2;
}

.axis-dotted-1 { left: clamp(60px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
.axis-dotted-2 { left: clamp(100px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
.axis-dotted-3 { left: clamp(120px, 36vw, 170px); } /* 70,000 endpoint */

.chart-axis-label {
    position: absolute;
    top: -20px;
    transform: translateX(-50%);
    font-size: clamp(8px, 2.5vw, 10px);
    font-weight: 700;
    color: #333;
    z-index: 4;
    white-space: nowrap;
}

.axis-label-50000 { left: clamp(60px, 19vw, 90px); } /* Matches axis-dotted-1 */
.axis-label-60000 { left: clamp(100px, 28vw, 130px); } /* Matches axis-dotted-2 */
.axis-label-70000 { left: clamp(120px, 37vw, 170px); } /* Matches axis-dotted-3 */
.axis-label-0 {
    transform: translate(-88%, 0);
}

.chart-bars-right .bar-wrapper {
    position: relative;
    z-index: 2;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-height: 15px;
    height: 15px;
}

.city-label {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 80px;
    width: 100%;
    /* font-size: clamp(9px, 2.75vw, 11px); */
    text-align: center;
}

.city-label.rank-first {
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
}

.rank {
    color: #333;
    font-weight: 600;
}

.crown-icon {
    width: 14px;
    height: 14px;
}

.city-name {
    color: #333;
    font-weight: 600;
}

.city-name.rank-first {
    font-size: clamp(10px, 4vw, 14px);
}

.city-name-cat-target {
    position: relative;
    display: inline-block;
}

.kingcat-icon {
    position: absolute;
    left: 50%;
    bottom: 110%;
    width: 18px;
    height: auto;
    transform: translateX(-50%);
    pointer-events: none;
}

.bar-wrapper {
    flex: 1;
    position: relative;
    height: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chart-bars-right .bar-wrapper {
    height: 15px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.bar {
    height: 10px;
    background-color: #2d5a3d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    position: relative;
    min-width: 0;
    width: 0;
    transition: width 0.6s ease-out;
}

.bar.animate-bar {
    animation: barGrow 0.6s ease-out forwards;
}

@keyframes barGrow {
    from {
        width: 0;
    }
    to {
        width: var(--target-width, 100%);
    }
}

.chart-bars-right .bar {
    border-radius: 0;
    padding: 0;
    width: 0;
}

.chart-bars-right .bar.animate-bar {
    animation: barGrowFixed 0.6s ease-out forwards;
}

@keyframes barGrowFixed {
    from {
        width: 0;
    }
}

.stat-animate-fade {
    opacity: 0;
    animation: fadeInStats 0.6s ease-out 0.2s forwards;
}

@keyframes fadeInStats {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bar-value {
    font-size: clamp(13px, 3vw, 12px);
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 3;
    position: relative;
    padding-left: 5px;
}
.winner-bar-value { 
    font-size: clamp(20px, 4vw, 16px);
    color: #2e7f2b !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    min-width: 60px;
    display: inline-block;
    text-align: left;
}
.chart-bars-right .bar-value {
    color: #333;
}

.fukuoka-bar {
    background-color: #2e7f2b;
}

.chart-bars-right .bar-wrapper:nth-child(4) .bar-value { /* fukuoka-bar wrapper is first in this list */
    font-size: clamp(12px, 4.5vw, 18px);
    color: #2e7f2b;
}

.kawasaki-bar {
    background-color: #e6f7d7;
}

.osaka-bar {
    background-color: #e6f7d7;
}

.saitama-bar {
    background-color: #e6f7d7;
}

.yokohama-bar {
    background-color: #e6f7d7;
}

/* NO.1 Badge */
.no1-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
}

.no1-badge-image {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 0;
    object-fit: contain;
    z-index: 0;
}

.laurel-wreath {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.badge-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.badge-label {
    font-size: clamp(9px, 2.75vw, 11px);
    color: #333;
    margin-bottom: 4px;
    font-weight: 500;
}

.badge-no1 {
    font-size: clamp(32px, 12vw, 48px);
    font-weight: 900;
    color: #E60012;
    margin: 0;
    line-height: 1;
}

.badge-note {
    font-size: clamp(8px, 2.5vw, 10px);
    color: #666;
    margin-top: 4px;
}

/* Statistics Bar */
.stats-bar {
    background-color: #2e7f2b;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.stats-bar-image {
    width: 100%;
    height: auto;
    display: block;
    justify-content: space-between;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-height: auto;
    box-sizing: border-box;
}

/* Diagonal separator line */
.stats-diagonal-separator {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #fff;
    transform: translateX(-50%) rotate(-10deg);
    transform-origin: center;
    z-index: 1;
}

/* Bottom green strip */
.stats-bottom-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: clamp(4px, 1vw, 6px);
    background-color: #4a9f47;
    z-index: 0;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    padding: 0 clamp(8px, 2vw, 12px);
}

.stat-text-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: auto;
    text-align: right;
}

.stat-label-box {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    align-self: flex-start;
    overflow: hidden;
    position: relative;
    margin-left: auto;
}

.stat-label {
    font-size: 0.5rem;
    margin: 0;
    color: #2e7f2b;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: 0.2px;
    background-color: white;
    padding: 2px 10px 2px 2px;
    position: relative;
    /* Clip the right edge to match the ~20deg tilt of the stat-white-band */
    /* tan(20deg) ≈ 0.364; with ~1.3em height, offset ≈ 0.47em */
    clip-path: polygon(0 0, 100% 0, calc(100% - 0.7em) 100%, 0 100%);
}

.stat-label::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 140%;
    background-color: #2e7f2b;
    transform: rotate(20deg);
    transform-origin: top right;
    z-index: 1;
}

.stat-period {
    font-size: clamp(9px, 2.75vw, 11px);
    margin: 0;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
    margin-left: auto;
    padding-right: 10px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: nowrap;
    line-height: 1;
    margin-top: 4px;
    position: relative;
    margin: auto;
}

.stat-white-band {
    position: absolute;
    height: 100%;
    max-height: 100%;
    background-color: #fff;
    top: 50%;
    left: -12px;
    transform: translateY(-50%) rotate(20deg);
    z-index: 1;
    pointer-events: none;
    width: 2px; /* Will be set by JavaScript */
}

.stat-number {
    font-size: clamp(20px, 11.5vw, 30px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.5px;
    margin: auto;
    position: relative;
    z-index: 4;
}

.stat-unit {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin: auto;
    margin-left: 0px;
}


/* Conclusion */
.conclusion {
    padding: 14px;
    padding-top: 0px;
    padding-bottom:0px ;
}

.conclusion p {
    font-size: clamp(10px, 3vw, 12px);
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;   

}

/* Tokyo vs Fukuoka Comparison Section */
.comparison-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 16px;
    background-color: #f2eeeb;
    overflow-x: hidden;
}

.comparison-content {
    background-color: #fff;
    padding: 24px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.comparison-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 12px;
}

.comparison-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.section-number-02 {
    width: 40px;
    height: 40px;
    background-color: rgb(83, 148, 82);;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 4.5vw, 18px);
    font-weight: 700;
    flex-shrink: 0;
}

.comparison-title {
    font-size: clamp(14px, 4vw, 20px);
    font-weight: bold;
    color: black;
    margin: 0;
    line-height: 1.3;
}

.comparison-badge {
    position: absolute;
    top: calc(80px + 24px - 50px);
    left: calc(16px + 40% + 0.5px + 27.5%);
    transform: translateX(-50%);
    background: linear-gradient(to right, #FF4444, #E60012);
    color: #fff;
    padding: clamp(8px, 2vw, 12px) clamp(12px, 3vw, 18px);
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Speech bubble tail */
.comparison-badge::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 11%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #fd3f40;
}

.badge-text-line1,
.badge-text-line2 {
    font-size: clamp(10px, 2.8vw, 13px);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.2;
}

.badge-text-line1 {
    margin-bottom: 2px;
}

/* Comparison Boxes */
.comparison-boxes {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 1px;
    margin-bottom: 14px;
    align-items: stretch;
    position: relative;
}

.comparison-box {
    /* border: 3px solid; */
    padding: 8px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tokyo-box {
    /* border-color: #9ccde5; */
    background-color: #e9f4fb;
}

.fukuoka-box {
    /* border-color: #f5c27b; */
    background-color: #fff4e5;
    position: relative;
}

.box-title {
    font-size: clamp(28px, 8vw, 38px);
    font-weight: 700;
    color: #5b5b5b;
    text-align: left;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.fukuoka-box .box-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    width: 66%;
    background: linear-gradient(to left, #e60012, #ffd94d);
    border-radius: 2px;
}

.property-count {
    font-size: clamp( 30%, 8vw, 32px) !important;
    font-weight: bold;
    transform: scale(1.1);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
}

.property-count.animate-pop-in {
    transform: scale(1);
    opacity: 1;
}

.property-count .unit {
    font-size: 0.7em;
}

.highlight-red {
    color: #e9484f;
    font-weight: 700;
    font-size: 17px;
}

.highlight-yellow {
    color: #f0ad00;
    font-weight: 800;
}

.box-price {
    font-size: 1rem;
    font-weight: 700;
    color: #2e7f2b;
    margin: 0;
    line-height: 1.2;
    transform: scale(1.1);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
}

.box-price.animate-pop-in {
    padding-top: 3px;
    transform: scale(1);
    opacity: 1;
}

.building-image,
.building-images {
    margin: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0; */
}

.building-image.tokyo-building {
    transform: translateX(-100px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.building-images.fukuoka-buildings {
    transform: translateX(100px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.building-image.tokyo-building.animate-slide-in,
.building-images.fukuoka-buildings.animate-slide-in {
    opacity: 1;
    transform: translateX(0);
}

.building-images {
    gap: 8px;
}

.comparison-yellow-box-content .building-images {
    height: 60px;
}

.building-image.tokyo-building {
    height: 60px;
}

.building-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.building-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.building-facade {
    width: 70%;
    height: 80%;
    background-color: #D4A574;
    border-radius: 4px 4px 0 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.building-facade.gray {
    background-color: #C0C0C0;
}

.building-windows {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.window-row {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.window {
    width: 12px;
    height: 12px;
    background-color: #4A90E2;
    border-radius: 2px;
}

.building-bushes {
    width: 80%;
    height: 20px;
    background-color: #7CB342;
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
}

.box-features {
    margin-top: 12px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    color: #5b5b5b;
    margin: 0;
    line-height: 1.3;
}

.feature-text {
    font-size: clamp(9px, 2.75vw, 11px);
    color: #2d5a3d;
    margin: 10px 0;
    line-height: 1.5;
    margin-bottom: 0px;
    padding-left: 10px;
}

.feature-text .red-dot-char {
    position: relative;
}

.feature-text .red-dot-char::before {
    content: '●';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #e9484f;
    font-size: 0.5em;
    line-height: 1;
}

/* Comparison Conclusion */
.comparison-conclusion {
    padding: 16px 8px 10px;
    border-radius: 8px;
    text-align: center;
}

.conclusion-line1 {
    font-size: 1.4rem;
    color: #6a6a6a;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.conclusion-line2.animate-fade-in{
    padding: 5px 0px;
}
.conclusion-line1.animate-text-in {
    opacity: 1;
    transform: translateY(0);
}

/* Emphasis animation for "福岡2件" - elegant bounce */
.fukuoka-emphasis {
    display: inline-block;
    transform: scale(0.95);
}

.fukuoka-emphasis.animate-bounce {
    animation: fukuokaBounce 0.4s cubic-bezier(0.68, -0.25, 0.32, 1.275) forwards;
}

@keyframes fukuokaBounce {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
    }
}

.conclusion-line1::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffef92;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-line1.animate-yellow-band::before {
    width: 100%;
}

.conclusion-line1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ffef92;
    z-index: -1;
}

.conclusion-line2 {
    font-size: clamp(12px, 3.5vw, 14px);
    color: #6a6a6a;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.conclusion-line2.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.conclusion-line3 {
    font-size: clamp(14px, 4vw, 16px);
    margin: 0;
    color: #e9484f;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: underline;
    text-decoration-color: #ffef92;
    text-underline-offset: 2px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.conclusion-line3.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.highlight-orange {
    color: #e9484f;
    font-weight: 900;
    font-size: clamp(20px, 6vw, 24px);
    position: relative;
    display: inline-block;
}

.comparison-conclusion .highlight-orange .smaller-text {
    font-size: 0.7em;
    color: #666666;
}

.highlight-orange::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 6px;
    background-color: #ffef92;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.conclusion-line3.animate-fade-in .highlight-orange::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
}

@media (min-width: 1024px) {
    .plus-container.promo-visible{
        padding: 0px 2% !important;
    }
    .planning-point-item{
        align-items: center !important;
    }
    .feature-text .red-dot-char::before{
        top: -12px;
    }
    .date-box span{
        font-size: 32px !important;
    }
    .cityscape-letter{
        width: 80% !important;
        padding-top: 50px !important;
        max-height: 20vw !important;
    }
    .key-points-title{
        font-size: 24px !important;
    }
    .key-points-title{
        margin: 8px 0px 16px 0px !important;
    }
    .key-points-box{
        padding: 30px 10px !important;
    }
    .key-points-conclusion{
        padding: 20px 10px !important;
    }
    .yellow-bg-text{
        font-size: 36px !important;
    }
    .highlight-red{
        font-size: 36px !important;
    }
    .green-unit{
        font-size: 28px !important;
    }
    .container {
        padding-left: var(--space-2xl);
        padding-right: var(--space-2xl);
    }
    .guarantee-text{
        bottom: 30PX !important ;
        left: 50PX !important;
    }
    
    /* PC版：マンション画像を20％大きく */
    /* 東京のマンション */
    .tokyo-building .building-photo {
        transform: scale(1.2);
    }
    
    /* 福岡の右側のマンション（2つ目） */
    .fukuoka-buildings .building-placeholder:last-child .building-photo {
        transform: scale(1.2);
    }
    
    /* SYNS独自の厳選基準のマンション */
    .criteria-building-image {
        transform: scale(1.2);
    }
}

/* Touch-friendly buttons */
button, 
a[role="button"],
[role="button"] {
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Videos */
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ========================================
   RESPONSIVE BREAKPOINT SYSTEM
   ======================================== */



/* New vs Used Property Yield Comparison Section */
.yield-comparison-section {
    width: 100%;
    padding: 40px 16px;
    background-color: #f2eeeb;
    padding-bottom: 20px;
}

.yield-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.yield-section-number {
    width: 40px;
    height: 40px;
    background-color: rgb(83, 148, 82);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 4.5vw, 18px);
    font-weight: 700;
    flex-shrink: 0;
}

.yield-title {
    font-size: clamp(14px, 4vw, 20px);
    font-weight: 700;
    color: black;
    margin: 0;
    line-height: 1.3;
}

.yield-content {
    background-color: #fff;
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.yield-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 0.65fr;
    gap: 6px;
    margin-bottom: 24px;
}

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

.property-illustration {
    width: 100%;
    height: 140px;
    background-color: #fff;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.living-room {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
}

/* New Property Illustration */
.new-property-illustration {
    background: url('assets/img/room1.png') center center / contain no-repeat;
    height: 0;
    padding-bottom: 75%; /* Adjust this percentage to match your image's aspect ratio */
}

/* Used Property Illustration */
.used-property-illustration {
    background: url('assets/img/room2.png') center center / contain no-repeat;
    height: 0;
    padding-bottom: 75%; /* Adjust this percentage to match your image's aspect ratio */
}

.sofa {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 25px;
    background-color: #D4A574;
    border-radius: 4px;
}

.sofa-used {
    background-color: #C4A574;
    width: 50%;
    left: 20%;
}

.coffee-table {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 8px;
    background-color: #8B4513;
    border-radius: 2px;
}

.tv-stand {
    position: absolute;
    bottom: 50px;
    right: 10%;
    width: 25%;
    height: 30px;
    background-color: #8B4513;
    border-radius: 2px;
}

.tv {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 12px;
    background-color: #1a1a1a;
    border-radius: 2px;
}

.plant {
    position: absolute;
    bottom: 15px;
    width: 12px;
    height: 20px;
    background-color: #228B22;
    border-radius: 2px;
}

.plant-left {
    left: 10%;
}

.plant-right {
    right: 10%;
}

.wall-shelf {
    position: absolute;
    top: 20%;
    left: 15%;
    width: 30%;
    height: 3px;
    background-color: #8B4513;
    border-radius: 1px;
}

.picture-frame {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 15%;
    height: 12px;
    background-color: #8B4513;
    border: 1px solid #654321;
    border-radius: 2px;
}

.wall-clock {
    position: absolute;
    top: 25%;
    right: 20%;
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
}

.side-table {
    position: absolute;
    bottom: 15px;
    left: 10%;
    width: 15%;
    height: 20px;
    background-color: #8B4513;
    border-radius: 2px;
}

.lamp {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #FFD700;
    border-radius: 2px;
}

.air-conditioner {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 8px;
    background-color: #C0C0C0;
    border-radius: 2px;
}

.wall-shelves {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 25%;
    height: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wall-shelves::before,
.wall-shelves::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #8B4513;
    border-radius: 1px;
}

.property-label {
    padding-left: 1px;
    padding-top: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
    font-size: clamp(10px, 3vw, 12px);
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.3px;
    margin-right: auto;
}

.new-label {
    background-color: #2e7f2b;
    text-align: left;
}

.used-label {
    background-color: #2e7f2b;
    color: white;
}

.property-details {
    width: 100%;
}

.property-detail {
    font-size: 0.75rem;
    color: #2e7f2b;
    margin: 4px 0;
    line-height: 1.5;
    font-weight: 700;
    margin-right: auto;
}

.detail-value {
    font-weight: 900;
    color: #2d5a3d;
}

.yield-highlight {
    color: #2d5a3d;
    font-weight: 900;
    background: linear-gradient(to right, #ffef92 0%, #e9474f 100%);
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: 0 100%;
    padding-bottom: 2px;
}

.key-points-column {
    grid-column: span 1;
    margin-top: 20px;
    padding-bottom: 5px;
}
.auto-t {
    margin-top:auto;
    margin-bottom: auto;
}
.key-points-box {
    width: 100%;
    border: 2px solid #E60012;
    padding: 2px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    margin-top: auto;
}

.key-points-label {
    background-color: #e9474f;
    color: #fff;
    padding: 2px;
    width: 75%;
    font-size: 0.4rem;
    font-weight: 600;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.key-points-main {
    text-align: center;
    margin-top: 8px;
}

.key-points-title {
    font-size: clamp(20px, 4vw, 16px);
    font-weight: 900;
    color: #e9474f;
    margin: 8px 0;
    line-height: 1.3;
}

.key-points-subtitle {
    font-size: clamp(9px, 2.5vw, 10px);
    color: #e9474f;
    line-height: 1.5;
    margin: 0;
    font-weight: bold;
}

.key-points-conclusion {
    border: 2px solid #e9474f;
    padding: 2px;
    margin-top: 4px;
    width: 100%;
}
/* .display-none-425{
    display: none;
} */
.key-points-conclusion p {
    font-size: clamp(4px, 2.5vw, 8px);
    color: #e9474f;
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.yield-explanation {
    font-size: 0.8rem;
    background-color: #fff;
    border-radius: 6px;
    text-align: center;
}

.explanation-text {
    /* font-size: 0.7rem; */
    /* font-size: clamp(10px, 2.5vw, 0.94rem); */
    color: #6c6c6c;
    margin-bottom: 8px;
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: -1px;

}

.explanation-conclusion {
    /* font-size: 1rem; */
    color: #6c6c6c;
    margin: 0;
    line-height: 1.6;
    font-weight: bold;
}

.price-increase-highlight {
    padding: 2px 4px;
    border-radius: 2px;
    font-weight: 700;
    color: #e9474f;
}

/* Fukuoka Growth Potential Section */
.growth-section {
    width: 100%;
    padding: 0;
    background-color: #fff;
}

.cityscape-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f2eeeb;
    height: 350px;
}

.cityscape-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cityscape-letter {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    z-index: 10;
    /* max-width: calc(100% - 100px); */
    width: 100vw;
    width: auto;
    height: auto;
    max-height: 200px;
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
    padding: 0px 16px;
}

.cityscape-letter.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .cityscape-letter {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        transition: none;
    }
}

.cityscape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0;
    z-index: 2;
    background: url('assets/img/back1.png') center center / cover no-repeat;
}

.growth-text-top {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.growth-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.growth-arrow {
    width: 20px;
    height: 20px;
    color: #fff;
    transform: rotate(180deg);
}

.growth-chart {
    width: 20px;
    height: 20px;
    color: #fff;
}

.growth-text-bottom {
    color: #fff;
    font-size: clamp(12px, 3.5vw, 14px);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Growth Section */


/* Ensure chart-main-title, ui6q1jhotr  qm, mnop3
6
x, and city-label rank-first display in one line at exactly 425px */
@media (min-width: 425px) and (max-width: 425px) {
    .chart-main-title {
        white-space: nowrap;
        font-size: 18px;
    }

    .chart-subtitle {
        white-space: nowrap;
        font-size: 13px;
    }

    .city-label.rank-first {
        white-space: nowrap;
    }

    .rank-first {
        font-size: 18px;
    }

    .city-name.rank-first {
        font-size: 16px;
    }
}

/* Real Estate Investment Mechanism Section */
.mechanism-section {
    width: 100%;
   padding: 0px;
    background-color: #ddeddd;
}

.mechanism-content {
    max-width: 980px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mechanism-header {
    text-align: center;
    margin-bottom: 28px;
}

.mechanism-title {
    font-size: clamp(18px, 5.5vw, 22px);
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.mechanism-subtitle {
    font-size: clamp(11px, 3.25vw, 13px);
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    width: 60%;
    text-align: center;
}

.mechanism-diagram {
    position: relative;
    width: 100%;
    /* min-height: 440px; */
    margin: 0 auto 24px;
    overflow: hidden;
    background-color: #ddeddd;
}

.diagram-oval {
    position: absolute;
    top: 10px;
    /* right: -8%; */
    bottom: 10px;
    /* left: -8%; */
    /* background: white; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.diagram-oval-image{
    top: 0px;
    height: 70%;
    object-fit: contain;
    display: block;
    width: 100vw;
    width: 100%;
    /* height: 60vw; */
}
.diagram-oval-left-image{
    position: absolute;
    top: 0;
    left: 0;
}
.diagram-oval-right-image{
    position: absolute;
    right: 0;
    top: 0;
    height: 56%;
}
.diagram-oval-left-image{
    position: absolute;
    left: 0;
    top: 0;
    height: 56%;
}
.diagram-oval-middle-container{
    position: absolute;
    left: 50%;
    top:40%;
    transform: translate(-50%, -50%);
    width: 40%;
}
.diagram-oval-middle-left-image{
    margin-top: 20px;
}
.auto-t{
    margin-top: auto;
    margin-bottom: auto;
}
.diagram-oval-middle-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
}
.diagram-oval-container{
    
}
.diagram-entity {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

/* Owner (Left) */
.owner-entity {
    left: 10%;
    bottom: 18%;
}

/* Property (Center) */
.property-entity {
    left: 50%;
    top: 36%;
    transform: translateX(-50%);
}

/* Resident (Right) */
.resident-entity {
    right: 2%;
    bottom: 18%;
}

/* Bank (Bottom Center) */
.bank-entity {
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
}

.diagram-figure {
    height: 372px;
    width: auto;
    max-height: 360px;
    max-width: 32vw;
    object-fit: contain;
    display: block;
}

.diagram-core {
    width: 150px;
    max-width: 30vw;
    height: auto;
}

.building-image {
    /* width: 100px; */
    max-width: 26vw;
    height: 20vw;
    display: block;
    margin: 0 auto;
}

.bank-entity .diagram-core {
    width: 96px;
    max-width: 15vw;
}

.entity-chip {
    position: absolute;
    top: 24%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* width: fit-content; */
    /* margin: 0 auto; */
    padding: 6px 14px;
    background: #4b3a2c;
    color: #fff;
    font-size: clamp(9px, 2.75vw, 11px);
    letter-spacing: 0.5px;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

/* Align chips at shoulder height for both characters */
.owner-entity .entity-chip {
    left: 26%;
    transform: translate(-20%, -50%);
}

.resident-entity .entity-chip {
    left: 74%;
    transform: translate(-80%, -50%);
}

/* Arrows */
.arrow-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

.arrow-svg {
    width: 100%;
    height: 100%;
}

.arrow-label {
    position: absolute;
    font-size: clamp(9px, 2.75vw, 11px);
    color: #2d5a3d;
    font-weight: 600;
    background-color: #ffffff;
    border: 1px solid #c8d9c4;
    padding: 4px 10px;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Resident to Owner Arrow */
.arrow-income {
    left: 20%;
    right: 20%;
    top: 16%;
    height: 46px;
}

.arrow-income .arrow-label {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* Owner to Property Arrow */
.arrow-purchase {
    left: 16%;
    width: 30%;
    top: 56%;
    height: 48px;
}

.arrow-purchase .arrow-label {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* Property to Resident Arrow */
.arrow-lease {
    right: 16%;
    width: 30%;
    top: 58%;
    height: 48px;
}

.arrow-lease .arrow-label {
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

/* Bank to Owner Arrow */
.arrow-loan {
    left: 38%;
    width: 70px;
    height: 140px;
    bottom: 18%;
}

.arrow-loan .arrow-label {
    right: -50px;
    top: 36%;
    transform: translateY(-50%);
}

/* Owner to Bank Arrow */
.arrow-repay {
    right: 38%;
    width: 70px;
    height: 140px;
    bottom: 18%;
}

.arrow-repay .arrow-label {
    left: -52px;
    top: 54%;
    transform: translateY(-50%);
}

/* Bottom Note */
.mechanism-note {
    text-align: left;
    padding-top: 8px;
    max-width: 980px;
    margin: 0 auto;
}

.mechanism-note p {
    font-size: clamp(9px, 2.75vw, 11px);
    color: #444;
    margin: 0;
    line-height: 1.5;
    padding-left: 4%;
}

/* Strong Point Section Header */
.strong-point-header {
    width: 100%;
    background-color: #fff;
}

.strong-point-container {
    position: relative;
    width: 100%;
    max-width: 425px;
    margin: 0 auto;
    min-height: 300px;
    perspective: 1000px;
}

/* Background Documents */
.documents-background {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Bar Chart Document */
.bar-chart-doc {
    flex: 1;
    background-color: #fff;
    border-radius: 4px;
    padding: 12px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-axis {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
}

.axis-labels-horizontal {
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    color: #666;
}

.axis-labels-vertical {
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 8px;
    color: #666;
}

.chart-bars-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    gap: 4px;
    padding: 0 4px;
}

.chart-bar-blue {
    flex: 1;
    background-color: #4A90E2;
    border-radius: 2px 2px 0 0;
    min-width: 8px;
}

/* Spreadsheet Document */
.spreadsheet-doc {
    flex: 1;
    background-color: #fff;
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 8px;
    color: #333;
}

.data-table th,
.data-table td {
    padding: 4px;
    text-align: left;
    border: 1px solid #E0E0E0;
}

.data-table th {
    background-color: #F5F5F5;
    font-weight: 600;
}

.data-table tbody tr.highlighted-row {
    background-color: #E3F2FD;
}

.data-table td {
    font-size: 7px;
}

/* Magnifying Glass */
.magnifying-glass {
    position: absolute;
    top: 20px;
    left: 15%;
    width: 80px;
    height: 80px;
    z-index: 10;
    transform: rotate(-15deg);
}

.magnifier-lens {
    width: 60px;
    height: 60px;
    border: 4px solid #C0C0C0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(200, 200, 200, 0.3));
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.lens-reflection {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.magnifier-handle {
    position: absolute;
    bottom: -10px;
    right: -15px;
    width: 8px;
    height: 40px;
    background: linear-gradient(to right, #A0A0A0, #C0C0C0);
    border-radius: 4px;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Wooden House Models */
.house-models {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 5;
    opacity: 0.7;
}

.house-model {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(-5deg);
}

.house-left {
    width: 50px;
    height: 40px;
}

.house-right {
    width: 60px;
    height: 45px;
}

.house-roof {
    width: 100%;
    height: 0;
    border-left: 0;
    border-right: 0;
    position: relative;
    margin: 0 auto;
}

.house-left .house-roof {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid #8B4513;
    margin-bottom: -2px;
}

.house-right .house-roof {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 22px solid #8B4513;
    margin-bottom: -2px;
}

.house-body {
    background-color: #D2B48C;
    border-radius: 0 0 4px 4px;
    padding: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.house-left .house-body {
    height: 20px;
}

.house-right .house-body {
    height: 23px;
}

.house-window {
    width: 6px;
    height: 6px;
    background-color: #4A90E2;
    border: 1px solid #2E5C8A;
    border-radius: 1px;
}

.house-left .house-window {
    width: 5px;
    height: 5px;
}

/* Strong Point Label */
.strong-point-label {
    position: relative;
    text-align: center;
    padding: 0 16px;
    background-image: url('assets/img/house.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    font-weight: bold;
}

.strong-point-label span {
    font-size: clamp(20px, 4.5vw, 25px);
    font-weight: bold;
    color: #2d5a3d;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* SYNS Strengths Section */
.syns-strengths-section {
    width: 100%;
    padding: 40px 16px;
    background-color: #fff;
    padding-top: 0px;
}

.strengths-content {
    max-width: 100%;
    position: relative;
}

.strengths-title {
    font-size: 45px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.3;
}

/* Green Banner */
.strengths-banner {
    background-color: #2d5a3d;
    padding: 12px 16px;
    padding-bottom: 3px;
    padding-top: 3px;
    margin-bottom: 16px;
    text-align: center;
}

.strengths-banner-text {
    color: white;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.strengths-banner-highlight {
    font-weight: 400;
    font-size: 40px;
    color: #fde16c;
}
.highlight-text{
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}
/* Explanatory Text */
.strengths-explanation {
    margin-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: bold;
    display: flex;
}

.explanation-line1,
.explanation-line2 {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 4px 0;
    font-weight: bold;
}

/* Main Stats Box */
/* Strengths Stats Container */
.strengths-stats-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.strengths-stats-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-snap-type: x mandatory;
    min-width: 0;
}

.strengths-stats-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.strengths-stats-box {
    position: relative;
    border: 10px solid #ddeddd;
    padding: 24px 16px;
    background-color: #fff;
    overflow: visible;
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
}

.stats-box-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 50%;
    opacity: 0.1;
    z-index: 0;
}

.building-silhouette {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 0 4px;
}

.building-silhouette::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 15%;
    height: 50%;
    background-color: rgba(153, 153, 153, 0.15);
    clip-path: polygon(0 100%, 0 30%, 50% 0%, 100% 30%, 100% 100%);
}

.building-silhouette::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 18%;
    height: 70%;
    background-color: rgba(153, 153, 153, 0.15);
    clip-path: polygon(0 100%, 0 20%, 50% 0%, 100% 20%, 100% 100%);
}

/* Rent UP Headline */
.rent-up-headline {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.rent-text {
    font-size: 60px;
    font-weight: bold;
    color: #2d5a3d;
}

.up-text {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #FF8C00;
    font-size: 32px;
    font-weight: 700;
}

.up-letter {
    position: relative;
}

.up-arrow {
    width: 24px;
    height: 24px;
    color: #FF8C00;
    transform: rotate(-90deg);
    margin: 0 -4px;
}

.up-arrow-image {
    width: auto;
    height: 60px;
    object-fit: contain;
    vertical-align: middle;
    transform-origin: 100% 100%;
    opacity: 0;
    transform: rotate(-60deg);
    z-index: -1;
}

.up-arrow-image.arc-animate {
    animation: upArrowArc 0.8s ease-out forwards;
}

@keyframes upArrowArc {
    0% {
        opacity: 0;
        transform: rotate(-60deg);
    }
    40% {
        opacity: 1;
        transform: rotate(-30deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}

/* Increase Rate */
.increase-rate {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rate-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.rate-label {
    font-size: 35px;
    color: #2d5a3d;
    font-weight: 600;
}

.rate-value {
    font-size: 35px;
    color: #2d5a3d;
    font-weight: 700;
}

/* Disclaimer */
.rate-disclaimer {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 20px;
    color: #2d5a3d;

}

/* Property List Date */
.property-list-date {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.list-label {
    font-size: 40px;
    color: #2d5a3d;
    font-weight: 200;
}

.date-box {
    border: 2px solid #315f41;
    padding: 4px 12px;
    background-color: #fff;
    width: 30%;
    text-align: center;
    margin: auto;
    white-space: nowrap;
}

.date-box span {
    font-size: 20px;
    color: #2d5a3d;
    font-weight: 200;
}

/* Total Increase */
.total-increase {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-top: 6px;
}

.total-label {
    font-size: 26px;
    color: #2d5a3d;
    font-weight: 500;
}

.total-amount-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.total-amount {
    background-color: #2d5a3d;
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    padding: 4px 12px;
    line-height: 1;
}

.total-unit {
    font-size: 26px;
    color: #2d5a3d;
    font-weight: 500;
}

/* Stats Navigation Arrows */
.stats-nav-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, background 0.2s;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stats-nav-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.stats-nav-arrow:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 1);
}

.stats-nav-next {
    right: 8px;
    width: 40px;
    height: 40px;
}

.stats-nav-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2d5a3d;
    border-top: 3px solid #2d5a3d;
    transform: translate(-50%, -50%) rotate(45deg);
}

.stats-nav-prev {
    left: 8px;
    width: 40px;
    height: 40px;
}

.stats-nav-prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2d5a3d;
    border-top: 3px solid #2d5a3d;
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* Stats Property Details Section */
.stats-property-details-section {
    width: 100%;
    padding: 20px 0 0 0;
    background-color: transparent;
}

.stats-property-details-content {
    max-width: 100%;
    background-color: #fff;
    border: 10px solid #ddeddd;
    padding: 20px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
}

.stats-property-details-content.slide-from-right {
    animation: slideInFromRight 0.5s ease-out forwards;
}

.stats-property-details-content.slide-from-left {
    animation: slideInFromLeft 0.5s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.stats-property-details-list {
    display: flex;
    flex-direction: column;
}

/* Purchasing Power Section */
.purchasing-power-section {
    width: 100%;
    padding: 0;
    background-color: #fff;
    position: relative;
}

/* Power Banner */
.power-banner {
    background-color: #2d5a3d;
    padding: 5px;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    text-align: center  ;
    z-index: 3;
    padding-left: 20px;
    padding-right: 20px;
}

.top-banner {
    margin-bottom: 24px;
    width: 100%;
}

.banner-text-white {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.banner-power-label {
    color: #FFEB3B;
    font-size: 28px;
    font-weight: 900;
    /* margin-left: 12px; */
    letter-spacing: 1px;
}

/* Power Text Block */
.power-text-block {
    padding: 0 16px 24px;
    background-color: #fff;
}

.power-text-line {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 12px 0;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: bold;
}

.power-text-line:last-child {
    margin-bottom: 0;
}

/* Power Image Container */
.power-image-container {
    position: relative;
    width: 80%;
    aspect-ratio: 16 / 9;
}

.power-city-image {
    width: 100%;
    height: 100%;
    /* background-image: url('assets/img/back3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}
.power-city-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Bottom Banner Overlay */
.bottom-banner {
    position: absolute;
    bottom: 0;
    right: calc(-19% + 0px);
    left: auto;
    width: auto;
    min-width: fit-content;
    max-width: calc(100% + 20%);
    margin-bottom: 0;
    transform: translateY(50%);
}


/* Statistics and Selection Criteria Section */
.stats-criteria-section {
    width: 100%;
    max-width: 100%;
    padding: 40px 16px;
    padding-top: 10px;
    overflow-x: hidden;
}

.stats-criteria-content {
    max-width: 100%;
}

/* Stat Block */
.stat-block {
    position: relative;
    text-align: left;
    padding: 24px 16px;
    padding-top: 40px;
}

/* Occupancy Rate Stat */
.occupancy-stat {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.occupancy-stat-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stat-background-buildings {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/Asset%205.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.stat-date-note-1{
    position: relative;
    z-index: 1;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2d5a3d;
    /* margin-top: 8px; */
}
.stat-value-large {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 0;
    font-weight: 900;
    color: #ef5d30;
    line-height: 1;
    white-space: nowrap;
    /* margin-bottom: 12px; */
    width: 50%;
}
.stat-value-large-date{
    position: relative;
    z-index: 1;
    align-items: baseline;
    gap: 4px;
    font-weight: 900;
    color: #ef5d30;
    line-height: 1;
    margin-bottom: 12px;
    font-size: 41px;
}
.stat-int {
    font-size: 54px;
    margin: 0;
    padding: 0;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0px  0px 1px #fff;
}

.stat-frac {
    font-size: 42px;
    margin: 0;
    padding: 0;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0px  0px 1px #fff;
}

.stat-label-underlined {
    position: relative;
    z-index: 1;
    width: 46%;
}

.underline-highlight {
    font-size: 26px;
    font-weight: 700;
    color: #2d5a3d;
    position: relative;
    padding-bottom: 4px;
}

.underline-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: #FFEB3B;
    z-index: -1;
}

/* Vacancy Period Stat */
.vacancy-stat {
    background-color: #fff;
    display: flex;
    gap: auto;
    align-items: center;
    justify-content: center;
}

.vacancy-label {
    font-size: 27px;
    color: #10502b;
    font-weight: 600;
    margin: 0 0 12px 0;
    margin:auto;
}

.vacancy-days {
    margin-bottom: 8px;
}

.stat-date-note {
    font-size: 16px;
    color: #105243;
    margin: 0;
    font-weight: bold;
    text-align: right;
}

/* Criteria Section */
.criteria-section {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: auto;
    position: relative;
}

.criteria-banner {
    background-color: #2d5a3d;
    padding: 3px 3px;
    text-align: center;
    margin-bottom: 0px;
}

.criteria-banner span {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    width: 200px;
}

.criteria-content-wrapper {
    background-color: #F5F5F5;
    padding: 12px 16px 8px 16px;
    display: flex;
    flex-direction: row;
    width: 80%;
    align-items: flex-start;
}

/* Criteria List */
.criteria-list {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 3px;
}

.criterion-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkmark-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.criterion-text {
    font-size: 18px;
    color: #1e512b;
    font-weight: bold;
    line-height: 1.5;
}

/* Apartment Building Illustration */
.building-illustration-wrapper {
    position: absolute;
    bottom: 52px;
    right: 3%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: auto;
    flex-shrink: 0;
    transform: translateY(50%);
}

.criteria-building-image {
    width: auto;
    height: 100px;
    object-fit: contain;
    display: block;
}

.apartment-building {
    position: absolute;
    right: 0;
    width: 120px;
}

.building-facade-main {
    background-color: #D4A574;
    border-radius: 4px 4px 0 0;
    padding: 12px 8px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.building-windows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.building-window-cell {
    aspect-ratio: 1;
}

.window-pane {
    width: 100%;
    height: 100%;
    background-color: #87CEEB;
    border: 1px solid #5A9BC8;
    border-radius: 2px;
}

.building-base {
    background-color: #8B4513;
    height: 12px;
    border-radius: 0 0 4px 4px;
}

.building-bushes {
    display: flex;
    justify-content: space-around;
    margin-top: 4px;
    padding: 0 8px;
}

.bush {
    width: 20px;
    height: 12px;
    background-color: #7CB342;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* Guarantee Section */
.guarantee-section {
    width: 100%;
    padding: 40px 16px;
    background-color: #fff;
    padding-bottom: 0px;
    padding-top: 0px;
}

.guarantee-content {
    max-width: 100%;
}

/* Main Title Banner */
.guarantee-banner {
    background-color: #10502b;
    text-align: center;
    margin-bottom: 24px;
}


/* Two Column Layout */
.guarantee-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.guarantee-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 20px 12px;
    position: relative;
}

/* Guarantee Header */
.guarantee-header {
    display: flex;
    align-items: center;
    /* gap: 8px; */
    margin-bottom: 16px;
    width: 70%;
    justify-content: flex-start;
    border: 3px solid #539452;
}

.guarantee-number {
    background-color: #539452;
    color: #fff;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.guarantee-number.is-visible {
    opacity: 1;
}

.guarantee-title {
    font-size: 15px;
    color: black;
    font-weight: 700;
    margin: auto;
}

/* Guarantee Illustration */
.guarantee-illustration {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    margin-bottom: 80px;
}

.guarantee-illustration-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
}

/* Apartment Building for Vacancy Guarantee */
.apartment-building-guarantee {
    width: 100%;
    max-width: 140px;
    position: relative;
    z-index: 1;
}

.building-roof-guarantee {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 20px solid #C8E6C9;
    margin: 0 auto;
}

.building-body-guarantee {
    background-color: #D4A574;
    border-radius: 0 0 4px 4px;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.building-guarantee-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.building-floor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.building-floor:last-child {
    margin-bottom: 0;
}

.apartment-unit {
    flex: 1;
    height: 20px;
    background-color: #fff;
    border: 2px solid #8B4513;
    border-radius: 2px;
    position: relative;
}

.apartment-unit::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #87CEEB;
    border-radius: 1px;
}

.staircase {
    width: 8px;
    height: 20px;
    background-color: #8B4513;
    border-radius: 1px;
    position: relative;
}

.staircase::before,
.staircase::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #654321;
}

.staircase::before {
    top: 6px;
}

.staircase::after {
    bottom: 6px;
}

/* Appliances for Equipment Guarantee */
.appliances-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.air-conditioner-unit {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.conditioner-image {
    width: auto;
    height: 40px;
    object-fit: contain;
    display: block;
}

.conditioner-unit-right {
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}

.conditioner1-image {
    width: auto;
    height: 100px;
    object-fit: contain;
    display: block;
}

.water-heater-unit {
    position: relative;
    width: 40px;
    height: 80px;
}

.heater-body {
    width: 100%;
    height: 100%;
    background-color: #FFE4B5;
    border: 2px solid #D4A574;
    border-radius: 4px;
    position: relative;
}

.heater-pipes {
    position: absolute;
    right: -8px;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pipe {
    width: 6px;
    height: 20px;
    background-color: #C0C0C0;
    border-radius: 2px;
}

/* Guarantee Text */
.guarantee-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-align: left;
    width: auto;
}

.guarantee-line {
    font-size: 15px;
    color: #2d5a3d;
    font-weight:bold;
    margin: 0 0 4px 0;
    line-height: 1.5;
    text-align: left;
    letter-spacing: -1px;
}

.guarantee-line:last-child {
    margin-bottom: 0;
}

/* Bottom Section */
.guarantee-bottom {
    text-align: center;
    padding: 20px 16px; 
    border-radius: 8px;
    padding-bottom: 0px;
}

.guarantee-highlight-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.guarantee-highlight {
    font-size: 22px;
    font-weight: 900;
    color: #e9474f;
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    z-index: 1;
}

.guarantee-highlight-underline {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ffef92;
    z-index: 0;
}

.guarantee-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: skewX(-5deg);
}

.guarantee-subtext {
    font-size: 18px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-weight: bold;
}
.diagram-oval-bottom-image{
    position: static;
    display: block;
    margin: 0 auto;
}
/* Responsive Design for Guarantee Section */


/* Financing Section */
.financing-section {
    width: 100%;
    padding: 40px 16px;
    background-color: #fff;
}

.financing-content {
    max-width: 100%;
}

/* Top Banner */
.financing-banner {
    background-color: #2d5a3d;
    text-align: center;
    margin-bottom: 24px;
}

.banner-text-financing {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.banner-highlight-yellow {
    color: #FFEB3B;
    font-weight: 900;
    /* font-size: 40px; */
}

/* Bank Icons Row */
.bank-icons-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.bank-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.bank-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.bank-icon.bank-visible {
    opacity: 1;
}

.bank-building {
    width: 100%;
    max-width: 60px;
    height: 70px;
    position: relative;
    border-radius: 4px 4px 0 0;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bank-grey .bank-building {
    background-color: #808080;
}

.bank-green .bank-building {
    background-color: #2d5a3d;
}

.bank-blue-dark .bank-building {
    background-color: #1E3A5F;
}

.bank-blue-light .bank-building {
    background-color: #4A90E2;
}

.bank-windows-row {
    display: flex;
    justify-content: space-around;
    gap: 2px;
}

.bank-window {
    width: 8px;
    height: 8px;
    background-color: #FFD700;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.bank-windows-vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.bank-building-vertical {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.bank-building-vertical .bank-window {
    width: 6px;
    height: 6px;
}

.bank-entrance {
    width: 12px;
    height: 16px;
    background-color: #654321;
    border-radius: 2px 2px 0 0;
    margin: 0 auto;
}

.bank-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.bank-grey .bank-label {
    color: #808080;
}

.bank-green .bank-label {
    color: #2d5a3d;
}

.bank-blue-dark .bank-label {
    color: #1E3A5F;
}

.bank-blue-light .bank-label {
    color: #4A90E2;
}

.bank-label-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 9px;
}

/* Bottom Content Box */
.financing-planning-box {
    background-color: #F5F5F5;
    padding: 20px 16px;
}

/* Inner Header Banner */
.planning-banner {
    background-color: #2d5a3d;
    padding: 3px 3px;
    text-align: center;
    margin-bottom: 20px;
}

.planning-banner span {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

/* Planning Points */
.planning-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.planning-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.planning-checkmark {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.planning-text {
    font-size: 20px;
    color: #1e512b;
    font-weight: 600;
    line-height: 1.6;
    flex: 1;
}

/* Owner Testimonials Section */
.testimonials-section {
    width: 100%;
    padding: 0;
    background: linear-gradient(to top, #e0f7d6 0%, #ffffff 100%);
}

/* Header Area */
.testimonials-header {
    position: relative;
    padding: 40px 16px 32px;
    overflow: hidden;
}

.leaves-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/img/leave.png');
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.testimonials-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonials-label {
    font-size: 14px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.testimonials-title {
    font-size: 30px;
    font-weight: bold;
    color: #2d5a3d;
    margin: 0 0 12px 0;
}

.testimonials-subtitle {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: normal;
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonials-scroll-wrapper {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-snap-type: x mandatory;
    min-width: 0;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Navigation Arrows */
.testimonial-nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
    width: 24px;
    height: 24px;
    position: relative;
}

.testimonial-nav-arrow.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.testimonial-nav-arrow:hover {
    opacity: 0.7;
}

.testimonial-nav-arrow svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav-next {
    width: 24px;
    height: 24px;
}

.testimonial-nav-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2d5a3d;
    border-top: 3px solid #2d5a3d;
    transform: translate(-50%, -50%) rotate(45deg);
}

.testimonial-nav-prev {
    width: 24px;
    height: 24px;
}

.testimonial-nav-prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2d5a3d;
    border-top: 3px solid #2d5a3d;
    transform: translate(-50%, -50%) rotate(-135deg);
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: #fff;
    border: 2px solid #E0E0E0;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
}

/* Customer Profile */
.customer-profile {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
    align-items: stretch;
}

.customer-photo {
    width: 80px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.photo-placeholder svg {
    width: 60px;
    height: 60px;
}

.customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-quote {
    font-size: 16px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0;
    line-height: 1.4;
}

.customer-tag {
    display: inline-block;
    background-color: #4a4a4a;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.customer-detail {
    font-size: 11px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

/* Q&A Sections */
.qa-section {
    margin-bottom: 20px;
}

.qa-section:last-child {
    margin-bottom: 0;
}

.qa-question {
    font-size: 13px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.qa-answer {
    font-size: 12px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.answer-highlight {
    background-color: white;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline;
}

/* Pagination Dots */
.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 16px 32px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2d5a3d;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-dot.active {
    background-color: #2d5a3d;
    border-color: #2d5a3d;
}

/* Fukuoka Used Properties Promotion Section */
.fukuoka-promo-section {
    width: 100%;
    padding: 0;
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0;
}

/* Title Banner Section */
.promo-title-banner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 16px;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, #fff 0%, #fff 66.67%, #f9f3c5 66.67%, #f9f3c5 100%);
    gap: 8px;
    flex-wrap: wrap;
}

.promo-title-banner > * {
    /* position: relative;
    padding-bottom: 15px; */
}

.banner-slash-left {
    font-size: 48px;
    font-weight: 900;
    color: #2d5a3d;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
    order: 1;
}

.banner-text-green {
    font-size: 24px;
    font-weight: 900;
    color: #2d5a3d;
    line-height: 1;
    letter-spacing: 0.05em;
    display: inline-block;
    vertical-align: baseline;
    order: 2;
    padding-bottom: 8px;
}

.banner-text-red {
    font-size: 45px;
    font-weight: 900;
    color: #E60012;
    line-height: 1;
    text-shadow: 3px 3px 0 #f9f3c5, -3px -3px 0 #f9f3c5, 3px -3px 0 #f9f3c5, -3px 3px 0 #f9f3c5, 2px 2px 4px rgba(249, 243, 197, 0.8);
    display: inline-block;
    vertical-align: baseline;
    letter-spacing: 0.08em;
    order: 3;
}

.banner-text-red.animate-drop {
    animation: bannerTextDrop 0.8s ease-out forwards;
    padding-bottom: 6px;
}

@keyframes bannerTextDrop {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1.15);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.banner-slash-right {
    font-size: 48px;
    font-weight: 900;
    color: #2d5a3d;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
    order: 4;
}

/* Top Header Section */
.promo-header {
    background-color: #2d5a3d;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-around;
    /* height: 300px; */
}

.promo-header-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.promo-header-svg{
    width: 40%;
}
.promo-title-container {
    text-align: center;
    margin-bottom: 24px;
}

.promo-title-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.promo-title-hot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.hot-line-left,
.hot-line-right {
    width: 20px;
    height: 2px;
    background-color: #fff;
    transform: rotate(-45deg);
}

.hot-line-right {
    transform: rotate(45deg);
}

.hot-text {
    color: #E60012;
    font-size: 32px;
    font-weight: 900;
}

/* Cartoon Characters */
.promo-characters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 100%;
}

.character-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.character-illustration {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-illustration svg {
    width: 100%;
    height: 100%;
}

.speech-bubble {
    background-color: #fff;
    border-radius: 12px;
    padding: 6px 10px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    min-width: 60px;
    text-align: center;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.speech-bubble p {
    font-size: 10px;
    color: #333;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Middle Section */
.promo-middle {
    padding: 32px 16px;
    background-color: #fff;
    text-align: center;
    padding-bottom: 0px;
}

.promo-subtitle {
    font-size: 16px;
    color: #e9474f;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-align: left;
}

.promo-main-point {
    margin-bottom: 24px;
    /* height: 20px; */
}

.main-point-highlight {
    font-size: 50px;
    font-weight: 900;
    color: #10502b;
    padding: 8px 16px;
    display: inline-block;
    position: relative;
    width: 100%;
    line-height: 1.2;
}

.main-point-highlight::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 32px);
    height: calc(30px * 0.75);
    background-color: #f9f3c5;
    z-index: -1;
    border-radius: 4px;
}

/* Properties Illustration */
.properties-illustration {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.property-building {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* .building-left {
    width: 100px;
} */

.building-right {
    /* width: 100px; */
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.building-roof-promo {
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 15px solid #C8E6C9;
}

.building-left .building-roof-promo {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.building-right .building-roof-promo {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.building-body-promo {
    background-color: #E8F5E9;
    background-image: url('assets/img/flat1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 0 4px 4px;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.building-left .building-body-promo {
    width: 100%;
    min-height: 100px;
    height: 100px;
}

.building-right .building-body-promo {
    width: 100%;
    min-height: 100px;
    height: 100px;
    background-image: url('assets/img/flat2.png');
}

.building-windows-promo {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    opacity: 0.3;
}

.window-row-promo {
    display: flex;
    justify-content: space-around;
    gap: 4px;
}

.window-promo {
    width: 12px;
    height: 12px;
    background-color: #87CEEB;
    border: 1px solid #5A9BC8;
    border-radius: 2px;
}

.building-entrance-promo {
    width: 20px;
    height: 24px;
    background-color: #8B4513;
    border-radius: 2px 2px 0 0;
    margin: 0 auto;
    opacity: 0.3;
}

.plus-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.plus-container.promo-visible,
.building-right.promo-visible {
    opacity: 1;
    transform: translateX(0);
}

.plus-sign {
    font-size: 32px;
    font-weight: 700;
    color: #10502b;
    font-size: 24px;
}

.plus-text {
    font-size: 20px;
    color: #10502b;
    margin: 0;
    font-weight: 600;
}

/* Explanation Text */
.promo-explanation {
    margin-bottom: 20px;
}

.explanation-line {
    font-size: 13px;
    color: #11512c;
    line-height: 1.8;
    margin: 0 0 4px 0;
    font-size: 20px;
}

/* Conclusion Indicator */
.conclusion-indicator {
    text-align: center;
}

.conclusion-indicator p {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.down-arrow {
    font-size: 12px;
    color: #333;
}

/* Bottom Section */
.promo-bottom {
    position: relative;
    padding: 32px 16px;
    padding-top: 60px;
    background: linear-gradient(to top, #d8dddc 0%, #ffffff 60%, #ffffff 100%);
    overflow: hidden;
    padding-bottom: 0px;
}

/* Dakarakoso Indicator */
.dakarakoso-indicator {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.dakarakoso-text {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.dakarakoso-triangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #333;
    margin: 6px auto 0;
    display: block;
}

.promo-bottom-background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(2px);
    z-index: 0;
}

.promo-recommendation-box {
    position: relative;
    z-index: 1;
    border: 3px solid rgb(117, 151, 131);
    padding: 10px 16px;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.recommendation-line1 {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.6;
    font-weight: bold;
}

.recommendation-line2 {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.recommendation-highlight {
    background-color: #f9f3c5;
    padding: 2px 8px;
    font-weight: 700;
    color: rgb(117, 151, 131);
    /* font-size: 24px; */
}

.recommendation-line3 {
    font-size: 20px;
    color: black;
    font-weight: bold;
    margin: 0;
}

.simulation-label {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 15px;
    color:#2d5a3d ;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    font-weight: bold;
}


.tax-simulation-section {
    width: 100%;
    padding: 40px 16px;
    padding-bottom: 0px;
    background-color: #fff;
    position: relative;
    background-image: url('assets/img/back2.png');
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.tax-simulation-content {
    max-width: 100%;
}

/* Header Section */
.simulation-header {
    text-align: center;
    margin-bottom: 12px;
    margin-top: 60px;
}

.simulation-title {
    font-size: 28px;
    font-weight: bold;
    color: #2d5a3d;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.simulation-subtitle {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-weight: bold;
}

/* Interactive Income List */
.income-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 32px;
}

.income-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #F5F5F5;
    cursor: pointer;
    padding-left: 20px;
    transition: background-color 0.2s;
}

.income-item:hover {
    background-color: #EEEEEE;
}

.income-item-active {
    background-color: #539452;
    color: #fff;
}

.income-item-active:hover {
    background-color: #3D6B4A;
}

.income-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-right: 12px;
}

.income-item-active .income-label {
    color: #fff;
}

.income-amount {
    font-size: 16px;
    font-weight: 700;
    color: #2d5a3d;
    flex: 1;
    text-align: left;
}

.income-item-active .income-amount {
    color: #fff;
}

.income-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.toggle-icon-minus {
    width: 24px;
    height: 24px;
}

/* Income Item Details Container */
.income-item-details-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 24px;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.income-item-details-container .simulation-results {
    margin-top: 24px;
    margin-bottom: 0;
}

.income-item-details-container .comparison-table-section {
    margin-top: 0;
}

/* Simulation Results Section */
.simulation-results {
    margin-top: 32px;
}

.results-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.result-box {
    background-color: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
}

.result-label {
    font-size: 11px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    color: #2d5a3d;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design for Tax Simulation Section */
@media (max-width: 425px) {
    .tax-simulation-section {
        padding: 32px 12px;
    }

    .simulation-title {
        font-size: 20px;
        letter-spacing: 0.3em;
    }

    .simulation-subtitle {
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    .income-item {
        padding: 14px 12px;
    }

    .income-label {
        font-size: 12px;
        margin-right: 8px;
    }

    .income-amount {
        font-size: 14px;
    }

    .toggle-icon,
    .toggle-icon-minus {
        width: 18px;
        height: 18px;
    }

    .results-title {
        font-size: 12px;
    }

    .simulation-results .comparison-table .table-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .simulation-results .table-label {
        font-size: 12px;
        padding-top: 0;
        margin-bottom: 8px;
    }

    .simulation-results .table-cell {
        border-left: none;
        border-top: 2px solid #E0E0E0;
        padding-left: 0;
        padding-top: 12px;
    }

    .simulation-results .cell-value {
        font-size: 16px;
    }
}

/* Financial Comparison Table Section */
.comparison-table-section {
    width: 100%;
    padding: 40px 16px;
    background-color: white;
}

.comparison-table-content {
    width: 100%;
}

/* Main Title/Header */
.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.header-square {
    width: 18px;
    height: 18px;
    background-color: rgba(83, 148, 82);
    flex-shrink: 0;
}
.pb-0{
    padding-bottom: 0px;
}
.header-text {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* Comparison Table */
.comparison-table {
    background-color: #fff;
    border: 1px solid rgb(223, 223, 223);
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.table-row {
    display: grid;
    grid-template-columns: 49px 1.5fr 1fr;
    align-items: center;
    text-align: center;
}
.display-none{
    display: none;
}
.simulation-results .comparison-table .table-row {
    grid-template-columns: 1fr 1fr;
}

.table-label {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    background-color: #ededed;
    padding-top: 8px;
    padding-left: 9px;
    padding-right: 9px;
    padding-bottom: 8px;
    height: 100%;
}

.table-cell {
    display: flex;
    flex-direction: column;
    margin-bottom: auto;
    height: 100%;
}

.cell-label {
    font-size: 11px;
    /* color: #666; */
    font-weight: 600;
    height: 30px;
}
.cell-title{
    border-bottom: 1px solid rgb(223, 223, 223);
    /* background-color: #edffd4; */
    margin-top: 0;
    display: flex;
}

.cell-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c211e;
    margin: auto;
    margin-top: 12px;
}
.cell-value.auto {
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.pt-12{
    padding-top: 12px;
}
.cell-after {
    border-left: 2px solid #E0E0E0;
    width: 50vw;
}
.cell-uint{
    font-size: 12px;
    color: #2c211e;
    margin-top:2px;
}
.cell-breakdown {
    margin-top: 12px;
    padding: 4px;
    background-color: #F5F5F5;
    border-radius: 4px;
    margin: 12px;
}
.auto{
    margin: auto;
}
.breakdown-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4px;
    align-items: center;
    font-size: 10px;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.5;
}
.breakdown-item:first-child {
    border-bottom: 1px solid #dedede;
}
.breakdown-item:last-child {
    margin-bottom: 0;
}

.breakdown-label {
    text-align: left;
}

.breakdown-yaku {
    text-align: center;
}

.breakdown-value {
    text-align: right;
}

/* Separator Arrow */
.table-separator {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    margin-top: 0px;
}

.down-arrow-icon {
    width: 32px;
    height: 32px;
    color: #2d5a3d;
}
.mb-0{
    margin-bottom: 0px;
}
/* Conclusion/Call to Action */
.comparison-conclusion {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conclusion-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-separator-diresction{
    width: 25px;
    height: 25px;
    transform: rotate(135deg);
    border-top: 2px solid rgb(222, 222, 222);
    border-right: 2px solid rgb(222, 222, 222);
}
.conclusion-arrow svg {
    width: 100%;
    height: 100%;
    color: #2d5a3d;
    transform: rotate(180deg);
}

.conclusion-box {
    background-color: #2d5a3d;
    color: #fff;
    padding: 16px 24px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.conclusion-box p {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
}

/* Large Conclusion Box with Arrow */
.conclusion-box-large {
    background-color: white;
    color:#10502b;
    padding: 10px 8px 10px 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #539452;
    width: 100%;
}

.conclusion-box-large::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 72%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #539452;
    transform: translateX(calc(-50% + var(--text-offset, 0px)));
    z-index: 1;
}

.conclusion-box-large p {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.savings-amount {
    color: #10502b;
    font-weight: 900;
    /* font-size: 12px; */
    background-color: #f9f3c5;
}
.savings-amount-text {
    font-size: 20px;
    color: #ff8326;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    position: relative;
    display: inline-block;
}



.savings-triangle {
    display: none;
}
.savings-amount-number{
    color: #10502b;
    font-size: 20px;
}
.conclusion-arrow-up {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-arrow-up svg {
    width: 100%;
    height: 100%;
}

.conclusion-arrow-up svg path {
    stroke: #4CAF50;
    stroke-width: 2.5;
}

/* Disclaimer */
.comparison-disclaimer {
    text-align: right;
    font-size: 10px;
    color: black;
    /* margin: 16px 0 0 0; */
    line-height: 1.5;
    font-weight: bold;
}

/* Responsive Design for Comparison Table Section */
/* @media (max-width: 425px) {
    .comparison-table-content {
        width: 100%;
        max-width: 100%;
    }

    .comparison-table-section {
        padding: 32px 12px;
    }

    .comparison-header {
        gap: 8px;
    }

    .header-square {
        width: 20px;
        height: 20px;
    }

    .header-text {
        font-size: 12px;
    }

    .comparison-table {
        padding: 16px 12px;
        width: 100%;
        max-width: 100%;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .table-label {
        font-size: 12px;
        padding-top: 0;
        margin-bottom: 8px;
    }

    .cell-after {
        border-left: none;
        border-top: 2px solid #E0E0E0;
        padding-left: 0;
        padding-top: 12px;
        width: 50vw !important;
    }

    .cell-label {
        font-size: 10px;
    }

    .cell-value {
        font-size: 16px;
    }

    .cell-breakdown {
        padding: 10px;
        margin-top: 8px;
    }

    .breakdown-item {
        font-size: 10px;
    }

    .down-arrow-icon {
        width: 28px;
        height: 28px;
    }

    .conclusion-arrow {
        width: 20px;
        height: 20px;
    }

    .conclusion-box {
        padding: 14px 20px;
    }

    .conclusion-box p {
        font-size: 14px;
    }

    .conclusion-box-large {
        padding: 14px 20px 14px 20px;
    }

    .conclusion-box-large p {
        font-size: 14px;
    }

    .conclusion-arrow-up {
        right: 8px;
        width: 16px;
        height: 16px;
    }

    .comparison-disclaimer {
        font-size: 9px;
        margin: 12px 0 0 0;
    }
} */

/* Property Rent Increase List Section */
.rent-increase-section {
    width: 100%;
    padding: 40px 16px;
    background-color: white;
}
.pt-0{
    padding-top: 0px;
}
.rent-increase-content {
    max-width: 100%;
    background-color: #fff;
    border: 10px solid #ddeddd;
    padding: 20px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.rent-increase-list {
    display: flex;
    flex-direction: column;
}

.rent-increase-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #E0E0E0;
}

.rent-increase-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.property-name {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    flex: 1;
    line-height: 1.5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.rent-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 16px;
    justify-content: center;
    position: relative;
}

.amount-value {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 2px;
    line-height: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.amount-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FFEB3B;
    opacity: 0.6;
}

.amount-unit {
    font-size: 10px;
    color: #333;
    margin: 0;
    line-height: 1;
    text-align: right;
    position: absolute;
    top: 100%;
    right: -10px;
    margin-top: 4px;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background-color: #1a1a1a;
}

/* Red Header Section */
.footer-red-header {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.footer-red-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scale(0);
    transform-origin: center;
    opacity: 1;
    z-index: 0;
}
.footer-red-header.animate-bg::before {
    animation: footerRedReveal 0.5s ease-out forwards;
}
.footer-red-header > * {
    position: relative;
    z-index: 1;
}

@keyframes footerRedReveal {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.footer-banner-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin: 0;
    white-space: wrap;
    letter-spacing: -0.3px;
    background: #d71e1b;
    width: 100%;
    padding: 5px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-banner-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    background: white;
}

.footer-interview-button {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.footer-amazon-button {
    width: 35%;
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    background-color: #fff;
    padding: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.footer-interview-button {
    width: 65%;
    flex: 0 0 65%;
    min-height: 48px;
}

/* .footer-amazon-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

.footer-interview-button:hover {
    transform: scale(1.02);
}

.footer-amazon-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-interview-button:active {
    transform: scale(0.98);
}

.footer-amazon-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-amazon-text {
    font-size: 24px;
    font-weight: 600;
    color: #1d223a;
    letter-spacing: 0px;
    text-transform: lowercase;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.footer-amazon-image {
    width: auto;
    height: auto;
    max-width: 80px;
    max-height: 20px;
    display: block;
    
}

.footer-interview-button {
    background-color: #fff;
    border: 2px solid #E60012;
    justify-content: space-between;
    padding: 12px 16px;
    background: #d71e1b;
}

.footer-button-text {
    color: white;
    font-weight: 700;
    font-size: 24px;
    flex: 1;
}

.footer-interview-play-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d71e1b;
}

.footer-play-circle {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-play-triangle {
    width: 0;
    height: 0;
    border-left: 8px solid red;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

/* Dark Section */
.footer-dark-section {
    background-color: #231815;
    padding: 32px 16px 24px;
    color: #fff;
}

/* Footer Logo */
.footer-logo {
    margin-bottom: 0;
}

.footer-logo-text {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

/* Company Information */
.footer-company-info {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-company-name {
    font-size: 14px;
    /* font-weight: 600; */
    margin: 0 0 0px 0;
    color: #fff;
}
.footer-address-bold{
    margin-left: 8px;
}

.footer-address {
    font-size: 12px;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.6;
    display: flex;
    align-items: baseline;
}

.footer-address-bold {
    margin-left: 8px;
    display: inline-block;
}

.footer-building {
    font-size: 12px;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.6;
    display: flex;
    align-items: baseline;
}

.footer-building::before {
    content: '住所 ';
    visibility: hidden;
    display: inline-block;
    margin-right: 8px;
}

.footer-phone {
    font-size: 12px;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.6;
    display: flex;
    align-items: baseline;
}

.footer-phone-label {
    display: inline-block;
    width: calc(2em + 8px);
}

.footer-phone-bold {
    display: inline-block;
}

/* License Numbers */
.footer-licenses {
    margin-bottom: 32px;
}

.footer-license {
    font-size: 14px;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.6;
}
.footer-company-name-bold {
    padding-left: 15px;
}
/* Green Call-to-Action Section */
.footer-cta-section {
    background-color: #35b256;
    border-radius: 13px;
    padding: 9px 24px;
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.footer-cta-section:hover {
    background-color: #2d9a47;
    transform: scale(1.02);
}

.footer-cta-section:active {
    transform: scale(0.98);
}

.footer-cta-section:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.footer-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-cta-text {
    font-size: 17px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.footer-cta-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    pointer-events: none;
}

.footer-cta-label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.footer-cta-arrow {
    width: 20px;
    height: 20px;
}

.footer-cta-play-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-circle {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    filter: blur(0.5px);
    position: relative;
}

.play-button-triangle {
    width: 0;
    height: 0;
    border-left: 16px solid #2d5a3d;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
    filter: blur(0.3px);
}

/* Disclaimer Section */
.footer-disclaimer {
    margin-bottom: 0;
}

.footer-disclaimer-text {
    font-size: 11px;
    color: white;
    line-height: 1.8;
    margin: 0;
    letter-spacing: -0px;
}
.footer-license-bold{
    padding-left: 15px;
}
/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 16px;
    text-align: left;
    margin-bottom: 10px;
}

.footer-copyright p {
    font-size: 11px;
    color: white;
    margin: 0;
}
.banner-text-bold{
    font-size: 11px;
}
.footer-banner-text-bold {
    font-size: 11px;
    color: rgb(240, 232, 100);
    letter-spacing: -0.5px;
}

.footer-highlight-amount {
    font-size: 16px;
    font-weight: 900;
    color: rgb(240, 232, 100);
    letter-spacing: -0.3px;
}

.footer-highlight-amount-number {
    font-size: 27px;
    letter-spacing: -0.5px;
}

.footer-highlight-text {
    font-size: 15px;
    letter-spacing: -0.5px;
}

.seiyaku-full-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Responsive Design for Footer Section */
/* @media (max-width: 425px) {
    .footer-red-header {
        padding: 16px 12px;
    }

    .footer-banner-text {
        font-size: 12px;
    }

    .footer-highlight-amount {
        font-size: 18px;
    }

    .footer-amazon-button,
    .footer-interview-button {
        padding: 10px 12px;
        font-size: 12px;
    }

    .footer-amazon-text {
        font-size: 12px;
    }

    .footer-amazon-arrow {
        width: 18px;
        height: 18px;
    }

    .footer-button-text {
        font-size: 12px;
    }

    .footer-play-circle {
        width: 20px;
        height: 20px;
    }

    .footer-play-triangle {
        border-left-width: 7px;
        border-top-width: 4px;
        border-bottom-width: 4px;
        margin-left: 1px;
    }

    .footer-dark-section {
        padding: 24px 12px 20px;
    }

    .footer-logo-text {
        font-size: 40px;
    }

    .footer-company-name {
        font-size: 12px;
    }

    .footer-address,
    .footer-building,
    .footer-phone {
        font-size: 11px;
    }

    .footer-license {
        font-size: 10px;
    }

    .footer-cta-section {
        padding: 16px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-cta-content {
        width: 100%;
    }

    .footer-cta-text {
        font-size: 12px;
    }

    .footer-cta-label {
        font-size: 16px;
    }

    .footer-cta-arrow {
        width: 18px;
        height: 18px;
    }

    .footer-cta-play-button {
        align-self: flex-end;
    }

    .play-button-circle {
        width: 48px;
        height: 48px;
    }

    .play-button-triangle {
        border-left-width: 14px;
        border-top-width: 8px;
        border-bottom-width: 8px;
        margin-left: 3px;
    }

    .footer-disclaimer-text {
        font-size: 9px;
    }

    .footer-copyright p {
        font-size: 9px;
    }
} */
.fixed-table{
    display: flex;
    font-size: 12px;
    border: 2px solid #E0E0E0;
    text-align: center;
}
.table-fixed-row{
    display: flex;
}
.fixed-table-item{
    padding: 4px;
    display: flex;
    width: 50%;
}
.fixed-table-item span{
    margin: auto;
}
.fixed-table-item-after{
    border-left: 2px solid #E0E0E0;
}
.fixed-table-item-value{
    font-weight: bold;
}
.fixed-table-item-value-number{
    font-size: 14px;
}

/* ========================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   ======================================== */

/* Tablet Breakpoints (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Landing Section */
    .content-overlay {
        max-width: 600px;
        padding: 50px 30px;
    }
    
    /* New Hero Text Section */
    .new-hero-text-section {
        max-width: 600px;
        padding: 50px 30px;
        width: 90%;
    }
    
    .new-hero-red-banner {
        width: 90%;
        max-width: 600px;
    }
    
    .main-title {
        font-size: clamp(28px, 3vw, 36px);
    }
    
    /* Red Banner */
    .red-banner {
        padding: 20px 24px;
    }
    
    .banner-text {
        font-size: clamp(14px, 1.5vw, 18px);
    }
    
    /* Comparison Boxes */

    
    .comparison-box {
        padding: 16px;
    }
    
    /* Tables */
    .comparison-table {
        padding: 20px;
    }
    
    .table-row {
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials-container {
        padding: 32px 24px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 28px 24px;
    }
    
    /* Strengths Stats */
    .strengths-stats-container {
        gap: 16px;
    }
    
    .strengths-stats-box {
        padding: 28px 20px;
    }
    
    .stats-property-details-content {
        padding: 24px 20px;
    }
    
    /* Sections padding */
    .reasons-section,
    .comparison-section,
    .syns-strengths-section,
    .guarantee-section,
    .financing-section,
    .testimonials-section {
        padding: 60px 32px;
    }
    
    /* Footer */
    .footer-red-header {
        /* padding: 32px 40px; */
    }
    
    .footer-dark-section {
        padding: 48px 40px;
    }
}

/* Desktop Breakpoints (1024px - 1279px) */

/* Large Desktop Breakpoints (>= 1280px) */


/* Landscape Orientation Optimizations */
@media (orientation: landscape) and (max-height: 600px) {
    .landing-section {
        height: auto;
        min-height: 100vh;
    }
    
    .content-overlay {
        position: relative;
        transform: none;
        top: 35px;
        left: auto;
        margin: 40px auto;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders and shadows */
    .comparison-table,
    .result-box,
    .testimonial-card {
        border-width: 0.5px;
    }
}

/* Print Styles */
@media print {
    .page-wrapper {
        max-width: 100%;
    }
    
    .red-banner,
    .footer-red-header,
    .banner-buttons,
    .footer-banner-buttons,
    .testimonial-nav-arrow,
    .testimonial-pagination {
        display: none;
    }
    
    .comparison-table,
    .testimonial-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
.banner-highlight-text{
    font-size: 25px;
    margin: auto;
    color: white;
}
.banner-highlight-yellow{
    /* font-size: 40px; */
    margin: auto;
    color: #f4d74e;
    font-weight: bold;

}
.banner-highlight-content{
    font-size: 30px;
    margin: auto;
    color: white;
    font-weight: bold;
}
.stat-underline{
    width: 96%;
    height: 6px;
    background-color: #fff492;
    transform: translateY(-4px);
}
.pb-0{
    padding-bottom: 0px;
}
.stat-data{
    padding: 14px;
    padding-top: 0px;
}
.stat-date p{
    font-size: 20px;
    font-weight: bold;
}
.vacancy-days-unit{
    font-size: 27px;
}
.comparison-box-content{
    background-color: white;
    border : 2px solid #72bec1;
    padding: 4px;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 2px;
}

@media screen and (max-width: 1500px) {
    .strengths-explanation{
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .price-unit{
        font-size: clamp(14px, 5vw, 24px);
        color: #2d5a3d;
        font-weight: 500;
        text-align: center;
        margin-top: auto !important;
    }
    .comparison-header {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }
    .comparison-badge {
        top: 40px;
        left: 81%;
        transform: translateX(-50%);
    }
    .building-image,
    .building-images {
        height: 100px;
    }
    .property-illustration{
        width: 40vw;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 0px 16px;
    }
    .comparison-boxes {
        gap: 16px;
    }
    .box-title {
        font-size: 20px;
    }
    .box-price {
        font-size: 20px;
    }
    .feature-text {
        font-size: 14px;
    }
    .building-image,
    .building-images {
        height: 120px;
    }
    .comparison-conclusion {
        padding: 12px 8px;
        padding-top: 0px;
    }
    .conclusion-line1,
    .conclusion-line2,
    .conclusion-line3 {
        font-size: 0.8rem;
        font-weight: bold;
    }
}

.comparison-yellow-box-content{
    background-color: white !important;
    border : 2px solid #ffba4b;
    padding: 5px;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
/* Ultra-small devices (320px–424px): tighten spacing and scale text/images */


.grey-text{
    color: #6a6a6a;
}

.comparison-conclusion .highlight-red.grey-text,
.comparison-conclusion .highlight-red:not(.grey-text) {
    font-size: 1.15em;
}
.green-unit{
    color: #2e7f2b;
    font-size: 12px;
}

.fukuoka-box .box-features .yellow-bg-text {
    background-color: #ffe98a;
}

@media (max-width : 2000px) and (min-width : 1300px){
    .key-points-column{
        margin-top: 50px;
    }
    .property-illustration{
        width: 30vw;
    }
    .content-overlay{
        width: 40%;
        max-width: 50%;
    }
    .strong-point-label{
        min-height: 803px;
    }
    .left{
        margin-left: auto;
    }
    .right{
        margin-right: auto;
    }
    .tagline{
        text-align: center;
    }
    .m-0{
        margin: 0px;
    }
    .price-box{
        text-align: center;
        place-content: center;
    }
    .footer-banner-buttons{
        /* width: 100%; */
        padding: 30px 200px;
    }
    .new-hero-red-banner .footer-banner-buttons{
        padding: 10px 16px;
    }
    .footer-banner-text-bold {
        font-size: 16px;
    }
    .rent-text{
        font-size: 80px;
    }
    .footer-highlight-amount {
        font-size: 21px;
    }
    .up-arrow-image{
        height: 80px;
    }
    .rate-label, .rate-value{
        font-size: 45px;
    }
    .rate-disclaimer{
        font-size: 30px;
    }
    .footer-highlight-amount-number {
        font-size: 32px;
    }
    
    .footer-highlight-text {
        font-size: 20px;
    }
    
    .seiyaku-full-image {
        max-width: 500px;
    }
    .intro-text{
        font-size: 60px;
    }
    .video-container{
        width: clamp(320px, 75%, 1200px);
    }
    .video-section {
        padding-bottom: 100px;
    }
    .list-label{
        font-size: 45px;
    }
    .total-amount{
        font-size: 60px;
    }
    .total-label{
        font-size: 34px;
    }
    .total-unit{
        font-size: 34px;
    }
    .total-increase{
        margin-top: 20px;
    }
    .reason-title{
        font-size: 60px;
    }
    .reason-label{
        font-size: 40px;
    }
    .reasons-content {
        background-color: white;
        padding: 24px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 60px;
    }
    
    /* Section Heading */
    .section-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .section-number {
        width: 50px;
        height: 50px;
        
        font-size: 40px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 40px;
      
    }
    .promo-header-svg{
        height: 40%;
    }
    /* Chart Container */
    .chart-container {
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .chart-title {
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: flex-end;
        text-align: right;
        align-items: flex-end;
    }
    
    .chart-main-title {
        font-size: 30px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .chart-subtitle {
        font-size: 25px;
        margin-left: 400px;
        /* margin-right: auto; */
    }
    .rank-first{
        font-size: 30px;
    }
    .chart-scale {
        display: flex;
        justify-content: space-between;
        font-size: clamp(9px, 2.5vw, 10px);
        color: #666;
        margin-bottom: 8px;
        padding: 0 4px;
    }
    
    .chart-bars-left{
        gap: 6px; /* Match chart-bars-right gap */
        padding-top: 7px; /* Match chart-bars-right padding-top */
    }
    .bar-value{
        font-size: 30px;
    }
    .winner-bar-value{
        font-size: 40px;
        transform: translateX(30%);
        font-variant-numeric: tabular-nums;
        letter-spacing: 0;
        min-width: 100px;
        display: inline-block;
        text-align: left;
    }
    
    .chart-bars-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        padding-left: 16px;
        padding-top: 7px;
        height: fit-content;
    }
    .chart-bars{
        gap: 30px;
    }
    .bar{
        height: 30px;
    }
    .bar-wrapper{
        height: 40px;
    }
    .chart-bars-right .bar-wrapper{
        height: 40px;
    }
    .comparison-content{
        padding: 60px;
    }
    /* Ensure all bar-items align with their corresponding bar-wrappers */
    .chart-bars-left .bar-item {
        height: 40px;
        min-height: 40px;
    }

    .city-name.rank-first {
        font-size: 30px;
    }
    .rank, .city-label{
        font-size: 28px;
    }
    .reasons-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .comparison-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .yield-comparison-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .chart-axis-label{
        font-size: 20px;
    }
    .axis-label-50000 { left: clamp(60px, 20vw, 70px); }
    .axis-label-60000 { left: clamp(85px, 28vw, 100px); }
    .axis-label-70000 { left: clamp(110px, 36vw, 130px); }
    .axis-dotted-1 { left: clamp(420px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
    .axis-dotted-2 { left: clamp(540px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
    .axis-dotted-3 { left: clamp(660px, 36vw, 170px); } /* 70,000 endpoint */
    .axis-label-50000 { left: clamp(420px, 20vw, 90px); } /* Matches axis-dotted-1 */
    .axis-label-60000 { left: clamp(540px, 28vw, 130px); } /* Matches axis-dotted-2 */
    .axis-label-70000 { left: clamp(660px, 36vw, 170px); } /* Matches axis-dotted-3 */
    .chart-axis-label{
        top: -36px;
    }
    .chart-second-bar{
        left: 50px;
    }
    .chart-no1-badge{
        max-width: 200px;
        max-height:130px;
        width: 200px;
    }
    .stats-bar{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .stat-label{
        font-size: 25px;
    }
    .stat-number{
        font-size: 40px;
    }
    .stat-period{
        font-size: 25px;
    }
    .stat-item{
        flex: unset;
        gap:30px;
        margin: auto;
    }
    .section-number-02 {
        width: 50px;
        height: 50px;
        font-size: 40px;
    }
    
    .comparison-title {
        font-size: 40px;
    }
    .conclusion p{
        font-size: 20px;
    }
    .box-price{
        font-size: 4rem;
    }
    .building-image.tokyo-building{
        height: 200px;
    }
    .comparison-yellow-box-content .building-images{
        height: 200px;
    }
    .building-image{
        width: 100%;
    }
    .feature-text{
        font-size: 28px;
    }
    .conclusion-line1{
        font-size: 30px;
    }
    .conclusion-line2{
        font-size: 30px;
    }
    .highlight-orange{
        font-size: 3.5rem;
    }
    .comparison-badge{
        left: 53%;
    }
    .yield-section-number {
        width: 50px;
        height: 50px;
        font-size: 40px;

    }
   
    .yield-title {
        font-size: 40px;
    }
    .property-label{
        font-size: 35px;
    }
    .property-detail{
        font-size:30px;
    }
    .key-points-label{
        font-size: 36px;
        padding: 10px 4px;
    }
    .key-points-title{
        font-size: 28px !important;
    }
    .key-points-subtitle{
        font-size: 28px;
    }
    .key-points-conclusion p{
        font-size: 20px;
    }
    .explanation-text{
        font-size: 44px;
    }
    .explanation-conclusion{
        font-size: 30px;
    }
    .cityscape-container{
        height: 100vh;
    }
    .mechanism-title{
        font-size: 60px;
    }
    .mechanism-subtitle{
        font-size: 20px;
    }
    .mechanism-content{
        max-width: unset;
    }
    .diagram-oval{
        width: 100%;
    }
    .strong-point-label span{
        font-size: 30px;
    }
    .strengths-title{
        font-size: 60px;
    }
    .syns-strengths-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .explanation-line1{
        font-size: 20px;
    }
    .explanation-line2{
        font-size: 20px;
    }
    .power-text-block{
        padding-left: 200px;
        padding-right: 200px;
    }
    .power-text-line{
        font-size: 23px;
    }
    .banner-text-white{
        font-size: 40px;
    }
    .banner-power-label{
        font-size: 40px;
    }
    .vacancy-label{
        font-size: 60px;
        margin: unset;
    }
    .stats-criteria-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .criteria-banner span{
        font-size: 30px;
    }
    .criterion-text{
        font-size: 30px;
    }
    .building-illustration-wrapper{
        right: 15%;
    }
    .guarantee-header{

    }
    .guarantee-number {
        width: 50px;
        height: 100%;
        font-size: 40px;
    }
    .footer-amazon-image{
        max-width: 94px;
        max-height: 30px;
    }
    .guarantee-title {
        font-size: 35px;
    }
    .guarantee-illustration{
        min-height: 300px;
    }
    .guarantee-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .appliances-container{
        min-height: 300px;
    }
    .conditioner1-image{
        height: 100%;
    }
    .conditioner-image{
        width: 100%;
        height: 100%;
    }
    .air-conditioner-unit{
        min-width: 300px;
    }
    .guarantee-line{
        font-size: 20px;
    }
    .guarantee-highlight{
        font-size: 30px;
    }
    .guarantee-subtext{
        font-size: 30px;
    }
    .footer-red-header{
        /* padding-left: 200px; */
        /* padding-right: 200px; */
    }
    .banner-text-financing {
        font-size: 40px;
    }
    .planning-banner span{
        font-size: 40px;
    }
    .planning-text{
        font-size: 30px;
    }
    .financing-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .testimonials-container{
        padding-left: 200px;
        padding-right: 200px;
    }
    .testimonials-label{
        font-size: 25px;
    }
    .testimonials-subtitle{
        font-size: 25px;
    }
    .testimonial-card{
        font-size: 20px;
    }
    .customer-quote{
        font-size: 30px;
    }
    .customer-tag{
        font-size: 20px;
    }
    .customer-photo{
        width: 100px;
    }
    .customer-detail{
        font-size: 20px;
    }
    .qa-question{
        font-size: 22px;
    }
    .qa-answer{
        font-size: 20px;
    }
    .customer-info{
        place-content: center;
    }
    .customer-photo{
        width: 180px;
    }
    .banner-slash-left{
        font-size: 80px;
    }
    .banner-slash-right{
        font-size: 80px;
    }
    .banner-text-green{
        font-size: 2.5rem;
    }
    .banner-text-red{
        font-size: 4rem;
    }
    .promo-middle{
        padding-left: 200px;
        padding-right: 200px;
    }
    .promo-subtitle{
        font-size: 30px;
    }
    .main-point-highlight{
        font-size: 60px;
    }
    .promo-bottom{
        padding-left: 200px;
        padding-right: 200px;
    }
    .plus-text{
        font-size: 30px;
    }
    .plus-sign{
        font-size: 30px;
    }
    .explanation-line{
        font-size: 30px;
    }
    .dakarakoso-text{
        font-size: 2rem;
    }
    .recommendation-line1{
        font-size: 2.5rem;
    }
    .recommendation-line2{
        font-size: 2.5rem;
    }
    .recommendation-line3{
        font-size: 2.5rem;
    }
    .simulation-label{
        font-size: 30px;
    }
    .simulation-title{
        font-size: 40px;
    }
    .simulation-subtitle{
        font-size: 25px;
    }
    .yield-content{
        padding: 60px;
    }
    .income-list{
        padding-left: 200px;
        padding-right: 200px;
    }
    .income-label{
        font-size:25px;
    }
    .income-amount{
        font-size: 26px;
    }

    .fixed-table{
        font-size: 30px;
    }
    .fixed-table-item-value-number{
        font-size: 45px;
    }
    .rent-increase-section{
        padding-left: 300px;
        padding-right: 300px;
    }
    .property-name{
        font-size: 25px;
    }
    .header-square{
        width: 30px;
        height: 30px;
    }
    .header-text{
        font-size: 30px;
    }
    .conclusion-box-large p{
        font-size: 25px;
    }
    .savings-amount-text{
        font-size: 25px;
    }
    .savings-amount{
        font-size: 17px;
    }
    .savings-amount-number{
        font-size: 24px;
    }
    .cell-label{
        font-size: 25px;
        height: 50px;
    }
    .table-row{
        grid-template-columns : 98px 1.5fr 2fr;
    }
    .table-label{
        font-size: 16px;
    }
    .breakdown-item{
        font-size: 25px;
    }
    .cell-value {
        font-size: 25px;
    }
    .cell-uint{
        font-size: 15px;
    }
    .comparison-disclaimer{
        font-size: 15px;
    }
    .footer-dark-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .footer-disclaimer-text{
        font-size: 14px;
    }
    .footer-copyright p{
        font-size: 14px;
    }
    .amount-unit{
        font-size: 15px;
    }
    .amount-value{
        font-size: 25px;
    }
    .intro-slash-left{
        height: 70px;
    }
    .intro-slash-right{
        height: 70px;
    }
    .stat-value-large-date{
        font-size: 80px;
    }
    .stat-value-large {
        font-size: 80px;
    }
    .stat-value-large .stat-int {
        font-size: 90px;
    }
    .stat-value-large .stat-frac {
        font-size: 70px;
    }
    .stat-label-underlined .underline-highlight {
        font-size: 36px;
    }
}
@media (max-width : 1300px) and (min-width : 1024px){
    
    .content-overlay{
        width: 70%;
        max-width: 60%;
    }
    .strong-point-label{
        min-height: 603px;
    }
    .left{
        margin-left: auto;
    }
    .right{
        margin-right: auto;
    }
    .tagline{
        text-align: center;
    }
    .m-0{
        margin: 0px;
    }
    .price-box{
        text-align: center;
        place-content: center;
    }
    .footer-banner-buttons{
        /* width: 40%; */
        padding: 15px 60px;
    }
    .footer-red-header{
        /* padding: 30px; */
    }
    .footer-banner-text-bold {
        font-size: 16px;
    }
    
    .footer-highlight-amount {
        font-size: 21px;
    }
    
    .footer-highlight-amount-number {
        font-size: 32px;
    }
    
    .footer-highlight-text {
        font-size: 25px;
    }
        .seiyaku-full-image {
        max-width: 400px;
    }
    .intro-text{
        font-size: 40px;
    }
    .video-container{
        width: clamp(320px, 75%, 1200px);
    }
    .video-section {
        padding-bottom: 100px;
    }
    .reason-title{
        font-size: 60px;
    }
    .reason-label{
        font-size: 20px;
    }
    .reasons-content {
        background-color: white;
        padding: 24px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Section Heading */
    .section-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .section-number {
        width: 45px;
        height: 45px;
        
        font-size: 35px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 35px;
      
    }
    
    /* Chart Container */
    .chart-container {
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .chart-title {
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: flex-end;
        text-align: right;
        align-items: flex-end;
    }
    
    .chart-main-title {
        font-size: 30px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .chart-subtitle {
        font-size: 20px;
        /* margin-right: auto; */
    }
    .rank-first{
        font-size: 30px;
    }
    .chart-scale {
        display: flex;
        justify-content: space-between;
        font-size: clamp(9px, 2.5vw, 10px);
        color: #666;
        margin-bottom: 8px;
        padding: 0 4px;
    }
    
    .chart-bars-left{
        gap: 6px; /* Match chart-bars-right gap */
        padding-top: 7px; /* Match chart-bars-right padding-top */
    }
    .chart-bars-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        padding-left: 16px;
        padding-top: 7px;
        height: fit-content;
    }
    .chart-bars{
        gap: 30px;
    }
    .bar{
        height: 20px;
    }
    .bar-wrapper{
        height: 40px;
    }
    .chart-bars-right .bar-wrapper{
        height: 40px;
    }
    
    /* Ensure all bar-items align with their corresponding bar-wrappers */
    .chart-bars-left .bar-item {
        height: 40px;
        min-height: 40px;
    }

    .city-name.rank-first {
        font-size: 30px;
    }
    .rank, .city-label{
        font-size: 28px;
    }
    .reasons-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .comparison-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .yield-comparison-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .chart-axis-label{
        font-size: 20px;
    }
    .axis-label-50000 { left: clamp(60px, 20vw, 70px); }
    .axis-label-60000 { left: clamp(85px, 28vw, 100px); }
    .axis-label-70000 { left: clamp(110px, 36vw, 130px); }
    .axis-dotted-1 { left: clamp(130px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
    .axis-dotted-2 { left: clamp(250px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
    .axis-dotted-3 { left: clamp(370px, 36vw, 170px); } /* 70,000 endpoint */
    .axis-label-50000 { left: clamp(130px, 20vw, 90px); } /* Matches axis-dotted-1 */
    .axis-label-60000 { left: clamp(250px, 28vw, 130px); } /* Matches axis-dotted-2 */
    .axis-label-70000 { left: clamp(370px, 36vw, 170px); } /* Matches axis-dotted-3 */
    .chart-axis-label{
        top: -36px;
    }
    .chart-second-bar{
        left: 30px;
    }
    .chart-no1-badge{
        max-width: 100px;
        max-height: 100px;
    }
    .stats-bar{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .stat-label{
        font-size: 25px;
    }
    .stat-number{
        font-size: 40px;
    }
    .stat-period{
        font-size: 25px;
    }
    .stat-item{
        flex: unset;
        gap:30px;
        margin: auto;
    }
    .section-number-02 {
        width: 45px;
        height: 45px;
        font-size: 35px;
    }
    
    .comparison-title {
        font-size: 35px;
    }
    .conclusion p{
        font-size: 20px;
    }
    .box-price{
        font-size: 3.4rem;
    }
    .building-image.tokyo-building{
        height: 200px;
    }
    .comparison-yellow-box-content .building-images{
        height: 200px;
    }
    .building-image{
        width: 100%;
    }
    .feature-text{
        font-size: 20px;
    }
    .conclusion-line1{
        font-size: 30px;
    }
    .conclusion-line2{
        font-size: 30px;
    }
    .highlight-orange{
        font-size: 30px;
    }
    .comparison-badge{
        left: 60%;
    }
    .yield-section-number {
        width: 50px;
        height: 50px;
        font-size: 40px;

    }
    .display-flex-425{
        padding-top: 10px !important;
    }
    .yield-title {
        font-size: 40px;
    }
    .property-label{
        font-size: 30px;
    }
    .property-detail{
        font-size: 20px;
    }
    .key-points-label{
        font-size: 20px;
    }
    .key-points-title{
        font-size: 20px;
    }
    .key-points-subtitle{
        font-size: 20px;
    }
    .key-points-conclusion p{
        font-size: 20px;
    }
    .explanation-text{
        font-size: 30px;
    }
    .explanation-conclusion{
        font-size: 30px;
    }
    .cityscape-container{
        height: 100vh;
    }
    .mechanism-title{
        font-size: 60px;
    }
    .mechanism-subtitle{
        font-size: 20px;
    }
    .mechanism-content{
        max-width: unset;
    }
    .diagram-oval{
        width: 100%;
    }
    .strong-point-label span{
        font-size: 30px;
    }
    .strengths-title{
        font-size: 60px;
    }
    .syns-strengths-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .explanation-line1{
        font-size: 19px;
    }
    .explanation-line2{
        font-size: 19px;
    }
    .power-text-block{
        padding-left: 100px;
        padding-right: 100px;
    }
    .power-text-line{
        font-size: 20px;
    }
    .banner-text-white{
        font-size: 40px;
    }
    .banner-power-label{
        font-size: 40px;
    }
    .vacancy-label{
        font-size: 60px;
    }
    .stats-criteria-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .criteria-banner span{
        font-size: 30px;
    }
    .criterion-text{
        font-size: 30px;
    }
    .building-illustration-wrapper{
        right: 15%;
    }
    .guarantee-header{

    }
    .guarantee-number {
        width: 50px;
        height: 100%;
        font-size: 40px;
    }
    
    .guarantee-title {
        font-size: 35px;
    }
    .guarantee-illustration{
        min-height: 300px;
    }
    .guarantee-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .appliances-container{
        min-height: 300px;
    }
    .conditioner1-image{
        height: 100%;
    }
    .conditioner-image{
        width: 100%;
        height: 100%;
    }
    .air-conditioner-unit{
        min-width: 260px;
    }
    .guarantee-line{
        font-size: 20px;
    }
    .guarantee-highlight{
        font-size: 30px;
    }
    .guarantee-subtext{
        font-size: 30px;
    }
    .banner-text-financing {
        font-size: 40px;
    }
    .planning-banner span{
        font-size: 40px;
    }
    .planning-text{
        font-size: 30px;
    }
    .financing-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .testimonials-container{
        padding-left: 100px;
        padding-right: 100px;
    }
    .testimonials-label{
        font-size: 25px;
    }
    .testimonials-subtitle{
        font-size: 25px;
    }
    .testimonial-card{
        font-size: 20px;
    }
    .customer-quote{
        font-size: 30px;
    }
    .customer-tag{
        font-size: 20px;
    }
    .customer-photo{
        width: 100px;
    }
    .customer-detail{
        font-size: 20px;
    }
    .qa-question{
        font-size: 22px;
    }
    .qa-answer{
        font-size: 20px;
    }
    .customer-info{
        place-content: center;
    }
    .customer-photo{
        width: 180px;
    }
    .banner-slash-left{
        font-size: 80px;
    }
    .banner-slash-right{
        font-size: 80px;
    }
    .banner-text-green{
        font-size: 30px;
    }
    .banner-text-red{
        font-size: 60px;
    }
    .promo-middle{
        padding-left: 100px;
        padding-right: 100px;
    }
    .promo-subtitle{
        font-size: 30px;
    }
    .main-point-highlight{
        font-size: 60px;
    }
    .promo-bottom{
        padding-left: 100px;
        padding-right: 100px;
    }
    .plus-text{
        font-size: 30px;
    }
    .plus-sign{
        font-size: 30px;
    }
    .explanation-line{
        font-size: 30px;
    }
    .dakarakoso-text{
        font-size: 30px;
    }
    .recommendation-line1{
        font-size: 30px;
    }
    .recommendation-line2{
        font-size: 30px;
    }
    .recommendation-line3{
        font-size: 30px;
    }
    .simulation-label{
        font-size: 30px;
    }
    .simulation-title{
        font-size: 40px;
    }
    .simulation-subtitle{
        font-size: 25px;
    }
    .income-list{
        padding-left: 100px;
        padding-right: 100px;
    }
    .income-label{
        font-size:25px;
    }
    .income-amount{
        font-size: 26px;
    }

    .fixed-table{
        font-size: 30px;
    }

    .rent-increase-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .property-name{
        font-size: 25px;
    }
    .header-square{
        width: 30px;
        height: 30px;
    }
    .header-text{
        font-size: 30px;
    }
    .conclusion-box-large p{
        font-size: 25px;
    }
    .savings-amount-text{
        font-size: 25px;
    }
    .savings-amount{
        font-size: 17px;
    }
    .savings-amount-number{
        font-size: 24px;
    }
    .cell-label{
        font-size: 25px;
        height: 50px;
    }
    .table-row{
        grid-template-columns : 98px 1.5fr 2fr;
    }
    .table-label{
        font-size: 16px;
    }
    .breakdown-item{
        font-size: 25px;
    }
    .cell-value {
        font-size: 25px;
    }
    .cell-uint{
        font-size: 15px;
    }
    .comparison-disclaimer{
        font-size: 15px;
    }
    .footer-dark-section{
        padding-left: 200px;
        padding-right: 200px;
    }
    .footer-disclaimer-text{
        font-size: 14px;
    }
    .footer-copyright p{
        font-size: 14px;
    }
    .amount-unit{
        font-size: 15px;
    }
    .amount-value{
        font-size: 25px;
    }
    .intro-slash-left{
        height: 70px;
    }
    .intro-slash-right{
        height: 70px;
    }
    .main-title{
        font-size: clamp(20px, 5vw, 28px);
    }
    .main-subtitle{
        font-size: clamp(40px, 12vw, 70px);
    }
    .fixed-table-item-value-number{
        font-size: 36px;
    }
}
@media (max-width : 1024px) and (min-width : 768px){
    .content-overlay{
        width: 70%;
        max-width: 60%;
    }
    .left{
        margin-left: auto;
    }
    .right{
        margin-right: auto;
    }
    .tagline{
        text-align: center;
    }
    .m-0{
        margin: 0px;
    }
    .price-box{
        text-align: center;
        place-content: center;
    }
    .footer-banner-buttons{
        /* width: 60%; */
        padding: 10px 40px;
    }
    .footer-red-header{
        /* padding: 30px; */
    }
    .footer-banner-text-bold {
        font-size: 16px;
    }
    
    .footer-highlight-amount {
        font-size: 21px;
    }
    
    .footer-highlight-amount-number {
        font-size: 32px;
    }
    
    .footer-highlight-text {
        font-size: 25px;
    }
    .seiyaku-full-image {
        max-width: 400px;
    }
    .intro-text{
        font-size: 40px;
    }
    .video-container{
        width: clamp(320px, 75%, 1200px);
    }
    .video-section {
        padding-bottom: 100px;
    }
    .reason-title{
        font-size: 40px;
    }
    .reason-label{
        font-size: 20px;
    }
    .reasons-content {
        background-color: white;
        padding: 24px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Section Heading */
    .section-heading {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .section-number {
        width: 35px;
        height: 35px;
        
        font-size: 25px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 25px;
      
    }
    
    /* Chart Container */
    .chart-container {
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .chart-title {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: flex-end;
        text-align: right;
        align-items: flex-end;
    }
    
    .chart-main-title {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .chart-subtitle {
        font-size: 15px;
        /* margin-right: auto; */
    }
    .rank-first{
        font-size: 30px;
    }
    .chart-scale {
        display: flex;
        justify-content: space-between;
        font-size: clamp(9px, 2.5vw, 10px);
        color: #666;
        margin-bottom: 8px;
        padding: 0 4px;
    }
    
    .chart-bars-left{
        gap: 4px; /* Match chart-bars-right gap */
        padding-top: 7px; /* Match chart-bars-right padding-top */
    }
    .chart-bars-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        padding-left: 16px;
        padding-top: 7px;
        height: fit-content;
    }
    .chart-bars{
        gap: 30px;
    }
    .bar{
        height: 20px;
    }
    .bar-wrapper{
        height: 40px;
    }
    .chart-bars-right .bar-wrapper{
        height: 30px;
    }
    
    /* Ensure all bar-items align with their corresponding bar-wrappers */
    .chart-bars-left .bar-item {
        height: 30px;
        min-height: 30px;
    }

    .city-name.rank-first {
        font-size: 21px;
    }
    .rank, .city-label{
        font-size: 20px;
    }
    .reasons-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .comparison-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .yield-comparison-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .chart-axis-label{
        font-size: 20px;
    }
    .axis-label-50000 { left: clamp(60px, 20vw, 70px); }
    .axis-label-60000 { left: clamp(85px, 28vw, 100px); }
    .axis-label-70000 { left: clamp(110px, 36vw, 130px); }
    .axis-dotted-1 { left: clamp(80px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
    .axis-dotted-2 { left: clamp(200px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
    .axis-dotted-3 { left: clamp(320px, 36vw, 170px); } /* 70,000 endpoint */
    .axis-label-50000 { left: clamp(80px, 20vw, 90px); } /* Matches axis-dotted-1 */
    .axis-label-60000 { left: clamp(200px, 28vw, 130px); } /* Matches axis-dotted-2 */
    .axis-label-70000 { left: clamp(320px, 36vw, 170px); } /* Matches axis-dotted-3 */
    .chart-axis-label{
        top: -36px;
    }
    .chart-second-bar{
        left: 30px;
    }
    .chart-no1-badge{
        max-width: 100px;
        max-height: 100px;
    }
    .stats-bar{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .stat-label{
        font-size: 16px;
    }
    .stat-number{
        font-size: 35px;
    }
    .stat-period{
        font-size: 16px;
    }
    .stat-item{
        flex: unset;
        gap:30px;
        margin: auto;
    }
    .section-number-02 {
        width: 35px;
        height: 35px;
        font-size: 25px;
    }
    
    .comparison-title {
        font-size: 25px;
    }
    .conclusion p{
        font-size: 15px;
    }
    .box-price{
        font-size: 2rem;
    }
    .building-image.tokyo-building{
        height: 200px;
    }
    .comparison-yellow-box-content .building-images{
        height: 200px;
    }
    .building-image{
        width: 100%;
    }
    .feature-text{
        font-size: 20px;
    }
    .conclusion-line1{
        font-size: 25px;
    }
    .conclusion-line2{
        font-size: 25px;
    }
    .highlight-orange{
        font-size: 25px;
    }
    .comparison-badge{
        left: 60%;
        top: calc(80px + 24px - 60px);
    }
    .yield-section-number {
        width:35px;
        height: 35px;
        font-size: 25px;

    }
    
    .yield-title {
        font-size: 25px;
    }
    .property-label{
        font-size: 25px;
    }
    .property-detail{
        font-size: 20px;
    }
    .key-points-label{
        font-size: 15px;
    }
    .key-points-title{
        font-size: 15px;
    }
    .key-points-subtitle{
        font-size: 15px;
    }
    .key-points-conclusion p{
        font-size: 28px;
    }
    .explanation-text{
        font-size: 25px;
    }
    .explanation-conclusion{
        font-size: 30px;
    }
    .cityscape-container{
        height: auto;
    }
    .mechanism-title{
        font-size: 40px;
    }
    .mechanism-subtitle{
        font-size: 20px;
    }
    .mechanism-content{
        max-width: unset;
    }
    .diagram-oval{
        width: 100%;
    }
    .strong-point-label span{
        font-size: 20px;
    }
    .strengths-title{
        font-size: 40px;
    }
    .syns-strengths-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .explanation-line1{
        font-size: 19px;
    }
    .explanation-line2{
        font-size: 19px;
    }
    .power-text-block{
        padding-left: 50px;
        padding-right: 50px;
    }
    .power-text-line{
        font-size: 15px;
    }
    .banner-text-white{
        font-size: 35px;
    }
    .banner-power-label{
        font-size: 35px;
    }
    .vacancy-label{
        font-size: 40px;
        margin: unset;
    }
    .stats-criteria-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .criteria-banner span{
        font-size: 25px;
    }
    .criterion-text{
        font-size: 20px;
    }
    .building-illustration-wrapper{
        right: 15%;
    }
    .guarantee-header{

    }
    .guarantee-number {
        width: 50px;
        height: 100%;
        font-size: 25px;
    }
    
    .guarantee-title {
        font-size: 20px;
    }
    .guarantee-illustration{
        min-height: 300px;
    }
    .guarantee-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .appliances-container{
        min-height: 300px;
    }
    .conditioner1-image{
        height: 100%;
    }
    .conditioner-image{
        width: 100%;
        height: 100%;
    }
    .air-conditioner-unit{
        min-width: 120px;
    }
    .guarantee-line{
        font-size: 15px;
    }
    .guarantee-highlight{
        font-size: 25px;
    }
    .guarantee-subtext{
        font-size: 25px;
    }
    .banner-text-financing {
        font-size: 35px;
    }
    .planning-banner span{
        font-size: 35px;
    }
    .planning-text{
        font-size: 20px;
    }
    .financing-section{
        padding-left: 100px;
        padding-right: 100px;
    }
    .testimonials-container{
        padding-left: 50px;
        padding-right: 50px;
    }
    .testimonials-label{
        font-size: 25px;
    }
    .testimonials-subtitle{
        font-size: 20px;
    }
    .testimonial-card{
        font-size: 20px;
    }
    .customer-quote{
        font-size: 20px;
    }
    .customer-tag{
        font-size: 20px;
    }
    .customer-photo{
        width: 100px;
    }
    .customer-detail{
        font-size: 15px;
    }
    .qa-question{
        font-size: 18px;
    }
    .qa-answer{
        font-size: 16px;
    }
    .customer-info{
        place-content: center;
    }
    .customer-photo{
        width: 150px;
    }
    .banner-slash-left{
        font-size: 80px;
    }
    .banner-slash-right{
        font-size: 80px;
    }
    .banner-text-green{
        font-size: 30px;
    }
    .banner-text-red{
        font-size: 60px;
    }
    .promo-middle{
        padding-left: 100px;
        padding-right: 100px;
    }
    .promo-subtitle{
        font-size: 20px;
    }
    .main-point-highlight{
        font-size: 40px;
    }
    .promo-bottom{
        padding-left: 100px;
        padding-right: 100px;
    }
    .plus-text{
        font-size: 30px;
    }
    .plus-sign{
        font-size: 30px;
    }
    .explanation-line{
        font-size: 20px;
    }
    .dakarakoso-text{
        font-size: 20px;
    }
    .recommendation-line1{
        font-size: 20px;
    }
    .recommendation-line2{
        font-size: 20px;
    }
    .recommendation-line3{
        font-size: 20px;
    }
    .simulation-label{
        font-size: 30px;
    }
    .simulation-title{
        font-size: 30px;
    }
    .simulation-subtitle{
        font-size: 20px;
    }
    .income-list{
        padding-left: 50px;
        padding-right: 50px;
    }
    .income-label{
        font-size:20px;
    }
    .income-amount{
        font-size: 21px;
    }
    .simulation-results{
        padding-left: 50px;
        padding-right: 50px;
    }
    .fixed-table{
        font-size: 20px;
    }
    .comparison-table-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .rent-increase-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .property-name{
        font-size: 20px;
    }
    .header-square{
        width: 25px;
        height: 25px;
    }
    .header-text{
        font-size: 25px;
    }
    .conclusion-box-large p{
        font-size: 25px;
    }
    .savings-amount-text{
        font-size: 25px;
    }
    .savings-amount{
        font-size: 17px;
    }
    .savings-amount-number{
        font-size: 24px;
    }
    .cell-label{
        font-size: 20px;
        height: 50px;
    }
    .table-row{
        grid-template-columns : 70px 1.5fr 2fr;
    }
    .table-label{
        font-size: 16px;
    }
    .separator-line{
        margin-top: 10px;
        width: 2px;
        height: 60px;
    }
    .breakdown-item{
        font-size: 20px;
    }
    .cell-value {
        font-size: 23px;
    }
    .cell-uint{
        font-size: 15px;
    }
    .comparison-disclaimer{
        font-size: 15px;
    }
    .footer-dark-section{
        padding-left: 50px;
        padding-right: 50px;
    }
    .footer-disclaimer-text{
        font-size: 14px;
    }
    .footer-copyright p{
        font-size: 14px;
    }
    .amount-unit{
        font-size: 15px;
    }
    .amount-value{
        font-size: 23px;
    }
    .intro-slash-left{
        height: 70px;
    }
    .intro-slash-right{
        height: 70px;
    }
    .main-title{
        font-size: clamp(20px, 5vw, 28px);
    }
    .main-subtitle{
        font-size: clamp(40px, 12vw, 70px);
    }
    .fixed-table-item-value-number{
        font-size: 30px;
    }
    .box-title{
        font-size: 25px;
    }
    .strengths-banner-highlight{
        font-size: 35px;
    }
    .criteria-building-image{
        height: 80px;
    }
    .banner-highlight-content{
        font-size: 35px;
    }
    .banner-highlight-yellow{
        font-size: 35px;
    }
}
@media (max-width : 500px) and (min-width : 425px){
    .date-box {
        width: 200px;
    }
}
@media (max-width : 768px) and (min-width : 500px){
    .date-box {
        border: 2px solid #315f41;
        padding: 4px 12px;
        background-color: #fff;
        width: 40%;
        text-align: center;
        margin: auto;
        white-space: nowrap;
    }
    .guarantee-text{
        bottom: 20px;
        left: 20px;
    }
    .content-overlay{
        width: 80%;
        max-width: 80%;
    }
    .left{
        margin-left: auto;
    }
    .right{
        margin-right: auto;
    }
    .tagline{
        text-align: center;
    }
    .m-0{
        margin: 0px;
    }
    .price-box{
        text-align: center;
        place-content: center;
    }
    .footer-banner-buttons{
        /* width: 80%; */
        padding: 10px 20px;
    }
    .footer-red-header{
        /* padding: 20px; */
    }
    .footer-banner-text{
        padding: 5px 20px;
    }
    .footer-banner-text-bold {
        font-size: 16px;
    }
    
    .footer-highlight-amount {
        font-size: 15px;
    }
    
    .footer-highlight-amount-number {
        font-size: 32px;
    }
    
    .footer-highlight-text {
        font-size: 22px;
    }
    .seiyaku-full-image {
        max-width: 320px;
    }
    .intro-text{
        font-size: 30px;
    }
    .video-container{
        width: clamp(320px, 75%, 1200px);
    }
    .video-section {
        padding-bottom: 50px;
    }
    .reason-title{
        font-size: 30px;
    }
    .reason-label{
        font-size: 20px;
    }
    .reasons-content {
        background-color: white;
        padding: 24px 16px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Section Heading */
    .section-heading {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 20px;
    }
    
    .section-number {
        width: 25px;
        height: 25px;
        
        font-size: 20px;
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .section-title {
        font-size: 20px;
      
    }
    
    /* Chart Container */
    .chart-container {
        margin-top: 20px;
        margin-bottom: 20px;
        position: relative;
    }
    
    .chart-title {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        justify-content: flex-end;
        text-align: right;
        align-items: flex-end;
    }
    
    .chart-main-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .chart-subtitle {
        font-size: 12px;
        /* margin-right: auto; */
    }
    .rank-first{
        font-size: 30px;
    }
    .chart-scale {
        display: flex;
        justify-content: space-between;
        font-size: clamp(9px, 2.5vw, 10px);
        color: #666;
        margin-bottom: 8px;
        padding: 0 4px;
    }
    
    .chart-bars-left{
        gap: 6px; /* Match chart-bars-right gap */
        padding-top: 7px; /* Match chart-bars-right padding-top */
    }
    .chart-bars-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        padding-left: 16px;
        padding-top: 7px;
        height: fit-content;
    }
    .chart-bars{
        gap: 10px;
    }
    .bar{
        height: 15px;
    }
    .bar-wrapper{
        height: 40px;
    }
    .chart-bars-right .bar-wrapper{
        height: 22px;
    }
    
    /* Ensure all bar-items align with their corresponding bar-wrappers */
    .chart-bars-left .bar-item {
        height: 22px;
        min-height: 22px;
    }

    /* .city-name.rank-first {
        font-size: 21px;
    } */
    .rank, .city-label{
        font-size: 15px;
    }
    .reasons-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .comparison-section{
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 0px;
    }
    .yield-comparison-section{
        padding-top: 0px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .chart-axis-label{
        font-size: 13px;
    }
    .axis-label-50000 { left: clamp(60px, 20vw, 70px); }
    .axis-label-60000 { left: clamp(85px, 28vw, 100px); }
    .axis-label-70000 { left: clamp(110px, 36vw, 130px); }
    .axis-dotted-1 { left: clamp(80px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
    .axis-dotted-2 { left: clamp(150px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
    .axis-dotted-3 { left: clamp(220px, 36vw, 170px); } /* 70,000 endpoint */
    .axis-label-50000 { left: clamp(80px, 20vw, 90px); } /* Matches axis-dotted-1 */
    .axis-label-60000 { left: clamp(150px, 28vw, 130px); } /* Matches axis-dotted-2 */
    .axis-label-70000 { left: clamp(220px, 36vw, 170px); } /* Matches axis-dotted-3 */
    .chart-axis-label{
        top: -36px;
    }
    .chart-second-bar{
        left: 30px;
    }
    .chart-no1-badge{
        max-width: 70px;
        max-height: 70px;
    }
    .stats-bar{
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .stat-label{
        font-size: 10px;
    }
    .stat-number{
        font-size: 25px;
    }
    .stat-period{
        font-size: 10px;
    }
    .stat-item{
        flex: unset;
        gap:10px;
        margin: auto;
    }
    .section-number-02 {
        width: 25px;
        height: 25px;
        font-size: 20px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    .conclusion p{
        font-size: 10px;
    }
    .box-price{
        font-size: 1.5rem;
    }
    .building-image.tokyo-building{
        height: 200px;
    }
    .comparison-yellow-box-content .building-images{
        height: 200px;
    }
    .building-image{
        width: 100%;
    }
    .feature-text{
        font-size: 15px;
    }
    .conclusion-line1{
        font-size: 15px;
    }
    .conclusion-line2{
        font-size: 15px;
    }
    .highlight-orange{
        font-size: 15px;
    }
    .comparison-badge{
        left: 67%;
        top: calc(61px + 24px - 60px);
    }
    .yield-section-number {
        width:25px;
        height: 25px;
        font-size: 20px;

    }
    
    .yield-title {
        font-size: 20px;
    }
    .property-label{
        font-size: 15px;
    }
    .property-detail{
        font-size: 12px;
    }
    .key-points-label{
        font-size: 9px;
    }
    .key-points-title{
        font-size: 15px;
    }
    .key-points-subtitle{
        font-size: 15px;
    }
    .key-points-conclusion p{
        font-size: 10px;
    }
    .explanation-text{
        font-size: 15px;
    }
    .explanation-conclusion{
        font-size: 15px;
    }
    .cityscape-container{
        height: auto;
    }
    .mechanism-title{
        font-size: 30px;
    }
    .mechanism-subtitle{
        font-size: 13px;
    }
    .mechanism-content{
        max-width: unset;
    }
    .diagram-oval{
        width: 100%;
    }
    .strong-point-label span{
        font-size: 20px;
    }
    .strengths-title{
        font-size: 30px;
    }
    .syns-strengths-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .explanation-line1{
        font-size: 16px;
    }
    .explanation-line2{
        font-size: 16px;
    }
    .power-text-block{
        padding-left: 20px;
        padding-right: 20px;
    }
    .power-text-line{
        font-size: 15px;
    }
    .banner-text-white{
        font-size: 18px;
    }
    .banner-power-label{
        font-size: 30px;
    }
    .vacancy-label{
        font-size: 30px;
    }
    .stats-criteria-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .criteria-banner span{
        font-size: 20px;
    }
    .criterion-text{
        font-size: 14px;
    }
    .building-illustration-wrapper{
        right: 15%;
    }
    .guarantee-header{

    }
    .guarantee-number {
        width: 50px;
        height: 100%;
        font-size: 25px;
    }
    
    .guarantee-title {
        font-size: 20px;
    }
    .guarantee-illustration{
        min-height: 250px;
        margin-bottom: 60px;
    }
    .guarantee-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .appliances-container{
        min-height: 250px;
        align-items: center;
    }
    .conditioner1-image{
        height: 100%;
    }
    .conditioner-image{
        width: 100%;
        height: 100%;
    }
    .air-conditioner-unit{
        min-width: 80px;
    }
    .guarantee-line{
        font-size: 15px;
    }
    .guarantee-highlight{
        font-size: 20px;
    }
    .guarantee-subtext{
        font-size: 20px;
    }
    .banner-text-financing {
        font-size: 25px;
    }
    .planning-banner span{
        font-size: 25px;
    }
    .planning-text{
        font-size: 15px;
    }
    .financing-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .testimonials-container{
        padding-left: 20px;
        padding-right: 10px;
    }
    .testimonials-label{
        font-size: 25px;
    }
    .testimonials-subtitle{
        font-size: 14px;
    }
    .testimonial-card{
        font-size: 20px;
    }
    .customer-quote{
        font-size: 15px;
    }
    .customer-tag{
        font-size: 12px;
    }
    .customer-photo{
        width: 100px;
    }
    .customer-detail{
        font-size: 12px;
    }
    .qa-question{
        font-size: 13px;
    }
    .qa-answer{
        font-size: 12px;
    }
    .customer-info{
        place-content: center;
    }
    .customer-photo{
        width: 78px;
    }
    .banner-slash-left{
        font-size: 50px;
    }
    .banner-slash-right{
        font-size: 50px;
    }
    .banner-text-green{
        font-size: 20px;
    }
    .banner-text-red{
        font-size: 40px;
    }
    .promo-middle{
        padding-left: 20px;
        padding-right: 20px;
    }
    .promo-subtitle{
        font-size: 12px;
    }
    .main-point-highlight{
        font-size: 30px;
    }
    .promo-bottom{
        padding-left: 20px;
        padding-right: 20px;
    }
    .plus-text{
        font-size: 20px;
    }
    .plus-sign{
        font-size: 20px;
    }
    .explanation-line{
        font-size: 15px;
    }
    .dakarakoso-text{
        font-size: 20px;
    }
    .recommendation-line1{
        font-size: 15px;
    }
    .recommendation-line2{
        font-size: 20px;
    }
    .recommendation-line3{
        font-size: 15px;
    }
    .simulation-label{
        font-size: 15px;
    }
    .simulation-title{
        font-size: 20px;
    }
    .simulation-subtitle{
        font-size: 16px;
    }
    .income-list{
        padding-left: 20px;
        padding-right: 20px;
    }
    .income-label{
        font-size:14px;
    }
    .income-amount{
        font-size: 15px;
    }
    .simulation-results{
        padding-left: 20px;
        padding-right: 20px;
    }
    .fixed-table{
        font-size: 14px;
    }
    .comparison-table-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .rent-increase-section{
        padding-left: 20px;
        padding-right:20px;
    }
    .property-name{
        font-size: 20px;
    }
    .header-square{
        width: 20px;
        height: 20px;
    }
    .header-text{
        font-size: 20px;
    }
    .conclusion-box-large p{
        font-size: 18px;
    }
    .savings-amount-text{
        font-size: 20px;
    }
    .savings-amount{
        font-size: 17px;
    }
    .savings-amount-number{
        font-size: 24px;
    }
    .cell-label{
        font-size: 14px;
        height: 50px;
    }
    .table-row{
        grid-template-columns : 55px 1.5fr 2fr;
    }
    .table-label{
        font-size: 12px;
    }
    .breakdown-item{
        font-size: 13px;
    }
    .cell-value {
        font-size: 20px;
    }
    .cell-uint{
        font-size: 15px;
    }
    .comparison-disclaimer{
        font-size: 10px;
    }
    .footer-dark-section{
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer-disclaimer-text{
        font-size: 14px;
    }
    .footer-copyright p{
        font-size: 14px;
    }
    .amount-unit{
        font-size: 15px;
    }
    .amount-value{
        font-size: 23px;
    }
    .intro-slash-left{
        height: 70px;
    }
    .intro-slash-right{
        height: 70px;
    }
    .main-title{
        font-size: clamp(20px, 5vw, 28px);
    }
    .main-subtitle{
        font-size: clamp(40px, 12vw, 70px);
    }
    .fixed-table-item-value-number{
        font-size: 22px;
    }
    .box-title{
        font-size: 20px;
    }
    .strengths-banner-highlight{
        font-size: 30px;
    }
    .criteria-building-image{
        height: 70px;
    }
    .banner-highlight-content{
        font-size: 26px;
    }
    .banner-highlight-yellow{
        font-size: 26px;
    }
    .stat-value-large-date{
        font-size: 35px;
    }
    .vacancy-days-unit{
        font-size: 20px;
    }
    .stat-date-note{
        font-size: 12px;
    }
    .banner-highlight-text{
        font-size: 15px;
    }
    .results-title{
        font-size: 12px;
    }
    .cell-after{
        width: 50vw;
    }
}
@media (max-width : 1700px) and (min-width : 1300px){
    .chart-bars-right .bar-wrapper{
        height: 40px;
    }
    .city-label.rank-first {
        position: relative;
        white-space: nowrap;
        display: flex;
        align-items: center;
        height: 100%;
        line-height: 1;
    }
    .axis-label-50000 { left: clamp(60px, 20vw, 70px); }
    .axis-label-60000 { left: clamp(85px, 28vw, 100px); }
    .axis-label-70000 { left: clamp(110px, 36vw, 130px); }
    .axis-dotted-1 { left: clamp(130px, 20vw, 90px); } /* 50,000 mapped within 70,000 span - increased spacing from chart-axis */
    .axis-dotted-2 { left: clamp(250px, 28vw, 130px); } /* 60,000 mapped within 70,000 span - midpoint */
    .axis-dotted-3 { left: clamp(370px, 36vw, 170px); } /* 70,000 endpoint */
    .axis-label-50000 { left: clamp(130px, 19vw, 90px); } /* Matches axis-dotted-1 */
    .axis-label-60000 { left: clamp(250px, 28vw, 130px); } /* Matches axis-dotted-2 */
    .axis-label-70000 { left: clamp(370px, 37vw, 170px); } /* Matches axis-dotted-3 */
    .chart-axis-label{
        top: -36px;
    }
}
@media (max-width : 2000px) and (min-width : 1320px){
    .screen-1024{
        display: none;
    }
    
    /* Bottom text alignment: left initially, center after green background disappears */
    .new-hero-bottom-text {
        justify-content: flex-start;
        padding-left: 20px;
        animation: heroBottomTextAlignCenter 0.3s ease-out 2.2s forwards;
    }
    
    /* Remove white to green background animation, show green from start */
    .new-hero-text-section {
        background-color: #10502Bdd;
        animation: none;
    }
}
@media (max-width : 1319px) {
    /* .yellow-bg-text{
        font-size: 28px !important;
    } */
    /* .guarantee-text {
        position: absolute;
        bottom: 30px;
        left: 50px;
        text-align: left;
        width: auto;
    } */
    .hero-2000{
        display: none;
    }
}
@media (max-width: 425px) {
    .margin-top-425{
        margin-top:2px;
    }
    .city-label{
        gap:4px;
    }
    .building-right{
        width: 100px !important;
    }
    .building-left{
        width: 100px !important;
    }
    .building-image{
        width: 100px !important;
    }
    .padding-top-5{
        padding-top: 4px !important;
    }
    .padding-top-8{
        padding-top: 8px !important;
    }
    .price-from{
        margin-left: 10px;
    }
    .key-points-label{
        font-size: 0.8rem;
    }
    .key-points-subtitle{
        font-size: 0.7rem;
        padding-bottom: 8px;
    }
    .display-flex-425{
        display: flex;
        justify-content: space-around;
    }
    /* .display-flex-425>div{
        width: 45%;
    } */
    .kingcat-icon{
        margin-bottom:2px;
    }
    .key-points-conclusion{
        padding: 6px;
    }
    .key-points-conclusion p{
        font-size: 0.8rem;
    }
    .display-none-425{
        display: flex;
        width: 80%;
        margin: 0px auto;
    }
    .display-show-425{
        display: none;
    }
    .syns-logo-overlay{
        bottom: 20px;
    }
    .guarantee-illustration{
        margin-bottom: 40px;
    }
    .guarantee-text{
        bottom: 10px;
        left: 10px;
    }
    .price-unit {
        font-size: clamp(28px, 5vw, 24px);
        font-weight: 600;
    }
    .price-amount {
        font-size: 70px;
        font-weight: 900;
        color: #2d5a3d;
        line-height: 1;
        font-family: initial;
        letter-spacing:-2px;
    }
    .price-label {
        font-size: 24px !important;
        color: #2d5a3d;
        letter-spacing: -2.5px;
        font-weight: 600;
    }
    .price-box{
        text-align: center;
        place-content: center;
    }
    .property-label{
        font-size: 10px;
    }
    .winner-bar-value{
        font-size: 16px;
        font-variant-numeric: tabular-nums;
        letter-spacing: 0;
        min-width: 50px;
        display: inline-block;
        text-align: left;
    }
    .logo-image-video{
        min-width: 120px;
    }
    .separator-line{
        margin-top: 3px;
        width: 2px;
        height: 25px;
    }
    .section-title{
        /* font-size: 13px; */
    }
    /* .explanation-conclusion{
        font-size: 0.7rem;
    } */
    .power-text-line{
        font-size: 12px;
    }
    .guarantee-title{
        font-size: 12px;
    }
    .guarantee-line{
        font-size: 13px;
    }
    .guarantee-subtext{
        font-size: 15px;
    }
    .planning-banner span{
        font-size: 19px;
    }
    .banner-text-green{
        font-size: 17px;
    }
    .banner-text-red{
        font-size: 30px;
    }
    .main-point-highlight{
        font-size: 30px;
    }
    .explanation-line{
        font-size: 16px;
    }
    .recommendation-highlight{
        font-size: 20px;
    }
    .footer-license{
        font-size: 12px;
    }
    .vacancy-label{
        font-size: 22px;
    }
    .stat-int{
        font-size: 46px;
    }
    .stat-frac{
        font-size: 35px;
    }
    .strengths-banner-highlight{
        font-size: 34px;
    }
    .strengths-title{
        font-size: 30px;
    }
    .feature-text{
        font-size: 11px;
    }
    .reason-title{
        font-size: 36px;
    }
    .conclusion p{
        font-size: 0.7rem;
    }
    .explanation-line1, .explanation-line2{
        font-size: 12px;
    }
    .criterion-text{
        font-size: 14px;
    }
    .planning-text{
        font-size: 14px;
    }
    .cell-value{
        font-size: 15px;
    }
    .savings-amount-text{
        font-size: 15px;
    }
    .conclusion-box-large p{
        font-size: 15px;
    }
    .footer-disclaimer-text{
        font-size: 10px;
    }
    .footer-cta-text{
        font-size: 15px;
    }
    .mechanism-subtitle{
        font-size: 11.5px;
    }
    .total-amount{
        font-size: 38px;
    }
    .property-name{
        font-size: 13px;
    }
    .amount-value{
        font-size: 20px;
    }
    .banner-power-label{
        font-size: 25px;
    }
    .banner-highlight-yellow{
        font-size: 30px;
    }
    .qa-question{
        font-size: 11px;
    }
    .customer-detail{
        font-size: 9px;
    }
    .customer-quote{
        font-size: 13px;
    }
    .qa-answer{
        font-size: 10px;
    }
    .tagline{
        font-size: clamp(18px, 6.5vw, 19px);
    }
    .highlight-box{
        margin-right: 10px;
    }
    .date-box {
        border: 2px solid #315f41;
        padding: 4px 12px;
        background-color: #fff;
        width: 180px;
        text-align: center;
        margin: auto;
        white-space: nowrap;
    }
    
}

/* Ensure "円から。" is always on one line */
.price-unit {
    white-space: nowrap;
}
.yellow-bg-text{
    font-size: 16px;
}
.display-flex-425{
    display: flex;
    justify-content: space-around;
}
.logo-image{
   /* color: black;      */
}
.logo-image-footer{
    width: 160px;
    padding-bottom: 20px;
}
.mg-left{
    margin-left: 10vw !important;
}
.stat-int-dot{
    font-size: 54px;
    margin: 0;
    padding: 0;
    text-shadow:
        -1px -1px 0 #fff,
         1px -1px 0 #fff,
        -1px  1px 0 #fff,
         1px  1px 0 #fff,
         0px  0px 1px #fff;
}
.logo-image-video{
    width: 300px;
}
@media (max-width: 396px) {
    .winner-bar-value{
        left: 134px !important;
    }
}
/* ========================================
   固定バナー
   ======================================== */

/* スマホ固定バナー */
.fixed-banner-sp {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.fixed-banner-sp img {
  width: 100%;
  height: auto;
  display: block;
}

.fixed-banner-pc {
  display: none;
}

body {
  padding-bottom: 98px;
}

/* PC表示 */
@media (min-width: 769px) {
  .fixed-banner-sp {
    display: none;
  }
  
  .fixed-banner-pc {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    width: 120px;
    transform: translateY(-50%);
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  }
  
  .fixed-banner-pc img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  body {
    padding-bottom: 0;
  }
  
  /* 給与所得控除額・各種控除額合計のセルに白背景を追加 */
  .fixed-table-item {
    background-color: #ffffff;
  }
}
/* ========================================
   スマホ・タブレット用: オーナー様の声 画像版
   ======================================== */

/* デフォルトでは画像版を非表示 */
.testimonials-section-sp {
    display: none !important;
}

/* PC (1025px以上)では画像版を確実に非表示 */
@media (min-width: 1025px) {
    .testimonials-section-sp {
        display: none !important;
    }
}

/* 1024px以下でHTML版を非表示、画像版を表示 */
@media (max-width: 1024px) {
    /* 元のHTML版を非表示 */
    .testimonials-section {
        display: none !important;
    }
    
    /* 画像版を表示 */
    .testimonials-section-sp {
        display: block !important;
        width: 100%;
        background: linear-gradient(to top, #e0f7d6 0%, #ffffff 100%);
    }
    
    .testimonials-image-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }
    
    .testimonials-image-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 0;
    }
    
    .testimonials-image-slider::-webkit-scrollbar {
        display: none;
    }
    
    .voice-card-image {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        scroll-snap-align: start;
        display: block;
        object-fit: contain;
    }
    
    /* 矢印ボタン */
    .testimonial-nav-arrow-sp {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.2s;
    }
    
    .testimonial-nav-arrow-sp:hover {
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    .testimonial-nav-arrow-sp:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    /* 左矢印の位置と形 */
    .testimonial-nav-prev-sp {
        left: 10px;
    }
    
    .testimonial-nav-prev-sp::after {
        content: '';
        width: 12px;
        height: 12px;
        border-left: 3px solid #2d5a3d;
        border-bottom: 3px solid #2d5a3d;
        transform: rotate(45deg);
        margin-right: -3px;
    }
    
    /* 右矢印の位置と形 */
    .testimonial-nav-next-sp {
        right: 10px;
    }
    
    .testimonial-nav-next-sp::after {
        content: '';
        width: 12px;
        height: 12px;
        border-right: 3px solid #2d5a3d;
        border-top: 3px solid #2d5a3d;
        transform: rotate(45deg);
        margin-left: -3px;
    }
}

/* flat13.pngとflat15.pngを20%大きくする（スマホのみ） */
@media (max-width: 767px) {
    img[src*="flat13.png"],
    img[src*="flat15.png"] {
        transform: scale(1.2);
        transform-origin: center center;
    }
}
