@charset "UTF-8";

/* Luxury Design Tokens */
/* Tokens are resolved below */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', serif;
    color: #111111;
    background-color: #fff;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Container */
.scroll-container {
    position: relative;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.hero__content {
    flex: 0 0 40%;
    min-width: 300px;
    padding: 8rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    order: 1;
}

.hero__image {
    flex: 1;
    min-width: 300px;
    height: 100vh;
    order: 2;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__catchphrase {
    font-family: 'Noto Serif', serif;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #3A2D4D;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero__concept-name {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #111111;
}

.hero__concept-text {
    font-family: 'Noto Sans JP', sans-serif;
    color: #444444;
    text-align: left;
}

.description-container {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
}

.description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero__content {
        flex: 0 0 100%;
        padding: 60px 20px;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__catchphrase,
    .hero__concept-name,
    .hero__concept-text {
        max-width: 335px;
        width: 100%;
    }

    .hero__concept-text {
        font-size: 14px;
        margin-bottom: 0;
    }

    .hero__image {
        height: 60vh;
        order: 2;
    }

    .hero__concept-name {
        font-weight: 400;
        font-size: 32px;
        line-height: 1.2em;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
}

/* Exterior Design Section */
.exterior {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem;
    background-color: #3A3A3A;
    gap: 5rem;
    position: relative;
    z-index: 10;
    width: 100.1%;
    margin-right: -1px;
}

.exterior .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.exterior .section-header .section-header__subtitle {
    color: #fff;
}

.exterior .section-header .section-header__subtitle-jp {
    color: #fff;
}

.exterior__image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.exterior__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exterior__content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header__subtitle {
    font-family: 'Noto Serif', 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #3A2D4D;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-header__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.125rem;
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.exterior__description {
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
    margin-bottom: 2rem;
    text-align: left;
}

.exterior__points {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.exterior__point-card {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.875rem 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: background 0.3s ease;
}

.exterior__point-card:hover {
    background: rgba(77, 30, 107, 0.02);
}

.exterior__point-number {
    font-family: 'Noto Serif', serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    line-height: 1;
    letter-spacing: 0.05em;
    min-width: 2rem;
}

.exterior__point-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #fff;
    flex: 1;
    margin-bottom: 0;
}

/* Lifestyle Infinite Loop Section */
.lifestyle {
    position: relative;
    z-index: 10;
    width: 100.1%;
    margin-right: -1px;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
}

.lifestyle__container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.lifestyle__track {
    display: flex;
    gap: 80px;
    height: 600px;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lifestyle__slide {
    flex-shrink: 0;
    width: 450px;
    height: 300px;
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease;
}

.lifestyle__slide:nth-child(odd) {
    transform: translateY(-40px);
}

.lifestyle__slide:nth-child(even) {
    transform: translateY(40px);
}

.lifestyle__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Floor Plan Section */
.floorplan {
    padding: 4rem 0 0;
    background-color: #fff;
    width: 100.1%;
    margin-right: -1px;
    position: relative;
    z-index: 10;
}

.floorplan__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.floorplan .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.floorplan__images {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.floorplan__image {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.floorplan__image img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.floorplan__label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #3A2D4D;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.floorplan__description {
    font-family: 'Noto Sans JP', sans-serif;
    color: #555;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.floorplan__specs {
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #e0e0e0;
    font-family: 'Noto Sans JP', sans-serif;
}

.floorplan__specs th,
.floorplan__specs td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.floorplan__specs thead th {
    font-weight: 500;
    color: #111111;
    background-color: #f8f8fa;
    border-bottom: 1px solid #e0e0e0;
}

.floorplan__specs tbody td {
    color: #555;
    font-weight: 400;
}

/* Performance Section */
.performance-section {
    padding: 8rem 2rem;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1170px;
    margin: 0 auto;
}

.performance-card {
    background-color: #fff;
    padding: 4rem 2rem;
    border-radius: 2px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.performance-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.performance-title {
    font-size: 1.375rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.performance-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.performance-description {
    font-size: 0.875rem;
    line-height: 2;
    color: #555;
}

/* Living Room Section */
.living {
    padding: 2rem 2rem;
    background-color: #fff;
    position: relative;
    z-index: 10;
    width: 100.1%;
    margin-right: -1px;
}

.living__content {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    background-color: #3A3A3A;
    padding: 4rem;
    border-radius: 32px;
    position: relative;
}

.living__image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.living__text {
    flex: 1;
}

.living__title {
    font-family: 'Noto Sans JP', sans-serif;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.living__description {
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* リビングセクション内のラベルを白に */
.living .section-header__subtitle {
    color: #ffffff;
}

.living .section-header__subtitle-jp {
    color: rgba(255, 255, 255, 0.9);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.modal__content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: #ccc;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}



/* Mobile Responsiveness for Exterior Section */
@media (max-width: 768px) {
    .exterior {
        flex-direction: column;
        padding: 60px 20px;
        gap: 2rem;
        display: flex;
    }



    .exterior__image {
        order: -1;
        width: 100%;
        max-width: 100%;
    }

    .exterior__content {
        order: 0;
        width: 100%;
        max-width: 100%;
    }

    .exterior__description,
    .exterior__points {
        order: 1;
        font-family: 'Noto Sans JP', sans-serif;
        text-align: left;
        font-size: 14px;
    }

    .section-header__subtitle {
        font-weight: 400;
        font-size: 24px;
        line-height: 1.2;
        letter-spacing: 0.1em;
        margin-bottom: 0.25rem;
    }

    .section-header__title {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .lifestyle {
        height: auto;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow: hidden;
    }

    .lifestyle__container {
        height: 400px;
    }

    .lifestyle__track {
        padding: 0;
        gap: 20px;
        height: 400px;
    }

    .lifestyle__slide {
        width: 300px;
        height: 220px;
    }

    .lifestyle__slide:nth-child(odd) {
        transform: translateY(-30px);
    }

    .lifestyle__slide:nth-child(even) {
        transform: translateY(30px);
    }

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

    .floorplan {
        padding: 60px 20px 0;
        margin-bottom: 0;
    }

    .floorplan__inner {
        padding: 0;
    }

    .floorplan .section-header {
        margin-bottom: 2rem;
    }

    .floorplan__images {
        flex-direction: column;
        gap: 2rem;
    }

    .floorplan__image:first-child {
        order: 2;
    }

    .floorplan__image:last-child {
        order: 1;
    }

    .floorplan__image {
        max-width: 100%;
    }

    .floorplan__description {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 3rem;
        font-family: 'Noto Sans JP', sans-serif;
        text-align: left;
    }

    .floorplan__specs {
        max-width: 100%;
    }

    .floorplan__specs thead {
        display: none;
    }

    .floorplan__specs tbody {
        display: block;
    }

    .floorplan__specs tbody tr {
        display: block;
        border-bottom: 1px solid #e0e0e0;
    }

    .floorplan__specs tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        text-align: right;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .floorplan__specs tbody td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #333;
        background-color: #f5f5f0;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        margin-right: 1rem;
    }

    .living {
        padding: 60px 20px;
        margin-bottom: 0;
    }

    .living__content {
        flex-direction: column;
        gap: 2rem;
        display: flex;
        padding: 2rem;
        border-radius: 24px;
    }

    .living .section-header__subtitle,
    .living__title {
        order: -2;
    }

    .living__image {
        order: -1;
    }

    .living__description {
        order: 1;
    }

    .living__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .living__description {
        font-size: 14px;
        line-height: 1.8;
        font-family: 'Noto Sans JP', sans-serif;
        text-align: left;
    }

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

    .performance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .performance-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 769px) {
    .floorplan {
        padding-top: 128px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .lifestyle,
    .living {
        margin-bottom: 0;
    }
}

.elliptical-reveal {
    opacity: 0;
    transform: translateY(60px);
    clip-path: ellipse(30% 20% at 50% 120%);
    will-change: transform, clip-path, opacity;
}

.elliptical-reveal.is-visible {
    animation: ellipticalReveal 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes ellipticalReveal {
    0% {
        opacity: 0;
        transform: translateY(60px);
        clip-path: ellipse(30% 20% at 50% 120%);
    }

    99% {
        clip-path: ellipse(150% 150% at 50% 100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: none;
    }
}

/* Hamburger Menu Styles Removed (Inherited from layout.css) */

/* Footer Styles Removed (Inherited from layout.css) */