/* カラーパレット */
:root {
    /* ブランドカラー */
    --color-primary: #321D44;
    --color-primary-light: #E95513;

    /* テキストカラー */
    --color-text-dark: #333333;
    --color-text-medium: #666666;
    --color-text-light: #999999;
    --color-text-gray: #555555;
    --color-text-muted: #7C7C7C;
    --color-text-secondary: #6C6C6C;
    --color-text-accent: #949494;
    --color-text-error: #E44545;
    --color-text-white: #ffffff;

    /* 背景・ボーダーカラー */
    --color-bg-white: #ffffff;
    --color-bg-light: #F9F9F9;
    --color-bg-gray: #f5f5f5;
    --color-bg-gray-hover: #e9e9e9;
    --color-bg-neutral: #ddd;

    /* ボーダーカラー */
    --color-border-light: #DADADA;
    --color-border-soft: #eee;
    --color-border-medium: #AEAAA7;

    /* その他 */
    --color-overlay: rgba(255, 255, 255, 0.4);
    --color-orange: #f60;
    --color-dark-gray: #ccc;
    --color-gray-gradient: var(--color-gray-gradient);
    --color-gray-gradient-hover: var(--color-gray-gradient-hover);
}

/* 全体制御 */

html {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 62.5%;
    line-height: 1.6;
    height: 100%;
    word-break: break-word;
    color: var(--color-text);
    background-color: var(--color-bg-base);
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--color-text-dark);
}

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

img {
    border: 0;
    margin: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

figure,
p,
a,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
}

ul,
ol {
    list-style: none;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
}


/* 管理バー制御 */

body.admin-bar .header {
    top: 32px;
}

body.admin-bar .main {
    height: calc(100vh - var(--admin-bar-offset));
}


/* 管理バーが表示されている場合のモバイル用 */

@media screen and (max-width: 782px) {

    body.admin-bar #wrapper,
    body.admin-bar .header {
        margin-top: var(--admin-bar-mobile-offset);
    }
}

.container {
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 14px;
}

.breadcrumb {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    font-size: 1.3rem;
}

.breadcrumb-title {
    color: var(--color-text-medium);
}

.page-common-article {
    margin-top: 60px;
}

.header-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-right: 30px;
}

.header-main-nav-list {
    color: var(--color-text-white);
    font-size: clamp(16px, 1.6vw, 18px);
}

.main-visual__pagination {
    display: none;
}


/* 追加CSS */


/*---------------------------------
  リセットや基本フォント指定などは適宜追加
----------------------------------*/


/*---------------------------------
    メインビジュアル全体
  ----------------------------------*/

.main-visual {
    position: relative;
    width: 100%;
    min-height: 90vh;
    color: var(--color-text-white);
    display: flex;
    justify-content: space-between;
    align-items: end;
}

/* スライダーコンテナ */
.main-visual__slider {
    width: 90%;
    height: calc(100vh - 80px);
    z-index: 1;
}

.main-visual-swiper {
    width: 100%;
    height: 100%;
}

.main-visual__slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* 背景画像がはみ出ないように制御 */
    opacity: 1;
    transition: opacity 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* 滑らかなフェード */
}

/* スライドのフェード効果を強化 */
.main-visual-swiper .swiper-slide {
    transition: opacity 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 非アクティブスライドのフェードアウト */
.main-visual-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
}

/* アクティブスライドのフェードイン */
.main-visual-swiper .swiper-slide-active {
    opacity: 1;
}

/* スライド画像の上に配置するオーバーレイ */
.main-visual__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.3);
    /* #222222 30%透明度 */
    z-index: 3;
    /* 背景画像の上、テキストの下 */
    pointer-events: none;
    /* クリックを無効化 */
}

/* 背景画像（スライダー対応） */
.main-visual__bg {
    width: 100%;
    height: 100%;
    background: no-repeat center center;
    background-size: cover;
    border-radius: 0 0 0 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-53%, -50%) scale(1.1);
    /* 初期位置：左寄り + 拡大 */
    transition: transform 20s linear;
    /* linearでゆっくりと右に流れる */
}

/* アクティブなスライドの背景画像は右に移動 */
.swiper-slide-active .main-visual__bg {
    transform: translate(-47%, -50%) scale(1.1);
    /* 右に移動完了 + 拡大維持 */
    transition-timing-function: linear;
    /* 一定速度で移動 */
    transition-duration: 20s;
    /* ゆっくりと移動 */
}

/* 非アクティブなスライドは初期位置に戻す */
.swiper-slide:not(.swiper-slide-active) .main-visual__bg {
    transform: translate(-53%, -50%) scale(1.1);
    transition-duration: 0.5s;
    /* 素早く初期位置に戻る */
    transition-timing-function: linear;
}


/*---------------------------------
    メインコンテンツ（固定表示）
  ----------------------------------*/

.main-visual__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 15vw;
    z-index: 5;
    pointer-events: none;
}

.main-visual__title {
    font-size: 4.8rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 26px;
}

.main-visual__subtitle {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 700;
}


/*---------------------------------
    メインビジュアルスライダーナビゲーション
  ----------------------------------*/

.main-visual__navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.main-visual__prev,
.main-visual__next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-visual__prev:hover,
.main-visual__next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.main-visual__prev::after,
.main-visual__next::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 1.4rem;
}

.main-visual__prev::after {
    content: '\f104';
    /* fa-chevron-left */
}

.main-visual__next::after {
    content: '\f105';
    /* fa-chevron-right */
}

/* ページネーション */
.main-visual__pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.main-visual__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.main-visual__pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/*---------------------------------
    スクロールダウンインジケーター（線アニメーション）
  ----------------------------------*/

.scroll-indicator {
    flex: 1;
    display: flex;
    justify-content: center;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 10px;
    color: var(--color-text-dark);
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: opacity 0.2s;
    font-size: 1.4rem;
    font-weight: 700;
}

.scroll-indicator a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 100px;
    background: var(--color-text-dark);
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    animation: scrollLineAnim 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}


/* 上から下に線が伸びるアニメーション */

@keyframes scrollLineAnim {
    0% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: translateX(-50%) scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: translateX(-50%) scaleY(0);
        transform-origin: bottom;
    }
}


/*---------------------------------
    下部のお知らせバー
  ----------------------------------*/

.main-visual__bottom-bar {
    position: absolute;
    bottom: -5%;
    right: 0;
    width: 66%;
    background: var(--color-primary);
    z-index: 3;
    padding: 23px 0;
    border-radius: 4px 0 0 4px;
}

.main-visual__bottom-bar-inner {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}


/* 日付のデザイン */

.main-visual__date {
    color: var(--color-text-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1.4rem;
}


/* お知らせのデザイン */

.main-visual__category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-visual__category {
    display: inline-block;
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.4rem;
}

.main-visual__notice:hover {
    opacity: 0.8;
}


/* お知らせ本文 */

.main-visual__notice {
    color: var(--color-text-white);
    font-size: 1.4rem;
    font-weight: 700;
    transition: opacity 0.2s;
}


/*---------------------------------
    レスポンシブ対応例
  ----------------------------------*/

@media screen and (max-width: 768px) {
    .main-visual {
        min-height: 80vh;
    }

    .main-visual__title {
        font-size: 3.6rem;
    }

    .main-visual__subtitle {
        font-size: 1.6rem;
    }

    .main-visual__bottom-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


/*------------------------------
  全体ベース
------------------------------*/

.property-banner-section {
    margin-top: 140px;
}

.property-banner-inner {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.property-banner-bottom-inner {
    max-width: 610px;
    margin: 0 auto;
}

.property-banner-inner img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.property-section {
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
}

.property-section-head__inner {
    margin-bottom: 60px;
}

.property-section__subtitle {
    font-size: 1.2rem;
    color: var(--color-text-gray);
}


/* 物件一覧へのリンク */



/*------------------------------
    タブメニュー
  ------------------------------*/

.property-tabs {
    display: flex;
    gap: 1px;
    margin-bottom: 20px;
    list-style: none;
}

.property-tabs__item {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    color: var(--color-text-white);
    width: 150px;
    text-align: center;
    background-color: rgba(50, 29, 68, 0.25);
    transition: all 0.3s;
}

.property-tabs__item:hover {
    background-color: rgba(50, 29, 68, 0.25);
}


/*------------------------------
    タブコンテンツ
  ------------------------------*/

.property-tabs__contents {
    position: relative;
}

.property-tab-content {
    display: none;
}

.property-tab-content.active {
    display: block;
}


/*------------------------------
    スライダー
  ------------------------------*/

.property-slider-container {
    position: relative;
}

.property-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    margin-right: -40px;
}


/*----------------------------------
  物件カード全体
----------------------------------*/

.property-card {
    position: relative;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    margin: 0 auto;
    text-decoration: none;
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 30px;
}

.property-card__thumb img {
    width: 280px;
    height: 242px;
    object-fit: cover;
}

.front-property-card__thumb {
    margin-bottom: 12px;
}


/* 種別ラベル (例: 新築戸建/中古戸建など) */

.property-card__category {
    display: inline-block;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.front-property-card__category {
    display: inline-block;
    border: 1px solid var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
    color: var(--color-primary);
}


/* タイトル (物件名) */

.property-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.front-property-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.front-property-card__address {
    font-size: 1.3rem;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 16px;
    margin-bottom: 16px;
}


/* 価格 */

.front-property-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.front-property-card__price .price-unit {
    font-size: 16px;
    font-weight: 700;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--color-brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-unit {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.property-card__price span {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.property-card__price span:last-child {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.property-card__info span {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 700;
}

.property-card__price,
.property-card__info {
    padding-bottom: 14px;
    padding-top: 14px;
    border-bottom: 1px solid var(--color-border-light);
}

.property-card__price {
    padding-top: 0;
}

.property-card__area {
    display: flex;
    gap: 20px;
}

.property-card__area .property-card__info {
    width: 50%;
}

.front-property-card__madori {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}


/* カード全体のホバー (必要なら) */

.property-slide:hover .property-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    transition: 0.3s ease;
}

.property-contents {
    display: flex;
    gap: 20px;
}


/*------------------------------
    レスポンシブ例
  ------------------------------*/

@media screen and (max-width: 768px) {
    .property-section__title {
        font-size: 1.8rem;
    }

    .property-section__subtitle {
        font-size: 1rem;
    }

    .property-slider-container {
        margin-right: -20px;
        padding-right: 20px;
    }

    .property-slider {
        margin-right: -20px;
    }
}

.post-content {
    margin-top: 24px;
}

.front-property-slider-container .swiper-wrapper {
    padding: 0 14px;
}


/* --- Swiper共通スタイル --- */

.card02 {
    overflow: hidden;
}

.card02 .swiper {
    overflow: visible;
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    max-width: 1128px;
    margin: 0 auto;
}

.card02 .swiper-controller {
    display: flex;
    gap: 4.6rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    position: relative;
}

.swiper-button-inner {
    display: flex;
    gap: 1.6rem;
}

.card02 .swiper-button-prev,
.card02 .swiper-button-next {
    flex-shrink: 0;
    margin: 0;
    width: 6rem;
    height: 6rem;
    position: inherit;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.card02 .swiper-button-prev::before,
.card02 .swiper-button-next::before {
    content: "";
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.card02 .swiper-button-prev::after,
.card02 .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid var(--color-primary);
    border-width: 3px 3px 0 0;
}

.card02 .swiper-button-prev::after {
    margin-left: 0.4rem;
    transform: rotate(-135deg);
}

.card02 .swiper-button-next::after {
    margin-right: 0.4rem;
    transform: rotate(45deg);
}

.card02 .swiper-slide {
    width: 36%;
}

.card02 .slide {
    overflow: hidden;
}


/* タブ・プロパティセクション用（既存のスタイル例） */

.property-section {
    background-color: var(--color-text-white);
    margin-top: 100px;
}

.property-section__title {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    background: var(--color-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.property-section__title span {
    margin-left: 10px;
    color: var(--color-dark-gray);
}

.property-section__subtitle {
    font-size: 1.8rem;
    color: var(--color-text-medium);
    font-weight: bold;
}

.property-tabs__item.active {
    color: var(--color-primary);
    border-top: 2px solid var(--color-primary);
    background-color: var(--color-bg-light);
}

.property-tab-content {
    display: none;
}

.property-tab-content.active {
    display: block;
}

.front-property-section__more a {
    background-color: var(--color-text-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    transition: 0.3s;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.front-property-section__more a:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}

.fa-arrow-right {
    font-size: 2.6rem;
}

.property-no-posts {
    margin: 20px 0;
    text-align: center;
    color: var(--color-text-light);
}

.property-no-posts.same-height {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    /* 投稿があるときの高さに合わせて調整 */
}

.company-section {
    position: relative;
    padding: 80px 0;
}


/* 上部の大きな画像を横幅いっぱいに */

.company-section__hero {
    width: 80%;
    position: relative;
    margin-left: auto;
    margin-right: 0;
}

.company-section__hero img {
    width: 100%;
    height: 350px;
    display: block;
    border-radius: 4px 0 0 4px;
}

.company-section__inner {
    padding-top: 30rem;
    padding-bottom: 11rem;
    margin-top: -20rem;
    position: relative;
}

.company-section__inner::after {
    content: "";
    display: block;
    width: 80%;
    max-width: 1128px;
    height: 100%;
    background: var(--color-primary);
    position: absolute;
    top: 0;
    z-index: -2;
}


/* コンテンツ本体（見出し・本文・建物写真・ボタン） */

.company-section__container {
    position: relative;
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 14px;
}


/* 見出し */

.company-section__title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 3.2rem;
}


/* 本文 */

.company-section__text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text-white);
    margin-bottom: 2.6rem;
    max-width: 560px;
}


/* 右下に配置する建物写真 */

.company-section__image-wrap {
    width: 46%;
    max-width: 500px;
    position: absolute;
    right: 0;
    bottom: -30%;
    z-index: -1;
}

.company-section__image-wrap img {
    width: 100%;
    height: 500px;
    display: block;
    border-radius: 4px;
}


/* ボタン */

.company-section__btn {
    border: 1px solid var(--color-text-white);
    color: var(--color-text-white);
    padding: 16px 26px;
    border-radius: 60px;
    font-weight: 700;
    transition: 0.3s;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.company-section__btn:hover {
    background-color: var(--color-text-white);
    color: var(--color-primary);
}


/* Newsセクション全体 */

.news-section {
    margin-top: 80px;
}

.news-section__inner {
    display: flex;
    gap: 100px;
}


/* 左カラム（タイトル・説明・ボタン） */

.news-section__left {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-section__title {
    display: inline-block;
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.news-section__subtitle {
    color: var(--color-text-medium);
    font-weight: 700;
}

.news-section__more {
    background-color: rgb(255, 255, 255);
    color: var(--color-primary);
    font-weight: 700;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: var(--color-primary);
    border-image: initial;
    padding: 16px 26px;
    border-radius: 60px;
    transition: 0.3s;
}

.news-section__more:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}


/* ボタン内の矢印 */

.news-section__arrow {
    margin-left: 0.5rem;
    font-weight: 400;
    font-size: 1.6rem;
}


/* 右カラム（投稿一覧） */

.news-section__right {
    flex: 1;
}

.news-section__left-head {
    display: flex;
    flex-direction: column;
}


/* 投稿一覧 */

.news-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}


/* 投稿アイテム */

.news-list__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 30px;
    padding-top: 30px;
}


/* 日付 */

.news-list__date {
    color: var(--color-text-medium);
    font-size: 1.4rem;
    white-space: nowrap;
}


/* カテゴリ */

.news-list__category {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.4rem;
    padding: 4px 32px;
    border-radius: 50px;
    white-space: nowrap;
}


/* テキスト（タイトルor抜粋） */

.news-list__text {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.news-list__no-posts {
    color: var(--color-text-light);
    font-size: 1.4rem;
    margin: 1rem 0;
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .news-section__inner {
        flex-direction: column;
        gap: 24px;
    }

    .news-section__left {
        flex: none;
        width: 100%;
    }

    .news-section__right {
        width: 100%;
    }

    .news-list__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-list__text {
        white-space: normal;
    }
}


/* 全体リセットなどは別途 */


/* セクション全体 */

.contact-section {
    position: relative;
    width: 100%;
    color: var(--color-text-white);
    background: url("/wp-content/uploads/2025/09/Group-445.jpg") no-repeat center center / cover;
    overflow: hidden;
    min-height: 500px;
    padding-top: 74px;
    margin-top: 160px;
}


/* オレンジのオーバーレイ */

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


/* コンテンツコンテナ */

.contact-section__inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    justify-content: space-between;
}


/* 左側エリア */

.contact-section__left {}


/* タイトル・サブタイトル */

.contact-section__title {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-section__title .contact-section__subtitle {
    font-size: 1.6rem;
}

.contact-section__content {
    font-weight: 700;
}

.contact-section__line {
    width: 70px;
    height: 1px;
    background-color: var(--color-text-white);
    display: inline-block;
}

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


/* 電話番号ブロック */

.contact-section__tel-block {
    margin-top: 3.2rem;
}

.contact-section__tel {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section__time {
    color: var(--color-text-white);
}


/* 右側エリア */

.contact-section__right {
    width: 50%;
    display: flex;
    justify-content: center;
}


/* 白いボックス */

.contact-section__box {
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
    padding: 3.2rem 1rem;
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-section__box:hover {
    opacity: 0.8;
}

.contact-section__box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.4rem;
    text-align: center;
}

.contact-section__icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact-section__icon-inner img {
    width: 60px;
}

.contact-section__box-text {
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
}


/* レスポンシブ例 */

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

    .contact-section__left,
    .contact-section__right {
        flex: 1 1 100%;
        min-width: auto;
        text-align: center;
    }

    .contact-section__box {
        margin: 0 auto;
    }
}


/* フッター全体 */

.footer {
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid var(--color-border-soft);
}

.footer__company-name,
.footer__company-address,
.footer__contact-info {
    font-size: 1.6rem;
}

.footer__contact-info {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.footer__company-name {
    margin-bottom: 0.5rem;
}


/* インナー（左右2カラム） */

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}


/* 左カラム */

.footer__left {
    flex: 1 1 300px;
    min-width: 280px;
}


/* ロゴ（仮） */

.footer__logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-hover);
    margin-bottom: 2.4rem;
}


/* 会社情報 */

.footer__company {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.page-company-inner {}


/* 右カラム */

.footer__right {
    flex: 1 1 400px;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.footer__sns-list {
    display: flex;
    gap: 14px;
}

.sns-common-icon img {
    width: 30px;
    height: 30px;
}


/* ナビゲーション・物件リスト共通 */

.footer__nav-list,
.footer__property-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__property-list li:last-child {
    display: none;
}

.footer__nav-list {
    display: flex;
    gap: 30px;
}

.footer__nav-list li,
.footer__nav-property {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__nav-property-list {
    position: relative;
    padding-left: 5rem;
}

.footer__nav-list li::before,
.footer__nav-property-list::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: var(--color-primary);
}

.footer__property-list {
    margin-top: 16px;
}

.footer__property-list a {
    color: var(--color-text-secondary);
    font-size: 1.4rem;
}

.footer__nav-property {
    position: relative;
    font-weight: 700;
}

.footer__nav-property-list::before {
    position: absolute;
    left: 0;
    top: 10px;
}


/* リンク */

.footer__nav-list a {
    text-decoration: none;
    font-size: 1.6rem;
    transition: 0.3s;
    font-weight: 700;
}

.footer__nav-list a:hover {
    color: var(--color-primary);
}


/* 下部コピーライト */

.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--color-border-soft);
    font-size: 1.4rem;
    color: var(--color-text-accent);
}


/* レスポンシブ例 */

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

    .footer__left,
    .footer__right {
        flex: 1 1 auto;
        min-width: auto;
    }

    .footer__right {
        justify-content: flex-start;
        flex-direction: column;
    }
}

.hamburger-menu {
    display: none;
}

.site-header {
    position: fixed;
    z-index: 2001;
    height: 80px;
    width: 100%;
    background-color: var(--color-primary);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}

.site-logo {
    width: 100px;
    height: 100px;
}

.site-logo a {
    width: 100%;
    height: auto;
}


/* ------------------------------
ハンバーガーボタン
------------------------------ */

.hamburger-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    z-index: 2100;
    gap: 10px;
    align-items: center;
    background-color: var(--color-text-white);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
    transition: 0.4s;
}


/* ボタンがアクティブ（開く）ときのアニメーション */

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}


/* ------------------------------
オーバーレイメニュー
------------------------------ */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 80, 80, 0.95);
    backdrop-filter: blur(5px);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
    overflow: auto;
}

.menu-overlay.open {
    transform: translateX(0%);
    padding-top: 60px;
}

.menu-container {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* 左: メニューナビゲーション */
.menu-left {
    width: 50%;
    background: transparent;
    padding: 8rem 4rem 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* 右: 会社情報 */
.menu-right {
    width: 50%;
    background: transparent;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    padding: 4rem;
}

.header-cta a {
    background: var(--color-primary);
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-text-white);
    font-weight: bold;
    transition: all 0.3s ease;
}

.header-cta a:hover {
    opacity: 0.8;
}


/* ------------------------------
左側コンテンツ（メニューナビゲーション）
------------------------------ */

.hamburger-nav {
    width: 100%;
}

.hamburger-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hamburger-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    color: var(--color-text-white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.hamburger-nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hamburger-nav-icon {
    font-size: 1.4rem;
    width: 20px;
    text-align: center;
    opacity: 0.8;
    flex-shrink: 0;
}

.hamburger-nav-text {
    flex: 1;
}

/* 物件一覧のサブメニュー */
.hamburger-nav-item-property {
    position: relative;
}

.hamburger-property-toggle {
    cursor: pointer;
}

.hamburger-property-icon {
    transition: transform 0.3s ease;
}

.hamburger-property-icon.active {
    transform: rotate(45deg);
}

.hamburger-property-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 8px;
}

.hamburger-property-submenu.active {
    max-height: 300px;
    padding: 16px 0;
}

.hamburger-property-submenu li {
    padding: 0;
}

.hamburger-property-submenu a {
    display: block;
    padding: 8px 24px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.hamburger-property-submenu a:hover {
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.1);
    padding-left: 32px;
}


/* ------------------------------
右側コンテンツ（会社情報）
------------------------------ */

.company-info {
    width: 100%;
    max-width: 400px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
    justify-content: center;
    flex-direction: column;
}

.company-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.company-name-main {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.2;
    font-family: 'Arsenal', sans-serif;
}

.company-name-sub {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-white);
    line-height: 1.2;
}

.company-contact {
    margin-bottom: 40px;
    text-align: center;
}

.phone-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.phone-info i {
    font-size: 2rem;
    color: var(--color-text-white);
}

.phone-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-text-white);
}

.business-hours {
    font-size: 1.4rem;
    color: var(--color-text-white);
    opacity: 0.9;
}

.company-address {
    text-align: center;
    line-height: 1.6;
}

.company-name-full {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 8px;
}

.address {
    font-size: 1.4rem;
    color: var(--color-text-white);
    opacity: 0.9;
    margin-bottom: 4px;
}

.header-cta-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* デスクトップでモバイル専用要素を非表示 */

.mobile-call-btn {
    display: none;
}

/* ヘッダー電話番号セクション */
.header-tel {
    height: 80px;
    background-color: var(--color-bg-white);
    display: flex;
    align-items: center;

}

.header-tel a {
    display: flex;
    align-items: center;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0 14px;
    flex-direction: column;

}

.header-tel a:hover {
    opacity: 0.8;
}

.header-tel .fas {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-right: 8px;
}

.tel-info {
    display: flex;
    align-items: center;
}

.tel-number {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: bold;
}

.tel-hours {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-top: 2px;
}

.property-archive {
    background-color: var(--color-text-white);
    color: var(--color-text-dark);
    padding-top: 140px;
}

.property-archive__title {
    font-size: 9.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.property-archive__title-inner {
    margin-bottom: 40px;
}

.property-archive__title-inner span {
    font-size: 1.8rem;
    color: var(--color-text-medium);
    font-weight: 700;
}

.property-breadcrumb {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    margin-bottom: 2rem;
}

.property-archive__count {
    margin-bottom: 5rem;
}

.property-archive__content {
    display: flex;
    gap: 90px;
    align-items: flex-start;
}

.custom-number-class {
    font-size: 2rem;
    font-weight: 700;
}


/* 左メインカラム */

.property-archive__main {
    flex: 1 1 0;
}

.property-card__thumb {
    position: relative;
}

.property-card__body {
    flex: 1;
}

.property-card__info {
    font-size: 1.3rem;
}

.property-card__buttons {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}

.property-card__buttons a {
    display: inline-block;
    width: 50%;
    padding: 12px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
}

.property-card__buttons a:hover {
    opacity: 0.8;
}

.property-card__detail-btn {
    background: var(--color-bg-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.property-card__contact-btn {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.property-archive__pagination {
    margin: 20px 0;
}


/* 右サイドバー */

.property-archive__sidebar {
    width: 330px;
    flex-shrink: 0;
    border: 4px solid var(--color-border-light);
    padding: 34px 24px;
}

.property-archive__sidebar-title {
    font-size: 1.8rem;
    font-weight: 700;
}


/* 物件検索フォームのトグルスタイル */

.property-archive__sidebar-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--color-bg-gray);
    transition: background-color 0.3s;
}

.property-archive__sidebar-title:hover {
    background-color: var(--color-bg-gray-hover);
}

.toggle-icon {
    display: inline-block;
    transition: transform 0.3s;
}

.property-archive__search-form {
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
}

@media (max-width: 599px) {

    .sns-common-icon img {
        width: 50px;
        height: 50px;
    }

    .property-archive__sidebar-title {
        margin-bottom: 0;
    }

    .property-archive__search-form {
        padding-top: 15px;
    }
}

.property-archive__sidebar form {
    display: grid;
    gap: 30px;
}

.form-group label,
fieldset {
    color: var(--color-text-dark);
    font-weight: 700;
}

.form-group fieldset legend {
    margin-bottom: 8px;
}

.property-archive__sidebar select,
.property-archive__sidebar input[type="checkbox"] {
    border: 1px solid var(--color-border-light);
    padding: 12px 16px;
}

.form-group {
    display: flex;
    gap: 14px;
    flex-direction: column;
}

select,
input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-weight: 400;
}

fieldset label {
    font-weight: 400 !important;
}

.search-filter-btn {
    transition: all 0.3s;
}

.property-archive__sidebar button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--color-primary);
    padding: 11px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}

.property-archive__sidebar button:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
}


/* レスポンシブ例 */

@media screen and (max-width: 768px) {
    .property-archive__sidebar {
        width: 100%;
    }

    .property-card {
        flex-direction: column;
    }
}


/* ステータスラベル (例: 販売中/成約済) */



.property-card__status-container {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 8px;
}

.property-card__status {
    color: var(--color-text-white);
    font-size: 1.4rem;
    font-weight: 700;
    padding: 9px 20px;
    background: #E50012;
}

.property-card__status.new {
    background: #E50012;
}

.property-card__status.price-update {
    background: #EB8030;
}

.price-update-badge {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-right: 6px;
}

.form-group-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-group-column label,
.form-group-flex label {
    display: flex;
    gap: 6px;
}

.form-group-flex label {
    width: calc(50% - 6px);
}

.form-group-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.6;
}

.property-table th,
.property-table td {
    border: 1px solid var(--color-bg-neutral);
    padding: 8px 12px;
    vertical-align: middle;
}

.property-table th {
    background-color: var(--color-bg-gray);
    font-weight: bold;
    width: 20%;
}

.property-table td {
    width: 30%;
}

.property-detail-info-section {
    margin-top: 90px;
}

.property-detail-sub-title h2 {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    gap: 10px;
}

.property-detail-sub-title h2::before {
    content: "";
    display: block;
    width: 6px;
    height: 30px;
    background: var(--color-primary);
}

.property-detail-prcoment-section {
    margin-top: 60px;
}

.property-detail-sub-title {
    margin-bottom: 24px;
}

.property-detail-prcoment p {
    margin-bottom: 12px;
}

.property-detail-surrounding-section {
    margin-top: 60px;
}

.surrounding-info {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.surrounding-item {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
}

.image-container {
    width: 100%;
    overflow: hidden;
}

.image-container img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    /* 画像をコンテナ内に収める（必要に応じて調整可） */
    display: block;
}

.surrounding-item p {
    margin-top: 1rem;
    font-size: 14px;
}

.page-common-visual {
    position: relative;
    padding-top: 140px;
}

.page-common_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 320px;
    z-index: -1;
    border-radius: 0 0 0 8px;
}

.page-common_bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
}

.company_bg {
    background: url("/wp-content/uploads/2025/09/IMG_6207-scaled.jpeg") no-repeat center center / cover;
}

.page-common-head_en h2 {
    display: inline-block;
    font-size: 9.6rem;
    font-weight: 700;
    color: var(--color-primary);
}

.page-common-head_jp {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-medium);
}

.page-common-section {
    margin-top: 60px;
}

.page-common-company_history-info dl {
    display: flex;
    margin-bottom: 34px;
}

.page-company-inner {
    display: flex;
    gap: 60px;
}

.representative-label {
    margin-right: 20px;
    font-weight: bold;
}

.page-common-company_history-info {
    flex: 1;
}

.page-company-representative {
    width: 40%;
    max-width: 380px;
}

.representative-name {
    margin-top: 16px;
}

.page-common-company_history-info dl dt {
    width: 20%;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 34px;
}

.page-common-company_history-info dl dd {
    flex: 1;
    border-bottom: 1px solid var(--color-border-light);
    padding-left: 6%;
    padding-bottom: 34px;
}


/* 全体のフォーム要素に対する基本設定 */

.wpcf7 form {
    margin-top: 80px;
    font-size: 16px;
    color: var(--color-text-dark);
}


/* 行（.form-row）ごとに下余白をつける */

.wpcf7 form .form-row {
    margin-bottom: 30px;
    display: flex;
}


/* ラベル（見出し）を上に配置 */

.form-label {
    width: 20%;
    display: inline-block;
    font-weight: bold;
    color: var(--color-text-dark);
    padding-top: 13px;
}

.wpcf7-form-control-wrap {
    flex: 1;
}

.wpcf7-form-control {
    display: flex;
    gap: 6px 14px;
    flex-wrap: wrap;
}


/* 必須マークを赤色に */

.wpcf7 form .required {
    color: var(--color-text-error);
    /* 必須マークの色 */
}


/* テキスト入力、メール、電話番号の共通スタイル */

.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form input[type="tel"],
.wpcf7 form textarea {
    width: 100%;
    /* 幅を100% */
    padding: 10px;
    /* 内側余白 */
    border-radius: 4px;
    /* 角の丸み */
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    background-color: var(--color-bg-light);
    height: 50px;
}


/* フォーカス時の枠線色 */

.wpcf7 form input[type="text"]:focus,
.wpcf7 form input[type="email"]:focus,
.wpcf7 form input[type="tel"]:focus,
.wpcf7 form textarea:focus {
    border-color: var(--color-orange);
    /* オレンジ色 */
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-acceptance {
    display: flex;
    align-items: center;
    justify-content: center;
}

.personal-information {
    font-weight: 700;
    font-size: 1.4rem;
}


/* 備考（textarea）は高さを調整 */

.wpcf7 form textarea {
    min-height: 240px;
    resize: vertical;
    /* ユーザーが縦方向にリサイズ可能 */
}


/* 個人情報チェックボックス行 */

.form-acceptance {
    display: flex;
    align-items: center;
}

.form-acceptance input[type="checkbox"] {
    margin-right: 0.5em;
}


/* 送信ボタン */

.form-submit input[type="submit"] {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 350px;
    height: 70px;
    text-align: center;
    font-weight: 700;
}

.form-submit {
    justify-content: center;
}

.wpcf7-spinner {
    display: none;
}


/* ホバー時のボタン */

.form-submit input[type="submit"]:hover {
    opacity: 0.8;
}

.contact_bg {
    background: url("/wp-content/uploads/2025/02/27878217_m.jpg") no-repeat center center / cover;
}

.page-conatct-message {
    text-align: center;
}

.page-contact-tel {
    margin-top: 50px;
    border: 1px solid var(--color-primary);
    padding: 4rem;
    width: 700px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.page-contact-tel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.page-contact-tel-inner a {
    font-size: 2.4rem;
    font-weight: 700;
}

.page-contact-tel span {
    font-size: 1.4rem;
}

.single-post-container {
    padding-top: 140px;
    display: flex;
    gap: 6rem;
}

.post-main {
    flex: 1;
    min-width: 0;
}

.post-sidebar {
    flex: 0 0 320px;
}

.post-meta {
    display: flex;
    gap: 46px;
    font-size: 1.4rem;
}

.post-title {
    font-size: 3.6rem;
    font-weight: bold;
    margin-top: 28px;
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 30px;
}

.sidebar-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 3rem;
    color: var(--color-text-dark);
}

.latest-post-item:first-child {
    border-top: 1px solid var(--color-border-medium);
}

.latest-post-item {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border-medium);
}

.latest-post-inner {
    display: flex;
    gap: 30px;
}

.latest-post-title {
    font-size: 1.4rem;
    margin-top: 8px;
}

.latest-post-date {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 0.2rem;
}

.latest-post-cat {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}

.sidebar-latest {
    margin-bottom: 3rem;
}

.sidebar-btn-wrap {
    text-align: center;
}

.sidebar-btn-wrap button {
    display: inline-block;
    background-color: var(--color-text-dark);
    color: var(--color-text-white);
    padding: 1.5rem 6.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background-color 0.3sease;
}

.latest-post-title a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 600;
}

.latest-post-cat a {
    text-decoration: none;
    font-weight: 600;
}

.sidebar-btn-wrap button:hover {
    background-color: var(--color-text-gray);
}

.post-meta .post-cat {
    color: var(--color-primary);
    font-weight: 700;
}

@media (max-width: 1023px) {
    .post-meta {
        gap: 32px;
    }
}

.footer__logo img {
    width: 110px;
}

.new-post-meta {
    display: flex;
    gap: 30px;
    align-items: center;
}

.error-container {
    margin-top: 60px;
}

.error-container {
    margin-top: 60px;
}

.privacypolicy-container {
    margin-top: 60px;
}

.error-content-area {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.error-home-link {
    background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    width: 350px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-text-white);
    font-weight: bold;
    transition: all 0.5s ease;
}

.error-home-link:hover {
    background: var(--color-brand-gradient-reverse);
    transition: all 0.5s ease;
}

.policy-group h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.policy-group {
    margin-bottom: 30px;
}

.sp-news-section__more {
    display: none;
}


/* 全体の余白調整 */

.property-detail-section {
    padding-top: 12rem;
}

.property-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 28px;
}

.property-detail-slider-area .swiper-button-next svg,
.property-detail-slider-area .swiper-button-prev svg {
    display: none;
}

.property-detail-type-badge {
    display: inline-block;
    padding: 6px 16px;
    font-weight: bold;
    font-size: 1.4rem;
    border-radius: 4px;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.property-detail-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}


/* 左右2カラムレイアウト */

.property-detail-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    margin-bottom: 20px;
}


/* 左サイド（スライダー）：幅600pxに固定＆オーバーフローを隠す */

.property-detail-slider-area {
    flex: 0 0 670px;
    max-width: 670px;
    overflow: hidden;
}


/* 右サイド（物件情報）：残りの幅を使用 */

.property-detail-info-area {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}


/* 価格表示 */

.property-detail-price {
    font-size: 18px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border-light);
    height: 54px;
}

.property-detail-price-label {
    font-weight: bold;
    width: 20%;
    background-color: var(--color-bg-light);
    text-align: center;
    border-right: 1px solid var(--color-border-light);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detail-price-value {
    color: var(--color-primary);
    font-size: 2.4rem;
    font-weight: bold;
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}


/* 物件情報のリスト */

.property-detail-specs {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.property-detail-specs-row {
    display: flex;
    margin-bottom: 26px;
    flex-direction: column;
    width: 100%;
}

.property-detail-specs-row dt {
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.property-detail-specs-row dt::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    display: none;
}


.property-detail-specs-row dd {
    margin: 0;
    flex: 1;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 1.4rem;
}

.property-card__category-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}


/* お問い合わせボタン */

.property-detail-inquiry {
    text-align: center;
    width: 100%;
}

.property-detail-inquiry-button {
    background: var(--color-primary);
    color: var(--color-text-white);
    padding: 17px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
}

.property-detail-inquiry-button:hover {
    opacity: 0.8;
}


/* Swiper関連 */

.swiper-container {
    width: 100%;
    height: 420px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.front-property-card__thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* レスポンシブ画像の最適化 */
.front-property-card__thumb picture {
    display: block;
    width: 100%;
    height: 260px;
}

.front-property-card__thumb picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 高解像度ディスプレイ対応 */
@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {
    .front-property-card__thumb img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* PC画面での画像品質向上 */
@media screen and (min-width: 769px) {
    .front-property-card__thumb img {
        image-rendering: high-quality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* PC高解像度ディスプレイ対応 */
@media screen and (min-width: 769px) and (-webkit-min-device-pixel-ratio: 1.5),
screen and (min-width: 769px) and (min-resolution: 144dpi) {
    .front-property-card__thumb img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* PC超高解像度ディスプレイ対応 */
@media screen and (min-width: 769px) and (-webkit-min-device-pixel-ratio: 2),
screen and (min-width: 769px) and (min-resolution: 192dpi) {
    .front-property-card__thumb img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* スマホ画面での画像品質向上 */
@media screen and (max-width: 768px) {
    .front-property-card__thumb img {
        image-rendering: high-quality;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}


/* サムネイル用 */

.property-detail-thumbnail-slider {
    height: 120px;
    margin-top: 24px;
}

.property-detail-thumbnail-slider .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.property-detail-thumbnail-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.property-detail-specs-row:nth-child(n+3):nth-child(-n+6) {
    width: calc(50% - 10px);
    gap: 18px;
}

.property-detail-specs-row:nth-child(n+3):nth-child(-n+6) dt {
    margin-bottom: 0;
}

.property-detail-main-slider .swiper-button-next,
.property-detail-main-slider .swiper-button-prev {
    flex-shrink: 0;
    margin: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    background-color: var(--color-text-white);
}

.property-detail-main-slider .swiper-button-next::after {
    margin-right: 0.4rem;
    transform: rotate(45deg);
}

.property-detail-main-slider .swiper-button-prev::after {
    margin-left: 0.4rem;
    transform: rotate(-135deg);
}

.property-detail-main-slider .swiper-button-prev::after,
.property-detail-main-slider .swiper-button-next::after {
    width: 1rem;
    height: 1rem;
    content: "";
    border: solid var(--color-primary);
    border-width: 2px 2px 0 0;
}

.radio-btn-form {
    align-items: flex-start;
}

.radio-btn-form .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
}

.radio-btn-form-inner p {
    margin-top: 6px;
    font-size: 1.4rem;
    font-weight: 400;
}

/* モバイル専用ロゴセクション */
.mobile-logo-section {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-white);
}

.mobile-logo-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.mobile-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-logo-text {
    font-family: 'Arsenal', sans-serif;
    font-size: clamp(16px, 1.8vw, 30px);
    font-weight: 700;
    color: var(--color-text-white);
    letter-spacing: 0.5px;
}

.header-inner {
    padding-left: 32px;
}


@media (max-width: 1023px) {

    .header-main-nav {
        display: none;
    }

    .menu-container {
        flex-direction: column;
    }

    .menu-left,
    .menu-right {
        width: 100%;
    }

    .menu-left {
        padding: 6rem 2rem 2rem;
    }

    .menu-right {
        padding: 2rem;
    }

    .company-logo {
        margin-bottom: 30px;
    }

    .company-contact {
        margin-bottom: 30px;
    }

    .property-detail-inquiry {
        width: 100%;
    }

    .property-detail-slider-area {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .property-detail-content {
        flex-direction: column;
    }

    .property-archive__sidebar,
    .property-archive__main {
        width: 100%;
    }

    .property-archive__content {
        flex-direction: column-reverse;
    }

    .single-post-container {
        flex-direction: column;
    }

    .contact-section__title {
        margin-bottom: 2rem;
    }

    .contact-section__tel-block {
        margin-top: 0;
    }

    .contact-section__title {
        justify-content: center;
    }

    .contact-section__content,
    .contact-section__tel-block {
        text-align: center;
    }

    .contact-section {
        padding-bottom: 74px;
    }

    .contact-section__right {
        width: 100%;
    }

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

    .main-visual__bottom-bar {
        width: 86%;
    }
}

@media (max-width: 768px) {

    .hamburger-menu {
        display: block;
    }

    .header-main-nav {
        display: none;
    }

    .page-company-inner {
        flex-direction: column;
        gap: 20px;
    }

    .page-company-representative {
        width: 100%;
        max-width: 100%;
    }

    .menu-overlay {
        width: 100%;
    }

    .menu-overlay.open {
        transform: translateX(0%);
    }

    .menu-right {
        padding: 4rem 2rem;
    }

    .hamburger-nav-link {
        font-size: 1.6rem;
        padding: 20px 0;
        justify-content: space-between;
    }

    .company-name-sub {
        font-size: 1.6rem;
    }

    .form-label,
    .wpcf7-form-control-wrap {
        width: 100%;
    }

    .wpcf7 form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-submit {
        flex-direction: row !important;
    }

    .page-contact-tel {
        width: 100%;
    }

    .property-archive__title {
        font-size: 5.6rem;
    }

    .contact-section {
        margin-top: 80px;
    }



    .page-common-head_en h2 {
        font-size: 5.6rem;
    }

    .sp-news-section__more {
        display: block;
        margin-top: 36px;
    }

    .pc-news-section__more {
        display: none;
    }

    .news-list__item {
        gap: 16px;
    }

    .news-section {
        margin-top: 80px;
    }

    .company-section {
        padding-bottom: 0;
    }

    .company-section__title {
        margin-bottom: 2.4rem;
    }

    .company-section__text {
        max-width: 100%;
    }

    .company-section__title {
        font-size: 2.4rem;
    }

    .company-section__inner::after {
        width: 100%;
    }

    .company-section__inner {
        padding-top: 25rem;
        padding-bottom: 10rem;
    }

    .company-section__image-wrap {
        position: relative;
        margin-top: 6rem;
        width: 100%;
    }

    .company-section__image-wrap img {
        height: 400px;
    }

    .company-section__hero {
        width: calc(100% - 14px);
    }

    .company-section__image-wrap {}

    .property-section__title {
        font-size: 4.6rem;
    }

    .main-visual__bottom-bar {
        padding: 16px 0;
    }

    .main-visual__bottom-bar-inner {
        gap: 12px;
    }

    /* デスクトップ用電話番号とCTAボタンを非表示 */
    .header-tel,
    .header-cta {
        display: none;
    }

    .hamburger-btn {
        height: 60px;
        width: 60px;
    }

    /* ハンバーガーボタン */

    .hamburger-btn {
        gap: 4px;
    }

    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--color-primary);
        transition: 0.3s;
        border-radius: 1px;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* モバイルヘッダーデザイン - 添付画像通りに忠実に再現 */
    .site-header {
        background-color: var(--color-primary);
        box-shadow: none;
        height: 60px;
    }

    .header-inner {
        height: 60px;
        padding-left: 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* モバイル専用電話ボタン */
    .mobile-call-btn {
        display: flex;
        align-items: center;
    }

    .mobile-call-btn a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        text-decoration: none;
        color: var(--color-text-white);
        transition: background-color 0.3s ease;
        width: 60px;
        height: 60px;
        background-color: #333333;
    }

    .mobile-call-btn a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .mobile-call-btn .phone-icon {
        width: 36px;
        height: 36px;
        object-fit: contain;
    }

    .mobile-call-btn span {
        font-size: 10px;
        font-weight: 700;
        color: var(--color-text-white);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

}



@media (max-width: 599px) {



    .footer__property-list {
        display: none;
    }


    /* デスクトップ用ロゴを非表示 */
    .site-logo {
        display: none;
    }



    /* モバイル専用ロゴセクション */
    .mobile-logo-section {
        display: flex;
        align-items: center;
        flex: 1;
    }

    .mobile-logo-link {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--color-text-white);
    }

    .mobile-logo-icon {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .mobile-logo-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-logo-text {
        font-family: 'Arsenal', sans-serif;
        font-weight: 700;
        font-size: 18px;
        color: var(--color-text-white);
        letter-spacing: 0.5px;
    }



    .header-cta-inner {
        box-shadow: none;
        display: flex;
        align-items: center;
    }

    .representative-name {
        font-size: 1.4rem;
    }

    .menu-contact-text {
        font-size: 1.4rem;
    }

    .property-table th,
    .property-table td {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        border: none;
        padding: 12px;
        border-top: 1px solid var(--color-bg-neutral);
        border-left: 1px solid var(--color-bg-neutral);
        border-right: 1px solid var(--color-bg-neutral);
    }

    .property-table th {
        background-color: var(--color-bg-gray);
        font-weight: bold;
        text-align: left;
    }

    .property-table th:first-child {
        margin-top: 0;
    }

    .property-table td {
        background-color: var(--color-bg-white);
        text-align: left;
        margin-bottom: 0;
    }

    .property-table tbody tr {
        display: block;
        margin-bottom: 0;
    }

    /* 設備の行は colspan="3" を使用しているため、特別な処理が必要 */
    .property-table tbody tr:last-child td {
        border-bottom: 1px solid var(--color-bg-neutral);

    }

    .menu-right {
        padding: 3rem 14px;
    }

    .menu-left {
        padding: 8rem 14px 4rem;
    }

    .hamburger-nav-link {
        font-size: 1.4rem;
        padding: 16px 0;
        justify-content: space-between;
    }

    .company-logo {
        margin-bottom: 24px;
    }

    .company-logo img {
        width: 50px;
        height: 50px;
    }


    .company-name-sub {
        font-size: 1.4rem;
    }


    .company-name-full {
        font-size: 1.4rem;
    }


    .hamburger-property-submenu a {
        font-size: 1.2rem;
        padding: 6px 20px;
    }

    .hamburger-property-submenu a:hover {
        padding-left: 28px;
    }

    .surrounding-info {
        gap: 24px;
    }

    .surrounding-info {
        flex-direction: column;
    }

    /* 周辺情報: モバイルは縦一列・全幅表示 */
    .surrounding-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .property-detail-info-section {
        margin-top: 60px;
    }

    .property-detail-header {
        margin-bottom: 40px;
    }

    .property-detail-section {
        padding-top: 10rem;
    }

    .property-detail-header {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-common-visual,
    .property-archive {
        padding-top: 100px;
    }

    .page-contact-tel {
        padding: 1.4rem;
    }

    .wpcf7-form-control {
        gap: 6px 14px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .wpcf7-list-item-label,
    .form-label {
        font-size: 1.4rem;
    }

    .page-contact-tel-inner {
        flex-direction: column;
        gap: 16px;
    }

    .page-common_bg {
        height: 200px;
    }

    .property-archive__title-inner span {
        font-size: 1.6rem;
    }

    .property-archive__title {
        font-size: 3.6rem;
    }

    .property-card__buttons a {
        width: 100%;
    }

    .property-card__buttons {
        flex-direction: column;
    }

    .property-card__thumb img {
        width: 100%;
        height: 20%;
    }

    .property-contents {
        flex-direction: column;
    }

    .property-archive__content {
        gap: 60px;
    }

    .page-common-head_jp {
        font-size: 1.6rem;
    }

    .page-common-head_en h2 {
        font-size: 3.6rem;
    }

    .page-common-company_history-info dl dt {
        width: 24%;
    }

    .page-common-company_history-info dl dt,
    .page-common-company_history-info dl dd {
        font-size: 1.4rem;
    }

    .contact-section__box-text {
        font-size: 1.4rem;
    }

    .contact-section__title {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 3.2rem;
    }

    .sp-news-section__more .news-section__more {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .company-section__btn {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .property-section-head__inner {
        margin-bottom: 40px;
    }

    .property-tabs__item {
        font-size: 1.2rem;
    }

    .front-property-section__more a {
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .front-property-section__more {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card02 .swiper-controller {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-indicator {
        display: none;
    }

    .main-visual__slider {
        width: 100%;
        padding: 0;
    }

    .main-visual__bg {
        width: 100%;
        padding: 0;
    }

    .card02 .swiper-slide {
        width: 100%;
    }

    .card02 .swiper-slide .front-property-card {
        margin: 0 14px;
        position: relative;
    }

    .card02 .swiper-controller {
        margin-top: 3rem;
        gap: 2rem;
    }

    .card02 .swiper-button-prev,
    .card02 .swiper-button-next {
        width: 4.5rem;
        height: 4.5rem;
    }

    .swiper-button-inner {
        gap: 1rem;
    }

    .main-visual__title {
        font-size: 2.6rem;
    }

    .main-visual__subtitle {
        font-size: 1.4rem;
    }

    .main-visual__bottom-bar {
        width: calc(100% - 14px);
    }

    .main-visual__slider {
        height: calc(100vh - 133px);
    }

    .main-visual__bg {
        border-radius: 0;
        height: calc(100vh - 133px);
        width: 100%;
        /* スマートフォンでも100%に統一 */
        transform: translate(-52%, -50%) scale(1.1);
        /* スマートフォン用：初期位置 + 拡大 */
        transition-duration: 15s;
        /* スマートフォンでは少し早め */
        transition-timing-function: linear;
        /* スマートフォンもlinear */
    }

    /* スマートフォン用のアクティブスライド */
    .swiper-slide-active .main-visual__bg {
        transform: translate(-48%, -50%) scale(1.1);
        /* 右に移動完了 + 拡大維持 */
        transition-timing-function: linear;
        /* linear統一 */
        transition-duration: 15s;
    }

    /* スマートフォン用の非アクティブスライド */
    .swiper-slide:not(.swiper-slide-active) .main-visual__bg {
        transform: translate(-52%, -50%) scale(1.1);
        transition-duration: 0.3s;
        transition-timing-function: linear;
    }

    .main-visual__navigation {
        padding: 0 1rem;
    }

    .main-visual__prev,
    .main-visual__next {
        width: 40px;
        height: 40px;
    }

    .main-visual__prev::after,
    .main-visual__next::after {
        font-size: 1.2rem;
    }

    .header-cta {
        display: none;
    }

    .header-tel {
        display: none;
    }

    .property-banner-inner {
        flex-direction: column;
        gap: 20px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .property-banner-bottom-inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .main-visual__content {
        padding-left: 14px;
    }

    .property-banner-section {
        margin-top: 120px;
    }

    .property-section {
        margin-top: 80px;
    }

    .header-tel .fas {
        font-size: 2rem;
        margin-right: 8px;
    }

    .tel-number {
        font-size: 1.4rem;
    }

    .tel-hours {
        font-size: 1rem;
    }

    .site-logo img {
        width: 60px;
    }




    .header-inner {
        padding-left: 14px;
    }

    .site-header {
        height: auto;
    }
}




/* トップページ物件スライダー内 詳細ボタン デザイン統一 */

.front-property-slide .property-card__detail-btn {
    background: var(--color-bg-white);
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    transition: background 0.3s, color 0.3s;
    margin: 18px auto 8px auto;
    box-shadow: none;
    letter-spacing: 0.05em;
    width: 60%;
    text-align: center;
}

.front-property-slide .property-card__detail-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

/* スクロール固定のログイン/ログアウト・会員登録ボタン */
.floating-auth-buttons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-auth-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-width: 120px;
    height: 50px;
    padding: 0 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-text-white);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-auth-btn:hover {
    transform: translateX(-10px) scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

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

.register-btn {
    background: var(--color-primary);
}

.login-btn .fas:before,
.login-btn span {
    color: var(--color-primary);
}

.floating-auth-btn i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.floating-auth-btn span {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
}

/* ログアウトボタンのスタイル */
.logout-btn {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.logout-btn:hover {
    background: var(--color-bg-light);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    color: var(--color-text-dark);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .floating-auth-buttons {
        right: 10px;
        gap: 10px;
    }

    .floating-auth-btn {
        min-width: 100px;
        height: 45px;
        padding: 0 16px;
        font-size: 1.4rem;
    }

    .floating-auth-btn i {
        font-size: 1.4rem;
    }

    .floating-auth-btn span {
        font-size: 1.4rem;
    }
}

@media (max-width: 599px) {

    .front-property-slider-container .swiper-wrapper {
        padding: 0;
    }

    .floating-auth-buttons {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(233, 85, 19, 0.2);
        z-index: 1001;
    }

    .floating-auth-btn {
        min-width: 120px;
        height: 44px;
        padding: 0 16px;
        font-size: 1.2rem;
        border-radius: 22px;
        flex: 1;
        max-width: 160px;
        justify-content: center;
    }

    .floating-auth-btn:hover {
        transform: translateY(-2px) scale(1.02);
    }

    .floating-auth-btn i {
        font-size: 1.4rem;
    }

    .floating-auth-btn span {
        font-size: 1.4rem;
    }
}


/*----------------------------------------------------------*/
/* お客様の声 Voice Page Styles */
/*----------------------------------------------------------*/
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 60px;
}

.voice-card {
    background: #fff;
    border: 1px solid #DADADA;
    transition: all 0.3s ease;
}

.voice-card__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.voice-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.voice-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    gap: 16px;
    flex: 1;
}

.voice-card__avatar {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 100%;
}


.voice-card__image {
    width: auto;
    height: 220px;
    max-width: 100%;
    border-radius: 50%;
    border: 3px solid #f8f9fa;
    display: block;
}

.voice-card__gender-icon {
    width: auto;
    height: 220px;
    max-width: 100%;
    border-radius: 50%;
    background: #fff;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.voice-card__picture-image {
    width: auto;
    height: 220px;
    max-width: 100%;
    border: 3px solid #f8f9fa;
    display: block;
}

.voice-card__default-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #f8f9fa;
}

.voice-card__avatar-icon {
    width: 40px;
    height: 40px;
    opacity: 0.6;
}

.voice-card__title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.4;
}

.voice-card__date-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.voice-card__date {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    flex-shrink: 0;
}

.voice-card__customer-info {
    font-size: 1.2rem;
    color: var(--color-primary);
    text-align: right;
    flex-shrink: 0;
}

.voice-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-card__picture img {
    width: 200px;
    height: 200px;
}

.voice-card__text {
    font-size: 1.5rem;
    margin: 0;
}

.voice-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.voice-card__name,
.voice-card__age,
.voice-card__location {
    font-size: 1.2rem;
    color: #666;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.voice-card__name {
    background: linear-gradient(135deg, #E95513, #E50012);
    color: white;
    font-weight: 500;
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .voice-card__inner {
        padding: 24px;
        gap: 16px;
    }

    .voice-card__avatar {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__image,
    .voice-card__gender-icon,
    .voice-card__picture-image {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__text {
        font-size: 1.3rem;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .voice-card__inner {
        padding: 20px;
        gap: 16px;
    }

    .voice-card__avatar {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__image,
    .voice-card__gender-icon,
    .voice-card__picture-image {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__text {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .voice-card__meta {
        gap: 8px;
    }

    .voice-card__name,
    .voice-card__age,
    .voice-card__location {
        font-size: 1.1rem;
        padding: 3px 10px;
    }
}

@media (max-width: 480px) {
    .voice-card__inner {
        padding: 16px;
    }

    .voice-card__link {
        flex-direction: column;
        align-items: center;
    }

    .voice-card__avatar {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__image,
    .voice-card__gender-icon,
    .voice-card__picture-image {
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .voice-card__content {
        width: 100%;
        align-items: center;
        flex-direction: column-reverse;
    }

    .voice-card__meta {
        justify-content: center;
    }
}

/* 限定物件のスタイル */
.property-card.limited-property {
    position: relative;
    overflow: hidden;
}

.limited-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.limited-content {
    text-align: center;
    padding: 20px;
}

.limited-message {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.6;
    display: inline-block;
    background-color: var(--color-bg-white);
    padding: 32px 34px;
    border: 1px solid var(--color-bg-neutral);
    font-weight: bold;
}

.limited-message-color {
    font-size: 1.8rem;
    color: #E50012;
}

.limited-register-btn {
    background: var(--color-text-white);
    color: var(--color-text-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    border: none;
    padding: 16px 28px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


@media (max-width: 599px) {


    .post-title {
        font-size: 2.6rem;
    }

    .membership-modal__content {
        max-width: 95%;
    }

    .membership-modal__body {
        padding: 32px 24px 24px;
    }

    .limited-register-btn {
        font-size: 1.4rem;
        padding: 10px 16px;
    }

    .limited-message,
    .limited-message-color {
        font-size: 1.4rem;
    }
}

/* フロントページの限定物件スタイル */
.front-property-card.limited-property {
    position: relative;
    overflow: hidden;
}

.front-limited-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.front-limited-content {
    text-align: center;
    padding: 16px;
}

.front-limited-message {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.5;
    display: inline-block;
    background-color: var(--color-bg-white);
    padding: 16px 20px;
    border: 1px solid var(--color-bg-neutral);
    font-weight: bold;
}

.front-limited-message-color {
    font-size: 1.6rem;
    color: #E50012;
    font-weight: bold;
}

.front-limited-register-btn {
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.um span.um-req {
    color: #E50012 !important;
}


@media (max-width: 599px) {

    .property-detail-main-slider {
        height: 300px;
    }

    .front-limited-content {
        padding: 12px;
    }

    .front-limited-message {
        font-size: 1.1rem;
        padding: 12px 16px;
        margin-bottom: 10px;
    }

    .front-limited-message-color {
        font-size: 1.1rem;
    }

    .front-limited-register-btn {
        font-size: 1.1rem;
        padding: 6px 12px;
        gap: 4px;
    }
}

/* Company Page Styles - 正しいレイアウト */
.page-company .page-company-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Main Layout - 左右2カラム */
.company-main-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column - Message + Company */
.company-left-column {
    flex: 1;
    max-width: 600px;
}

/* Right Column - Representative + Profile */
.company-right-column {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

/* Message Section - 左上 */
.company-message-section {
    margin-bottom: 60px;
}

.company-message-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.company-message-content {
    color: var(--color-text-dark);
    text-align: left;
}

.company-message-content p {
    margin-bottom: 20px;
}

/* Company Information - 左下 */
.company-info-area {
    /* 左カラム内の下部に配置 */
}

.company-info-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.company-info-table {
    width: 100%;
    border-collapse: collapse;
}

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

.company-info-table th {
    width: 120px;
    padding: 30px 0;
    text-align: left;
    font-weight: bold;
    color: var(--color-text-dark);
    vertical-align: top;
}

.company-info-table td {
    padding: 30px 0;
    color: var(--color-text-dark);
    vertical-align: top;
}

/* Representative Image - 右上 */
.company-representative-image {
    margin-bottom: 20px;
}

.company-representative-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.company-representative-name {
    margin-bottom: 40px;
    text-align: right;
}

.company-representative-name-pc {
    display: none;
}

.company-representative-label {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-right: 10px;
}

.company-representative-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-dark);
}

/* Profile Section - 右下 */
.company-profile-section {
    text-align: left;
}

.company-profile-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.company-profile-content {
    font-size: 1.4rem;
    color: var(--color-text-dark);
}

.company-profile-content p {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-company .page-company-inner {
        padding: 0px 14px;
    }

    .company-main-layout {
        flex-direction: column;
        gap: 50px;
    }

    .company-left-column,
    .company-right-column {
        max-width: 100%;
    }

    .company-message-title,
    .company-info-title {
        font-size: 2rem;
        text-align: center;
    }

    .company-message-content {
        font-size: 1.5rem;
    }

    .company-info-table th,
    .company-info-table td {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    .company-info-table th {
        font-weight: bold;
        border-bottom: none;
        margin-top: 15px;
    }

    .company-info-table td {
        padding-left: 0;
        border-bottom: 1px solid var(--color-border-light);
        padding-bottom: 15px;
    }

    .company-profile-title {
        font-size: 2rem;
        text-align: center;
    }

    .company-profile-content {
        font-size: 1.4rem;
    }
}

@media (max-width: 599px) {

    .company-representative-name-pc {
        display: block;
    }

    .company-message-title,
    .company-info-title {
        font-size: 2.4rem;
    }

    .company-message-content {
        font-size: 1.4rem;
    }

    .company-info-table th,
    .company-info-table td {
        font-size: 1.4rem;
    }


    .company-profile-content {
        font-size: 1.3rem;
    }
}

.um-field-checkbox .um-clear {
    display: none;
}

/*--------------------------------------
||| 投稿コンテンツのスタイル（管理画面の設定を反映）
---------------------------------------*/
.post-content {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
}

.post-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* 改行時のマージン調整 */
.post-content p.no-margin {
    margin-bottom: 0;
}

/* 複数改行時のマージン調整 */
.post-content p.reduced-margin {
    margin-bottom: 6px;
    /* 通常の12pxの半分 */
}

/* 連続する段落の間隔を調整 */
.post-content p+p {
    margin-top: 0;
}

/* 改行タグのスタイル調整 */
.post-content br {
    line-height: 1.2;
}

/* 空の段落のマージン調整 */
.post-content p:empty {
    margin-bottom: 0;
    height: 0;
    overflow: hidden;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    line-height: 1.4;
    font-weight: bold;
    color: #333;
}

.post-content h1 {
    font-size: 1.8em;
}

.post-content h2 {
    font-size: 1.5em;
}

.post-content h3 {
    font-size: 1.3em;
}

.post-content h4 {
    font-size: 1.2em;
}

.post-content h5 {
    font-size: 1.1em;
}

.post-content h6 {
    font-size: 1em;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.2em;
    padding-left: 2em;
}

.post-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.post-content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid #ddd;
    background-color: #f9f9f9;
    font-style: italic;
}

.post-content a {
    color: #0073aa;
    text-decoration: underline;
}

.post-content a:hover {
    color: #005177;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.post-content th,
.post-content td {
    padding: 0.8em;
    border: 1px solid #ddd;
    text-align: left;
}

.post-content th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.post-content code {
    background-color: #f1f1f1;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.post-content pre {
    background-color: #f1f1f1;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1.5em 0;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2em 0;
}

.post-content strong,
.post-content b {
    font-weight: bold;
}

.post-content em,
.post-content i {
    font-style: italic;
}

.post-content u {
    text-decoration: underline;
}

.post-content s,
.post-content del {
    text-decoration: line-through;
}

/*--------------------------------------
||| お客様の声詳細ページ
---------------------------------------*/
.single-voice-page {
    padding-top: 140px;
    background: var(--color-bg-white);
}

.single-voice-page .container {
    /* max-width: 1200px;
    margin: 0 auto; */
    padding: 0 20px;
}

/* トップセクション */
.voice-main-title {
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--color-primary);
    margin: 0 0 30px;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

.voice-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.voice-date {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    font-family: 'Noto Sans JP', sans-serif;
}

.voice-customer-info {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    font-family: 'Noto Sans JP', sans-serif;
    text-align: right;
}

/* voice-header内の2カラムコンテンツ */
.voice-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.voice-header-left {
    position: sticky;
    top: 140px;
}

.voice-letter-image {
    width: 100%;
    background: var(--color-bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.voice-letter-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.voice-header-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-header-right.voice-header-full-width {
    grid-column: 1 / -1;
}

.voice-text-header {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 16px 20px;
}

.voice-text-title {
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.voice-text-content {
    font-size: 1.6rem;
    color: var(--color-text-dark);
}

/* メインコンテンツ（2カラム） */
.voice-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.voice-left-column {
    position: sticky;
    top: 140px;
}

.voice-survey-image {
    width: 100%;
    background: var(--color-bg-white);
    border-radius: 4px;
    overflow: hidden;
}

.voice-survey-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 右カラム */
.voice-right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.voice-right-column.voice-full-width {
    grid-column: 1 / -1;
}

/* 質問ブロック */
.voice-question-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-question-header {
    background-color: #003366;
    color: var(--color-text-white);
    padding: 16px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}

.voice-question-label {
    font-size: 1.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.voice-question-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
}

.voice-answer {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .single-voice-page {
        padding-top: 100px;
    }

    .voice-main-title {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .voice-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .voice-customer-info {
        text-align: left;
    }

    .voice-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voice-header-left {
        position: static;
    }

    .voice-text-header {
        padding: 12px 16px;
    }

    .voice-text-title {
        font-size: 1.6rem;
    }

    .voice-text-content {
        font-size: 1.4rem;
    }

    .voice-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .voice-left-column {
        position: static;
    }

    .voice-question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .voice-question-label {
        font-size: 1.6rem;
    }

    .voice-question-text {
        font-size: 1.4rem;
    }

    .voice-answer {
        font-size: 1.4rem;
    }
}

.footer__sns-wrapper {
    flex: 1;
}

.footer__sns-list {
    margin-bottom: 24px;
}