@charset "UTF-8";

/* ============================================================================
   Hero Section – Stable / Non-GPU / Mobile First
   ============================================================================ */

/* ============================================================================
   1. Hero Section Container
   ============================================================================ */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  background-color: #000;

  z-index: 0;
}

/* ============================================================================
   2. Background Video
   ============================================================================ */

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;

  /* 非 GPU 明示 */
  transform: none;
  will-change: auto;
  backface-visibility: visible;
}

/* ============================================================================
   3. Hero Content
   ============================================================================ */

.hero-content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 100%;

  padding: 4rem 1.25rem 3rem;
  margin-top: 4rem;

  text-align: center;
  color: #fff;
}

/* ============================================================================
   4. Title
   ============================================================================ */

.hero-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom:var(--space-6);
  text-shadow:
    0 2px 10px rgba(0,0,0,.8),
    0 6px 30px rgba(0,0,0,.6);
}

/* ============================================================================
   6. Actions
   ============================================================================ */

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ============================================================================
   7. Buttons (Hero Scoped)
   ============================================================================ */

.hero-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.5rem;
  width: 100%;

  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;

  border-radius: 0.75rem;
  cursor: pointer;

  transition: background-color .2s ease, box-shadow .2s ease;
}
.hero-section .btn-primary {
  background: var(--color-glass-black);
  color: #fff;
  backdrop-filter: blur(var(--blur-lg));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.hero-section .btn-outline {
  background: var(--color-glass-white);
    backdrop-filter: blur(var(--blur-lg));
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-2xl);
}

/* ============================================================================
   8. Tablet (≥768px)
   ============================================================================ */

@media (min-width: 768px) {
  .hero-content {
    padding: 5rem 2rem 4rem;
    margin-top: 5rem;
    max-width: 900px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero-section .btn {
    width: auto;
    min-width: 180px;
  }
}

/* ============================================================================
   9. Desktop (≥1024px)
   ============================================================================ */

@media (min-width: 1024px) {
  .hero-content {
    margin-top: 0;
    padding: 6rem 3rem;
    max-width: 1100px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 3.5vw, 4rem);
  }

  .hero-description {
    font-size: 1.05rem;
    max-width: 46rem;
  }
}

/* ============================================================================
   10. Large Desktop (≥1920px)
   ============================================================================ */

@media (min-width: 1920px) {
  .hero-content {
    max-width: 1280px;
    padding: 7rem 4rem;
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

/* ============================================================================
   11. Ultra Wide (≥2560px)
   ============================================================================ */

@media (min-width: 2560px) {
  .hero-content {
    max-width: 1440px;
  }

  .hero-title {
    font-size: 4.8rem;
  }
}

/* ============================================================================
   12. Accessibility
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }
}


/* ============================================================================
   Developer Slider Styles　ロゴスライドショーsection
   ============================================================================ */

/* セクション全体設定 */
.dev-slider-section {
  width: 100%;
  background-color: var(--color-white); 
  padding: var(--space-6) 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--color-gray-200);
}

/* タイトルエリア */
.dev-slider-header {
  text-align: center;
  margin-bottom: var(--space-4);
  padding: 0 var(--space-4);
}

.dev-slider-title {
  font-family: var(--font-sans);
  font-size: var(--font-size-xs);
  color: var(--color-gray-500); 
  letter-spacing: 0.2em;
  font-weight: var(--font-weight-semibold);
  margin: 0;
  display: inline-block;
}

/* ゴールドのアクセントライン */
.dev-slider-line {
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
  margin: var(--space-2) auto 0;
}

/* スライダーの表示窓 */
.dev-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* 画像が流れるトラック */
.dev-slider-track {
  display: flex;
  align-items: center;
  width: max-content; 
  animation: scroll-loop 45s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* 個々のスライドアイテム */
.dev-slide {
  width: 140px;      /* Mobile */
  height: 80px;      
  margin: 0 var(--space-3); 
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition-base), filter var(--transition-base);
  opacity: 0.8; 
  filter: grayscale(100%); 
}

/* 画像自体の設定 */
.dev-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; 
  display: block;
  -webkit-user-drag: none;
}

.dev-slide:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* アニメーション定義 */
@keyframes scroll-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints (PC向け調整)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .dev-slider-section {
    padding: var(--space-10) 0; /* 少し余白を広げる */
  }
  
  .dev-slider-title {
    font-size: var(--font-size-sm);
  }

  .dev-slide {
    width: 220px; /* 普通のPCでもしっかり見えるサイズに調整 */
    height: 110px;
    margin: 0 var(--space-6);
  }
}

/* --------------------------------------------------------------------------
   Large PC (2560px以上) 対応 - マキシマムスケーリング
   -------------------------------------------------------------------------- */
@media (min-width: 2560px) {
  .dev-slider-section {
    padding: 120px 0; /* 圧倒的なゆとりを持たせる */
  }

  .dev-slider-header {
    margin-bottom: var(--space-12);
  }

  .dev-slider-title {
    font-size: 24px; /* タイトルも視認性を確保 */
    letter-spacing: 0.4em;
  }

  .dev-slider-line {
    width: 80px;
    margin-top: var(--space-4);
  }

  .dev-slide {
    width: 380px; /* 特大画面に合わせたロゴの横幅 */
    height: 160px; /* 高さを出し、ロゴの存在感を強化 */
    margin: 0 60px; /* ロゴ間の余白を贅沢に */
  }

  /* 画面が広いため、少し速度を緩やかにして高級感を出す */
  .dev-slider-track {
    animation-duration: 60s;
  }
}

/*---最新の物件情報: Properties Slideshow Component -----*/

.properties-section {
  /* Spacing: 2rem(style) -> --space-4(global: 32px) */
  padding: var(--space-4) var(--space-2);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .properties-section {
    padding: var(--space-4) var(--space-3);
  }
}

@media (min-width: 1024px) {
  .properties-section {
    padding: var(--space-4) var(--space-4);
  }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.properties-header {
  max-width: var(--container-2xl);
  margin: var(--space-5) auto var(--space-5); /* 2.5rem -> --space-3 */
}

.properties-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin: 0 0 var(--space-1); /* 0.5rem -> --space-1 */
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

.properties-subtitle {
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  margin: 0;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */

.properties-cta {
  max-width: var( --container-MAX);
  margin: var(--space-4) auto 0; /* 2rem -> --space-4 */
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--color-glass-white);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: var(--transition-luxury);
}

.cta-button:hover {
  background: var(--color-glass-white-hover);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}


/* ============================================================================
       Areas-list Section / Developer-list Section
       取り扱いエリア・デベロッパー

        Areas-list Section / Developer-list Section
         取り扱いエリア・デベロッパー
         cssは、pages/area-developer/area-developer-list-page.cssを使用
============================================================================ */


 /* ============================================================================
       Message Section - CEO Message
       代表メッセージセクション専用スタイル
 ============================================================================ */
    
        .msg-section {
            position: relative;
            padding: var(--space-12) 0;
            background-color: #1a1919;
            overflow: hidden;
        }

        /* 装飾的な背景テキスト <div class="msg-bg-text">Unique</div>　*/
        .msg-bg-text {
            position: absolute;
            top: 5%;
            left: 28px;
            font-size: 20vw;
            font-weight: 900;
            font-family: var(--font-sans);
            color: rgba(255, 255, 255, 0.02);
            line-height: 1;
            pointer-events: none;
            z-index: 0;
            text-transform: uppercase;
        }

        .msg-container {
            display: flex;
            flex-direction: column;
            gap: var(--space-8);
            position: relative;
            z-index: 1;
        }

        /* --- 左カラム：タイトル ＆ ビジュアル --- */
        .msg-left {
            flex: 1;
        }

        .msg-label {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            font-size: var(--font-size-xs);
            color: var(--color-gold); /* #d4af37 */
            font-weight: var(--font-weight-bold);
            letter-spacing: 0.3em;
            margin-bottom: var(--space-4);
            text-transform: uppercase;
        }

        .msg-label::after {
            content: "";
            width: 40px;
            height: 1px;
            background-color: var(--color-gold);
        }

        .msg-title {
            font-family: var(--font-serif); /* Georgia/Times */
            font-size: var(--font-size-2xl);
            line-height: 1.3;
            color: var(--color-white);
            margin-bottom: var(--space-8);
            text-wrap: balance;
        }

        .msg-visual {
            position: relative;
            width: 100%;
            max-width: 540px;
        }

        .msg-image-wrap {
            position: relative;
            z-index: 2;
            border-radius: var(--radius-sm);
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
        }

        .msg-image {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            transition: transform var(--transition-luxury);
        }

        .msg-visual:hover .msg-image {
            transform: scale(1.05);
        }

        /* グラスモーフィズム装飾 */
        .msg-decoration-box {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 60%;
            height: 60%;
            z-index: 1;
            background: var(--color-glass-white); /* */
            backdrop-filter: blur(var(--blur-md));
            border: 1px solid var(--color-border);
        }

        /* --- 右カラム：メッセージテキスト --- */
        .msg-right {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .msg-body {
            font-size: var(--font-size-base);
            color: var(--color-text-secondary); /* #d4d4d4 */
            line-height: 2;
            text-align: justify;
        }

        .msg-body p {
            margin-bottom: var(--space-6);
        }

        /* 署名エリア */
        .msg-signature {
            margin-top: var(--space-8);
            padding-top: var(--space-6);
            border-top: 1px solid var(--color-border);
        }

        .msg-role {
            font-size: var(--font-size-sm);
            color: var(--color-gold);
            letter-spacing: 0.1em;
            margin-bottom: var(--space-2);
        }

        .msg-name {
            font-family: var(--font-serif);
            font-size: var(--font-size-xl);
            color: var(--color-white);
            display: flex;
            align-items: baseline;
            gap: var(--space-4);
        }

        .msg-name span {
            font-size: var(--font-size-sm);
            font-family: var(--font-sans);
            color: var(--color-text-muted);
            letter-spacing: 0.2em;
        }

        /* CTAボタン */
        .msg-cta {
            margin-top: var(--space-10);
        }

        .msg-btn {
            display: inline-flex;
            align-items: center;
            padding: var(--space-4) var(--space-8);
            background: transparent;
            border: 1px solid var(--color-gold);
            color: var(--color-gold);
            font-size: var(--font-size-xs);
            font-weight: var(--font-weight-bold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: all var(--transition-base);
            position: relative;
            z-index: 1;
        }

        .msg-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--color-gold);
            z-index: -1;
            transition: width var(--transition-base);
        }

        .msg-btn:hover {
            color: var(--color-black);
        }

        .msg-btn:hover::before {
            width: 100%;
        }

        /* --- PC Layout (1024px以上) --- */
        @media (min-width: 1024px) {
            .msg-section {
                padding: var(--space-20) 0;
            }

            .msg-container {
                flex-direction: row;
                gap: 100px;
                align-items: stretch;
            }

            .msg-left {
                position: sticky;
                top: var(--space-12);
                height: fit-content;
            }

            .msg-title {
                font-size: var(--font-size-3xl); /* 40-80px */
                margin-bottom: var(--space-12);
            }

            .msg-right {
                padding-top: 300px; /* タイトル分ずらしてアシンメトリーに */
            }

            .msg-body {
                max-width: 600px;
            }
        }


  /* ============================================================
   service-section.css — サービスセクション
   ============================================================ */

/* ----------------------------------------
   セクション基本
   ---------------------------------------- */

/* ----------------------------------------
   グリッドラッパー（モバイル: 縦積み）
   ---------------------------------------- */
.service-intro__grid {
  display: flex;
  flex-direction: column;
  padding: 6em 2.5rem 2.5rem;
}

/* ========================================
   左カラム
   ======================================== */

.service-intro__col-left {
  display: flex;
  flex-direction: column;
}

/* ---- サムネイル（小画像） ---- */
.service-intro__thumb {
  margin: 0;
  flex-shrink: 0;
  line-height: 0;
}

.service-intro__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.2em;
}



/* ---- テキストエリア ---- */
.service-intro__body {
  padding: 2.5rem 1.5rem 2.5rem;
}

/* セクションラベル */
.service-intro__label {
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.service-intro__heading {
  font-size: clamp(1.625rem, 5.5vw, 2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}

.service-intro__text {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ========================================
   右カラム
   ======================================== */

.service-intro__col-right {
  display: flex;
  flex-direction: column;
}

/* ---- メイン画像（大） ---- */
.service-intro__main-figure {
  margin: 0;
  line-height: 0;
}

.service-intro__main-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   タブレット（768px〜）
   ======================================== */
@media (min-width: 768px) {

  .service-intro__grid {
    flex-direction: row;
    min-height: 34rem;
  }

  /* 左カラム */
  .service-intro__col-left {
    width: 46%;
    justify-content: space-between;
  }


  .service-intro__body {
    padding: 0;
  }

  /* 右カラム */
  .service-intro__col-right {
    width: 54%;
    justify-content: space-between;
  }

  .service-intro__main-figure {
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  .service-intro__thumb {
    max-width: 22rem;
  }

  .service-intro__main-figure img {
    object-fit: cover;
  }

  
}

/* ========================================
   PC（1024px〜）
   ======================================== */
@media (min-width: 1024px) {

  .service-intro__grid {
    min-height: 38.5rem;
  }

  .service-intro__col-left {
    width: 45%;
  }

  .service-intro__thumb {
    max-width: 23.5rem;
  }

  .service-intro__col-right {
    width: 55%;
  }
}

/* ========================================
   大型PC（1280px〜）
   ======================================== */
@media (min-width: 1280px) {

  .service-intro__grid {
    min-height: 40rem;
  }

  .service-intro__col-left {
    padding: 2rem 2.5rem 3rem 3rem;
  }

  .service-intro__thumb {
    max-width: 24rem;
  }
}

/* ========================================
   サービスフロー
   ======================================== */

.service-intro__flow {
  border-top: 1px solid rgba(154, 136, 120, 0.35);
  padding: 2.5rem 1.5rem 6rem;
}

/* HOW IT WORKS ラベル */
.service-intro__flow-label {
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  margin: 0 0 1.75rem;
}

/* ステップリスト（モバイル: 縦積み） */
.service-intro__flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* 各ステップ */
.service-intro__flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(154, 136, 120, 0.25);
  margin: 0;
}

.service-intro__flow-step:last-child {
  border-bottom: 1px solid rgba(154, 136, 120, 0.25);
}

/* ステップ番号 */
.service-intro__flow-num {
  font-size: clamp(1.625rem, 5.5vw, 2rem);
  font-weight: 300;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.75rem;
}

/* テキストエリア */
.service-intro__flow-body {
  flex: 1;
  padding-top: 0.125rem;
}

.service-intro__flow-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.service-intro__flow-text {
  font-size: var(--font-size-base);
  color: var(--color-gray-50);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ========================================
   タブレット（768px〜）
   ======================================== */
@media (min-width: 768px) {


  .service-intro__flow-steps {
    flex-direction: row;
    align-items: stretch;
  }

  .service-intro__flow-step {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0 1.5rem;
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(154, 136, 120, 0.25);
  }

  .service-intro__flow-step:last-child {
    border-bottom: none;
    border-right: 1px solid rgba(154, 136, 120, 0.25);
  }

  .service-intro__flow-num {
    min-width: auto;
  }
}

/* ========================================
   PC（1024px〜）
   ======================================== */
@media (min-width: 1024px) {

  .service-intro__flow {
    padding: 3rem 2.5rem 6rem;
  }

  .service-intro__flow-step {
    padding: 0 var(--space-4);
  }
}

/* ========================================
   大型PC（1280px〜）
   ======================================== */
@media (min-width: 1280px) {

  .service-intro__flow-step {
    padding: 0 2.5rem;
  }
}

/* ==========================================================================
    Strength Section - 当社の強み
========================================================================== */

/* ========================================
   レイアウト・デザイン CSS
   - global.cssをベースとした設計
   - モバイルファースト / 1920px・2560px対応
   - グラスモーフィズム適用
======================================== */

/* ========================================
   ユーティリティ
======================================== */
.u-hidden-sp {
  display: none;
}

@media (min-width: 768px) {
  .u-hidden-sp {
    display: inline;
  }
}

/* ========================================
   コンテナ（モバイルファースト / 大型モニター対応）
======================================== */
.l-container {
  width: 100%;
  /*
  max-width: var(--container-MAX);
  margin: 0 auto;
  */
  padding: 0 var(--space-4);
}
/*
   強みセクション - 背景・配色
======================================== */
.l-strengths {
  background-image:url('../../../images/dubai-downtown-rooftop.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* グラスモーフィズム適用 */
.l-strengths__content-wrapper {
  background: var(--color-glass-white);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--color-border);
  padding: var(--space-10) 0;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 1920px) {
  .l-strengths__content-wrapper {
    padding: var(--space-16) 0;
  }
}

/* ========================================
   セクションタイトル
======================================== */
.c-section-title {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: 0;
}

.c-section-title.--center {
  align-items: center;
}

.c-section-title.--light {
  color: var(--color-white);
}

.c-section-title__sub {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.c-section-title__main {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .c-section-title__main {
    font-size: var(--font-size-3xl);
  }
}

/* ========================================
   イントログリッド
======================================== */
.l-strengths__intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .l-strengths__intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
  }
}

@media (min-width: 1920px) {
  .l-strengths__intro-grid {
    gap: var(--space-12);
    margin-bottom: var(--space-16);
  }
}

.c-lead-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
}



.l-strengths__image-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.l-strengths__image img {
  width: 100%;
  height: auto;
}

/* ========================================
   強みカードグリッド
======================================== */
.l-strengths__items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .l-strengths__items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1920px) {
  .l-strengths__items-grid {
    gap: var(--space-8);
    margin-bottom: var(--space-12);
  }
}

/* 強みカード */
.m-strength-card {
  background: var(--color-glass-white);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--color-border);
  padding: var(--space-3);
  border-radius: var(--radius-md);
}

@media (min-width: 1920px) {
  .m-strength-card {
    padding: var(--space-8);
  }
}

.m-strength-card__num {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  opacity: 0.3;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-3);
}

.m-strength-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-3);
  color: var(--color-white);
}

.m-strength-card__text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--color-white);
}

   
/* ==========================================================================
   Blog Section ブログ記事
   ========================================================================== */
.blog-section {
  padding: var(--space-8) 0;
  background-color: #1a1919;
}

@media (min-width: 768px) {
  .blog-section {
    padding: var(--space-12) 0;
  }
}

@media (min-width: 1024px) {
  .blog-section {
    padding: var(--space-16) 0;
  }
}

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */

.blog-section .container {
  width: 100%;
  max-width: var( --container-MAX);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .blog-section .container {
    padding: 0 var(--space-6);
  }
}

@media (min-width: 1024px) {
  .blog-section .container {
    padding: 0 var(--space-8);
  }
}

/* --------------------------------------------------------------------------
   Blog Header
   -------------------------------------------------------------------------- */

.blog-header {
  margin-bottom: var(--space-6);
  position: relative; /* 子要素の基準点にするため必須 */
  z-index: 1;
}



@media (min-width: 768px) {
  .blog-header {
    margin-bottom: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .blog-header {
    margin-bottom: var(--space-10);
  }
}

.blog-decoration-box {
  position: absolute;
  /* タイトルの左上に配置する例（お好みで bottom/right に変更可能） */
  top: -20px;
  left: -20px;
  width: 80px;  /* サイズは適宜調整してください */
  height: 80px;
  z-index: -1;  /* テキストの背面に配置 */
  
  /* グラスモーフィズム設定 */
  background: var(--color-glass-white);
  backdrop-filter: blur(var(--blur-md));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); /* 少し角を丸くすると馴染みます */
  pointer-events: none;
}

@media (min-width: 768px) {
  .blog-decoration-box {
    width: 120px;
    height: 120px;
    top: -30px;
    left: -30px;
  }
}

/* 念のためラベルとタイトルが背面に隠れないよう調整 */
.blog-label, 
.blog-title {
  position: relative;
  z-index: 2;
}

.blog-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  
}


.blog-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
  margin: 0;
}

@media (min-width: 768px) {
  .blog-title {
    font-size: var(--font-size-3xl);
  }
}

/* --------------------------------------------------------------------------
   Blog List
   -------------------------------------------------------------------------- */

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  justify-content: space-around;
}

/* タブレット（768px）から: Flexboxで2カラム、オフセットレイアウト */
@media (min-width: 768px) {
  .blog-list {
    row-gap: var(--space-6);
  }
}

/* PC（1024px）から: ギャップを広げる */
@media (min-width: 1024px) {
  .blog-list {
    row-gap: var(--space-8);
  }
}

/* --------------------------------------------------------------------------
   Blog Item
   -------------------------------------------------------------------------- */

.blog-item {
  width: 100%;
}

/* タブレット（768px）から: 幅指定と左右交互オフセット */
@media (min-width: 768px) {
  .blog-item {
    width: calc(var(--w) * 19);
  }

  /* 奇数（1番目、3番目...）: 右側、下にオフセット */
  .blog-item:nth-child(odd) {
    margin-top: var(--space-8);
  }

  /* 偶数（2番目、4番目...）: 左側、基準位置 */
  .blog-item:nth-child(even) {
    margin-top: 0;
  }
}

/* PC（1024px）から: オフセット量を増加 */
@media (min-width: 1024px) {
  /* 奇数（1番目、3番目...）: 右側、オフセット量を増加 */
  .blog-item:nth-child(odd) {
    margin-top: var(--space-12);
  }

  /* 偶数（2番目、4番目...）: 左側、基準位置 */
  .blog-item:nth-child(even) {
    margin-top: 0;
  }
}

.blog-link {
  display: flex;
  flex-direction: column;
  color: inherit;
}

/* --------------------------------------------------------------------------
   Blog Media
   -------------------------------------------------------------------------- */

.blog-media {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-gray-900);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}

.blog-media img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (min-width: 768px) {
  .blog-media img {
    aspect-ratio: 16/9;
  }
}

/* --------------------------------------------------------------------------
   Blog Body
   -------------------------------------------------------------------------- */

.blog-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.blog-item-date {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-item-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

@media (min-width: 768px) {
  .blog-item-title {
    font-size: var(--font-size-lg);
  }
}

/* --------------------------------------------------------------------------
   Blog Archive
   -------------------------------------------------------------------------- */

.blog-archive {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .blog-archive {
    margin-top: var(--space-10);
  }
}

/* --------------------------------------------------------------------------
   Double Offset Square Button
   -------------------------------------------------------------------------- */

.blog-section.double-offset-square-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  color: var(--color-text-primary);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}


/* ==========================================================================
  property-archive-cta 物件を見る 
   ========================================================================== */

   /* ==========================================================================
  物件を見る フロストglassリンクは、link rel="stylesheet" href="assets/css/common/frost-glass-link-button.css">で作成。
  スライドショーは、<link rel="stylesheet" href="assets/css/animation/fullscreen-slideshow.css">で制御
   ========================================================================== */

   .property-archive-cta{
    margin-bottom: var(--space-16);
   }

   @media (min-width: 768px) {

  .property-archive-cta{
    margin-bottom: var(--space-20) ;
   }
}

/* ====================================
   View Properties CTA Inner
   ==================================== */

/* ボタン配置用コンテナ（上下左右中央） */
.View-Properties-cta__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
/* ==========================================================================
   投資メリットセクション Dubai Investment Benefits Section (Inherited from wave-hero)

background-image: url(../../images/dubai-downtown-rooftop.webp);
      background-position: center;
      background-repeat: no-repeat;

   ========================================================================== */

:root { 
  --wave-hero-height: 55vh;
  --wave-hero-wave-height: 16vh;
  --wave-hero-padding: 2rem;
}

/* ===============================================================
   Wave Hero Section — 修正済み（パララックス transform 方式）
   =============================================================== */

.wave-hero {
  position: relative;
  overflow: hidden;
  min-height: var(--wave-hero-height);
  width: 100%;
  padding: var(--wave-hero-padding);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景画像レイヤー（疑似要素） */
.wave-hero::before {
  content: "";
  position: absolute;

  /* 余裕をもって大きくする（上下はみ出し防止） */
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url("../../../images/dubai-downtown-rooftop.webp");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallaxY, 0%), 0);
  will-change: transform;
  z-index: 0;
}

/* コンテンツは常に手前レイヤー */
.wave-hero__inner,
.wave-hero__wave {
  position: relative;
  z-index: 1;
}

/* テキスト */
.wave-hero__inner {
  width: 100%;
  text-align: left;
}

.wave-hero__title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: var(--space-4);
}

.wave-hero__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-glass-white);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow:
    var(--shadow-md),
    inset 0 0 0.5px rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* 波SVG */
.wave-hero__wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--wave-hero-wave-height);
  pointer-events: none;
}

.wave-hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-hero__wave--top {
  top: -1px;
}

.wave-hero__wave--bottom {
  bottom: -1px;
}

/* Responsive */
@media (min-width: 768px) {
  :root {
    --wave-hero-height: 70vh;
    --wave-hero-wave-height: 18vh;
  }
}

@media (min-width: 1024px) {
  :root {
    --wave-hero-height: 75vh;
    --wave-hero-wave-height: 22vh;
  }
}


/* ============================================================
   CTA Triple Section
   よくある質問セクション直後に設置
   モバイルファースト設計
   ============================================================ */

/* ------------------------------------------------------------
   Section
   ------------------------------------------------------------ */

.cta-triple {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-12);
}

/* ------------------------------------------------------------
   Inner / Grid
   ------------------------------------------------------------ */

.cta-triple__inner {
  /* .container クラスを併用 */
}

.cta-triple__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .cta-triple__grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
  }
}

/* ------------------------------------------------------------
   Card
   ------------------------------------------------------------ */

.cta-triple__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  width: 100%;
}

@media (min-width: 768px) {
  .cta-triple__card {
    flex: 1;
    padding-inline: var(--space-6);
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .cta-triple__card {
    padding-inline: var(--space-8);
  }
}

/* ------------------------------------------------------------
   Label
   ------------------------------------------------------------ */

.cta-triple__label {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: var(--line-height-tight);
}

/* ------------------------------------------------------------
   Button
   ------------------------------------------------------------ */

.cta-triple__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-base),
              color var(--transition-base);
}

.cta-triple__btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}

/* ------------------------------------------------------------
   Divider
   ------------------------------------------------------------ */

.cta-triple__divider {
  display: block;
  width: 4rem;
  height: 1px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cta-triple__divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }
}
