@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■ 初期化

 ━━━━━━━━━━━━━━━━ */

body {
    font-family: 'Noto Sans JP', sans-serif;
    min-width: auto !important;
}


/* ━━━━━━━━━━━━━━━━

 ■ ユーティリティ

 ━━━━━━━━━━━━━━━━ */


/*=================================

* media

=================================*/

@media screen and (max-width:767px) {
    .u-hidden-sp {
        display: none;
    }
}

@media screen and (min-width:768px) {
    .u-hidden-pc {
        display: none;
    }
}

@media print {
    .l-footer__sp-menu {
        display: none;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■ コンポーネント

 ━━━━━━━━━━━━━━━━ */


/*=================================

* ボタン

=================================*/

/*
　ボタンコンテナー
================================*/
.c-button-container {
    padding: 34px 0 0 0;
    text-align: center;
}

@media (min-width: 768px) {
    .c-button-container {
        padding: 42px 0 0 0;
    }
}

/*
　ボタン
================================*/
.c-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: .3s ease;
    text-decoration: none !important;
}

.c-button svg {
    flex-shrink: 0;
}

.c-button--accent {
    background: #D4AF37;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(201, 149, 60, 0.25);
    text-decoration: none !important;
}

.c-button--accent:hover {
    background: #a07830;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(201, 149, 60, 0.35);
    transform: translateY(-2px);
}

.c-button--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff !important;
    text-decoration: none !important;
}

.c-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

.c-button--white {
    background: #fff;
    color: #566f89 !important;
    text-decoration: none !important;
}

.c-button--white:hover {
    background: #f5f5f5;
    color: #566f89 !important;
    transform: translateY(-2px);
}

.c-button--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
    text-decoration: none !important;
}

.c-button--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

.c-button--outline-accent {
    background: transparent;
    border-color: #4f8fa8;
    color: #4f8fa8 !important;
    text-decoration: none !important;
}

.c-button--outline-accent:hover {
    background: #4f8fa8;
    border-color: #4f8fa8;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(79, 143, 168, 0.35);
    transform: translateY(-2px);
}

.c-button--lg {
    padding: 16px 40px;
    font-size: clamp(15px, 2.6vw, 17px);
}

/*
　セクションヘッダー
================================*/
.c-section-header {
    text-align: center;
}

.c-section-header__label {
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .15em;
    color: #4f8fa8;
    text-align: center;
    text-transform: uppercase;
}

.c-section-header__title {
    margin-bottom: 16px;
    font-size: clamp(24px, 3.5vw, 35px);
    font-weight: 900;
    line-height: 1.4;
    color: #1a1a2e;
    text-align: center;
}

.c-section-header__lead {
    margin-bottom: 48px;
    font-size: clamp(14px, 2.6vw, 15px);
    color: #666666;
    text-align: center;
}

.c-section-header--light .c-section-header__label {
    color: #d4a94e;
}

.c-section-header--light .c-section-header__title {
    color: #fff;
}

.c-section-header--light .c-section-header__lead {
    color: rgba(255, 255, 255, 0.85);
}

/*
　H2タイトル
================================*/
h2.tit {
    margin: 0 auto 30px auto;
    padding: 5px 8px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    color: #333;
    background-color: transparent !important;
}

/* PC */
@media screen and (min-width:768px) {
    h2.tit {
        max-width: 1140px;
        margin: 0 auto 50px auto;
        font-size: clamp(24px, 30 / 1140 * 100vw, 30px);
    }
}



/* ━━━━━━━━━━━━━━━━

 ■ レイアウト

━━━━━━━━━━━━━━━━ */


/*=================================

* セクション

=================================*/

.l-section {
    padding: 80px 0;
}

@media(min-width:768px) {
    .l-section {
        padding: 100px 0;
    }
}

.l-section__container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.l-section--warm {
    background: #faf8f5;
}

.l-section--blue {
    background: #eaf3f9;
}

.l-section--gray {
    background: #f5f5f5;
}


/*=================================

* ヘッダー

=================================*/

header {
    margin-bottom: 0;
}

.l-header {
    position: relative;
    margin-top: 72px;
}

.l-header__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: .3s ease;
}

.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    height: 72px;
}

.l-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.l-header__logo-img {
    height: 36px;
    width: auto;
}

@media (min-width: 900px) {
    .l-header__logo-img {
        height: 38px;
    }
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__logo-img {
        height: 28px;
    }
}

.l-header__nav {
    display: none;
}

@media (min-width: 900px) {
    .l-header__nav {
        display: flex;
        gap: 24px;
        align-items: center;
    }
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__nav {
        gap: 12px;
    }
}

.l-header__nav a {
    position: relative;
    font-size: clamp(13px, 2.6vw, 15px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1a1a2e !important;
    text-decoration: none !important;
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__nav a {
        font-size: 13px;
    }
}

.l-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4f8fa8;
    transition: .3s ease;
}

.l-header__nav a:hover::after {
    width: 100%;
}

.l-header__contact {
    display: none;
}

@media (min-width: 900px) {
    .l-header__contact {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__contact {
        gap: 8px;
    }
}

.l-header__contact-tel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-family: serif;
    color: #566f89 !important;
    text-decoration: none !important;
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__contact-tel {
        font-size: 13px;
        gap: 4px;
    }
    .l-header__contact-tel svg {
        width: 16px;
        height: 16px;
    }
}

.l-header__contact-tel:hover {
    color: #2d5a8e !important;
}

.l-header__cta-button {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    background: #D4AF37;
    color: #fff !important;
    text-decoration: none !important;
    transition: .3s ease;
}

@media (min-width: 900px) and (max-width: 1160px) {
    .l-header__cta-button {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.l-header__cta-button:hover {
    background: #a07830;
    color: #fff !important;
    transform: translateY(-1px);
}

.l-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 900px) {
    .l-header__hamburger {
        display: none;
    }
}

.l-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: .3s ease;
}

.l-header__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/*
　モバイルメニュー
================================*/
.l-header__mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    padding: 40px 24px;
    background: #0f2440;
    z-index: 999;
}

.l-header__mobile-menu.is-active {
    display: block;
}

.l-header__mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-header__mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.l-header__mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    color: #fff !important;
    text-decoration: none !important;
}

.l-header__mobile-cta {
    display: block;
    margin-top: 16px;
    padding: 14px 20px !important;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    background: #D4AF37 !important;
    color: #fff !important;
}

/* Nav current state */
.l-header__nav a.is-current {
    color: #4f8fa8 !important;
}

.l-header__nav a.is-current::after {
    width: 100%;
}

/* ページタイトル */
.l-header__page-title {
    padding: 10px 8px;
    font-size: 13px;
}

@media (min-width: 769px) {
    .l-header__page-title {
        max-width: 1140px;
        margin: 0 auto;
        padding: 10px 8px;
        font-size: 14px;
    }
}


/*=================================

* ヒーローセクション

=================================*/

.p-hero {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .p-hero {
        min-height: 100vh;
    }
}

.p-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.p-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 25s ease-out forwards;
}

@keyframes hero-zoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.0);
    }
}

.p-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg,
            rgba(26, 58, 92, 0.30) 0%,
            rgba(15, 36, 64, 0.20) 50%,
            rgba(26, 26, 46, 0.35) 100%);
}

.p-hero__content {
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

.p-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px 22px;
    border-radius: 50px;
    background: #4f8fa8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.p-hero__title {
    margin-bottom: 20px;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.p-hero__subtitle {
    margin-bottom: 36px;
    font-size: clamp(17px, 2.6vw, 18px);
    line-height: 1.7;
    opacity: 0.9;
}

.p-hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .p-hero__cta-group {
        flex-direction: row;
        justify-content: center;
    }
}


/*=================================

* フッター

=================================*/

.l-footer {
    padding: 48px 0 24px;
    background: #faf3e5;
    color:#4a4a4a;
}

.l-footer__container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

.l-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .l-footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.l-footer__company {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-footer__brand {
    display: flex;
    gap: 12px;
}

.l-footer__logo-img {
    height: 46px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.l-footer__info {
    font-size: 14px;
    line-height: 1.8;
}

.l-footer__info p {
    margin-bottom: 4px;
}

.l-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media (min-width: 768px) {
    .l-footer__nav {
        gap: 32px;
    }
}

.l-footer__nav-group {
    min-width: 120px;
}

.l-footer__nav-title {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
    color: #132e4e;
}

@media (min-width: 768px) {
    .l-footer__nav-title {
        font-size: 15px;
    }
}

.l-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.l-footer__nav-list li {
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .l-footer__nav-list li {
        margin-bottom: 0;
    }
}

.l-footer__nav-list a {
    font-size: 13px;
    font-weight: 500;
    color:#566f89 !important;
    text-decoration: none !important;
    transition: .3s ease;
}

.l-footer__nav-list a:hover {
    color: #4f8fa8 !important;
}

/* Footer simple nav (flat list) */
.l-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}


/*=================================

* Side Float CTA

=================================*/

.c-float-cta {
    display: none;
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 900;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: .3s ease;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .c-float-cta {
        display: flex;
    }
}

.c-float-cta.is-visible {
    opacity: 1;
}

.c-float-cta__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 8px 40px rgba(26, 58, 92, 0.12);
    transition: .3s ease;
}

.c-float-cta__button:hover {
    color: #fff !important;
    transform: scale(1.1);
}

.c-float-cta__button--tel {
    background: #c0392b;
}

.c-float-cta__button--mail {
    background: #566f89;
}

.c-float-cta__button--line {
    background: #00b900;
}


/*=================================

* SP Fixed Bottom Bar

=================================*/

.c-sp-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .15);
}

@media (min-width: 768px) {
    .c-sp-bar {
        display: none;
    }
}

.c-sp-bar__button {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
}

.c-sp-bar__button--tel {
    background: #c0392b;
}

.c-sp-bar__button--mail {
    background: rgb(86, 111, 137);
}


/*=================================

* Copyright

=================================*/

.copyright {
    padding: 8px 0 55px 0 !important;
    color: #666 !important;
    background: #f1e7d6 !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

/* PC */
@media screen and (min-width:768px) {
    .copyright {
        padding: 8px 0 8px 0 !important;
    }
}

.l-footer__copy {
    font-size: 12px;
    text-align: center;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
}


/*=================================

* ページの先頭へ

=================================*/

.button__page_top {
    position: fixed;
    padding: 13px;
    right: 10px;
    bottom: 50px;
    font-size: 19.2px;
    line-height: 19.2px;
    color: #737373;
    background: #fff;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: opacity .3s, visibility .3s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.button__page_top.is-show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.button__page_top i {
    margin: 0;
    font-size: 19.2px;
    opacity: 1;
}

.button__page_top span {
    display: none;
}

/* SP */
@media screen and (max-width: 767px) {
    .button__page_top {
        display: none !important;
    }
}



/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */


/*=================================

* トップ

=================================*/

/*
　Authority (実績)
================================*/
.p-authority {
    padding: 40px 0;
    background: #566f89;
}

.p-authority__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .p-authority__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.p-authority__item {
    color: #fff;
}

.p-authority__keyword {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #D4AF37;
}

.p-authority__label {
    display: block;
    font-size: clamp(13px, 2.6vw, 15px);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/*
　About（当社について）
================================*/
.p-about {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-about {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.p-about__lead {
    margin-bottom: 16px;
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    line-height: 1.6;
    color: #566f89;
}

@media (min-width: 768px) {
    .p-about__content {
        flex: 1;
    }
}

.p-about__text {
    margin-bottom: 16px;
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .p-about__image {
        flex: 0 0 45%;
    }
}

.p-about__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

/*
　Service Swap（事業内容 — 左右交互）
================================*/
.p-service-swap__item {
    margin-bottom: 48px;
}

.p-service-swap__item:last-child {
    margin-bottom: 0;
}

.p-service-swap__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
}

@media (min-width: 768px) {
    .p-service-swap__inner {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
}

@media (min-width: 768px) {
    .p-service-swap__inner--reverse {
        flex-direction: row-reverse;
    }
}

@media (min-width: 768px) {
    .p-service-swap__text {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .p-service-swap__image {
        flex: 0 0 48%;
    }
}

.p-service-swap__label {
    display: block;
    margin-bottom: 8px;
    font-family: serif;
    font-size: clamp(15px, 2.6vw, 17px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #D4AF37;
}

.p-service-swap__title {
    margin-bottom: 12px;
    font-size: clamp(19px, 3vw, 26px);
    font-weight: 900;
    line-height: 1.4;
    color: #566f89;
}

.p-service-swap__desc {
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
    color: #000;
}

.p-service-swap__image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

/*
　Estatelist（物件情報）
================================*/
.p-estate-list {
    padding: 80px 20px;
}

@media (min-width: 769px) {
    .p-estate-list {
        padding: 100px 0;
    }
}

.p-estate-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 641px) {
    .p-estate-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 901px) {
    .p-estate-list__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

.p-estate-list__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    overflow: hidden;
    text-decoration: none !important;
    transition: transform .3s, box-shadow .3s;
}

.p-estate-list__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
}

.p-estate-list__card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.p-estate-list__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.p-estate-list__card:hover .p-estate-list__card-img img {
    transform: scale(1.05);
}

.p-estate-list__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px 4px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border-radius: 20px;
    z-index: 2;
}

@media (min-width: 769px) {
    .p-estate-list__badge {
        top: 16px;
        left: 16px;
        font-size: 13px;
    }
}

.p-estate-list__badge[data-type="新着"] {
    background: #e74c3c;
}

.p-estate-list__badge[data-type="値下げ"] {
    background: #a07830;
}

.p-estate-list__badge[data-type="商談中"],
.p-estate-list__badge[data-type="申込中"] {
    background: #2d8a6e;
}

.p-estate-list__badge[data-type="契約済"],
.p-estate-list__badge[data-type="販売停止"] {
    background: #999999;
}

.p-estate-list__card-body {
    padding: 20px;
}

.p-estate-list__price {
    font-family: serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    color: #132e4e;
}

@media (min-width: 769px) {
    .p-estate-list__price {
        font-size: 28px;
    }
}

.p-estate-list__price span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #132e4e;
}

@media (min-width: 769px) {
    .p-estate-list__price span {
        font-size: 16px;
    }
}

.p-estate-list__name {
    margin: 10px 0 8px;
    font-weight: 700;
    color: #1a1a2e;
}

@media (min-width: 769px) {
    .p-estate-list__name {
        font-size: 17px;
    }
}

.p-estate-list__catchcopy {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    overflow: hidden;
}

@media (min-width: 769px) {
    .p-estate-list__catchcopy {
        font-size: 15px;
    }
}

.p-estate-list__address {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999999;
}

@media (min-width: 769px) {
    .p-estate-list__address {
        font-size: 14px;
    }
}

.p-estate-list__specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.p-estate-list__spec {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #17385f;
    background: #e8eef5;
    border-radius: 4px;
}

@media (min-width: 769px) {
    .p-estate-list__spec {
        font-size: 13px;
    }
}

.p-estate-list__more {
    margin-top: 48px;
    text-align: center;
}

/*
　Why（選ばれる理由）
================================*/
.p-why {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-why {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .p-why {
        grid-template-columns: repeat(4, 1fr);
    }
}

.p-why__item {
    position: relative;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 58, 92, 0.06);
    transition: .3s ease;
}

@media (min-width: 960px) {
    .p-why__item {
        text-align: center;
    }
}

.p-why__item:hover {
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
    transform: translateY(-4px);
}

.p-why__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #e8eef5;
}

@media (min-width: 960px) {
    .p-why__num {
        display: block;
        position: static;
        margin-bottom: 10px;
    }
}

.p-why__title {
    margin-bottom: 8px;
    font-size: clamp(16px, 2.6vw, 18px);
    font-weight: 700;
    color: #566f89;
}

.p-why__desc {
    font-size: clamp(13px, 2.6vw, 16px);
    line-height: 1.7;
    color: #000;
}

/*
　CTA Band
================================*/
.p-cta-band {
    padding: 56px 0;
    background: linear-gradient(
  135deg,
  #17385f,
  #566f89
);
}

.p-cta-band__inner {
    text-align: center;
}

.p-cta-band__catch {
    margin-bottom: 8px;
    font-size: clamp(17px, 3vw, 24px);
    font-weight: 900;
    color: #fff;
}

.p-cta-band__sub {
    margin-bottom: 28px;
    font-size: clamp(14px, 2.6vw, 16px);
    color: rgba(255, 255, 255, 0.8);
}

.p-cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .p-cta-band__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/*
　Voice（お客様の声）
================================*/
.p-voice {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-voice {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .p-voice {
        grid-template-columns: repeat(3, 1fr);
    }
}

.p-voice__item {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 58, 92, 0.06);
}

.p-voice__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.p-voice__avatar {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #e8eef5;
    border-radius: 50%;
}

.p-voice__avatar svg {
    color: #566f89;
}

.p-voice__name {
    font-size: clamp(13px, 2.6vw, 14px);
    font-weight: 700;
    color: #1a1a2e;
}

.p-voice__type {
    font-size: 13px;
    font-weight: 600;
    color: #4f8fa8;
}

.p-voice__text {
    font-size: clamp(13px, 2.6vw, 14px);
    line-height: 1.8;
    color: #666666;
}

/*
　Flow（ご相談の流れ）
================================*/
.p-flow {
    position: relative;
    max-width: 800px;
    margin: 32px auto 0;
}

.p-flow__item {
    display: flex;
    position: relative;
    gap: 20px;
    margin-bottom: 32px;
}

.p-flow__item:last-child {
    margin-bottom: 0;
}

.p-flow__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 44px;
    left: 19px;
    width: 2px;
    height: calc(100% - 16px);
    background: #e8eef5;
}

@media (min-width: 768px) {
    .p-flow__item:not(:last-child)::after {
        top: 50px;
        left: 22px;
        height: calc(100% - 20px);
    }
}

.p-flow__step {
    flex-shrink: 0;
}

.p-flow__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-family: serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #566f89;
}

@media (min-width: 768px) {
    .p-flow__step-num {
        width: 46px;
        height: 46px;
        font-size: 16px;
    }
}

.p-flow__title {
    margin-bottom: 4px;
    font-size: clamp(16px, 2.6vw, 18px);
    font-weight: 700;
    color: #1a1a2e;
}

.p-flow__desc {
    font-size: clamp(13px, 2.6vw, 16px);
    line-height: 1.7;
    color: #666666;
}

/*
　FAQ（よくある質問）
================================*/
.p-faq {
    max-width: 800px;
    margin: 32px auto 0;
}

.p-faq__item {
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: .3s ease;
}

.p-faq__item[open] {
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

.p-faq__q {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    font-size: clamp(14px, 2.6vw, 16px);
    font-weight: 700;
    color: #1a1a2e;
    list-style: none;
    cursor: pointer;
}

.p-faq__q::-webkit-details-marker {
    display: none;
}

.p-faq__q-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #566f89;
}

.p-faq__q-text {
    flex: 1;
}

.p-faq__toggle {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.p-faq__toggle::before,
.p-faq__toggle::after {
    content: '';
    position: absolute;
    background: #566f89;
    border-radius: 2px;
    transition: .3s ease;
}

.p-faq__toggle::before {
    top: 50%;
    right: 4px;
    left: 4px;
    height: 2px;
    transform: translateY(-50%);
}

.p-faq__toggle::after {
    top: 4px;
    bottom: 4px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.p-faq__item[open] .p-faq__toggle::after {
    opacity: 0;
    transform: translateX(-50%) rotate(90deg);
}

.p-faq__a {
    padding: 0 20px 18px 64px;
    font-size: clamp(13px, 2.6vw, 15px);
    line-height: 1.8;
    color: #666666;
}

/*
　Company（会社概要）
================================*/
.p-company {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-company {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
}

@media (min-width: 768px) {
    .p-company__info {
        flex: 1;
    }
}

.p-company__table {
    width: 100%;
    border-collapse: collapse;
}

.p-company__table th,
.p-company__table td {
    padding: 14px 16px;
    font-size: clamp(13px, 2.6vw, 14px);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e0e0e0;
}

.p-company__table tr:first-child th,
.p-company__table tr:first-child td {
    border-top: 1px solid #e0e0e0;
}

.p-company__table th {
    width: 120px;
    font-weight: 700;
    white-space: nowrap;
    color: #333333;
    background: #faf8f5;
}

.p-company__map {
    height: 250px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26, 58, 92, 0.1);
}

@media (min-width: 768px) {
    .p-company__map {
        flex: 0 0 45%;
        height: 300px;
    }
}

/*
　Contact（お問い合わせ）
================================*/
.p-contact {
    background: linear-gradient(
    135deg,
    #132e4e,
    #0f2440
    );
}

.p-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-contact__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.p-contact__card {
    padding: 28px 24px;
    color: #fff;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .3s ease;
}

.p-contact__card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.p-contact__card-icon {
    margin-bottom: 12px;
    opacity: 0.9;
}

.p-contact__card-label {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.p-contact__card-tel {
    display: block;
    margin-bottom: 4px;
    font-family: serif;
    font-size: clamp(22px, 4vw, 29px);
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
}

.p-contact__card-mail,
.p-contact__card-line {
    display: inline-block;
    margin-bottom: 8px;
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    color: #566f89 !important;
    text-decoration: none !important;
    transition: background .3s ease, transform .3s ease;
}

.p-contact__card-mail:hover,
.p-contact__card-line:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.p-contact__card-line {
    background: #00b900;
    color: #fff !important;
}

.p-contact__card-line:hover {
    background: #009900;
}

.p-contact__card-note {
    font-size: 13px;
    opacity: 0.7;
}


/*=================================

* 下層ページ

=================================*/

/*
　Page Hero（下層ページヒーロー）
================================*/
.c-page-hero {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .c-page-hero {
        height: 240px;
    }
}

.c-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.c-page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.6) 0%, rgba(15, 36, 64, 0.55) 100%);
}

.c-page-hero__content {
    padding: 0 20px;
    color: #fff;
    text-align: center;
}

.c-page-hero__label {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/*
　Reason Block（選ばれる理由 — 下層ページ用）
================================*/
.p-reason-block {
    max-width: 900px;
    margin: 0 auto;
}

.p-reason-block__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.p-reason-block__num {
    flex-shrink: 0;
    font-family: serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #e8eef5;
}

.p-reason-block__title {
    position: relative;
    padding-left: 16px;
    border-left: 4px solid #4f8fa8;
    font-size: clamp(19px, 3vw, 26px);
    font-weight: 900;
    line-height: 1.4;
    color: #566f89;
}

.p-reason-block__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .p-reason-block__body {
        flex-direction: row;
        align-items: center;
        gap: 48px;
    }
}

@media (min-width: 768px) {
    .p-reason-block__body--reverse {
        flex-direction: row-reverse;
    }
}

.p-reason-block__text {
    margin-bottom: 0;
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .p-reason-block__text {
        flex: 6;
    }
}

.p-reason-block__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

@media (min-width: 768px) {
    .p-reason-block__image {
        flex: 0 0 40%;
    }
}

/*
　Biz Nav（事業内容ナビ — 下層ページ用）
================================*/
.p-biz-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

@media (min-width: 768px) {
    .p-biz-nav {
        grid-template-columns: repeat(4, 1fr);
    }
}

.p-biz-nav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    font-size: clamp(13px, 2.6vw, 14px);
    font-weight: 700;
    color: #566f89 !important;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: .3s ease;
}

.p-biz-nav__item:hover {
    border-color: #4f8fa8;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
    transform: translateY(-2px);
}

/*
　Biz Block（事業内容ブロック — 下層ページ用）
================================*/
.p-biz-block__header {
    margin-bottom: 28px;
}

.p-biz-block__label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(13px, 2.6vw, 16px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #D4AF37;
}

.p-biz-block__label-num {
    font-family: serif;
    font-size: clamp(22px, 2.6vw, 24px);
    font-weight: 700;
}

@media (min-width: 768px) {
    .p-biz-block__content {
        flex: 1;
    }
}

.p-biz-block__title {
    position: relative;
    padding-left: 16px;
    border-left: 4px solid #4f8fa8;
    font-size: clamp(21px, 3vw, 29px);
    font-weight: 900;
    line-height: 1.4;
    color: #566f89;
}

.p-biz-block__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 768px) {
    .p-biz-block__body {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }
}

@media (min-width: 768px) {
    .p-biz-block__body--reverse {
        flex-direction: row-reverse;
    }
}

@media (min-width: 768px) {
    .p-biz-block__image {
        flex: 0 0 42%;
    }
}

.p-biz-block__image img {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(26, 58, 92, 0.08);
}

.p-biz-block__text p {
    margin-bottom: 16px;
    font-size: clamp(14px, 2.6vw, 16px);
    line-height: 1.8;
}

.p-biz-block__subtitle {
    margin: 20px 0 8px;
    padding-left: 12px;
    border-left: 3px solid #4f8fa8;
    font-size: clamp(16px, 2.6vw, 17px);
    font-weight: 700;
    color: #566f89;
}

.p-biz-block__point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    padding: 16px 15px;
    background: #e8eef5;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .p-biz-block__point {
        gap: 12px;
        padding: 16px 20px;
    }
}

.p-biz-block__point-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.p-biz-block__point p {
    margin-bottom: 0;
    font-size: clamp(15px, 2.6vw, 16px);
    font-weight: 500;
    color: #566f89;
}

.p-biz-block__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.p-biz-block__features li {
    position: relative;
    padding-left: 20px;
    font-size: clamp(15px, 2.6vw, 16px);
    font-weight: 600;
    color: #1a1a2e;
}

.p-biz-block__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #566f89;
    font-weight: 700;
}

.p-biz-block__list {
    margin: 8px 0 16px 0;
    padding: 0;
    list-style: none;
}

.p-biz-block__list li {
    position: relative;
    margin-bottom: 4px;
    padding-left: 16px;
    line-height: 1.7;
    color: #333333;
}

.p-biz-block__list li::before {
    content: '';
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 6px;
    height: 6px;
    background: #999999;
    border-radius: 50%;
}