    /* =========================
      Mobile-first
      - SP : < 1024px
      - PC : >= 1024px
    ========================= */

    :root {
        --bg: #ffffff;
        --ink: #111;
        --muted: rgba(0, 0, 0, 1);
        --line: rgba(0, 0, 0, .10);

        --container: 1200px;
        --gutter: 20px;
        /* ✅ SP左右余白 20px */

        --radius: 14px;

        /* Typography (SP) ざっくり画像寄せ */
        --fs-body: 14px;
        --fs-small: 12px;
        --fs-h2: 18px;
        --fs-h3: 16px;

        --lh: 1.9;

        --space-1: 8px;
        --space-2: 12px;
        --space-3: 16px;
        --space-4: 24px;
        --space-5: 32px;
        --space-6: 48px;
        --space-7: 64px;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0 auto;
        /* ===        
            background: linear-gradient(to bottom,
                #f7f7f7 0%,
                #f3f3f3 50%,
                #ededed 75%,
                #e9e9e9 100%); ===== */
        background: #f3f3f3 50%;
        color: var(--ink);
        font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        /* ✅ 和文 */
        font-size: var(--fs-body);
        line-height: var(--lh);
        -webkit-text-size-adjust: 100%;
        overflow-x: hidden;
        min-width: 350px;
        max-width: 600px;
    }

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

    a {
        color: inherit;
        text-decoration: none;
    }

    button {
        font: inherit;
        border: 0;
    }

    .container {
        width: 100%;
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: var(--gutter);
    }

    /* 英字用（部分的に付ける） */
    .en {
        font-family: "Roboto Condensed", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
        /* ✅ 英字 */
        letter-spacing: .02em;
    }

    /* ===== Header ===== */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        /* 元に戻す */
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, .06);
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    /* メニュー展開時のヘッダー制御 */
    body.is-locked .header {
        background: transparent;
        backdrop-filter: none;
        border-bottom-color: transparent;
        z-index: 100;
        /* メニュー(90)より手前に出す */
    }

    body.is-locked .brand,
    body.is-locked .header__langWrap,
    body.is-locked .header__contact {
        opacity: 0;
        /* burger以外の要素を隠す */
        pointer-events: none;
        /* クリックも無効化 */
    }

    .header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 6px;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        font-size: 13px;
        white-space: nowrap;
        transition: opacity 0.3s ease;
        /* 追加 */
    }

    .brand img {
        width: 160px;
    }

    .brand__mark {
        width: 22px;
        height: 22px;
        border: 2px solid #111;
        border-radius: 6px;
        display: inline-block;
    }

    .header__right {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .lang {
        font-size: 12px;
        padding: 6px 8px;
        border: 1px solid rgba(0, 0, 0, 1);
        background: #fff;
    }

    .header__langWrap,
    .header__contact {
        transition: opacity 0.3s ease;
        /* 追加 */
    }

    .burger {
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        display: inline-grid;
        place-items: center;
        cursor: pointer;
        z-index: 100;
        position: relative;
    }

    .burger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #111;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .burger span::before,
    .burger span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #111;
        transition: transform 0.3s ease, top 0.3s ease;
    }

    .burger span::before {
        top: -8px;
    }

    .burger span::after {
        top: 8px;
    }

    /* Burger Active (X) */
    .burger.is-active span {
        background-color: transparent;
    }

    .burger.is-active span::before {
        top: 0;
        transform: rotate(45deg);
        background: #fff;
    }

    .burger.is-active span::after {
        top: 0;
        transform: rotate(-45deg);
        background: #fff;
    }

    /* ===== Global Navigation (Overlay) ===== */
    .global-nav {
        position: fixed;
        inset: 0;
        background-color: rgba(17, 17, 17, 0.98);
        /* 重厚感のあるダーク背景 */
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        overflow-y: auto;
        display: grid;
        place-items: center;
    }

    .global-nav.is-active {
        opacity: 1;
        visibility: visible;
    }

    .global-nav__inner {
        width: 100%;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .global-nav__grid {
        display: grid;
        gap: 60px;
        max-width: 600px;
        margin: 0 auto;
        color: #fff;
    }

    .global-nav__section h4 {
        margin: 0 0 20px;
        font-size: 24px;
        font-weight: 400;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.5);
        /* サブタイトルのような控えめな色 */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 8px;
    }

    .global-nav__section ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 16px;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.05em;
    }

    .global-nav__section a {
        color: #fff;
        display: inline-block;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .global-nav__section a:hover {
        opacity: 0.7;
        transform: translateX(4px);
    }

    .global-nav__sns {
        justify-content: flex-start;
        /* SNSアイコン左寄せ */
        margin-top: 0;
        margin-bottom: 40px;
        gap: 20px;
    }

    .global-nav__contact {
        display: inline-block;
        border: 1px solid #fff;
        padding: 16px 40px;
        font-size: 16px;
        letter-spacing: 0.1em;
        text-align: center;
        width: 100%;
        transition: all 0.3s ease;
    }

    .global-nav__contact:hover {
        background-color: #fff;
        color: #111;
        transform: none;
        opacity: 1;
    }

    body.is-locked {
        overflow: hidden;
        /* スクロール防止 */
    }

    .sp-hidden {
        display: none !important;
    }

    /* ===== Hero ===== */
    .hero {
        position: relative;
        height: 55svh;
        min-height: 400px;
        overflow: hidden;
        background: #111;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        background:
            url("../img/1.png");
        background-size: cover;
        background-position: center;
    }

    .hero__bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .25);
        pointer-events: none;
    }

    .hero__inner {
        position: relative;
        top: 80px;
        padding-bottom: 80px;
        padding-left: 8%;
    }

    .hero__copy {
        display: grid;
        gap: 20px;
        max-width: 42ch;
    }

    .hero__headline {
        display: inline;
        font-size: 32px;
        line-height: 1.15;
        color: #1a1a1a;
        background: rgba(255, 255, 255, .95);
        padding: 12px 24px 12px 8px;
        width: fit-content;
    }

    .hero__sub {
        color: rgba(255, 255, 255, .9);
        font-size: 16px;
        letter-spacing: .02em;
    }

    /* ===== Section base ===== */
    .section {
        padding-block: var(--space-4);
    }

    .section--muted {}

    .section__head {
        display: grid;
        gap: 6px;
        margin-bottom: var(--space-4);
    }

    .kicker {
        font-size: 40px;
        letter-spacing: 1px;
        color: rgba(0, 0, 0, 1);
    }

    h2 {
        font-size: var(--fs-h2);
        line-height: 1.25;
        margin: 0;
        font-weight: 400;
        letter-spacing: .02em;
    }

    p {
        margin: 0;
        color: var(--muted);
    }

    /* ===== About ===== */
    .about {
        display: grid;
        gap: var(--space-4);
        margin-top: var(--space-1);
    }

    .about__lead {
        font-weight: 700;
        color: rgba(0, 0, 0, .88);
    }

    .main_text p {
        margin-top: 8px;
        text-align: left;
    }

    .about__photo {
        overflow: hidden;
        background: #ddd;
        aspect-ratio: 16 / 10;
        /* 画像が無い時も崩れにくい */
    }

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

    /* ===== News ===== */
    .news {
        display: grid;
        gap: var(--space-3);
    }

    .news__item {
        grid-template-columns: 74px 1fr;
        align-items: start;
        padding-block: 12px;
        border-bottom: 1px solid #1a1a1a;
    }

    .news__tag {
        display: inline-grid;
        color: white;
        place-items: center;
        font-size: 12px;
        padding: 4px 8px;
        background: #1a1a1a;
        width: fit-content;
        margin-bottom: 8px;
    }

    .news__more {
        display: block;
        width: 80px;
        /* text-align: right; */
        /* align-items: center; */
        padding: 0 0 0 8px;
        gap: 8px;
        font-size: 18px;
        color: rgba(0, 0, 0, 1);
        margin: 14px 0 0 auto;
        border-bottom: 1px solid #000;
    }

    .news__more::after {
        content: ">";
        transform: translateY(-1px);
        position: relative;
        left: 10px;
    }

    /* ===== Service tiles ===== */
    .service__intro {
        width: 100%;
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: var(--gutter);
    }

    .tiles {
        margin-top: var(--space-5);
        display: grid;
        margin-inline: calc(50% - 50vw);
        width: auto;
        max-width: 600px;
        margin: 32px auto;
    }

    .tile {
        position: relative;
        min-height: 250px;
        align-items: end;
        overflow: hidden;
        z-index: 0;
        background-size: cover;

    }

    .tile1 {
        background-image: url("../img/3.png");
    }

    .tile2 {
        background-image: url("../img/4.png");
    }

    .tile3 {
        background-image: url("../img/5.png");
    }

    .tile::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .tile__inner {
        position: relative;
        padding: 18px;
        height: 100%;
        z-index: 2;
    }

    .tile__title {
        color: #fff;
        font-size: 22px;
        font-weight: 400;
        margin: 0;
        line-height: 1.2;
    }

    .tile__desc {
        color: rgba(255, 255, 255, 1);
        font-size: 14px;
        margin-top: 4px;
        max-width: 52ch;
    }

    .tile__btn {
        margin: 0 auto;
        padding: 4px 12px;
        border: 2px solid rgba(255, 255, 255, 1);
        color: #fff;
        background-color: transparent;
        font-size: 16px;
        letter-spacing: 1.5px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: background-color 0.4s ease, color 0.4s ease;
        text-decoration: none;
        display: inline-block;
    }

    .tile__btn:hover {
        background-color: #fff;
        color: #000;
    }

    /* ===== Message ===== */
    .message {
        display: grid;
        gap: var(--space-4);
        max-width: 85ch;
    }

    .message h3 {
        margin: 0;
        font-size: var(--fs-h3);
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    .signature {
        margin-bottom: 40px;
        font-weight: 700;
        color: rgba(0, 0, 0, 1);
    }

    /* ===== Company (dark) ===== */
    .company {
        background: #0c0c0c;
        color: rgba(255, 255, 255, 1);
        padding-block: var(--space-7);
    }

    .company .kicker {
        color: rgba(255, 255, 255, 1);
    }

    .company h2 {
        color: #fff;
    }

    .company__table {
        margin-top: var(--space-4);
    }

    .row {
        display: grid;
        grid-template-columns: 88px 1fr;
        gap: 2px;
        padding-block: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 1);
    }

    .row dt {
        margin: 0;
        color: rgba(255, 255, 255, 1);
        letter-spacing: .08em;
    }

    .row dd {
        margin: 0;
        color: rgba(255, 255, 255, 1);
    }

    /* ===== Contact ===== */
    .contact_title {
        color: white;
    }

    .contact {
        position: relative;
        background:
            url("../img/3.png");
        background-size: cover;
        background-position: -300px center;
        color: #fff;
        padding-block: var(--space-5);
    }

    .contact::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .contact_inner {
        position: relative;
        z-index: 2;
    }

    .contact__card {
        background: rgba(255, 255, 255, 1);
        color: #000;
        text-align: center;
        padding: 18px;
        border: 1px solid rgba(0, 0, 0, .10);
        display: grid;
        gap: 12px;
    }

    .contact__title {
        font-weight: bold;
        font-size: 16px;
    }

    .contact__text {
        font-size: 12px
    }

    .contact__grid {
        display: grid;
        gap: 24px;
    }

    .contact__tel {
        font-weight: 400;
        font-size: 24px;
        letter-spacing: 0;
    }

    .btn {
        padding: 12px 14px;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        width: fit-content;
        margin: 0 auto;
        border: 1px solid #1a1a1a;
        transition: background-color 0.4s ease, color 0.4s ease;
        text-decoration: none;
        display: inline-block;
        cursor: pointer;
    }

    .btn:hover {
        background-color: #fff;
        color: #1a1a1a;
    }

    /* ===== Footer ===== */
    .footer {
        background: #0c0c0c;
        color: rgba(255, 255, 255, .88);
        padding-block: var(--space-6);
    }

    .footer__grid {
        display: grid;
        gap: var(--space-4);
    }

    .footer h4 {
        margin: 0 0 12px;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 1);
    }

    .footer a {
        color: rgba(255, 255, 255, .88);
        transition: opacity 0.3s ease;
        text-decoration: none;
    }

    .footer a:hover {
        opacity: 0.6;
    }

    .footer ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
        font-size: 13px;
    }

    /* ✅ SNSは画像アイコン前提 */
    .sns {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 16px;
        align-items: center;
        /* 縦方向（交差軸） */
        justify-content: center;
        /* ← 横方向（主軸）を中央 */
    }

    .sns a {
        width: 40px;
        height: 40px;
        display: inline-grid;
        place-items: center;
        overflow: hidden;
    }

    .sns img {
        width: auto;
        height: auto;
    }

    .copyright {
        margin-top: var(--space-4);
        color: rgba(255, 255, 255, 1);
        font-size: 12px;
        text-align: center;
    }

    .brand_footer img {
        width: 200px;
    }


    /* =========================
  Page Hero
========================= */
    .page-hero {
        position: relative;
        color: #fff;
    }

    .page-hero__bg {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        background-size: cover;
        background-position: center;
    }

    .page_contstruction_bg {
        background-image: url(../img/3.png);
        background-size: cover;
    }

    .page-hero__inner {
        position: relative;
        padding-block: 48px;
    }

    .page-hero__title {
        font-size: 32px;
        font-weight: 400;
        margin: 0;
    }

    .page-hero__sub {
        display: flex;
        /* ← 横並びにする */
        align-items: center;
        /* 縦中央 */
        gap: 12px;
        font-size: 14px;
        font-weight: 400;
        color: white;
    }

    .page-hero__sub::before {
        content: "";
        position: relative;
        display: block;
        width: 40px;
        opacity: 1;
        height: 2px;
        background-color: white;
    }

    /* =========================
  Intro
========================= */
    .intro {
        max-width: 80ch;
    }

    /* =========================
  Feature (SP: 画像→テキスト)
========================= */
    .feature__grid {
        display: grid;
        gap: 24px;
    }

    .feature__image img {
        width: 100%;
        display: block;
    }

    .feature h2 {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .feature__cta {
        margin-top: 24px;
        text-align: center;
    }

    .feature__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        background: #1a1a1a;
        color: #fff;
        text-decoration: none;
        border: 1px solid #1a1a1a;
        transition: background-color 0.4s ease, color 0.4s ease;
        font-size: 14px;
    }

    .feature__btn:hover {
        background-color: #fff;
        color: #1a1a1a;
    }

    /* =========================
  Works
========================= */
    .works__title {
        text-align: center;
        font-size: 36px;
        margin-bottom: 32px;
    }

    .works__grid {
        display: grid;
        gap: 24px;
    }

    .work-card {
        position: relative;
    }

    .work-card img {
        width: 100%;
        display: block;
    }

    .work-card__meta {
        margin-top: 12px;
    }

    .work-card__title {
        display: inline-block;
        background: #fff;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.6;
        position: relative;
        margin: 0;
        top: -32px;
        left: -1px;
    }

    .work-card__tags {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        top: -16px;
    }

    .work-card__tags span {
        background: #111;
        color: #fff;
        font-size: 12px;
        padding: 4px 8px;
        position: relative;
        top: -20px;
    }

    .works__more {
        margin-top: 48px;
        margin-bottom: 60px;
        text-align: center;
    }

    .works__more a {
        font-size: 20px;
        padding: 12px 20px;
        border: 2px solid #1a1a1a;
        transition: background-color 0.4s ease, color 0.4s ease;
        text-decoration: none;
        color: #1a1a1a;
    }

    .works__more a:hover {
        background-color: #1a1a1a;
        color: #fff;
    }

    .works-archive {
        margin-bottom: 40px;
    }

    /* Page Hero 背景（固定でOK） */
    .page_works_bg {
        background-image: url(../img/3.png);
        background-size: cover;
        background-position: center;
    }

    /* Work Detail */
    .work-detail__container {
        /* 画面見本に寄せて、本文は少し狭く */
        max-width: 92ch;
    }

    .work-detail__head {
        display: grid;
        gap: 16px;
        margin-bottom: 20px;
    }

    .work-detail__title {
        margin: 20px 0 20px 0;
        font-size: 26px;
        line-height: 1.45;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    .work-detail__tags {
        display: flex;
        flex-wrap: wrap;
    }

    .work-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
        margin-right: 8px;
    }

    /* Gallery */
    .work-gallery {
        margin: 40px 0 0 0;
    }

    .work-gallery__main {
        width: 100%;
        display: block;
    }

    .work-gallery__thumbs {
        margin-top: 28px;
        margin-bottom: 32px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .work-thumb {
        padding: 0;
        background: transparent;
        cursor: pointer;
        border: 0;
        display: block;
    }

    .work-thumb img {
        width: 100%;
        height: auto;
        display: block;
    }

    .work-thumb.is-active {
        outline: 2px solid rgba(0, 0, 0, 1);
        outline-offset: 2px;
    }

    /* CTA */
    .work-detail__cta {
        margin-top: 60px;
        margin-bottom: 60px;
        text-align: center;
    }

    .work-detail__ctaBtn {
        display: inline-block;
        font-size: 20px;
        padding: 12px 20px;
        border: 2px solid #1a1a1a;
    }

    .page_realestate_bg {
        background-image: url(../img/4.png);
        background-size: cover;
        background-position: center;
    }


    /* Intro（見本の「中央寄せ＋余白感」寄せ） */
    .realestate_intro {
        text-align: center;
        margin-top: 8px;
    }

    /* Feature CTA（見本の中央ボタン） */
    .feature__cta {
        margin-top: 40px;
        margin-bottom: 20px;
        text-align: center;
    }

    .feature__btn {
        display: inline-block;
        background: #1a1a1a;
        color: #fff;
        font-size: 16px;
        padding: 14px 20px;
        min-width: 220px;
    }

    /* SPで画像の下にボタンが来る感じを安定させる */
    .feature .feature__image {
        margin-top: 8px;
    }

    .realestate_margin {
        margin-bottom: 40px;
    }

    .brokerage__container {
        /* 画面見本の余白感 */
        max-width: 1100px;
    }

    /* ===== Filters ===== */
    .brokerage__filters {
        margin-top: 10px;
        margin-bottom: 28px;
    }

    .brokerage__filtersRow {
        display: grid;
        gap: 12px;
    }

    /* select をボタンっぽく */
    .filter--select select {
        appearance: none;
        -webkit-appearance: none;
        border: 2px solid #1a1a1a;
        background: #1a1a1a;
        color: #fff;
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;
    }

    /* 右端の▼（擬似） 
.filter--select {
  position: relative;
}
.filter--select::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
  pointer-events: none;
}
  */

    /* 種別ボタン */
    .filter--btns {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .filterBtn {
        border: 2px solid #1a1a1a;
        background: #fff;
        color: #111;
        padding: 10px 14px;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;
    }

    .filterBtn.is-active {
        background: #1a1a1a;
        color: #fff;
    }

    /* ===== List ===== */
    .brokerage__list {
        display: grid;
        gap: 40px;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .property-card {
        background: transparent;
    }

    .property-card__link {
        display: grid;
        gap: 16px;
    }

    /* 画像 */
    .property-card__media {
        margin: 0;
    }

    .property-card__media img {
        width: 100%;
        display: block;
    }

    /* 本文 */
    .property-card__body {
        display: grid;
        gap: 10px;
    }

    .property-card__title {
        margin: 0;
        font-size: 20px;
        line-height: 1.45;
        font-weight: 700;
        color: #111;
    }

    .property-card__lead {
        margin: 0;
        font-size: 14px;
        color: rgba(0, 0, 0, 1);
    }

    .property-card__bullets {
        margin: 0;
        padding-left: 0;
        list-style: none;
        display: grid;
        gap: 6px;
        color: rgba(0, 0, 0, 1);
        font-size: 13px;
        line-height: 1.85;
    }

    .property-card__tags {
        margin-top: 12px;
        /* 既存の .work-card__tags を流用しつつ、位置ズレを抑える */
    }

    .property-card__tags span {
        /* 既存は top:-20px で浮かせてるので、このページは通常位置に */
        top: 0;
    }

    .filter--seg {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .segBtn {
        border: 2px solid #1a1a1a;
        padding: 10px 14px;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;

        /* 未選択：黒背景・白字 */
        background: #1a1a1a;
        color: #fff;
    }

    .segBtn.is-selected {
        /* 選択：白背景・黒字 */
        background: #fff;
        color: #111;
    }

    .property-detail__container {
        max-width: 1100px;
    }

    /* タグ：一覧の浮かせ指定を無効化 */
    .property-detail__tags {
        margin-top: 10px;
    }

    .property-detail__tags span {
        top: 0;
    }

    .property-detail__title {
        margin: 0;
        font-size: 26px;
        line-height: 1.45;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    /* 上段レイアウト */
    .property-detail__top {
        margin-top: 22px;
    }

    /* ポイント */
    .property-points {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: rgba(0, 0, 0, 1);
        font-size: 13px;
        line-height: 1.9;
    }

    .property-points__sub {
        padding-left: 18px;
        position: relative;
    }

    .property-points__sub::before {
        content: "・";
        position: absolute;
        left: 0;
    }

    /* セクション見出し（「物件詳細 ーー」） */
    .property-detail__section {
        margin-top: 44px;
    }

    .property-detail__sectionHead {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .property-detail__sectionTitle {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    .property-detail__sectionLine {
        height: 2px;
        width: 44px;
        background: rgba(0, 0, 0, 1);
        display: inline-block;
    }

    /* テーブル */
    .property-tableWrap {
        overflow-x: auto;
        border: 1px solid rgba(0, 0, 0, .35);
        background: rgba(255, 255, 255, .35);
    }

    .property-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
        /* PC見本の4列を維持 */
    }

    .property-table th,
    .property-table td {
        border: 1px solid rgba(0, 0, 0, .35);
        padding: 12px 12px;
        font-size: 12px;
        color: rgba(0, 0, 0, 1);
        vertical-align: top;
    }

    .property-table th {
        width: 18%;
        background: rgba(0, 0, 0, .10);
        font-weight: 700;
    }

    .property-table td {
        width: 32%;
        background: rgba(255, 255, 255, .25);
    }

    .property-tableNotes {
        margin: 18px 0 0;
        padding-left: 18px;
        color: rgba(0, 0, 0, 1);
        font-size: 12px;
        line-height: 1.9;
    }

    /* 地図 */
    .property-map {
        border: 1px solid rgba(0, 0, 0, .20);
        background: #fff;
    }

    .property-map iframe {
        width: 100%;
        height: 240px;
        border: 0;
        display: block;
    }

    /* CTA */
    .property-detail__cta {
        margin-top: 40px;
        margin-bottom: 20px;
        text-align: center;
        display: grid;
        gap: 16px;
        justify-items: center;
    }

    .property-detail__ctaPrimary {
        display: inline-block;
    }

    .property-detail__ctaSecondary {
        display: inline-block;
        font-size: 16px;
        padding: 12px 20px;
        border: 2px solid #1a1a1a;
        background: transparent;
        color: #111;
    }

    .propd__container {
        max-width: 1100px;
    }

    /* Head */
    .propd__head {
        display: grid;
        gap: 12px;
    }

    .propd__title {
        margin: 0 0 20px 0;
        font-size: 26px;
        line-height: 1.45;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    .propd__tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .propd__tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
    }

    /* Top */
    .propd__top {
        margin-top: 40px;
        display: grid;
        gap: 24px;
    }

    /* Video */
    .propd__video {
        margin-top: 40px;
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .propd__video iframe,
    .propd__video video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Gallery */
    .propd__main {
        width: 100%;
        display: block;
    }

    .propd__thumbs {
        margin-top: 18px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .propd__thumb {
        padding: 0;
        background: transparent;
        border: 0;
        cursor: pointer;
        display: block;
    }

    .propd__thumb img {
        width: 100%;
        height: auto;
        display: block;
    }

    .propd__thumb.is-active {
        outline: 2px solid rgba(0, 0, 0, 1);
        outline-offset: 2px;
    }

    /* Points */
    .propd__pointsList {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
        color: rgba(0, 0, 0, 1);
        font-size: 13px;
        line-height: 1.9;
    }

    .propd__sub {
        padding-left: 18px;
        position: relative;
    }

    .propd__sub::before {
        content: "・";
        position: absolute;
        left: 0;
    }

    /* Section head（タイトル + 罫線） */
    .propd__section {
        margin-top: 40px;
    }

    .propd__sectionHead {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .propd__sectionTitle {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
    }

    .propd__sectionLine {
        height: 2px;
        width: 44px;
        background: rgba(0, 0, 0, 1);
        display: inline-block;
    }

    /* Table */
    .propd__tableWrap {
        overflow-x: auto;
        border: 1px solid rgba(0, 0, 0, .1);
        background: rgba(255, 255, 255, .35);
    }

    .propd__table {
        width: 100%;
        border-collapse: collapse;
        min-width: 720px;
        /* 4列維持 */
    }

    .propd__table th,
    .propd__table td {
        border: 1px solid rgba(0, 0, 0, 1);
        padding: 12px 12px;
        font-size: 12px;
        color: rgba(0, 0, 0, 1);
        vertical-align: top;
    }

    .propd__table th {
        width: 18%;
        background: rgba(0, 0, 0, .10);
        font-weight: 700;
    }

    .propd__table td {
        width: 32%;
        background: rgba(255, 255, 255, .25);
    }

    .propd__notes {
        margin: 20px 0 0;
        padding-left: 0;
        color: rgba(0, 0, 0, 1);
        font-size: 12px;
        line-height: 1.9;
        list-style: none;
    }

    /* Map */
    .propd__map {
        border: 1px solid rgba(0, 0, 0, .20);
        background: #fff;
    }

    .propd__map iframe {
        width: 100%;
        height: 240px;
        border: 0;
        display: block;
    }

    /* CTA */
    .propd__cta {
        margin-top: 40px;
        margin-bottom: 20px;
        text-align: center;
        display: grid;
        gap: 16px;
        justify-items: center;
    }

    .propd__ctaSecondary {
        display: inline-block;
        font-size: 16px;
        padding: 12px 20px;
        border: 2px solid #1a1a1a;
        background: transparent;
        color: #111;
        transition: background-color 0.4s ease, color 0.4s ease;
        text-decoration: none;
    }

    .propd__ctaSecondary:hover {
        background: #1a1a1a;
        color: #fff;
    }

    .pm__container {
        max-width: 1100px;
    }

    /* SP: 縦並び */
    .pm__grid {
        display: grid;
        gap: 40px;
    }

    /* card */
    .pm-card {
        display: grid;
        gap: 14px;
    }

    .pm-card__img {
        background: #ddd;
        overflow: hidden;
    }

    .pm-card__img img {
        width: 100%;
        height: auto;
        display: block;
    }

    .pm-card__body {
        display: grid;
        gap: 6px;
    }

    .pm-card__title {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: .02em;
        color: rgba(0, 0, 0, 1);
        line-height: 1.5;
    }

    .pm-card__meta {
        margin: 0;
        font-size: 14px;
    }

    /* 満室御礼（タグ/ボタンは流用OKだが、専用にしておく） */
    .pm-card__status {
        margin-top: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
        line-height: 1;
    }

    /* 下部テキスト */
    .pm__text {
        margin-top: 40px;
        max-width: 90ch;
    }

    .pm__text p {
        margin-top: 14px;
    }

    /* CTA */
    .pm__cta {
        margin-top: 40px;
        margin-bottom: 60px;
        text-align: center;
    }

    .ptx__container {
        max-width: 1100px;
    }

    /* Tabs */
    .ptx-tabs {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin: 10px 0 30px 0;
        flex-wrap: wrap;
    }

    .ptx-tab {
        appearance: none;
        border: 1px solid rgba(0, 0, 0, .35);
        background: #fff;
        color: #111;
        font-size: 16px;
        padding: 12px 16px;
        min-width: 160px;
        text-align: center;
        cursor: pointer;
    }

    .ptx-tab.is-active {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    /* Flow */
    .ptx-flow {
        display: none;
    }

    .ptx-flow.is-active {
        display: block;
    }

    /* Step card */
    .ptx-step {
        display: grid;
        gap: 20px;
    }

    /* Step番号（Step + 数字を別制御） */
    .ptx-step__no {
        margin: 0;
        display: flex;
        align-items: baseline;
        gap: 10px;
        color: rgba(0, 0, 0, 1);
    }

    .ptx-step__noLabel {
        font-size: 28px;
        font-weight: 400;
        letter-spacing: 0px;
    }

    .ptx-step__noNum {
        font-size: 48px;
        /* ← SPの数字サイズ */
        font-weight: 400;
        letter-spacing: 0;
        line-height: 0;
        position: relative;
        top: 6px;
    }

    .ptx-step__media {
        overflow: hidden;
        background: #ddd;
    }

    .ptx-step__media img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ptx-step__title {
        margin: 0;
        font-size: 20px;
        font-weight: 500;
        line-height: 1.6;
        color: rgba(0, 0, 0, 1);
    }

    .ptx-step__line {
        display: block;
        width: 200px;
        height: 2px;
        background: rgba(0, 0, 0, 1);
        margin: 14px 0;
    }

    .ptx-step__text {
        margin: 0;
    }

    /* Arrow between steps */
    .ptx-arrow {
        height: 60px;
        margin: 20px auto;
        position: relative;
    }

    .ptx-arrow::before,
    .ptx-arrow::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 28px;
        height: 28px;
        border-left: 2px solid rgba(0, 0, 0, 1);
        border-bottom: 2px solid rgba(0, 0, 0, 1);
        transform: rotate(-45deg);
    }

    .ptx-arrow::before {
        top: 0;
    }

    .ptx-arrow::after {
        top: 14px;
    }

    .flow-margin {
        margin-top: 60px;
        margin-bottom: 48px;
    }

    .con-flow-intro {
        padding: 20px 0 60px 0;
    }

    .contact-form {
        text-align: left;
        /* 既存contact__cardが中央寄りなら戻す */
    }

    .form {
        display: grid;
        gap: 14px;
    }

    .form__grid {
        display: grid;
        gap: 12px;
    }

    .field {
        display: grid;
        gap: 8px;
    }

    .field__label {
        font-size: 12px;
        letter-spacing: .06em;
        color: rgba(0, 0, 0, 1);
    }

    .field__req {
        display: inline-block;
        margin-left: 8px;
        font-size: 10px;
        padding: 2px 6px;
        background: #111;
        color: #fff;
        line-height: 1.2;
        vertical-align: middle;
    }

    .field__control {
        width: 100%;
        padding: 12px 12px;
        border: 1px solid rgba(0, 0, 0, .25);
        background: #fff;
        color: #111;
        font-size: 14px;
        line-height: 1.6;
        outline: none;
    }

    .field__control--textarea {
        padding: 12px 12px;
        resize: vertical;
        min-height: 160px;
    }

    .field__control:focus {
        border-color: rgba(0, 0, 0, 1);
    }

    .check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-top: 6px;
    }

    .check__box {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        accent-color: #111;
    }

    .check__text {
        font-size: 12px;
        color: rgba(0, 0, 0, 1);
    }

    .form__actions {
        display: grid;
        gap: 10px;
        margin-top: 10px;
        text-align: center;
    }

    .form__submit {
        width: 100%;
        justify-content: center;
    }

    .form__note {
        font-size: 11px;
        color: rgba(0, 0, 0, 1);
    }

    /* reCAPTCHAバッジを非表示にする（コンタクトページは除く） */
    .grecaptcha-badge {
        display: none !important;
    }
    .page-id-70 .grecaptcha-badge {
        display: block !important;
    }

    /* ===== Filter: selectをタグ見た目にする ===== */
    .brokerage__filter .filter {
        position: relative;
        display: inline-block;
    }

    .brokerage__filter .filter select {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    .brokerage__filter .filterTag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        border: 1px solid #ddd;
        border-radius: 999px;
        background: #fff;
        font-size: 14px;
        line-height: 1;
        white-space: nowrap;
    }

    .brokerage__filter .filterTag::after {
        content: "▼";
        font-size: 10px;
        opacity: 0.7;
    }

    .brokerage__filter .filterTag.is-selected {
        border-color: #111;
    }

    /* 種別ボタンもタグっぽく（任意） */
    .brokerage__filter .segBtn {
        padding: 6px 12px;
        border: 1px solid #ddd;
        border-radius: 999px;
        background: #fff;
        cursor: pointer;
    }

    .brokerage__filter .segBtn.is-selected {
        border-color: #111;
    }

    /* ===== カード内のタグ（画像の直下） ===== */
    .property-card__tags {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .propd_archive_tags {
        margin-bottom: 20px;
    }

    .property-card__bullets {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        overflow: hidden;
    }

    .propd__lead {
        margin-top: 20px;
    }

    /* =========================
   News: filters（タグ見た目）
   ========================= */
    .news__filters {
        margin-bottom: 24px;
    }

    .news__filterRow {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .news-filter {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
    }

    /* 選択中 */
    .news-filter.is-active {
        border-color: #111;
    }

    /* hover */
    .news-filter:hover {
        border-color: #111;
    }

    /* =========================
   News: list/cards
   ========================= */
    .news__list {
        display: grid;
        gap: 18px;
    }

    /* 既存のカード（property-card/work-card）に寄せる */
    .news-card {
        border: 1px solid #eee;
        background: #fff;
    }

    .news-card__link {
        display: block;
        text-decoration: none;
    }

    /* アイキャッチ */
    .news-card__media img {
        display: block;
        width: 100%;
        height: auto;
    }

    /* 本文 */
    .news-card__body {
        padding: 16px;
    }

    /* 日付 */
    .news-card__date {
        display: inline-block;
        margin: 0;
        font-size: 12px;
    }

    /* 日付＋タグを横並び */
    .news-card__meta {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    /* タイトル：2行で制限 */
    .news-card__title {
        margin: 0 0 10px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        font-size: 16px;
    }

    /* 概要：3行で制限 */
    .news-card__excerpt {
        margin: 0 0 12px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    /* カテゴリ（タグ見た目） */
    .news-card__cats {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .news-card__media {
        margin: 0;
    }

    /* =========================
   News: pager（最低限）
   ========================= */
    .news__pager {
        margin-top: 24px;
    }

    .news__pager ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .news__pager a,
    .news__pager span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 36px;
        height: 36px;
        padding: 0 12px;
        border: 1px solid #ddd;
        border-radius: 999px;
        text-decoration: none;
        background: #fff;
        font-size: 14px;
        line-height: 1;
    }

    .news__pager .current {
        border-color: #111;
    }

    /* =========================
   Post Detail: category tags（タグ見た目）
   ========================= */
    .post-detail__cats {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
    }

    .post-cat:hover {
        border-color: #111;
    }

    /* =========================
   Post Detail: layout（必要なら）
   ========================= */
    .post-detail__thumb img {
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .post-detail__nav {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        margin-top: 28px;
    }

    .post-detail__cta {
        margin-top: 18px;
    }

    /* =========================
   Post Detail: prev / next / CTA
   ========================= */

    /* 前後ナビ全体 */
    .post-detail__nav {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        margin-top: 32px;
    }

    /* 前後リンク共通 */
    .post-detail__prev a,
    .post-detail__next a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #000;
        color: #fff;
        text-decoration: none;
        padding: 12px 20px;
        min-height: 44px;
        line-height: 1;
    }

    /* hover removed to A group */


    /* =========================
   CTA（一覧へ戻る）
   ========================= */

    .post-detail__cta {
        margin-top: 24px;
        text-align: center;
    }

    .post-detail__ctaBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #000;
        color: #fff;
        text-decoration: none;
        padding: 14px 28px;
        min-height: 48px;
        line-height: 1;
    }

    /* hover removed to A group */

    /* =========================
   共通：黒タグデザイン
   ========================= */

    /* post詳細のカテゴリータグ */
    .post-cat {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
    }

    /* アニメーション A (少し早い透過) */
    a.post-cat,
    a.news-cat,
    a.news__tag,
    .news-item,
    .news__item,
    .work-card,
    .property-card,
    .post-detail__prev a,
    .post-detail__next a,
    .post-detail__ctaBtn,
    .news__more {
        transition: opacity 0.35s ease;
    }

    a.post-cat:hover,
    a.news-cat:hover,
    a.news__tag:hover,
    .news-item:hover,
    .news__item:hover,
    .work-card:hover,
    .property-card:hover,
    .post-detail__prev a:hover,
    .post-detail__next a:hover,
    .post-detail__ctaBtn:hover,
    .news__more:hover {
        opacity: 0.7;
    }

    /* =========================
   News一覧のタグ
   ========================= */

    .news__tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 14px;
        padding: 6px 12px;
    }

    .news-cat {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1a1a1a;
        color: #fff;
        font-size: 12px;
        padding: 2px 8px;
    }

    .page_news_bg {
        background-image: url(../img/11.png);
        background-size: cover;
        background-position: center;
    }

    /* removed old hover */

    .post-detail__thumb {
        margin: 40px 0;
    }

    .news-filter.is-active {
        background: #fff;
        color: #111;
        border: 1px solid #111;
    }

    .gg-loading {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .45);
        z-index: 99999;
    }

    .gg-loading.is-active {
        display: flex;
    }

    .gg-loading__box {
        background: rgba(255, 255, 255, .95);
        padding: 16px 20px;
        border-radius: 12px;
        min-width: 180px;
        text-align: center;
    }

    .gg-loading__spinner {
        width: 28px;
        height: 28px;
        border: 3px solid rgba(0, 0, 0, .15);
        border-top-color: rgba(0, 0, 0, .65);
        border-radius: 50%;
        margin: 0 auto 10px;
        animation: ggspin .8s linear infinite;
    }

    @keyframes ggspin {
        to {
            transform: rotate(360deg);
        }
    }

    /* 翻訳バー系を非表示（見かけだけ翻訳運用） */
    .goog-te-banner-frame.skiptranslate,
    .goog-te-gadget {
        display: none !important;
    }

    body {
        top: 0 !important;
    }

    /* ヘッダー言語メニュー */
    .header__langWrap {
        position: relative;
        display: inline-block;
    }

    .header__langMenu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 180px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .12);
        border-radius: 8px;
        padding: 8px;
        z-index: 9999;
    }

    .header__langMenu a {
        display: block;
        padding: 10px 12px;
        color: inherit;
        text-decoration: none;
        white-space: nowrap;
    }

    .header__langMenu a:hover {
        background: rgba(0, 0, 0, .06);
        border-radius: 6px;
    }

    /* Google翻訳がbodyに付ける inline style を強制解除 */
    body[style*="top: 40px"],
    body[style*="top:40px"] {
        top: 0 !important;
    }

    body[style*="position: relative"],
    body[style*="position:relative"] {
        position: static !important;
    }

    /* 念のため余白系もリセット */
    html,
    body {
        margin-top: 0 !important;
    }



    /* =========================
  印刷用
========================= */
    @media print {
        .property-detail-print .no-print .header .footer {
            display: none !important;
        }

        .property-detail-print {
            color: #000;
            background: #fff;
        }

        .property-detail-print .container {
            width: auto !important;
            max-width: none !important;
        }

        .property-detail-print .gallery,
        .property-detail-print .spec-table {
            break-inside: avoid;
        }
    }

    .notfound__card {
        border: 1px solid #eee;
        background: #fff;
        padding: 28px;
        max-width: 860px;
        margin: 0 auto;
    }

    .notfound__lead {
        margin: 0 0 18px;
    }

    .notfound__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 22px;
    }

    .notfound__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #000;
        color: #fff;
        text-decoration: none;
        padding: 12px 18px;
        min-height: 44px;
        line-height: 1;
    }

    .notfound__btn:hover {
        opacity: 0.85;
    }

    .notfound__search {
        border-top: 1px solid #eee;
        padding-top: 18px;
        margin-top: 18px;
    }

    .notfound__searchTitle {
        margin: 0 0 10px;
        font-weight: 700;
    }

    .notfound__hint {
        border-top: 1px solid #eee;
        padding-top: 18px;
        margin-top: 18px;
    }

    .notfound__hintTitle {
        margin: 0 0 10px;
        font-weight: 700;
    }

    .notfound__links {
        margin: 0;
        padding-left: 18px;
    }

    /* =========================
   Header actions
========================= */

    .header__actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Language */
    .header__lang {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 14px;
        border: 1px solid #000;
        text-decoration: none;
        color: #000;
        background-color: transparent;
        font-size: 13px;
        line-height: 1;
        transition: background-color 0.4s ease, color 0.4s ease;
    }

    .header__lang:hover {
        background-color: #000;
        color: #fff;
    }

    /* Contact */
    .header__contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 9px 15px;
        border: 1px solid #000;
        background-color: transparent;
        /* 背景透明(白) */
        color: #000;
        /* 文字黒 */
        text-decoration: none;
        font-size: 13px;
        line-height: 1;
        transition: background-color 0.4s ease, color 0.4s ease;
    }

    .header__contact:hover {
        background-color: #000;
        /* ホバーで背景黒 */
        color: #fff;
        /* ホバーで文字白 */
    }

    .post-detail__content {
        margin: 60px 0;
    }

    /* PC/SP 表示切替 */
    .pc {
        display: inline;
    }

    .sp {
        display: none;
    }

    @media (max-width: 768px) {
        .pc {
            display: none;
        }

        .sp {
            display: inline;
        }
    }



    /* =========================
  PC (1024+)
========================= */
    @media (min-width: 1024px) {



        :root {
            --gutter: 32px;
            --fs-body: 18px;
            --fs-h2: 32px;
        }

        body {
            max-width: 1920px;
        }

        .pc-hidden {
            display: none;
        }

        .sp-hidden {
            display: block !important;
        }

        .header_container {
            max-width: none;
        }

        .header__inner {
            gap: 12px;
            padding: 20px;
        }

        .header__right {
            gap: 80px;
        }

        .burger {
            width: 60px;
        }

        .burger span {
            width: 60px;
            height: 3px;
        }

        .burger span::before {
            top: -16px;
        }

        .burger span::before,
        .burger span::after {
            width: 60px;
            height: 3px;
        }

        .burger span::after {
            top: 16px;
        }

        .lang {
            font-size: 18px;
            letter-spacing: 0.5px;
            padding: 6px 12px;
        }

        .brand img {
            width: 240px;
        }

        .hero {
            height: 75svh;
            min-height: 400px;
            align-items: center;
        }

        .hero__inner {
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .hero__headline {
            font-size: 64px;
        }

        .hero__copy {
            max-width: none;
        }

        .hero__sub {
            font-size: 32px;
        }

        .section {
            padding-block: 50px;
        }

        .kicker {
            font-size: 80px;
        }

        .about {
            align-items: start;
            gap: 40px;
        }

        .section__head {
            grid-area: head;
        }

        .about {
            grid-area: text;
        }

        #about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* 左：文章 / 右：写真 */
            grid-template-areas:
                "head  head"
                "text  photo";
            gap: 0 40px;
            align-items: center;
        }

        .about__photo {
            grid-area: photo;
        }

        .news {
            max-width: 80ch;
            margin-inline: auto;
        }

        .news__item {
            display: grid;
            grid-template-columns: 140px 1fr;
            padding: 16px;
            align-items: baseline;
        }

        .news__tag {
            font-size: 18px;
            margin-bottom: 0px;
        }

        .news__more {
            width: 100px;
            padding: 0 0 0 8px;
            font-size: 24px;
        }

        .news__more::after {
            font-size: 28px;
            left: 16px;
        }

        .service__intro {
            max-width: 92ch;
            margin-inline: auto;
            text-align: center;
        }

        .tiles {
            max-width: none;
            margin: 60px auto 0 auto;
        }

        .tile {
            min-height: 750px;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .tile__inner {
            padding: 80px 120px;
        }

        .tile__title {
            font-size: 60px;
        }

        .tile__desc {
            font-size: 28px;
            margin-top: 8px;
            max-width: 52ch;
        }

        .tile__btn {
            padding: 20px 40px;
            font-size: 40px;
            letter-spacing: 0.08em;
        }

        .message h3 {
            font-size: 28px;
            margin-top: 40px;
        }

        .main_text p {
            margin-top: 16px;
        }

        .message {
            margin-inline: auto;
            max-width: none;
        }

        .signature {
            margin-top: 40px;
            margin-bottom: 60px;
            font-size: 24px;
        }

        .company__table {
            width: 70%;
            min-width: 800px;
            max-width: 1000px;
            margin: 24px auto 100px auto;
        }

        .row {
            grid-template-columns: 140px 1fr;
        }

        .contact {
            padding-bottom: 100px;
            background-position: center;
        }

        .contact__grid {
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
        }

        .contact__card {
            padding: 20px;
            gap: 20px;
        }

        .contact__title {
            font-size: 20px;
        }

        .contact__text {
            font-size: 14px;
        }

        .contact__tel {
            font-size: 32px;
            letter-spacing: 1px;
        }

        .btn {
            padding: 16px 20px;
            font-size: 20px;
            margin: 12px auto 12px auto;
        }

        .footer__grid {
            grid-template-columns: 1fr 1fr 1fr;
            align-items: start;
        }

        .news-item {
            display: grid;
            gap: 12px;
        }

        .brand_footer img {
            width: 80%;
            max-width: 300px;
        }

        .footer h4 {
            margin: 0 0 16px;
            font-size: 32px;
        }

        .footer ul {
            gap: 12px;
            font-size: 16px;
        }

        .sns {
            margin-top: 32px;
            justify-content: flex-start;
        }

        .copyright {
            font-size: 16px;
            margin: 60px 0 0;
        }

        .page-hero__title {
            font-size: 60px;
        }

        .page-hero__sub {
            gap: 20px;
            font-size: 28px;
        }

        .page-hero__sub::before {
            width: 60px;
        }

        .page-hero__inner {
            padding-block: 100px;
        }

        .post-detail__content {
            margin: 100px 0;
        }

        /* Feature
    - feature(通常): テキスト左 / 画像右
    - feature--reverse: 画像左 / テキスト右
  */
        .feature__grid {
            grid-template-columns: 1.1fr .9fr;
            align-items: center;
            gap: 48px;
        }

        .feature:not(.feature--reverse) .feature__text {
            order: 1;
        }

        .feature:not(.feature--reverse) .feature__image {
            order: 2;
        }

        .feature--reverse .feature__image {
            order: 1;
        }

        .feature--reverse .feature__text {
            order: 2;
        }

        .feature h2 {
            font-size: 28px;
            margin-bottom: 28px;
        }

        /* Works: 2カラム + 互い違い（右列を下げる） */
        .works__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
        }

        /* 右列(2,4,...)を下げて段差 */
        .work-card:nth-child(even) {
            margin-top: 72px;
        }

        .works__title {
            margin-bottom: 60px;
        }

        .work-card__title {
            padding: 20px;
            font-size: 20px;
            top: -40px;
        }

        .work-card__tags {
            margin-top: 0px;
        }

        .work-card__tags span {
            font-size: 18px;
            padding: 8px 20px;
            top: -12px;
        }

        .works__more {
            margin-top: 100px;
            margin-bottom: 100px;
        }

        .works__more a {
            font-size: 24px;
            padding: 20px 40px;
        }

        .work-detail__container {
            max-width: 1100px;
            /* 画面見本の余白感 */
        }

        .work-detail__title {
            font-size: 36px;
            margin: 20px 0 40px 0;
        }

        .work-detail__tags {
            margin-bottom: 40px;
        }

        .work-tag {
            font-size: 18px;
            padding: 8px 20px;
            margin-right: 20px;

        }

        .work-gallery {
            margin: 60px auto 0 auto;
            width: 80%;
            min-width: 800px;
        }

        .work-gallery__thumbs {
            gap: 16px;
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .work-detail__cta {
            margin-top: 80px;
            margin-bottom: 120px;
        }

        .work-detail__ctaBtn {
            font-size: 20px;
            padding: 16px 30px;
        }

        .realestate_intro {
            max-width: 95ch;
            margin-inline: auto;
        }

        .feature__cta {
            margin-top: 60px;
        }

        .feature__btn {
            font-size: 18px;
            padding: 16px 26px;
            min-width: 260px;
        }

        .realestate_margin {
            margin-bottom: 80px;
        }

        .brokerage__filtersRow {
            /* 見本の横並び感 */
            align-items: center;
            gap: 18px;
        }

        .filter--btns {
            justify-content: center;
        }

        .filterBtn {
            padding: 12px 18px;
            font-size: 16px;
        }

        .filter--select select {
            font-size: 24px;
            padding: 16px 24px;
        }

        .brokerage__list {
            gap: 60px;
            margin-top: 20px;
            margin-bottom: 60px;
        }

        .property-card__link {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;

        }

        .property-card__title {
            font-size: 28px;
        }

        .property-card__lead {
            font-size: 20px;
        }

        .property-card__bullets {
            font-size: 18px;
            gap: 8px;
        }

        .segBtn {
            border: 2px solid #1a1a1a;
            padding: 16px 24px;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;

            /* 未選択：黒背景・白字 */
            background: #1a1a1a;
            color: #fff;
        }

        .property-detail__title {
            font-size: 28px;
        }

        .property-detail__top {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .work-gallery__thumbs {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 18px;
            margin-bottom: 40px;
        }

        .property-map iframe {
            height: 360px;
        }

        .property-detail__cta {
            margin-top: 60px;
            margin-bottom: 60px;
            gap: 18px;
        }

        .property-detail__ctaSecondary {
            font-size: 18px;
            padding: 14px 26px;
        }

        .propd__title {
            font-size: 28px;
        }

        .propd__top {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .propd__thumbs {
            gap: 16px;
            margin-top: 18px;
        }

        .propd__map iframe {
            height: 360px;
        }

        .propd__cta {
            margin-top: 60px;
            margin-bottom: 60px;
            gap: 18px;
        }

        .propd__ctaSecondary {
            font-size: 18px;
            padding: 14px 26px;
        }

        /* Points */
        .propd__pointsList {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
            color: rgba(0, 0, 0, 1);
            font-size: 20px;
            line-height: 1.8;
        }

        .pm__grid {
            grid-template-columns: 1fr 1fr;
            gap: 34px 60px;
            align-items: start;
        }

        /* PC: 横並びカード（画像左 / テキスト右） */
        .pm-card {
            grid-template-columns: 260px 1fr;
            gap: 18px;
            align-items: start;
        }

        .pm-card__title {
            font-size: 16px;
        }

        .pm-card__status {
            padding: 6px 12px;
            font-size: 14px;
        }

        .pm__text {
            margin-top: 60px;
            margin-inline: auto;
            text-align: left;
        }

        .pm__cta {
            margin-top: 100px;
            margin-bottom: 100px;
        }

        .ptx-tabs {
            margin: 20px 0 50px 0;
        }

        .ptx-tab {
            font-size: 16px;
            padding: 16px 26px;
            min-width: 240px;
        }

        .ptx-step {
            grid-template-columns: 1fr 1fr;
            grid-template-areas:
                "media no"
                "media body";
            gap: 8px 40px;
            align-items: start;
        }

        .ptx-step__media {
            grid-area: media;
        }

        .ptx-step__no {
            grid-area: no;
        }

        .ptx-step__body {
            grid-area: body;
        }

        /* PCの数字サイズ */
        .ptx-step__noNum {
            font-size: 64px;
        }


        .ptx-step__noLabel {
            font-size: 34px;
            margin-right: 4px;
        }

        .ptx-step__title {
            font-size: 28px;
            margin: 0 0 24px 0;
        }

        .ptx-step__line {
            width: 140px;
            margin: 16px 0 12px 0;
        }

        .ptx-arrow {
            margin: 40px auto 80px auto;
        }

        .ptx-arrow::before,
        .ptx-arrow::after {
            width: 48px;
            height: 48px;
        }

        .ptx-arrow::after {
            top: 24px;
        }

        .con-flow-intro {
            padding: 0 0 80px 0;
        }

        .flow-margin {
            margin-top: 100px;
            margin-bottom: 48px;
        }

        .form__grid {
            grid-template-columns: 1fr 1fr;
            gap: 16px 20px;
        }

        .field--full {
            grid-column: 1 / -1;
        }

        .field__label {
            font-size: 14px;
        }

        .field__control {
            font-size: 16px;
            padding: 14px 14px;
        }

        .form__submit {
            max-width: 520px;
            margin: 0 auto;
        }

        .form__note {
            font-size: 12px;
        }

        .propd__table th,
        .propd__table td {
            border: 1px solid rgba(0, 0, 0, 1);
            padding: 20px 12px;
            font-size: 16px;
            color: rgba(0, 0, 0, 1);
            vertical-align: top;
        }

        .propd__tag {
            font-size: 18px;
            padding: 8px 20px;
        }

        .brokerage__filters {
            margin-bottom: 100px;
        }

        .propd_archive_tags {
            margin-bottom: 20px;
        }

        .propd__lead {
            margin-top: 40px;
        }

        .propd__notes {
            margin: 24px 0 0;
            font-size: 14px;
        }

        .post-cat {
            font-size: 18px;
            padding: 8px 20px;
        }

        .works-archive {
            margin-bottom: 100px;
        }

        .propd__tags {
            gap: 16px;
            margin-bottom: 20px;
        }

        .news-card__title {
            font-size: 20px;
            margin: 20px 0 20px 12px;
        }

        .news-card__date {
            font-size: 16px;
        }

        .news-cat {
            font-size: 14px;
            padding: 4px 12px;
        }

        .news__list {
            gap: 40px;
        }

        .news-filter {
            font-size: 18px;
            padding: 8px 20px;
        }

        .header__lang {
            padding: 10px 20px;
            font-size: 20px;
            line-height: var(--lh);
        }

        .header__contact {
            padding: 10px 20px;
            font-size: 20px;
            line-height: var(--lh);
        }

        .header__actions {
            gap: 28px;
        }
    }