@charset "UTF-8";
/*
Theme Name: Mi-Casa Theme
Theme URI: https://micasa-2020.co.jp/
Author: Mi-Casa
Author URI: https://micasa-2020.co.jp/
Description: WordPress theme for Mi-Casa website.
Version: 1.0.0
*/

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --color-bg: #fdfdfd;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-accent: #304130;
    /* Dark Green */
    --color-accent-sub: #a8c972;
    /* Pale Blue */
    --color-white: #ffffff;
    --color-border: #eeeeee;

    --font-en: 'Outfit', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;

    --header-height: 80px;
    --header-height-scroll: 60px;
}

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

html {
    font-size: 16px;
    scroll-behavior: auto;
    /* Handled by Lenis type logic */
    overflow-x: hidden;
}

body {
    font-family: var(--font-jp);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.section {
    padding: 80px 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--sm {
    max-width: 800px;
}


/* ==========================================================================
   Visual Grid (V4 Masonry Style - Bento Grid)
   ========================================================================== */
.visual-grid {
    display: grid;
    /* 3 Columns */
    grid-template-columns: repeat(3, 1fr);
    /* 100vh - header? Or just auto? Let's keep it fluid but robust. */
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    /* Prevent white lines in sub-pixel gaps */
}

.visual-grid__item {
    position: relative;
    width: 100%;
    /* Base square aspect ratio -> Changed to 16/9 for even shorter height */
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block;
    background-color: #000;
}

/* Modifiers for Bento Layout */
.visual-grid__item--large {
    grid-column: span 2;
    grid-row: span 2;
    /* 2w / 2h = w/h = 16/9 */
    aspect-ratio: 16/9;
}

.visual-grid__item--tall {
    grid-column: span 1;
    grid-row: span 2;
    /* 1w / 2h = 0.5 * 16/9 = 8/9 */
    aspect-ratio: 8/9;
}

.visual-grid__item--wide {
    grid-column: span 2;
    grid-row: span 1;
    /* 2w / 1h = 2 * 16/9 = 32/9 */
    aspect-ratio: 32/9;
}

.visual-grid__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Changed from 0.7 to 1 for better visibility */
    z-index: 1;
    /* Tone Unification - Darker */
    filter: grayscale(50%) brightness(60%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, filter 0.4s ease;
}

.visual-grid__item:hover .visual-grid__bg {
    transform: scale(1.05);
    /* Restore tone on hover */
    filter: grayscale(0%) brightness(105%);
}

.visual-grid__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.visual-grid__label {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 5px;
}

.visual-grid__sub {
    font-family: var(--font-jp);
    font-size: 0.9rem;
    color: var(--color-white);
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reset Spans for 2-col layout */
    .visual-grid__item--large {
        grid-column: span 2;
        grid-row: span 2;
        /* Keep large? Or make full width? */
        /* Let's make large = full width (2 cols) */
    }

    .visual-grid__item--tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .visual-grid__item--wide {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media screen and (max-width: 600px) {
    .visual-grid {
        grid-template-columns: 1fr;
    }

    /* Reset all spans to 1 in mobile stack */
    .visual-grid__item,
    .visual-grid__item--large,
    .visual-grid__item--tall,
    .visual-grid__item--wide {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4/3;
        /* Standard mobile ratio */
    }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.container--sm {
    max-width: 800px;
}

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

.mt-40 {
    margin-top: 40px;
}

.section {
    padding: 100px 0;
    background-color: var(--color-bg);
    /* Ensure solid bg for curtain effect */
    position: relative;
    /* For z-index context */
    z-index: 10;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-en);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-accent);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-link {
    display: inline-block;
    position: relative;
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--color-accent);
    padding-bottom: 5px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.btn-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   Splash Screen (Rich Animation)
   ========================================================================== */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through after logic handles display none, but safest is display none */
}

html.is-visited .splash {
    display: none !important;
}

/* The dark curtain that slides up */
.splash__curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    z-index: 1;
    transform-origin: top center;
}

.splash__logo {
    position: relative;
    z-index: 2;
    width: 30%;
    max-width: 300px;
    height: auto;
    /* Aspect ratio to prevent collapse if needed, or rely on img intrinsic */
    /* aspect-ratio: 4/3; */
    display: block;
    /* changed from flex to simple block context for absolute children */
}

@media screen and (min-width: 768px) {
    .splash__logo {
        width: 35%;
        max-width: 450px;
    }
}

.splash-logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.splash-gif,
.splash-static {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    display: block;
    /* object-fit doesn't apply to canvas in the same way, but width/height attributes + css width/height handles resizing */
}

.splash-gif {
    opacity: 0;
    /* Hidden initially */
}

.splash-static {
    opacity: 1;
    /* Visible initially */
}

/* Old SVG styles removed/commented out as they are no longer needed
.splash-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.splash-stroke {
    fill: none;
    stroke: var(--color-white);
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
}
*/


/* ==========================================================================
   SNS Sidebar
   ========================================================================== */
.sns-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sns-sidebar.is-visible {
    opacity: 1;
    visibility: visible;
}

.sns-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease, color 0.3s ease;
}

.sns-link:hover {
    transform: translateX(-5px) scale(1.1);
    color: var(--color-accent-sub);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    padding: 30px 0;
    color: var(--color-white);
}

/* Subpage Header - Transparent to overlay Sub-Hero */
.header.header--subpage {
    background-color: transparent;
    color: var(--color-white);
    /* White text/logo for overlay */
}

/* Sub-Hero Section */
.sub-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--color-white);
    margin-bottom: 40px;
    padding-top: 80px;
    /* Offset for fixed header */
}

.sub-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.sub-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Darken for readability */
    z-index: -1;
}

.sub-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.sub-hero__title {
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    opacity: 0;
    /* Ensure no clipping for shadow/transform if needed */
}

.sub-hero__title .char {
    display: inline-block;
    opacity: 0;
}

.sub-hero__sub {
    font-family: var(--font-jp);
    font-size: 1rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
}

.order-hero-sub {
    font-family: var(--font-jp);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-top: 15px;
    font-weight: 500;
    display: inline-block;
    /* Ensure centering works well if it was flex */
}

/* ==========================================================================
   Request Page Flow
   ========================================================================== */
.req-flow {
    padding: 20px 0;
}

.req-flow__title p {
    font-family: var(--font-en) !important;
    /* Override inline if needed, but better to rely on class structure */
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-accent) !important;
}

.req-flow__steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.req-flow__step {
    text-align: center;
    position: relative;
    width: 160px;
}

.step-num {
    display: block;
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-sub);
    /* Or accent color */
    line-height: 1;
    margin-bottom: 15px;
}

.step-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
}

.req-flow__arrow {
    font-size: 1.5rem;
    color: #ccc;
    padding-top: 20px;
    /* Align with number roughly */
}

@media screen and (max-width: 768px) {
    .req-flow__steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .req-flow__arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

.header.header--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--color-text);
    /* Change text color to dark */
}

.header.header--scrolled .header__logo img {
    height: 45px;
}

.header.header--scrolled .header__hamburger span {
    background-color: var(--color-accent);
}

/* Homepage specific scroll behavior (retaining original subtle effect) */
.header.header--home-scrolled {
    background-color: transparent;
    /* Or var(--color-main) if desired later */
    padding: 10px 0;
    box-shadow: none;
    color: var(--color-white);
}

.header.header--home-scrolled .header__logo img {
    height: 45px;
}

.header__inner {
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 50px;
    /* Reduced from 60px */
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.header__nav {
    display: none;
    /* ALWAYS HIDDEN for V3 PC Hamburger */
}

/* Hamburger (Always visible now) */
.header__hamburger {
    display: block;
    /* Always show */
    z-index: 102;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    /* Force White initially */
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

.body--nav-open .header__hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
    background-color: var(--color-white);
    /* White for contrast on dark overlay */
}

.body--nav-open .header__hamburger span:nth-child(2) {
    opacity: 0;
}

.body--nav-open .header__hamburger span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
    background-color: var(--color-white);
    /* White for contrast on dark overlay */
}

/* Mobile/Overlay Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-accent);
    /* Main Color */
    z-index: 101;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.body--nav-open .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav ul {
    text-align: center;
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
}

.mobile-menu__nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.3;
    padding: 10px;
}

.mobile-menu__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.mobile-menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    width: 100%;
    max-width: 550px;
    margin-bottom: 40px;
    padding: 0 10px;
}

.mobile-menu__list li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu__cta-group {
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease 0.6s;
    margin-top: 0;
}

.body--nav-open .mobile-menu__cta-group {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__nav a.btn-menu-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    padding: 12px 20px;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--color-white);
}

.btn-menu-cta i {
    font-size: 1rem;
}

.btn-menu-cta--req {
    background-color: transparent;
    color: var(--color-white);
}

.btn-menu-cta--req:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.mobile-menu__nav a.btn-menu-cta--contact {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.btn-menu-cta--contact i {
    color: var(--color-accent);
}

.btn-menu-cta--contact:hover {
    background-color: var(--color-accent-sub);
    color: var(--color-white);
    border-color: var(--color-accent-sub);
}

.btn-menu-cta--contact:hover i {
    color: var(--color-accent-sub);
}

.mobile-menu__nav .en {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    transition: transform 0.3s ease;
}

.mobile-menu__nav .jp {
    display: block;
    font-family: var(--font-jp);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 8px;
    opacity: 0.6;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.mobile-menu__nav a:hover {
    color: var(--color-accent-sub);
    transform: translateY(-2px);
}

.mobile-menu__nav a:hover .en {
    transform: scale(1.1);
}

.mobile-menu__nav a:hover .jp {
    opacity: 1;
    color: var(--color-accent-sub);
}

.mobile-menu__nav li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.body--nav-open .mobile-menu__nav li {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.body--nav-open .mobile-menu__nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.body--nav-open .mobile-menu__nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.body--nav-open .mobile-menu__nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.body--nav-open .mobile-menu__nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.body--nav-open .mobile-menu__nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.body--nav-open .mobile-menu__nav li:nth-child(6) {
    transition-delay: 0.6s;
}

.body--nav-open .mobile-menu__nav li:nth-child(7) {
    transition-delay: 0.7s;
}



/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    /* Align Left */
    align-items: flex-end;
    text-align: left;
    /* Align left */
    color: var(--color-white);
    z-index: 1;
    /* Lower than section content */
}

/* For Pinning: The hero will be pinned, and content slides over it */
/* This requires no special CSS other than normal z-index layering handled by GSAP Pinning, 
   but we ensure it's full viewport */

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.25);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    width: 100%;
    max-width: 1400px;
    /* Allow wider width */
    margin: 0 auto;
    padding-left: 5%;
    /* Add left offset */
    padding-bottom: 120px;
    /* Space from bottom/scroll indicator */
}

.hero__title {
    font-family: var(--font-en);
    /* Revert to Gothic/Sans-Serif (Outfit) */
    font-size: 5.5rem;
    /* Reduced from 8rem */
    font-weight: 700;
    /* Bold looks better for Gothic */
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero__title .char {
    display: inline-block;
    opacity: 0;
}

.hero__subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding-left: 5px;
}

/* Immediate Hero visibility for visited users to prevent white flash */
/* Immediate Hero visibility for visited users to prevent white flash */
/* Text animation restored by removing title/subtitle overrides */

html.is-visited .hero__bg-img:first-child {
    opacity: 1 !important;
    z-index: 1;
    /* Ensure it is on top */
}

.hero__scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero__scroll span {
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    transform: translateY(-100%);
    animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ==========================================================================
   Works (Swiper)
   ========================================================================== */
.works {
    overflow: hidden;
}

.works__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.works__nav {
    display: flex;
    gap: 30px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    cursor: pointer;
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    color: var(--color-accent-sub);
}

.works__slider {
    padding-left: calc((100% - 1200px) / 2 + 20px);
    padding-bottom: 50px;
}

.works__slide {
    width: 400px;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-active+.swiper-slide+.swiper-slide {
    opacity: 1;
}

.works__img-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.works__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.works__slide:hover .works__img-box img {
    transform: scale(1.05);
}

.works__meta {
    display: flex;
    gap: 15px;
    font-family: var(--font-en);
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.works__title {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.works__sub {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ==========================================================================
   News
   ========================================================================== */
.news__list {
    border-top: 1px solid var(--color-border);
}

.news__item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.news__item:hover {
    background-color: #fafafa;
    padding-left: 20px;
    padding-right: 20px;
}

.news__date {
    font-family: var(--font-en);
    font-size: 0.9rem;
    color: var(--color-text-light);
    width: 120px;
}

.news__cat {
    font-family: var(--font-en);
    font-size: 0.75rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4px 10px;
    margin-right: 30px;
    border-radius: 2px;
}

.news__title {
    flex: 1;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-accent);
    /* Main Color #304130 */
    color: var(--color-white);
    padding: 60px 0 20px;
    font-family: var(--font-jp);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align bottom */
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    /* Lighter border */
    padding-bottom: 40px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo img {
    width: 200px;
    height: auto;
}



.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Safe wrap for smaller screens if needed */
}

.footer__nav a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align text left or center? Footer looks generally left aligned or simple. Let's try center inside the link but standard flow. */
    /* Actually looking at design, footer is horizontal list. */
    align-items: center;
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 5px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__nav .en {
    display: block;
    line-height: 1.2;
}

.footer__nav .jp {
    display: block;
    font-family: var(--font-jp);
    font-size: 0.75rem;
    /* Smaller than EN */
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 8px;
    display: inline-block;
}

/* Footer CTA Group */
.footer__cta-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer__btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 180px;
    padding: 12px;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-jp);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid clearfix;
}

.footer__btn-cta--req {
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.footer__btn-cta--req:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer__btn-cta--contact {
    background-color: var(--color-white);
    color: var(--color-accent);
    border: 1px solid var(--color-white);
}

.footer__btn-cta--contact:hover {
    background-color: var(--color-accent-sub);
    color: var(--color-white);
    border-color: var(--color-accent-sub);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer__left,
    .footer__right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
        text-align: left;
        width: 100%;
        max-width: 400px;
    }

    .footer__cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .footer__btn-cta {
        width: 100%;
    }
}

.footer__copy {
    text-align: center;
    font-size: 0.8rem;
    font-family: var(--font-en);
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* ==========================================================================
   Works Page
   ========================================================================== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.works-item {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.works-item__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 15px;
}

.works-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.works-item:hover .works-item__thumb img {
    transform: scale(1.05);
}

.works-item__title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--color-text);
}

.works-item__cat {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-family: var(--font-en);
}

/* ==========================================================================
   Property Detail
   ========================================================================== */
.property-header {
    margin-bottom: 40px;
    text-align: center;
}

.property-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.4;
}

.property-cat {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
}

.property-slider-container {
    margin-bottom: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.property-slider {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 20px;
}

.property-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-thumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.property-thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.property-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--color-accent);
}

.property-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    max-width: 800px;
    margin: 0 auto;
}

.property-desc {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 60px;
    text-align: center;
}

.property-table {
    width: 100%;
    border-top: 1px solid var(--color-border);
    margin-bottom: 60px;
}

.property-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
}

.property-th {
    width: 30%;
    background-color: #fafafa;
    padding: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.property-td {
    width: 70%;
    padding: 20px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-accent);
    font-family: var(--font-en);
}

.property-map {
    margin-top: 40px;
    aspect-ratio: 16/9;
    width: 100%;
}

.property-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.property-nav {
    text-align: center;
    margin-top: 80px;
}

.btn-back {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: rgba(48, 65, 48, 0.05);
    /* Light accent bg */
}

/* ==========================================================================
   News Page & Detail
   ========================================================================== */
.news-list {
    border-top: 1px solid var(--color-border);
}

.news-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: #fafafa;
    padding-left: 20px;
    padding-right: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.9rem;
}

.news-date {
    color: var(--color-text-light);
    font-family: var(--font-en);
}

.news-tag {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 2px 8px;
    font-size: 0.8rem;
}

.news-link {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
}

.news-item:hover .news-link {
    color: var(--color-accent);
}

/* Detail Article */
.article-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.article-date {
    font-family: var(--font-en);
    color: var(--color-text-light);
}

.article-tag {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-family: var(--font-en);
}

.article-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
}

.article-body {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 60px;
}

.article-body p {
    margin-bottom: 30px;
}

.article-body img {
    margin: 40px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header {
        padding: 15px 0;
    }

    .header__hamburger {
        display: block;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .sub-hero__title {
        font-size: 2.5rem;
    }

    .hero {
        align-items: center;
    }

    .hero__content {
        padding-bottom: 0;
    }

    .hero__scroll {
        bottom: 30px;
    }

    .concept__container {
        flex-direction: column;
        gap: 40px;
    }

    .concept__title-area {
        flex: 0 0 auto;
        text-align: center;
        width: 100%;
    }

    .concept__title {
        writing-mode: horizontal-tb;
        height: auto;
        font-size: 2rem;
        line-height: 1.4;
    }

    .concept__title span {
        display: inline;
    }

    .concept__images {
        height: 350px;
    }

    .wwd__grid {
        grid-template-columns: 1fr;
    }

    .business__list {
        grid-template-columns: 1fr;
    }

    .business__item {
        border-right: none;
    }

    .works__slider {
        padding-left: 20px;
    }

    .works__slide {
        width: 85%;
    }

    .news__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news__date {
        width: auto;
        margin-bottom: 5px;
    }

    .news__cat {
        margin-right: 0;
    }

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer__right {
        text-align: left;
    }

    .contact__title {
        font-size: 2rem;
    }

    .page-header {
        padding-top: 120px;
    }

    .page-header__title {
        font-size: 2rem;
    }

    .sns-sidebar {
        bottom: 0;
        top: auto;
        right: 0;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        transform: none;
        padding: 10px;
        border-radius: 0;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 15px 30px;
    }

    .splash__logo {
        width: 80%;
    }
}

/* ==========================================================================
   Animation Utilities
   ========================================================================== */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
}

.reveal-img {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.5s ease;
}

.reveal-img.is-visible {
    opacity: 1;
    clip-path: inset(0 0 0 0);
}

.stagger-list>* {
    opacity: 0;
    transform: translateY(20px);
}

/* ==========================================================================
   Concept Page Styles
   ========================================================================== */
.concept-commitment {
    background-color: var(--color-bg);
    /* Almost white */
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-grid__img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    /* Softens the look slightly */
}

.commitment-head-area {
    margin-bottom: 40px;
}

.commitment-heading {
    font-family: var(--font-jp);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 30px 0;
    color: var(--color-accent);
    /* Dark green accent */
    letter-spacing: 0.1em;
}

.commitment-desc {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
    text-align: justify;
}

/* Features Section */
.concept-features {
    background-color: #f9f8f4;
    /* Very light beige/warm gray */
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item--reverse {
    direction: rtl;
    /* Flip visual order */
}

.feature-item--reverse>* {
    direction: ltr;
    /* Reset text direction */
}

.feature-item__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item__content {
    padding: 20px;
}

.feature-item__title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    display: inline-block;
}

.feature-item__sub {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #555;
    margin-top: 10px;
    /* added spacing */
}

.feature-item__desc {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--color-text);
}

.feature-item__note {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-accent);
    /* Emphasis */
}

/* Feature Table */
.feature-table {
    width: 100%;
    max-width: 700px;
    border: 1px solid #e0e0e0;
    background-color: var(--color-white);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.feature-table:last-of-type {
    margin-bottom: 0;
}

.feature-table__label {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.05em;
}

.feature-table__row {
    display: grid;
    grid-template-columns: 0.5fr repeat(6, 1fr);
    border-bottom: 1px solid #e0e0e0;
}

.feature-table__row:last-child {
    border-bottom: none;
}

.feature-table__head {
    font-weight: 600;
    background-color: #f5f5f5;
    color: #333;
}

.feature-table__subhead {
    background-color: #fafafa;
    font-size: 0.75rem;
    color: #666;
}

.feature-table__subhead span {
    padding: 6px 5px;
}

.feature-table__row span {
    padding: 12px 5px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.feature-table__row span:last-child {
    border-right: none;
}

/* ZEH Table (Reference Design) */
.feature-table__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 30px 0 10px 0;
}

.feature-table__title:first-of-type {
    margin-top: 20px;
}

.zeh-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.zeh-table th,
.zeh-table td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #ccc;
}

/* Year header row */
.zeh-table__years th {
    background-color: #e8e8e8;
    font-weight: 600;
    color: #333;
}

.zeh-table__years .zeh-table__target-year {
    background-color: #6a6a6a;
    color: #fff;
}

/* Label row (実績 / ZEH普及目標) */
.zeh-table__labels th {
    padding: 6px 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.zeh-table__result-label {
    background-color: #f0f0f0;
    color: #555;
}

.zeh-table__target-label {
    background-color: #c8ddc8;
    color: #304130;
    font-weight: 600;
}

/* Data row */
.zeh-table__result-cell {
    background: repeating-linear-gradient(45deg,
            #f5f5f5,
            #f5f5f5 4px,
            #e8e8e8 4px,
            #e8e8e8 8px);
    color: #555;
}

.zeh-table__target-cell {
    background-color: #f5f8e8;
    color: #304130;
    font-weight: 700;
    font-size: 1rem;
}


/* Responsive Fixes */
@media screen and (max-width: 900px) {

    .commitment-grid,
    .feature-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-item--reverse {
        direction: ltr;
        /* Reset order on mobile for consistency */
    }

    /* Keep image on top for mobile */
    .feature-item--reverse .feature-item__img {
        order: -1;
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet/mobile */
    }

    .concept-commitment,
    .concept-features,
    .concept-brands {
        padding: 60px 0;
    }

    .feature-table {
        overflow-x: auto;
        display: block;
        /* enable scroll if needed */
        max-width: 100%;
    }

    .feature-table__row {
        min-width: 500px;
        /* Ensure table doesn't squish too much */
    }
}

@media screen and (max-width: 480px) {
    .brand-grid {
        grid-template-columns: 1fr;
        /* 1 col on very small screens? Maybe 2 is fine. Keep 2 */
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
        /* Scale down title */
    }
}

/* ==========================================================================
   Contact Aside Area
   ========================================================================== */
.contact-aside {
    padding: 80px 0;
    background-color: var(--color-bg);
    /* Match site bg */
}

.contact-aside__inner {
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
    /* Minimal radius */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    /* Very subtle shadow */
}

.contact-aside__title {
    font-family: var(--font-jp);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.contact-aside__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.contact-aside__btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-aside__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 240px;
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    /* Slightly sharper than pill */
}

.contact-aside__btn--contact {
    background-color: #555;
    /* Dark Gray */
    color: #fff;
    border: 1px solid #555;
}

.contact-aside__btn--contact:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
}

.contact-aside__btn--brochure {
    background-color: #8fa18f;
    /* Muted Green */
    color: #fff;
    border: 1px solid #8fa18f;
}

.contact-aside__btn--brochure:hover {
    background-color: #7d8f7d;
    border-color: #7d8f7d;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .contact-aside {
        padding: 60px 0;
    }

    .contact-aside__inner {
        padding: 40px 20px;
    }

    .contact-aside__title {
        font-size: 1.4rem;
    }

    .contact-aside__btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-aside__btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Dark Luxury Theme (Section Utility)
   ========================================================================== */
/* Apply this class to specific sections to enable Dark Mode */
.page-concept-dark {
    background-color: var(--color-accent);
    /* #304130 */
    color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Text Overrides for Dark Sections */
.page-concept-dark .section-title,
.page-concept-dark .section-subtitle,
.page-concept-dark .commitment-grid__heading,
.page-concept-dark .feature-item__title,
.page-concept-dark .feature-item__sub,
.page-concept-dark .brand-name {
    color: var(--color-white);
}

.page-concept-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.page-concept-dark .feature-item__desc,
.page-concept-dark .commitment-desc {
    color: rgba(255, 255, 255, 0.9);
}

.page-concept-dark .commitment-heading {
    color: var(--color-white);
}

/* Specific Updates for Brand Section when Dark */
/* Chain selector because the class is on the same element */
.concept-brands.page-concept-dark {
    background-color: #2a3a2a;
    /* Slightly darker/different tone */
}

.concept-brands.page-concept-dark .brand-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.concept-brands.page-concept-dark .brand-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.concept-brands.page-concept-dark .brand-name {
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.page-concept-dark .feature-table__head {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.page-concept-dark .feature-table__row span {
    border-right-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs {
    padding: 20px 0;
    background-color: var(--color-bg);
    /* Or specific light gray if needed */
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-family: var(--font-en);
}

.breadcrumbs__item {
    color: var(--color-text-light);
}

.breadcrumbs__item a {
    color: var(--color-text-light);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.3s;
}

.breadcrumbs__item a:hover {
    text-decoration-color: var(--color-text-light);
}

.breadcrumbs__item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    opacity: 0.5;
    font-size: 0.8em;
}

.breadcrumbs__item:last-child {
    color: var(--color-text);
    font-weight: 500;
}

/* ==========================================================================
   Contact Aside (Luxury Redesign)
   ========================================================================== */
.contact-aside--luxury {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: var(--color-white);
}

/* Background Wrapper */
.contact-aside__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple Parallax */
    z-index: 0;
}

.contact-aside__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(48, 65, 48, 0.85);
    /* Dark Green Overlay */
    z-index: 1;
}

.contact-aside__inner {
    position: relative;
    z-index: 2;
    background-color: transparent;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 80px 40px;
    max-width: 800px;
}

/* Title & Text */
.contact-aside__title {
    font-size: 3rem;
    font-family: var(--font-en);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.contact-aside__jp {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact-aside__desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Luxury Buttons */
.contact-aside__btn--luxury {
    background-color: #C5A059;
    /* Goldish Beige */
    color: #fff;
    border: 1px solid #C5A059;
    min-width: 260px;
}

.contact-aside__btn--luxury:hover {
    background-color: #b08d4b;
    border-color: #b08d4b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-aside__btn--luxury-ghost {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 260px;
}

.contact-aside__btn--luxury-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.contact-aside__btn .btn-text {
    margin-right: 15px;
}

@media screen and (max-width: 768px) {
    .contact-aside__bg {
        background-attachment: scroll;
        /* Disable fixed attachment on mobile */
    }

    .contact-aside__title {
        font-size: 2.2rem;
    }

    .contact-aside__inner {
        padding: 50px 20px;
    }
}

/* ==========================================================================
   Sales Page (Property List)
   ========================================================================== */
.page-sales .sales-intro-text {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Search Filter */
.search-filter {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.search-filter__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.search-filter__group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 15px;
    padding-right: 35px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #FAFAFA;
    font-size: 0.9rem;
    color: var(--color-text);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s;
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: #fff;
}

.select-wrapper::after {
    content: '\f078';
    /* FontAwesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #999;
    pointer-events: none;
}

.search-filter__action {
    display: flex;
    justify-content: center;
}

.btn-search {
    background-color: #555;
    /* Muted Dark Gray */
    color: #fff;
    padding: 12px 50px;
    border-radius: 4px;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-search:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Controls (Sort & Count) */
.sales-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sales-count {
    font-size: 0.9rem;
    color: #666;
}

.sales-count span {
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text);
    margin: 0 5px;
}

.sales-sort select {
    padding: 8px 30px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    background-color: #fff;
    cursor: pointer;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.property-card {
    background-color: var(--color-white);
    transition: transform 0.4s ease;
}

.property-card__link {
    display: block;
    height: 100%;
}

.property-card__img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.property-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card__link:hover .property-card__img {
    transform: scale(1.08);
    /* Slow Zoom */
}

.property-card__status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.property-card__status--sold {
    background-color: #999;
}

.property-card__body {
    padding: 0 5px;
}

.property-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s;
}

.property-card__link:hover .property-card__title {
    color: var(--color-accent);
}

.property-card__price {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.property-card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    margin-left: 5px;
}

.property-card__info {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.property-card__info .info-row {
    display: flex;
    margin-bottom: 0;
}

.property-card__info .info-row dt {
    width: 35px;
    margin-right: 0;
    color: #999;
    font-weight: 500;
}

.property-card__info .info-row dd {
    flex: 1;
}

.property-card__btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    color: #777;
    transition: all 0.3s;
    border-radius: 4px;
}

.property-card__link:hover .property-card__btn {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-filter__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .search-filter__row {
        grid-template-columns: 1fr;
    }

    .sales-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sales-sort {
        width: 100%;
    }

    .sales-sort select {
        width: 100%;
    }


    .page-sales .sales-intro-text {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Works Page (Achievements)
   ========================================================================== */
.page-works .works-intro-text {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Category Filter */
.works-filter {
    margin-bottom: 50px;
}

.works-filter__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.works-filter__btn {
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 25px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.works-filter__btn.active,
.works-filter__btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* Works Grid (using shared .works-grid styled via property-grid pattern if similar) 
   But let's define specific .works-card for this page */

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.works-card {
    background-color: #fff;
    /* Optional: minimal border? User requested clean with white base */
}

.works-card__link {
    display: block;
    height: 100%;
}

.works-card__img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

.works-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.works-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.works-card__link:hover .works-card__img {
    transform: scale(1.08);
}

.works-card__link:hover .works-card__overlay {
    opacity: 1;
}

.works-card__body {
    padding: 0 5px;
}

.works-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
    transition: transform 0.3s, color 0.3s;
}

.works-card__link:hover .works-card__title {
    transform: translateY(-2px);
    color: var(--color-accent);
}

.works-card__cat {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.works-card__more {
    font-size: 0.85rem;
    color: var(--color-text);
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.works-card__more i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.works-card__link:hover .works-card__more {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.works-card__link:hover .works-card__more i {
    transform: translateX(3px);
}

.works-card__link:hover .property-card__btn {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}


/* Responsive */
@media screen and (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .works-filter__list {
        gap: 10px;
    }

    .works-filter__btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Order Made Page Styles
   ========================================================================== */

/* Hero CTA */
.sub-hero__cta {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.btn-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-accent);
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-white);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-hero:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Features Section */
.order-features-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.order-feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.order-feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.order-feature__img {
    flex: 1;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.order-feature__img img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.order-feature-item:hover .order-feature__img img {
    transform: scale(1.05);
}

.order-feature__content {
    flex: 1;
    padding: 20px;
}

.order-feature__num {
    display: block;
    font-family: var(--font-en);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
}

.order-feature__title {
    font-family: var(--font-jp);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.4;
    border-bottom: 2px solid var(--color-accent-sub);
    padding-bottom: 20px;
    display: inline-block;
}

.order-feature__desc {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
    text-align: justify;
}

/* Flow Section (Accordion Style) */
.order-flow-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.order-flow-item {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-accent-sub);
    transition: all 0.3s ease;
    overflow: hidden;
}

.order-flow-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background-color: #fafafa;
}

.order-flow__step {
    font-family: var(--font-en);
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-right: 30px;
    letter-spacing: 0.05em;
    min-width: 60px;
}

.order-flow__icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(168, 201, 114, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-right: 30px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.order-flow-item.active .order-flow__icon-box {
    background-color: var(--color-accent);
    color: #fff;
}

.order-flow__title-group {
    flex: 1;
}

.order-flow__title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--color-text);
}

.order-flow__summary {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

.order-flow__toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.order-flow-item.active .order-flow__toggle {
    color: var(--color-accent);
}

/* Accordion Body */
.accordion-body {
    height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #fafafa;
}

.order-flow__content {
    padding: 30px 30px 40px 115px;
    /* Indent to align with text */
}

.order-flow__desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
    text-align: justify;
}

/* Connectors (Vertical Line) */
.order-flow-list {
    position: relative;
}

/* Optional: Add a vertical line connecting steps if desired. For now, keeping it clean as per "concise" request. */

/* Responsive */
@media screen and (max-width: 768px) {
    .accordion-header {
        padding: 20px 15px;
        flex-wrap: wrap;
    }

    .order-flow__step {
        margin-right: 15px;
        font-size: 0.8rem;
        min-width: auto;
    }

    .order-flow__icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .order-flow__title-group {
        width: calc(100% - 120px);
        /* Adjust based on step/icon width */
    }

    .order-flow__title {
        font-size: 1rem;
    }

    .order-flow__summary {
        font-size: 0.8rem;
        display: none;
        /* Hide summary on mobile if too crowded, or keep it */
        display: block;
        margin-top: 5px;
    }

    .order-flow__toggle {
        position: absolute;
        top: 25px;
        right: 15px;
    }

    .order-flow__content {
        padding: 20px;
    }
}

/* Works Slider Custom */
.works-swiper-container {
    position: relative;
    padding: 0 50px;
    /* Space for arrows */
}

.works-card--slider .works-card__img-box {
    aspect-ratio: 16/10;
}

/* FAQ Section */
.order-faq-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-faq-item {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.order-faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.order-faq__question {
    padding: 25px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    background-color: #fff;
}

.order-faq__question:hover {
    background-color: #fafafa;
}

/* Q Marker */
.order-faq__question::before {
    content: 'Q';
    font-family: var(--font-en);
    color: #fff;
    background-color: var(--color-accent);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Toggle Icon */
.order-faq__question::after {
    content: '\f078';
    /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-text-light);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.order-faq__question.active::after {
    transform: rotate(180deg);
    color: var(--color-accent);
}

.order-faq__answer {
    padding: 20px 30px 30px;
    color: var(--color-text);
    line-height: 1.8;
    background-color: #f9f9f9;
    border-top: 1px solid var(--color-border);
    display: none;
    /* Controlled by JS but set redundant here safely */
    display: flex;
    /* Changed to flex to align A marker */
    align-items: flex-start;
}

/* A Marker */
.order-faq__answer::before {
    content: 'A';
    font-family: var(--font-en);
    color: var(--color-accent);
    background-color: #fff;
    border: 1px solid var(--color-accent);
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: -3px;
    /* Adjust for line-height alignment */
}

/* Responsive */
@media screen and (max-width: 768px) {
    .order-feature-item {
        flex-direction: column;
        gap: 30px;
    }

    .order-feature-item:nth-child(even) {
        flex-direction: column;
    }

    .order-feature__title {
        font-size: 1.5rem;
        width: 100%;
        text-align: left;
    }

    .order-faq__answer {
        padding-left: 20px;
    }

    .works-swiper-container {
        padding: 0;
    }
}

/* Brand Grid Styles */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--color-accent);
    /* Borders via gap */
    border: 1px solid var(--color-accent);
}

.brand-item {
    background-color: #ffffff;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

.brand-item:hover {
    background-color: #fafafa;
}

.brand-name {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-item {
        padding: 20px 10px;
    }

    .brand-name {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   News Page Styles (Redesign)
   ========================================================================== */

/* Filter Tabs */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.news-filter__btn {
    padding: 12px 30px;
    border: 1px solid var(--color-border);
    background-color: #fff;
    color: var(--color-text-light);
    font-family: var(--font-jp);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    /* Slight roundness for buttons */
}

.news-filter__btn:hover,
.news-filter__btn.active {
    background-color: var(--color-accent);
    /* Using brand accent */
    color: #fff;
    border-color: var(--color-accent);
}

/* News List */
.news-list-redesign {
    display: flex;
    flex-direction: column;
    /* gap: 0; */
    border-top: 1px solid var(--color-border);
}

.news-item-redesign {
    display: flex;
    align-items: baseline;
    /* Align text baselines */
    padding: 25px 0;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.3s ease;
}

.news-item-redesign:hover {
    background-color: #fafafa;
}

.news-item-redesign.hidden {
    display: none;
}

.news-meta-redesign {
    display: flex;
    align-items: center;
    min-width: 220px;
    gap: 20px;
}

.news-date-redesign {
    font-family: var(--font-en);
    color: var(--color-text-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.news-label-redesign {
    font-size: 0.75rem;
    padding: 4px 12px;
    border: 1px solid var(--color-border);
    /* Subtle border style */
    color: var(--color-text-light);
    /* background-color: #f5f5f5; */
    min-width: 80px;
    text-align: center;
    display: inline-block;
    letter-spacing: 0.05em;
}

/* Label colors for distinct categories (optional, keeping it subtle for now as per "luxury" request) */
.news-label-redesign[data-cat="event"] {
    color: #dcb386;
    border-color: #dcb386;
}

.news-label-redesign[data-cat="works"] {
    color: #888;
    border-color: #888;
}

.news-label-redesign[data-cat="news"] {
    color: var(--color-text);
    border-color: var(--color-text);
}

.news-content-redesign {
    flex: 1;
    margin-left: 30px;
}

.news-title-link {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    color: var(--color-text);
}

.news-item-redesign:hover .news-title-link {
    color: var(--color-accent);
    /* Subtle hover color change */
    /* transform: translateX(5px); */
}

.news-summary {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background-color: #f0f0f0; */
    color: var(--color-text);
    font-family: var(--font-en);
    transition: all 0.3s ease;
}

.pagination__btn:hover {
    background-color: #eee;
}

.pagination__btn.active {
    background-color: var(--color-text);
    color: #fff;
    cursor: default;
}

.pagination__nav {
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.pagination__nav:hover {
    opacity: 0.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .news-item-redesign {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .news-meta-redesign {
        margin-bottom: 10px;
        min-width: auto;
        width: 100%;
    }

    .news-content-redesign {
        margin-left: 0;
        width: 100%;
    }

    .news-summary {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .news-filter {
        gap: 10px;
    }

    .news-filter__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .pagination {
        gap: 5px;
    }
}

/* ==========================================================================
   Order Page V2 Additional Styles
   ========================================================================== */
.order-feature__list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.order-feature__list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    text-align: justify;
}

.order-feature__list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    /* Brand accent dot */
    border-radius: 50%;
}

.order-hero-sub {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Concept Page Specific Styles
   ========================================================================== */
.concept-commitment .section-title,
.concept-features .section-title,
.concept-brands .section-title {
    font-family: var(--font-jp);
    font-weight: 500;
}

/* ==========================================================================
   News Detail Page Redesign
   ========================================================================== */

/* Layout & Container */
.article-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.article-header {
    margin-bottom: 50px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.article-cat {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 99px;
    letter-spacing: 0.05em;
}

.article-date {
    font-family: var(--font-en);
    color: var(--color-text-light);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--color-text);
}

.article-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
    margin: 0 auto;
}

/* Main Visual */
.article-visual {
    margin-bottom: 60px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* Body Content */
.article-body {
    margin-bottom: 80px;
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
}

/* Headings in body */
.article-body h2 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: 0.05em;
}

.article-body h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 3px solid var(--color-accent);
    letter-spacing: 0.05em;
}

/* Paragraphs */
.article-body p {
    margin-bottom: 2rem;
    /* Loose spacing */
}

.article-body strong {
    font-weight: 700;
    /* color: var(--color-accent); Option to colorize bold text */
}

/* Blockquote */
.article-body blockquote {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #ddd;
    font-style: italic;
    color: #555;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

/* Images in body */
.article-body img {
    margin: 40px 0;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Attachment Link */
.article-attachment-link {
    margin-top: 40px;
}

.article-attachment-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-attachment-link a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: #fafafa;
}

/* Info Box */
.article-info-box {
    margin-bottom: 80px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.article-info-box dl {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px 0;
}

.article-info-box dt {
    font-weight: bold;
    color: var(--color-text);
    padding-right: 20px;
    border-right: 1px solid #eee;
    /* separation line */
    margin-right: 20px;
    display: flex;
    /* alignment */
    align-items: center;
}

.article-info-box dd {
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

/* Navigation (Prev/Next) */
.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    padding-top: 50px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 20px;
}

.article-nav__link {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 35%;
    color: var(--color-text);
}

.article-nav__link:hover {
    color: var(--color-accent);
}

.article-nav__link--prev {
    text-align: left;
}

.article-nav__link--next {
    text-align: right;
    justify-content: flex-end;
}

.article-nav__link .text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-nav__link .label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    font-family: var(--font-en);
}

.article-nav__link .title {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    /* truncate long titles */
}

.article-nav__back {
    font-family: var(--font-en);
    border: 1px solid var(--color-border);
    padding: 10px 30px;
    border-radius: 99px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-nav__back:hover {
    border-color: var(--color-text);
    background-color: var(--color-text);
    color: var(--color-white);
}

/* Related Articles */
.related-articles {
    padding-top: 80px;
    border-top: 1px solid var(--color-border);
    margin-bottom: 80px;
}

.related-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    display: block;
    background: #fff;
    transition: transform 0.3s ease;
}

.related-card:hover {
    opacity: 1;
    /* override default */
    transform: translateY(-5px);
}

.related-card__img {
    aspect-ratio: 3/2;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #eee;
}

.related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card__img img {
    transform: scale(1.05);
}

.related-card__content {
    padding: 0;
}

.related-card__date {
    display: block;
    font-family: var(--font-en);
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.related-card__title {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .article-title {
        font-size: 1.6rem;
    }

    .article-info-box {
        padding: 20px;
    }

    .article-info-box dl {
        display: block;
    }

    .article-info-box dt {
        border-right: none;
        margin-right: 0;
        margin-bottom: 5px;
        margin-top: 15px;
    }

    .article-info-box dt:first-child {
        margin-top: 0;
    }

    .article-nav {
        flex-direction: column;
        gap: 30px;
    }

    .article-nav__link {
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
        /* Arrow on sides */
    }

    .article-nav__link--next {
        flex-direction: row-reverse;
        /* Arrow on right */
    }

    .article-nav__link .title {
        white-space: normal;
        /* wrap on mobile */
        max-width: none;
    }

    .article-nav__back {
        order: 3;
        /* Move visual order if needed, or keep simpler */
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Sales Detail Page Redesign
   ========================================================================== */

/* Property Main Layout */
.property-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.property-header {
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 30px;
}

.property-cat {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.9rem;
    padding: 6px 18px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.property-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--color-text);
}

.property-address {
    font-family: var(--font-en);
    /* Mix En/Jp if needed, or use Jp font */
    color: var(--color-text-light);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.property-line {
    width: 80px;
    height: 1px;
    background-color: var(--color-border);
    margin: 30px auto 0;
}

/* Gallery (Swiper overrides if needed, or layout) */
.property-gallery {
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.property-slider {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.property-slider img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.property-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
    overflow: hidden;
}

.property-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.property-thumbs img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Sections */
.property-section {
    margin-bottom: 100px;
}

.property-section-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--color-accent);
    letter-spacing: 0.05em;
}

/* Spec Table (Redesigned) */
.property-spec-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for KV pairs */
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}

.property-spec-table dl {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.property-spec-table dt {
    width: 35%;
    /* Fixed label width */
    background-color: #fafafa;
    padding: 20px;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.property-spec-table dd {
    width: 65%;
    padding: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-en);
    margin-right: 5px;
}

/* Features */
.feature-lead {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent-sub);
}

/* Floor Plan & Docs */
.property-floorplan img {
    margin: 0 auto 40px;
    max-width: 80%;
    display: block;
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    border: 1px solid var(--color-border);
    background-color: #fff;
    color: var(--color-text);
    text-align: center;
    transition: all 0.3s;
    font-weight: 500;
    border-radius: 4px;
}

.btn-doc:hover {
    background-color: #fafafa;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Location List */
.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.location-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: #fff;
}

.loc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 1.1rem;
}

.loc-name {
    font-weight: 600;
    flex: 1;
}

.loc-dist {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Contact Box */
.property-contact-box {
    background-color: white;
    border: 1px solid var(--color-border);
    padding: 50px;
    text-align: center;
    margin-bottom: 100px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-box-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-box-desc {
    margin-bottom: 40px;
    color: var(--color-text-light);
}

.contact-box-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-primary,
.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 99px;
    /* Rounded pill style for CTA */
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.btn-contact-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 1px solid var(--color-accent);
}

.btn-contact-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-contact-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-contact-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Related Properties */
.related-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 80px;
}

/* Reuse .property-card styling from sales list, but ensure it works here */
.related-properties .property-card__title {
    font-size: 1rem;
}

.related-properties .property-card__price {
    font-size: 1.2rem;
}


/* Responsive */
@media screen and (max-width: 768px) {
    .property-title {
        font-size: 1.6rem;
    }

    .property-spec-table {
        grid-template-columns: 1fr;
        /* Stack */
    }

    .property-spec-table dt {
        width: 30%;
        padding: 15px;
        font-size: 0.9rem;
    }

    .property-spec-table dd {
        width: 70%;
        padding: 15px;
        font-size: 0.9rem;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .property-contact-box {
        padding: 30px 20px;
    }

    .contact-box-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-contact-primary,
    .btn-contact-secondary {
        width: 100%;
        justify-content: center;
    }

    .related-property-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Works Detail Page Redesign
   ========================================================================== */

/* Layout */
.works-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.works-header {
    margin-bottom: 60px;
}

.works-cat {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.works-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--color-text);
}

.works-sub {
    font-family: var(--font-en);
    /* Or JP */
    font-size: 1rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.works-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
    margin: 30px auto 0;
}

/* Hero Visual (Wide) */
.works-hero-visual {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    margin-bottom: 80px;
}

.works-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sections & Lead */
.works-section {
    margin-bottom: 100px;
}

.works-lead {
    font-size: 1.1rem;
    line-height: 2.2;
    text-align: center;
    font-weight: 500;
}

.works-gallery-story {
    margin-bottom: 100px;
}

/* Story Blocks */
.works-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.works-block--reverse {
    flex-direction: row-reverse;
}

.works-block__img {
    flex: 1.2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.works-block__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.works-block:hover .works-block__img img {
    transform: scale(1.03);
}

.works-block__text {
    flex: 1;
}

.works-block__title {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.works-block__text p {
    line-height: 2;
    color: var(--color-text);
}

/* Grid Gallery */
.works-grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.works-grid-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
}

.works-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-grid-caption {
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.9rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

/* Story Box (Architect's Note) */
.works-story-box {
    background-color: #fafafa;
    padding: 60px;
    text-align: center;
    border-radius: 4px;
}

.works-story-title {
    font-family: var(--font-en);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.works-story-body {
    line-height: 2;
    color: #555;
}

/* Minimal Info */
.works-info-minimal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.works-info-minimal dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.works-info-minimal dt {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.works-info-minimal dd {
    font-weight: 500;
    font-size: 1rem;
}

/* Full Gallery Grid (No Text) */
.works-gallery {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.works-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.works-gallery__item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.works-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.works-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

.works-gallery__item:hover img {
    transform: scale(1.05);
}

@media screen and (max-width: 992px) {
    .works-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .works-gallery__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Legacy Gallery Grid (No Text) */
.works-gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.works-gallery-item {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.works-gallery-item:hover {
    transform: translateY(-5px);
}

.works-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    /* Consistent aspect ratio */
}

/* Make every 3rd item span full width for variety, or keep simple 2-col */
.works-gallery-item:nth-child(3n) {
    grid-column: span 2;
    aspect-ratio: 2/1;
    /* Wider for spanned items */
}

@media screen and (max-width: 768px) {
    .works-gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .works-gallery-item:nth-child(3n) {
        grid-column: auto;
        aspect-ratio: 4/3;
    }
}

/* ==========================================================================
   About Page Redesign
   ========================================================================== */

/* Concept Section */
.about-concept-section {
    padding: 100px 0;
}

.about-concept-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-concept-text {
    flex: 1;
}

.about-concept-img {
    flex: 1.2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-concept-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-concept-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-concept-title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-concept-desc {
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--color-text);
}

/* Background Utility */
.bg-gray {
    background-color: #fafafa;
}

/* 5 Values Section */
.about-values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-box {
    background: #fff;
    padding: 30px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.value-box__icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.value-box__title {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

.value-box__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* CEO Message */
.about-ceo-section {
    padding: 100px 0;
}

.ceo-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.ceo-img {
    flex: 0.8;
    position: relative;
}

.ceo-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ceo-content {
    flex: 1;
}

.ceo-label {
    display: block;
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.ceo-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.ceo-text {
    line-height: 2;
    margin-bottom: 40px;
}

.ceo-name {
    text-align: right;
    font-size: 1rem;
    line-height: 1.5;
}

.name-highlight {
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* History Timeline */
.about-history-section {
    padding: 100px 0;
}

.history-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid var(--color-border);
}

.history-row {
    position: relative;
    padding-bottom: 40px;
}

.history-row:last-child {
    padding-bottom: 0;
}

.history-row::before {
    content: '';
    position: absolute;
    left: -35px;
    /* Adjust based on border-left padding */
    top: 5px;
    width: 11px;
    height: 11px;
    background-color: var(--color-white);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

.history-row dt {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-en);
    /* Using Outfit for numbers/dates looks good */
    color: var(--color-accent);
}

.history-row dd {
    font-size: 1rem;
    line-height: 1.6;
}

/* Company Table (Refined) */
.about-company-section {
    padding: 100px 0;
}

.company-info-table {
    border-top: 1px solid var(--color-border);
}

.company-info-table .info-row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    padding: 25px 0;
}

.company-info-table .info-row dt {
    width: 180px;
    font-weight: 600;
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    /* Align top for multiline */
}

.company-info-table .info-row dd {
    flex: 1;
    line-height: 1.8;
}

/* Access Map */
.about-access-section {
    padding-bottom: 100px;
}

.access-map-wrapper {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.access-info {
    margin-top: 20px;
    color: var(--color-text);
}

/* Responsive */
@media screen and (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols on tablet */
    }
}

@media screen and (max-width: 768px) {
    .about-concept-inner {
        flex-direction: column;
        gap: 40px;
    }

    .about-concept-img {
        width: 100%;
    }

    .ceo-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .info-row {
        flex-direction: column;
        padding: 20px 0;
    }

    .info-row dt {
        width: 100%;
        padding-left: 0;
        margin-bottom: 10px;
        color: var(--color-accent);
    }

    .history-timeline {
        padding-left: 20px;
    }

    .history-row::before {
        left: -26px;
        /* Adjust for smaller padding */
    }

    .about-concept-title,
    .ceo-title {
        font-size: 1.8rem;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .works-header {
        margin-bottom: 40px;
    }

    .works-hero-visual {
        height: 40vh;
        margin-bottom: 50px;
    }

    .works-block {
        flex-direction: column;
        gap: 30px;
    }

    .works-block--reverse {
        flex-direction: column;
    }

    .works-grid-gallery {
        grid-template-columns: 1fr;
    }

    .works-story-box {
        padding: 40px 20px;
    }

    .works-info-minimal {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }

    .works-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Request Page Styles
   ========================================================================== */

/* Material Intro */
.material-intro {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.material-intro__title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.material-intro__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.material-item {
    text-align: center;
    padding: 20px 10px;
    background-color: #fafafa;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.material-item:hover {
    transform: translateY(-3px);
}

.material-item__icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 15px;
    opacity: 0.8;
}

.material-item__text {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .material-intro__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Request Form */
.req-form {
    background-color: var(--color-white);
    padding: 50px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

@media screen and (max-width: 768px) {
    .req-form {
        padding: 25px;
    }
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.required {
    color: #c00;
    margin-left: 4px;
    font-size: 0.8rem;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    appearance: none;
    /* remove default styling */
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-sub);
    box-shadow: 0 0 0 3px rgba(168, 201, 114, 0.2);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.checkbox-item:hover {
    background-color: #f0f0f0;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--color-accent);
    transform: scale(1.1);
}

.checkbox-text {
    font-size: 0.95rem;
}

.privacy-check .checkbox-item {
    background: none;
    padding: 0;
    justify-content: center;
}

/* Flow */
.req-flow {
    display: block;
}

.req-flow__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.req-flow__step {
    text-align: center;
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 200px;
    border: 1px solid #eee;
}

.step-num {
    display: block;
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--color-accent-sub);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.step-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.req-flow__arrow {
    color: #ccc;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .req-flow__steps {
        flex-direction: column;
        gap: 15px;
    }

    .req-flow__arrow {
        transform: rotate(90deg);
    }

    .req-flow__step {
        width: 100%;
    }
}

/* ==========================================================================
   Lightbox (Gallery Image Viewer)
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__img-container {
    position: relative;
    max-width: 85%;
    max-height: 85%;
}

.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.lightbox__prev {
    left: 30px;
}

.lightbox__next {
    right: 30px;
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.works-gallery__item {
    cursor: zoom-in;
}

@media screen and (max-width: 768px) {
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }
}

/* Fix for Brands section title font weight */
.concept-brands .section-title {
    font-weight: 300 !important;
}

/* ==========================================================================
   Order Page FAQ Redesign
   ========================================================================== */
.order-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.order-faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

/* ==========================================================================
   Order Page Works Redesign
   ========================================================================== */
.section-works-order {
    background-color: #f8f8f8;
    padding: 100px 0;
}

.works-card--order {
    position: relative;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.works-card--order:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.works-card--order .works-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.works-card--order .works-card__img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.works-card--order .works-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.works-card--order:hover .works-card__img {
    transform: scale(1.1);
}

.works-card--order .works-card__content {
    padding: 25px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.works-card--order .works-card__title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.5;
    font-family: var(--font-jp);
}

.works-card--order .works-card__loc {
    font-size: 0.85rem;
    color: #888;
    font-family: var(--font-jp);
}

.btn-view-all-works {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid #333;
    color: #333;
    font-family: var(--font-en);
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-view-all-works::after {
    content: '\f178';
    /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-view-all-works:hover {
    background-color: #333;
    color: #fff;
}

.btn-view-all-works:hover::after {
    transform: translateX(5px);
}

.order-faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.order-faq__question {
    position: relative;
    padding: 20px 50px 20px 70px;
    /* Right padding for toggle, Left for Q */
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: background-color 0.3s;
}

.order-faq__question:hover {
    background-color: #fafafa;
}

/* "Q" Icon */
.order-faq__question::before {
    content: "Q";
    position: absolute;
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    background-color: var(--color-accent);
    color: #fff;
    font-family: var(--font-en);
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toggle Icon */
.order-faq__question::after {
    content: '\f078';
    /* Chevron Down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.order-faq-item.active .order-faq__question::after {
    transform: translateY(-50%) rotate(180deg);
}

.order-faq__answer {
    display: none;
    /* JS toggles flex/block */
    padding: 20px 20px 30px 70px;
    /* Align text with Q */
    border-top: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
    position: relative;
    display: none;
}

/* "A" Marker */
.order-faq__answer::before {
    content: "A";
    position: absolute;
    left: 28px;
    /* Align visually center with Q */
    top: 20px;
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .order-faq__question {
        padding: 15px 40px 15px 55px;
        font-size: 1rem;
    }

    .order-faq__question::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        left: 15px;
        top: 15px;
    }

    .order-faq__answer {
        padding: 15px 15px 25px 55px;
    }

    .order-faq__answer::before {
        left: 23px;
        top: 15px;
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Concept Page Redesign
   ========================================================================== */
.concept-commitment {
    padding: 100px 0;
}

.commitment-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.commitment-grid__img {
    flex: 1.2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.commitment-grid__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.commitment-grid:hover .commitment-grid__img img {
    transform: scale(1.05);
}

.commitment-grid__text {
    flex: 1;
}

.commitment-heading {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.commitment-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-item--reverse {
    flex-direction: row-reverse;
}

.feature-item__img {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item__img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.feature-item:hover .feature-item__img img {
    transform: scale(1.05);
}

.feature-item__content {
    flex: 1;
    min-width: 0;
    /* Allow flex item to shrink below content size */
    overflow: visible;
}

.feature-item__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-accent);
    line-height: 1.4;
}

.feature-item__sub {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-accent-sub);
}

.feature-item__desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.feature-item__note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ZEH Table */
.table-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.zeh-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Ensure table doesn't squash on mobile */
    font-size: 0.9rem;
}

.zeh-table th,
.zeh-table td {
    border: 1px solid var(--color-border);
    padding: 12px;
    text-align: center;
}

.zeh-table__years th {
    background-color: #f0f0f0;
    font-weight: 500;
}

.zeh-table__target-year {
    background-color: var(--color-accent);
    color: #fff !important;
}

.zeh-table__labels th {
    font-size: 0.85rem;
    color: var(--color-text-light);
    background-color: #fafafa;
}

.zeh-table__target-label {
    background-color: rgba(48, 65, 48, 0.1);
    /* Light accent */
    color: var(--color-accent);
    font-weight: 600;
}

.zeh-table__result-cell {
    background-color: #fff;
}

.zeh-table__target-cell {
    font-weight: 700;
    color: var(--color-accent);
    background-color: rgba(48, 65, 48, 0.05);
}

/* Brands Grid */
.concept-brands {
    background-color: #fafafa;
    padding: 80px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--color-border);
    border: 1px solid var(--color-border);
}

.brand-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.brand-item:hover {
    background-color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.brand-item a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Override */
@media screen and (max-width: 768px) {
    .commitment-grid {
        flex-direction: column;
        gap: 30px;
    }

    .commitment-grid__img {
        width: 100%;
    }

    .commitment-heading {
        font-size: 1.6rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 30px;
    }

    /* Ensure image is first on mobile even if reversed on PC */
    .feature-item--reverse {
        flex-direction: column;
    }

    .feature-item__title {
        font-size: 1.5rem;
    }

    .feature-item__content {
        width: 100%;
        max-width: 100%;
    }

    .table-scroll {
        max-width: calc(100vw - 40px);
        /* Account for container padding */
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Form 7 Styles */
.contact-form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-form-row:last-child {
    margin-bottom: 0;
}

.contact-form-label {
    font-weight: bold;
}

.contact-form-required {
    color: #c00;
}

.contact-form-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-submit-wrapper {
    text-align: center;
    margin-top: 20px;
}

.wpcf7-submit {
    min-width: 200px;
}