/* ========================================
   メインコンテンツ（お問い合わせページ用）
======================================== */
/* トップページのpadding-topを無効化 */
.main-content {
    padding-top: 56px !important;
}

@media (min-width: 1080px) {
    .main-content {
        padding-top: 80px !important;
    }

}

/* ========================================
   ページヒーローセクション
======================================== */
.page-hero {
    width: 100%;
    height: clamp(280px, 50vw, 400px);
    position: relative;
    background: url('../images/land-utilization-img.jpg');
    background-size: cover;
    background-position: center bottom 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-hero__content {
    width: 100%;
    height: 100%;
    max-width: var(--container-width);
    padding: 0 var(--padding-sp);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero__title {
    font-family: var(--font-ja);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: var(--heading-letter-spacing);
    line-height: var(--heading-line-height);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1080px) {
    .page-hero {
        height: auto;
        aspect-ratio: 16 / 6;
        min-height: 320px;
        max-height: 560px;
    }
    
    .page-hero__content {
        padding: 0 var(--padding-pc);
    }
}

/* ========================================
   サービスセクション
======================================== */
.land-section {
    padding: var(--section-padding-sp);
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
}

.land-introduction-section {

    padding: var(--section-padding-sp);
    background-color: var(--color-white);
    position: relative;
    z-index: 2;

}

.land-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.land-introduction-section__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.land-section__description {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
    text-align: left;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
}


.split-container {
    width: 100%;
    height: auto; /* 画面全体 */
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.split-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before {
    background-image: url('../images/vacant-land-image.jpg');
    z-index: 1; /* After画像より下 */
}

.after {
    background-image: url('../images/land-utilization-img.jpg');
    clip-path: polygon(80% 0%, 100% 0%, 100% 100%, 20% 100%); /* 例の斜め分割 */
    z-index: 2; /* Before画像より上 */
}

.split-catchphrase {
    position: absolute;
    top: 50%; /* 縦方向の中央 */
    left: 50%; /* 横方向の中央 */
    transform: translate(-50%, -50%); /* 自身のサイズを考慮して完全な中央に */
    z-index: 3; /* 画像より上 */
    color: white; /* 白抜き文字 */
    font-size: clamp(1rem, 4vw, 2rem); /* レスポンシブな文字サイズ */
    text-align: center;
    line-height: 1.2;
    /* 背景帯の例 */
    background-color: rgba(80, 40, 95, 0.6);
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 4px; /* 角丸 */
    white-space: nowrap; /* テキストの折り返しを防ぐ */
}

@media (max-width: 375px) {
    .split-catchphrase {
        font-size: clamp(0.8rem, 4vw, 1rem); /* レスポンシブな文字サイズ */
    }
    

}

/* Before/After バッジのスタイル */
.split-item__badge {
    position: absolute;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 500;
    border-radius: 4px;
    z-index: 10; /* 最前面 */
    font-size: clamp(0.75rem, 2vw, 1rem);
}

/* Beforeバッジ（左上） */
.before-badge {
    top: 20px;
    left: 20px;
}

/* Afterバッジ（右上） */
.after-badge {
    top: 20px;
    right: 20px;
    /* After画像が右上にくるように調整 */
}


@media (max-width: 475px) {
    .split-item__badge {
        padding: 0.25rem 0.5rem;
    }

    .before-badge {
        top: 10px;
        left: 10px;
    }

    .after-badge {
        top: 10px;
        right: 10px;
    }
    
}




@media (min-width: 768px) {
    .split-catchphrase {
        font-size: clamp(1.25rem, 4vw, 2.5rem); /* レスポンシブな文字サイズ */
        padding: 1rem 2rem;
    }

    .land-section {
        padding: var(--section-padding-pc);
    }
    

}

/* ========================================
   土地活用セクション
======================================== */
.land-utilization-section {
    padding: var(--section-padding-sp);
    position: relative;
    z-index: 2;
    background: url('../images/land-utilization-img.jpg');
    background-position: 50% 50%;
}

.land-utilization-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.land-utilization-section__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 5vw, 4rem);
}

.land-utilization-section__header-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 3vw, 2rem);
}

/* スクロールアニメーション用の初期状態（一旦オフ） */
/*
.land-utilization-sections .section-header,
.land-utilization-section__description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.land-utilization-section .section-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.land-utilization-section__description.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
*/

.land-utilization-section__description {
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
    text-align: left;
}

/* イントロテキスト */
.land-utilization-section__intro {
    text-align: center;
    margin: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.land-utilization-section__intro p {
    font-family: var(--font-ja);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.6;
    letter-spacing: 0.05em;
}

/* Q&Aカードコンテナ */
.land-qa-container {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.land-q-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.land-a-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
/* Q&Aカード共通スタイル */
.land-qa-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* 質問カード */
.land-qa-card--question {
    width: max-content;
}

/* 回答カード */
.land-qa-card--answer {
    width: max-content;
}


/* Q/Aバッジ */
.land-qa-card__badge {
    position: absolute;
    top: -12px;
    left: clamp(0.75rem, 3vw, 1rem);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.land-qa-card--question .land-qa-card__badge {
    background: linear-gradient(135deg, 
    /* やや明るさを抑えたハイライト */
    #F0F0F0 0%, 
    #D9D9D9 20%, 
    /* 中間色 */
    #B0B0B0 40%, 
    #A3A3A3 60%, 
    /* シャドウを明るくしてマットな印象に */
    #919191 80%, 
    #696969 100%
  );
  
}

.land-qa-card--answer .land-qa-card__badge {
    /* 線形グラデーション（マットなトーンを合わせる） */
    background: linear-gradient(135deg, 
    /* 明るく落ち着いた紫（シルバーの#F0F0F0に相当） */
    #E1BEE7 0%, 
    #CC99DA 20%, 
    /* 中間色（シルバーの#B0B0B0に相当） */
    #A062C9 40%, 
    #884BA5 60%, 
    /* 暗く落ち着いた紫（シルバーの#696969に相当） */
    #6B3C84 80%, 
    #582A6B 100%
  );
}

/* カードコンテンツ */
.land-qa-card__content {
    padding-top: 1rem;
}

.land-qa-card__title {
    font-family: var(--font-ja);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.land-qa-card__text {
    font-weight: 500;
    font-family: var(--font-ja);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

/* 回答カードのレイアウト */
.land-qa-card__layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

/* リスト */
.land-qa-card__list {
    list-style: none;
    padding: 0;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.land-qa-card__list li {
    font-weight: 500;
    font-family: var(--font-ja);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--color-text);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.land-qa-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* ボタンラッパー */
.land-qa-card__button-wrapper {
    margin-top: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

/* 画像ラッパー */
.land-qa-card__image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.land-qa-card__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (min-width: 768px) {

    .land-utilization-section {
		margin-top: 64px;
        padding: var(--section-padding-pc);
    }


    .land-utilization-section__description {
        line-height: var(--body-line-height-pc);
        text-align: center;
    }
    
    /* PC時のQ&Aカードレイアウト */
    .land-qa-card__layout {
        flex-direction: row;
        align-items: center;
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .land-qa-card__layout .land-qa-card__content {
        flex: 1;
    }
    
    .land-qa-card__layout .land-qa-card__image-wrapper {
        flex: 0 0 40%;
        max-width: 400px;
    }
    
    /* サポートグリッド */
    .land-support__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .land-qa-card__text,
    .land-support__item-text {
        line-height: var(--body-line-height-pc);
    }
}


/* ========================================
   土地活用フローセクション
======================================== */

.land-flow-section {
    padding: var(--section-padding-sp);
    background-color: var(--color-white);
}

.land-flow-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.flow-description {
    text-align: left;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    
}

/* ------------------------------------ */
/* 2. フローコンテナと項目のスタイル */
/* ------------------------------------ */
.flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F4F0FF;
    padding: 1.5rem;
    border-radius: 8px;
}

.flow-item {
    display: flex; /* STEPラベルとコンテンツを横並びに */
    width: 100%;
    max-width: 1000px; /* カードの最大幅を制限 */
    
    /* カードの背景色（参考画像の薄い水色）を再現 */
    background-color: #FFFFFF; 
    border: 1px solid #EBEBFF; /* 薄い枠線 */
    
    /* 立体感を出すためのシャドウ */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    flex-direction: column;
    border-radius: 8px;
}

.flow-content-area {
    padding: 1.25rem;
    flex-grow: 1;
}

.flow-title {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 10px;
    font-weight: 500;
}

.flow-text {
    color: var(--color-text);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* 濃い紫の縦長エリア */
.flow-step-label-area {
    width: 100%; /* ラベルエリアの幅 */
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
    border-radius: 8px 8px 0 0;
    
    background: linear-gradient(to right, #BFA1D2, #8E6EA1);
    color: white;
}

.flow-step-label {
    font-size: 2rem;
    opacity: 1;
    margin-right: 0.75rem;
}

.flow-step-number {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
}

.flow-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    /* 濃い紫で下向きの三角形を作成 */
    border-top: 15px solid #8E6EA1;
    margin: 16px 0; /* 上下のカードとの間隔を調整 */
    z-index: 10;
}

/* 最後の要素の下には矢印を表示しない */
.flow-container .flow-item:last-of-type + .flow-arrow {
    display: none;
}

@media (min-width: 768px) {
    .land-flow-section {
        padding: var(--section-padding-pc);
        margin-top: 64px;
    }

    .flow-description {
        text-align: center;
        margin-bottom: 4rem;
    }

    .flow-container {
        padding: 3rem;
    }

    .flow-item {
        flex-direction: row;

    }



    .flow-step-label-area {
        width: 100px; /* ラベルエリアの幅 */
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        
        /* 御社の紫に合わせたグラデーション */
        background: linear-gradient(to bottom, #BFA1D2, #8E6EA1);
        color: white;
        border-radius: 8px 0 0 8px;
    }

    .flow-content-area {
        padding: 1.5rem;
        flex-grow: 1;
    }

    .flow-text {
        color: var(--color-text);
        line-height: var(--body-line-height-pc);
    }

    .flow-step-label {
        font-size: 0.8rem;
        opacity: 0.8;
        margin-right: 0;
    }

    .flow-step-number {
        font-size: 2.5rem;
        font-weight: 600;
        margin-top: 5px;
        line-height: 1;
    }

}

/* ========================================
   土地活用活用事例セクション
======================================== */



.land-case-section {
    padding: var(--section-padding-sp);
    background-color: var(--color-white);
}

.land-case-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.case-studies-container {
    display: grid;
    /* 修正点: 列数を1frに固定し、常時1列配置にする */
    grid-template-columns: 1fr;
    
    gap: 96px; /* カード間の間隔 */
    margin-top: 64px;
}
/* 既存の他のスタイル（例：.case-cardなど）はそのまま維持してください。 */

.case-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    /* 立体感と清潔感を出すシャドウ */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    position: relative;
}

/* ========================================
   活用事例セクション - バッジ配置修正
======================================== */

.case-badge {
    /* 位置の調整 */
    position: absolute;
    z-index: 1;
    
    /* ★修正点：カードの枠外に配置するために、負の大きな値を設定 */
    top: -34px;        
    left: 25px;       
    
    /* スタイリング（変更なし） */
    background: linear-gradient(135deg, #AA82C2 0%, #7C5B8B 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 6px 6px 0 0; 
    letter-spacing: var(--body-letter-spacing);
    
}

@media (max-width: 768px) {
    .case-badge {
        padding: 4px 12px;
        top: -32px;
        left: 18px;
    }
}

.case-card__visuals {
    display: flex;
    justify-content: space-between;
    min-height: 180px;
    z-index: 2;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.case-img {
    position: relative;
    width: 50%; /* 左右に等分 */
    height: auto; /* 画像の高さを固定 */
    aspect-ratio: 16 / 10;
    overflow: hidden;
    z-index: inherit;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をトリミングし、要素を埋める */
    
}

/* Before画像にモノクロ/色あせフィルタを適用 */
.case-img.before2 img {
    filter: grayscale(80%) brightness(90%); 
}

.case-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 10;
}

.case-card__data {
    padding: 16px;
    border: 1px solid #e5e5e5; 
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.case-card__title {
    font-size: clamp(1.1rem, 2vw, 1.15rem);
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

.case-card__text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: var(--body-line-height-sp);
    letter-spacing: var(--body-letter-spacing);
}

.case-card__results {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.result-badge {
    padding: 5px 12px;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* プライマリー（紫グラデーション） */
.result-badge.primary {
    color: white;
    /* ロゴの紫を反映 */
    background: linear-gradient(90deg, #AA82C2 0%, #7C5B8B 100%);
}

/* セカンダリー（シルバー/グレー） */
.result-badge.secondary {
    color: #333;
    border: 1px solid #D0D0D0;
    background-color: #F7F7F7; 
    font-weight: 500;
}

/* オーナー様の声 */
.owner-voice {
    margin-top: 15px;
    padding-left: 15px;
    border-left: 3px solid #D0D0D0; /* シルバーのライン */
    font-style: italic;
    color: #666;
}

@media (min-width: 768px) {
    .land-case-section {
        padding: var(--section-padding-pc);
        /* margin-top: 64px; */
    }

    .case-card__text {
        line-height: var(--body-line-height-pc);
    }

    .case-card__data {
        padding: 20px;
    }

}







/* ========================================
   CMS物件一覧表示
======================================== */
#landWrap {
    width: 100%;
    margin-top: clamp(2rem, 4vw, 3rem);
}

#landList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* #landList li {
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: clamp(1rem, 3vw, 1.5rem);
    transition: box-shadow 0.3s ease;
}

#landList li:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

#landList li {
    background: var(--color-white);
    
    /* 1. ボーダーの削除とシャドウの強化 */
    border: 1px solid #e5e5e5; /* ボーダーを削除し、シャドウに役割を譲る */
    
    /* 2. 角丸を強調し、モダンな柔らかさを出す */
    border-radius: 6px; /* 8pxから少し大きくして、よりモダンに */
    
    padding: clamp(1rem, 3vw, 1.5rem);
    
    /* 3. 洗練された多層シャドウ */
    box-shadow: 
        0 1px 2px rgba(106, 76, 147, 0.06),    /* 最も近い、微細な影（紫のトーン） */
        0 2px 4px rgba(0, 0, 0, 0.04),         /* 近い影 */
        0 4px 8px rgba(0, 0, 0, 0.04),         /* 中間の影 */
        0 8px 16px rgba(0, 0, 0, 0.03);        /* 遠い影で奥行き */
    
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* トランジションに対象を追加 */
}

#landList li:hover {
    /* 4. ホバー時の洗練された影の強調 */
    box-shadow: 
        0 2px 4px rgba(106, 76, 147, 0.1),     /* 紫のトーンで近い影 */
        0 4px 8px rgba(0, 0, 0, 0.06),         /* 近い影 */
        0 8px 16px rgba(0, 0, 0, 0.06),        /* 中間の影 */
        0 16px 32px rgba(0, 0, 0, 0.08),       /* 遠い影で大きな奥行き */
        0 0 0 1px rgba(106, 76, 147, 0.08);    /* 微細な紫の輪郭 */
    
    /* 5. わずかな動き（高級感） */
    transform: translateY(-4px); /* わずかに上に持ち上げることで、立体感を強調 */
}

/* 日付・販売ステータスエリア */
.land-header {
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

#landList li .up_ymd {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #666;
    font-weight: 400;
}

#landList li .catName {
    display: inline-block;
    /* デフォルトスタイル(販売中) */
    background: linear-gradient(135deg, #AA82C2 0%, #7C5B8B 100%);
    color: var(--color-white);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    padding: 0.35rem 0.875rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

/* 交渉中 (PENDING) - 警告を示すウォームトーン */
#landList li .catName.is-pending {
    background: linear-gradient(135deg, #F8CD46 0%, #F1C23C 100%);
}

/* 成約済 (SOLD) - 完了/目立たせないためのニュートラルグレー */
#landList li .catName.is-sold {
    background: linear-gradient(135deg, #B0BEC5 0%, #78909C 100%);
}

#landList li .title {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1rem 0;
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
}

#landList li .title a {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

#landList li .title a:hover {
    color: var(--color-primary);
}

/* ========================================
   土地画像スライダー
======================================== */
.land-image-slider {
    position: relative;
    width: 100%;
    margin: 0 0 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.slider-track {
    position: relative;
    width: 100%;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slider-item.active {
    opacity: 1;
    position: relative;
}

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

/* スライダーコントロール */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(36px, 8vw, 48px);
    height: clamp(36px, 8vw, 48px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slider-prev {
    left: clamp(8px, 2vw, 16px);
}

.slider-next {
    right: clamp(8px, 2vw, 16px);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.slider-prev:active,
.slider-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* クリック後1.5秒間のアクティブ状態 */
.slider-prev.is-clicked,
.slider-next.is-clicked {
    background: rgba(106, 76, 147, 0.8);
    transition: background 0.3s ease;
}

.slider-prev.is-clicked svg,
.slider-next.is-clicked svg {
    color: var(--color-white);
}

.slider-prev svg,
.slider-next svg {
    width: clamp(18px, 4vw, 24px);
    height: clamp(18px, 4vw, 24px);
    color: var(--color-primary);
}

/* スライダードット */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--color-white);
    width: 32px;
    border-radius: 4px;
}

/* 画像カウンター */
.slider-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: #fafafa;
    padding: 4px 12px;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* ========================================
   物件詳細情報テーブル
======================================== */
.property-table {
    width: 100%;
    border-collapse: separate; /* SP版で角丸を効かせるためseparate */
    border-spacing: 0; /* セル間の隙間をなくす */
    margin: 0 0 1rem 0;
    background-color: var(--color-white);
    border: 1px solid #ddd; /* 外枠 */
    border-radius: 4px;
    overflow: hidden;
}

/* ========================================
   SP版（モバイル）: シンプルな格子状の線
======================================== */
.property-table th,
.property-table td {
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

/* 右端のセルは右線を消す */
.property-table th:last-child,
.property-table td:last-child {
    border-right: none;
}

/* 最後の行は下線を消す */
.property-table tr:last-child th,
.property-table tr:last-child td {
    border-bottom: none;
}

.property-table th {
    width: clamp(120px, 30%, 180px);
    padding: clamp(0.5rem, 2vw, 1rem);
    text-align: left;
    background-color: #f8f9fa;
    color: #666;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    vertical-align: top;
    border-right: 1px solid #e5e5e5;
    line-height: 1.6;
    font-weight: 500;
}

.property-table td {
    padding: clamp(0.5rem, 2vw, 1rem);
    color: var(--color-text);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    line-height: 1.8;
    letter-spacing: var(--body-letter-spacing);
    font-weight: 500;
}

.property-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* コメントセクション */
.comment-section {
    margin-top: 0;
}

.comment-section h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

.comment-section .comment-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--color-text);
    line-height: 1.8;
    letter-spacing: var(--body-letter-spacing);
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #fff8e1;
    border-radius: 4px;
}

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

/* PC用スタイル */
@media (min-width: 768px) {
    .land-section {
        padding: var(--section-padding-pc);
    }

    .land-introduction-section {
        padding: var(--section-padding-pc);
        margin-top: 64px;
    }
    
    .land-section__description {
        text-align: center;
        line-height: var(--body-line-height-pc);
        margin-bottom: 4rem;
    }
    
    /* CMS物件一覧のPC表示 */
    .land-image-slider {
        max-width: 720px;
        margin: 0 auto 2rem;
    }

    #landList li {
        border-radius: 8px;
    }

    #landList {
        gap: 4rem;
    }

    
#landList li .title {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 1.5rem 0;
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
}

    .slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 6px;
    }
    
    .slider-prev,
    .slider-next {
        width: 48px;
        height: 48px;
    }
    
    .slider-prev svg,
    .slider-next svg {
        width: 24px;
        height: 24px;
    }
    
    .slider-dots {
        bottom: 16px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 28px;
    }
    
    /* ========================================
       PC版: 2列グリッド用の複雑なボーダー設定
    ======================================== */
    /* SP版のボーダーをリセット */
    .property-table {
        border-collapse: collapse; /* PC版ではcollapseに戻す */
        border: none;
    }
    
    .property-table th,
    .property-table td {
        border: none;
    }
    
    .property-table tr {
        border-bottom: none;
    }
    
    /* PC時のテーブルを2列グリッド表示にする */
    .property-table {
        display: block;
        margin: 0 0 2rem 0;
    }
    
    .property-table tbody {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border: 1px solid #ddd; /* 外枠の線 */
        border-radius: 6px;
        overflow: hidden;
    }
    
    /* 各行の設定 */
    .property-table tr {
        display: grid;
        grid-template-columns: 180px 1fr;
        border-bottom: 1px solid #e5e5e5;
    }
    
    /* 右側の列（偶数番目の行）の左側に太い仕切り線 */
    .property-table tr:nth-child(even) {
        /* border-left: 1px solid #ddd; */
    }
    
    .property-table th {
        width: auto;
        border-right: 1px solid #e5e5e5;
    }
    
    .property-table td {
        /* tdには基本的に右線を設定しない */
    }
    
    /* 左側の列（奇数番目行）の2番目のtdに右線を追加 */
    .property-table tr:nth-child(odd) td {
        border-right: 1px solid #e5e5e5;
    }
    
    /* 最後の2行の下線を削除 */
    .property-table tr:nth-last-child(1),
    .property-table tr:nth-last-child(2) {
        border-bottom: none;
    }
    
    /* 例外：最後が全幅表示の場合、その前の偶数行には下線を保持 */
    .property-table tr:nth-child(even):nth-last-child(2) {
        border-bottom: 1px solid #e5e5e5;
    }
    
    /* 背景色の設定（4行ごとに交互） */
    .property-table tr:nth-child(4n+1) th,
    .property-table tr:nth-child(4n+1) td,
    .property-table tr:nth-child(4n+2) th,
    .property-table tr:nth-child(4n+2) td {
        background-color: #fafafa;
    }
    
    .property-table tr:nth-child(4n+3) th,
    .property-table tr:nth-child(4n+3) td,
    .property-table tr:nth-child(4n+4) th,
    .property-table tr:nth-child(4n+4) td {
        background-color: var(--color-white);
    }
    
    /* 奇数番目の最後の行（全幅表示） */
    .property-table tr:nth-child(odd):last-child {
        grid-column: 1 / -1;
        border-left: none;
    }
    
    /* 全幅表示の行のtdの右線を削除 */
    .property-table tr:nth-child(odd):last-child td {
        border-right: none;
    }
    
    .comment-section {
        overflow: hidden;
    }
}
