@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");

:root {
    --color-main: #469ABF;
    --color-text: #545454;
    --color-accent: #EB8030;
    --color-sub-accent: #EB8030;
    --color-sub-main: #FFFDF2;
    --color-border: #DADADA;
    --color-sold: #DF0617;
    --color-date: #666666;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-weight-bold: 700;
    --font-weight-medium: 500;
    --color-theme: #469ABF;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    --box-shadow-dark: 0 2px 8px rgba(0, 0, 0, 0.18);
    --box-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.18);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 62.5% !important;
}

html,
body {
    font-family: var(--font-main), "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    line-height: 1.8;
    color: var(--color-text);
}

body {
    font-size: 1.6rem;
    margin: 0;
    padding-top: 100px;
}

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

::-moz-selection {
    color: #fff;
    background: var(--color-theme);
}



img {
    border: 0;
    margin: 0;
}

figure {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--color-text);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1 !important;
    margin: 0;
    padding: 0;
}

main {
    display: block;
}

.section-common {
    margin-top: 160px;
}

.l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: min(81.25vw, 110rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0 10rem;
}



[class*=swiper]:focus {
    outline: none;
}

.slide-media,
.thumb-media {
    position: relative;
    overflow: hidden;
}

.slide-media img,
.thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    margin: 0 auto;
    position: relative;
}

.swiper-button-prev::after {
    transform: rotate(135deg);
    left: 2px;
}

.swiper-button-next::after {
    transform: rotate(-45deg);
    right: 2px;
}

.swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
}

.card03 {
    overflow: hidden;
}

.card03 .swiper {
    overflow: visible;
}

.card03 .swiper-button-prev,
.card03 .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(38, 38, 38, 0.7);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.card03 .swiper-button-prev:hover,
.card03 .swiper-button-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.card03 .swiper-button-prev i,
.card03 .swiper-button-next i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    width: 18px;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
}

.card03 .swiper-button-prev,
.card03 .swiper-button-next {
    font-size: 0;
    /* テキスト非表示 */
}

.card03 .slide {
    overflow: hidden;
    -webkit-transition: var(--transition), opacity 1s;
    transition: var(--transition), opacity 1s;
    border-radius: 4px;
}

.card03 .slide-media {
    padding-top: 74.5%;
}

.card03 .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
}

.card03 .slide-content {
    margin-top: 16px;
}

.card03 .slide-date {
    font-size: 1.2rem;
    line-height: 1;
    display: block;
    color: var(--color-theme);
}

.card03 .slide-title {
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 1.6rem;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
}

.card03 .swiper-slide:not(.swiper-slide-visible) .slide {
    pointer-events: none;
    opacity: 0.3;
}

.card03 .swiper-slide {
    width: 348px !important;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
}

.property-card {
    width: 100%;
    max-width: 348px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    .l-inner {
        padding: 0;
    }

    .l-inner .section-header {
        padding: 0 14px;
    }

    .pc {
        display: none !important;
    }

    .card03 .swiper {
        margin: 0 14px;
    }

    .card03 .swiper-button-prev {
        right: calc(100% - 5.2rem);
    }

    .card03 .swiper-button-next {
        left: calc(100% - 5.2rem);
    }
}

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


    .pc-tab {
        display: none !important;
    }
}

@media only screen and (min-width: 1025px) {
    .tab-sp {
        display: none !important;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .swiper-button-prev:hover::before,
    .swiper-button-next:hover::before {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .card03 .slide img {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .card03 .slide:hover {
        -webkit-transform: translateY(-16px);
        transform: translateY(-16px);
    }

    .card03 .slide:hover img {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media only screen and (min-width: 600px) {
    .sp {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .card03 .swiper-slide {
        width: 100% !important;
        max-width: 100vw;
    }

    .card03 .swiper {
        overflow: hidden;
    }

    .card03 .swiper-wrapper {
        padding: 0 !important;
    }

    .property-card {
        max-width: 100vw;
    }

    .card03 .swiper-button-prev,
    .card03 .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .card03 .swiper-button-prev i,
    .card03 .swiper-button-next i {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
}

body {
    font-family: var(--font-main);
    line-height: 1.8;
}

a {
    transition: color 0.2s;
    text-decoration: none;
}

ul {
    padding: 0;
}

hr,
.border {
    border-color: var(--color-border);
}

.date,
.meta-date {
    color: var(--color-date);
    font-weight: var(--font-weight-medium);
}

.sold-label {
    background: var(--color-sold);
    color: #fff;
    font-weight: var(--font-weight-bold);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-sizing: border-box;
    transition: box-shadow 0.2s, background 0.2s;
    padding: 12px 0;
    height: 100px;
    display: flex;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* 管理バー表示時の調整 */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar body {
    padding-top: 132px;
    /* 100px(ヘッダー) + 32px(管理バー) */
}

@media (max-width: 787px) {
    .admin-bar .site-header {
        top: 48px;
    }
}

body {
    padding-top: 100px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 93.75vw;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    margin-right: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--color-main);
    font-weight: bold;
    font-size: clamp(1.1rem, 1vw + 1rem, 2rem);
    line-height: 1.8;
}

.logo-sub {
    font-size: clamp(0.7rem, 0.7vw + 0.5rem, 1.1rem);
    color: #888;
    font-weight: normal;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav li:not(:first-child)::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    background: var(--color-border);
    margin: 0 16px;
    vertical-align: middle;
}

.main-nav a {
    color: #888;
    text-decoration: none;
    font-weight: 500;
    padding: 0 8px;
    transition: color 0.2s;
    font-size: clamp(12px, 0.8vw + 8px, 14px);
}

.main-nav a:hover {
    color: #4090B0;
}

.contact-btn {
    background: #50A0C0;
    color: #fff;
    font-weight: bold;
    border-radius: 9999px;
    padding: 12.5px 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: clamp(13px, 1vw + 8px, 15px);
    transition: background 0.2s, color 0.2s, border 0.2s;
    border: 1px solid var(--color-theme);
    box-sizing: border-box;
}

.contact-btn:hover {
    background: #fff;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.mail-icon {
    margin-left: 8px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.mail-icon i.fa-envelope {
    color: #fff;
    background: none;
    font-size: 1em;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    border: none;
}

.contact-btn:hover .mail-icon i.fa-envelope {
    color: var(--color-main);
    background: #fff;
}

.menu-btn {
    background: var(--color-sub-main);
    border: 1px solid #50A0C0;
    border-radius: 6px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-icon {
    width: 24px;
    height: 1px;
    background: #50A0C0;
    display: block;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1px;
    background: #50A0C0;
    left: 0;
    transition: 0.2s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.global-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 9999;
    background: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.global-menu.active {
    background: rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 1;
}

.menu-left {
    width: 60%;
    background: var(--color-main);
    color: #fff;
    padding: 48px 40px 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 400px;
    height: 100vh;
    overflow-y: auto;
}


.menu-main-links {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.menu-main-links>li {
    font-size: clamp(16px, 1.2vw + 10px, 24px);
    font-weight: normal;
    margin-bottom: 32px;
}

.menu-main-links>li>a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-weight: bold;
}

.menu-main-links>li>a span {
    display: block;
    font-size: clamp(10px, 0.7vw + 6px, 14px);
    color: #e0e0e0;
    font-weight: normal;
    margin-top: 10px;
}

.menu-main-links>li>span {
    display: block;
    font-size: clamp(10px, 0.7vw + 6px, 14px);
    color: #e0e0e0;
    font-weight: normal;
    margin-top: 10px;
}

.menu-property-links {
    list-style: none;
    margin: 24px 0 0 0;
}

.menu-property-links li {
    font-size: clamp(12px, 0.7vw + 8px, 16px);
    margin-bottom: 14px;
}



.menu-property-links a {
    color: #fff;
    text-decoration: none;
}

.menu-footer {
    border-top: 1px solid #fff;
    margin-top: 32px;
    padding-top: 24px;
    font-size: clamp(0.8rem, 0.7vw + 0.5rem, 1.1rem);
    color: #fff;
}

.menu-footer p:first-of-type,
.menu-footer p:nth-of-type(2) {
    font-size: clamp(12px, 0.7vw + 8px, 16px);
}

.menu-footer a,
.menu-footer p:last-of-type {
    font-size: clamp(10px, 0.7vw + 6px, 14px);
}

.menu-footer p:nth-of-type(2) {
    margin-top: 14px;
}

.menu-footer a {
    color: #fff;
    text-decoration: underline;
    display: block;
    margin: 32px 0 0 0;
}

.menu-footer p:last-of-type {
    margin-top: 10px;
}

.menu-links-contact-row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 56px;
}

.menu-links-block {
    flex: 1 1 0;
    min-width: 220px;
}

.menu-contact-block {
    flex: 2 1 0;
    min-width: 260px;
    text-align: left;
    font-size: clamp(13px, 1vw + 8px, 18px);
}

.menu-contact-block h2 {
    color: #fff;
    font-size: clamp(20px, 2vw + 12px, 32px);
    font-weight: bold;
    margin-bottom: 32px;
}

.menu-contact-btn {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 0 24px 0;
    padding: 24px 12px;
    border: 2px solid #fff;
    border-radius: 40px;
    background: transparent;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.menu-contact-btn:hover {
    background: #fff;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.menu-close-btn {
    background: var(--color-sub-main);
    border: 1px solid #50A0C0;
    border-radius: 6px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 1vw + 0.8rem, 2rem);
    color: var(--color-accent);
    z-index: 10000;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 3.5%;
    transition: background 0.2s, border 0.2s;
}

.menu-close-btn .fa-xmark {
    font-size: 2rem;
}

.close-icon {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 1px;
    width: 1px;
    height: 24px;
    background: var(--color-main);
    border-radius: 2px;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.menu-right {
    width: 40%;
    min-width: 400px;
    height: 100vh;
    background: url('https://ing-realestate.jp/wp-content/uploads/2025/06/Firefly-Realistic-exterior-of-a-modern-J-850567-WLY.jpg') center center/cover no-repeat;
}


@media (max-width: 1024px) {
    .global-menu {
        flex-direction: column;
    }

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

    .menu-right {
        display: none;
    }

    .menu-links-contact-row {
        margin-bottom: 0;
    }

    .menu-property-links li:last-child {
        margin-bottom: 0;
    }

    .menu-main-links>li:last-child {
        margin-bottom: 0;
    }

    .menu-main-links {
        margin-bottom: 0;
    }
}

@media (max-width: 599px) {
    .menu-links-contact-row {
        flex-direction: column;
        gap: 32px;
    }

    .menu-contact-block {
        min-width: 100%;
    }

    .menu-contact-btn {
        max-width: 100%;
    }
}

.main-visual-wrapper {
    position: relative;
    width: 93.75vw;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1200/593;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 0;
    height: auto;
}

.main-visual-swiper {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: none;
    margin: 0;
}

.main-visual-swiper .swiper-wrapper,
.main-visual-swiper .swiper-slide {
    height: 100%;
}

.swiper-slide,
.swiper-slide .thumb,
.swiper-slide .thumb picture,
.swiper-slide .thumb img {
    height: 100%;
    width: 100%;
    display: block;
}

.swiper-slide .thumb img {
    object-fit: cover;
}

.main-visual-panel-fixed {
    position: absolute;
    right: 1.25vw;
    bottom: 0;
    width: 18.75vw;
    z-index: 10;
}

.main-visual-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    margin: 0;
}

.main-visual-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.main-visual-btn {
    background: #469ABF;
    color: #fff;
    font-size: 1.25vw;
    border: none;
    border-radius: 12px;
    padding: 1.4625vw .390625vw 1.4625vw .78125vw;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.main-visual-btn:hover {
    background: #357fa3;
}

.main-visual-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-visual-links li {
    border-top: 1px solid #DADADA;
}

.main-visual-links li:first-child {
    border-top: none;
}

.main-visual-links li:last-child {
    border-bottom: 1px solid #DADADA;
}

.main-visual-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-main);
    padding: 1.4625vw .390625vw 1.4625vw .78125vw;
    font-size: 1.25vw;
    text-decoration: none;
    transition: color 0.2s;
}

/* @media screen and (min-width: 1024px) {
    .main-visual-links a {
        padding: 1.5625vw .390625vw 1.5625vw .78125vw;
    }
} */

.main-visual-links a:hover {
    color: #469ABF;
}

.arrow {
    font-size: 1.436vw;
    color: #fff;
    margin-left: 8px;
}

.main-visual-pagination,
.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 30px !important;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.main-visual-pagination .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}

.main-visual-pagination .dot.active {
    background: #469ABF;
}


/* —————————————————————————————
   SVG マスクを変数にセット
   ————————————————————————————— */

.swiper-slide .thumb {
    --mv-mask: url("data:image/svg+xml,%3Csvg%20width='1200'%20height='593'%20viewBox='0%200%201200%20593'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M1180%20235C1191.05%20235%201200%20226.046%201200%20215V20C1200%208.9543%201191.05%200%201180%200L20%200.000107365C8.95431%200.000108387%20-9.12091e-07%208.95442%200%2020.0001L4.56637e-05%20573C4.65758e-05%20584.046%208.95433%20593%2020%20593L893%20593C904.046%20593%20913%20584.046%20913%20573V255C913%20243.954%20921.954%20235%20933%20235H1180Z'%20fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: var(--mv-mask);
    mask-image: var(--mv-mask);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
}

.swiper-slide .thumb picture,
.swiper-slide .thumb picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide .thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* #B5B5B5, 20% */
    pointer-events: none;
    z-index: 2;
}

.swiper-slide .thumb {
    position: relative;
}

/* @media (max-width: 1200px) {
    .main-visual-wrapper {
        max-width: 100vw;
        aspect-ratio: 1200/593;
        padding: 0 8px;
    }
} */


.main-visual-catchcopy {
    position: absolute;
    left: 52px;
    bottom: 10%;
    color: #fff;
    font-size: 3vw;
    font-weight: bold;
    z-index: 11;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.50), 0 4px 8px rgba(0, 0, 0, 0.50);
    margin: 0;
    line-height: 1.6 !important;
}


@media (max-width: 600px) {


    .main-visual-swiper {
        border-radius: 12px;
    }

    .main-visual-swiper .swiper-slide {
        border-radius: 12px;
    }

    .main-visual-content {
        padding: 18px 6px 12px 6px;
    }

    .main-visual-panel {
        padding: 18px 10px 12px 10px;
        border-radius: 12px;
    }
}

.l-container {
    width: min(81.25vw, 110rem);
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 787px) {

    .main-visual-wrapper {
        flex-direction: column;
        aspect-ratio: 1/1.1;
        gap: 24px;
    }

    .main-visual-panel-fixed {
        position: relative;
        width: 100%;
        bottom: auto;
        right: auto;
        padding: 0;
    }

    .swiper-slide .thumb {
        --mv-mask: none;
    }

    .menu-btn,
    .menu-close-btn {
        width: 50px;
        height: 50px;
    }

    .menu-close-btn {
        top: 12px;
    }

    .logo-img {
        height: 50px;
    }

    .site-header {
        height: 74px;
    }

    .main-visual-btn,
    .main-visual-links a {
        font-size: 1.6rem;
    }

    .main-visual-links a {
        padding: 16px 0;
    }

    .main-visual-wrapper {
        aspect-ratio: unset !important;
    }

    .main-visual-wrapper .main-visual-swiper {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}

@media (max-width: 787px) {

    body {
        padding-top: 74px;
    }

    .main-visual-wrapper {
        flex-direction: column;
        aspect-ratio: 1/1.1;
        gap: 24px;
    }

    .main-visual-panel-fixed {
        position: relative;
        width: 100%;
        bottom: auto;
        right: auto;
        padding: 0;
    }

    .swiper-slide .thumb {
        --mv-mask: none;
    }

    .menu-btn {
        width: 50px;
        height: 50px;
    }

    .logo-img {
        height: 50px;
    }

    .site-header {
        height: 74px;
    }

    .main-visual-btn,
    .main-visual-links a {
        font-size: 1.6rem;
    }

    .main-visual-links a {
        padding: 16px 0;
    }

    .main-visual-catchcopy {
        left: 30px;
        font-size: 2.4rem;
    }

    .main-visual-pagination,
    .swiper-pagination {
        bottom: 12px !important;
    }
}


.top-news-section {
    margin-top: 100px;
    background: #fff;
    border-radius: 32px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 0;
}

.top-news-inner {
    display: flex;
    width: 100%;
    padding: 0 0 0 0;
}

.top-news-left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #fff;
}

.top-news-title {
    font-weight: bold;
    color: #469ABF;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin-left: 12px;
}

.top-news-sub {
    color: var(--color-accent);
    font-size: clamp(12px, 1vw + 8px, 18px);
    margin-bottom: 32px;
    margin-left: 20px;
}

.top-news-list-btn {
    display: inline-flex;
    align-items: center;
    background: #469ABF;
    color: #fff;
    font-weight: bold;
    border-radius: 9999px;
    padding: 9px 0;
    width: 200px;
    justify-content: center;
    text-decoration: none;
    margin-top: 32px;
    transition: background 0.2s, color 0.2s;
    font-size: 1.5rem;
    border: 1.5px solid #469ABF;
}

.top-news-list-btn:hover {
    background: #fff;
    color: #469ABF;
    border: 1.5px solid #469ABF;
}

.top-news-list-arrow {
    margin-left: 16px;
    font-size: 1.3em;
}

.top-news-right {
    flex: 1 1 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.top-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.top-news-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    padding: 34px 0;
    font-size: clamp(1rem, 1vw + 0.7rem, 1.1rem);
}

.top-news-item:first-child {
    border-top: 1px solid #E5E5E5;
}

.top-news-date {
    color: #8A8A8A;
    font-size: clamp(1rem, 1vw + 0.7rem, 1.4rem);
    min-width: 140px;
    display: inline-block;
}

.top-news-cat {
    display: inline-block;
    border: 1.5px solid #469ABF;
    color: #469ABF;
    background: #fff;
    border-radius: 9999px;
    font-size: clamp(1rem, 1vw + 0.7rem, 1.4rem);
    font-weight: bold;
    padding: 6px 24px;
    margin-right: 32px;
    transition: background 0.2s, color 0.2s;
}

.top-news-cat-blog {
    border-color: #EB8030;
    color: #EB8030;
}

.top-news-text {
    color: var(--color-main);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    flex: 1 1 0;
    transition: color 0.2s;
}

.top-news-text:hover {
    color: #469ABF;
}

@media (max-width: 787px) {
    .top-news-section {
        flex-direction: column;
    }

    .top-news-inner {
        flex-direction: column;
        padding: 0;
    }

    .top-news-left {
        flex: none;
        width: 100%;
        border-right: none;
        align-items: flex-start;
    }

    .top-news-text {
        font-size: 2rem;
    }
}


/* Swiperページネーション用 */
.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: background 0.2s !important;
}

.swiper-pagination-bullet-active {
    background: #469ABF !important;
}

/* 共通セクションタイトルデザイン */
.section-title-wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 4px;
}

.section-dot {
    width: 14px;
    height: 14px;
    background: #EB8030;
    border-radius: 50%;
    display: inline-block;
}

.section-title {
    font-size: clamp(3.2rem, 4vw + 1rem, 64px);
    font-weight: bold;
    color: #469ABF;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.section-sub {
    font-size: clamp(12px, 1vw + 8px, 16px);
    margin-left: 20px;
}

.section-header {
    margin-bottom: 40px;
}

/* Propertyカードデザイン */
.property-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.property-card {
    position: relative;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s;
}


.property-card .slide-media {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    min-height: 263px;
}

.property-card .slide-media img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.property-badge-sold {
    background: var(--color-sold);
    /* 赤 */
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 4px;
    width: 94px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.12);
}

.property-badge-type {
    display: inline-block;
    background: var(--color-sub-main);
    border: 1px solid var(--color-main);
    color: #009ecb;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 0.2em 1.2em;
    height: 32px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-badge-status {
    background: var(--color-accent);
    /* オレンジ */
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 4px;
    width: 94px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.property-location-row {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-top: 1.4rem;
}

.property-location-icon,
.property-price-icon {
    color: var(--color-main);
    margin-right: 0.4em;
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
}

.property-price-row {
    font-size: 1.7rem;
    font-weight: bold;
    color: #009ecb;
    margin-bottom: 1.2em;
}

.property-price-unit {
    font-size: 1.3rem;
    font-weight: normal;
    margin-left: 0.2em;
}

.property-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.2em 0;
}

.property-info-row {
    display: flex;
    align-items: center;
    gap: 1.2em;
    font-size: 1.4rem;
    color: #7C7C7C;
}

.property-madori {
    font-weight: bold;
}

.property-station {
    color: #888;
    font-size: 1.2rem;
}



/* Propertyセクション横幅いっぱい */
.property-section-full {
    background: #f8fafc;
    padding: 64px 0 48px 0;
    box-sizing: border-box;
    position: relative;
}

.property-section-full .section-title-wrap,
.property-section-full .section-sub {
    width: min(81.25vw, 110rem);
    margin-left: auto;
    margin-right: auto;
}

.property-swiper {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.property-swiper .swiper-wrapper {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.property-swiper .swiper-slide {
    width: auto !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
    transition: transform 0.2s;
}

@media (max-width: 900px) {
    .property-section-full {
        padding: 32px 0 24px 0;
    }

    .property-swiper {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Propertyスライダー サンプルページ完全再現 */
.property-swiper-area {
    overflow: hidden;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-bottom: 40px;
}

.property-swiper {
    overflow: visible;
    width: 100%;
    padding-bottom: 40px;
}

.property-swiper .swiper-wrapper {
    display: flex;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.property-swiper .swiper-slide {
    width: 347px !important;
    flex-shrink: 0;
    margin-right: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    background: #fff;
    transition: box-shadow .3s, transform .3s;
    display: flex;
    align-items: stretch;
    height: auto;
}

.property-swiper .swiper-slide:last-child {
    margin-right: 0;
}

.property-swiper .swiper-slide:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    transform: translateY(-8px);
}

.property-swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    text-align: center;
    z-index: 10;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.property-swiper .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #fff !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: background 0.2s !important;
}

.property-swiper .swiper-pagination-bullet-active {
    background: #469ABF !important;
}

.property-swiper-button-prev,
.property-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 22px;
    color: #469ABF;
    transition: background 0.2s, color 0.2s;
}

.property-swiper-button-prev {
    left: 8px;
}

.property-swiper-button-next {
    right: 8px;
}

.property-swiper-button-prev:hover,
.property-swiper-button-next:hover {
    background: #469ABF;
    color: #fff;
}

@media (max-width: 1024px) {
    .property-swiper .swiper-slide {
        width: 280px !important;
        margin-right: 16px;
        border-radius: 12px;
    }

    .property-swiper-area {
        padding-bottom: 32px;
    }
}

@media (max-width: 787px) {
    .property-swiper .swiper-slide {
        width: 90vw !important;
        margin-right: 8px;
        border-radius: 10px;
    }

    .property-swiper-area {
        padding-bottom: 24px;
    }

    .property-swiper-button-prev,
    .property-swiper-button-next {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

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

.property-news-link-row {
    text-align: center;
    margin-top: 28px;
}

.company-section {
    position: relative;
    overflow-x: hidden;
}

.company-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
}

.company-section-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    max-width: 1214px;
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 2;
}

.company-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    z-index: 2;
}

.company-section-content {
    display: flex;
    flex-direction: row;
    border-radius: 0 0 24px 24px;
    position: relative;
    padding: 80px 14px 60px 80px;
    color: #fff;
    overflow: visible;
    z-index: 1;
}

.company-section-content-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 80px;
}

.company-section-dot {
    color: var(--color-accent);
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.company-section-title {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.company-section-sub {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.company-section-lead {
    font-size: 2.8rem;
    margin-top: 40px;
    line-height: 1.8;
	font-weight: bold;
}

.company-section-content-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-section-desc {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: bold;
}

.company-section-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #469ABF;
    font-weight: bold;
    border-radius: 9999px;
    padding: 12px 32px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

.company-section-btn:hover {
    background: var(--color-accent);
    color: #fff;
}

.company-section-btn-arrow {
    margin-left: 12px;
    font-size: 1.3em;
}

.company-section::before {
    content: none;
}

.company-section-inner::before {
    content: "";
    background-color: var(--color-main);
    position: absolute;
    left: 0;
    top: -200px;
    bottom: 0;
    width: 100vw;
    height: auto;
    z-index: -1;
    border-radius: 30px 0 0 30px;
    transform: translateX(calc((100% - 100vw) / 2));
}

@media (max-width: 1024px) {
    .company-section-content {
        width: min(81.25vw, 110rem);
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 787px) {


    .company-section-content {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        flex-direction: column;
    }

    .company-section-content-left {
        flex: 1;
        margin-right: 0;
        margin-bottom: 24px;
        align-items: flex-start;
    }

    .company-section::before {
        border-radius: 0 0 12px 12px;
        clip-path: none;
    }

    .company-link-btn {
        margin-right: auto;
    }

    .company-section-desc {
        margin-bottom: 8px;
    }
}

@media (max-width: 787px) {
    .company-section-image img {
        border-radius: 12px 12px 0 0;
    }

    .company-section-inner::before {
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 599px) {
    .company-section-lead {
        font-size: 2rem;
        margin-top: 24px;
    }
}

.company-section .section-title,
.company-section .section-sub {
    color: #fff;
}

.company-link-btn {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--color-main);
    font-weight: bold;
    border-radius: 9999px;
    padding: 9px 0;
    width: 200px;
    justify-content: center;
    text-decoration: none;
    margin-top: 32px;
    transition: background 0.2s, color 0.2s;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    border: 1.5px solid var(--color-main);
    margin-left: auto;
}

.company-link-btn:hover {
    background: #f0f8fb;
    color: var(--color-main);
    border: 1.5px solid var(--color-main);
}

.company-link-btn-arrow {
    margin-left: 16px;
    font-size: 1.3em;
    color: var(--color-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title-wrap h2,
.section-title-wrap .section-title {
    line-height: 1 !important;
}

.main-visual-panel * {
    line-height: 1.5 !important;
}

/* =============================
   Contact Section
   ============================= */
.contact-section-common {
    background-color: var(--color-sub-main);
    border-radius: 32px;
    padding-top: 110px;
    padding-bottom: 110px;
    margin-top: 160px;
    width: 100%;
}

.contact-section-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    min-height: 320px;
    margin: 0 auto;
    max-width: 1100px;
    background: #fff;
    padding: 70px 100px;
    border-radius: 30px;
}

.contact-section-left,
.contact-section-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section-left {
    border-radius: 32px 0 0 32px;
    align-items: flex-start;
}

.contact-section-right {
    border-radius: 0 32px 32px 0;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-dot {
    width: 14px;
    height: 14px;
    background: #EB8030;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 8px;
}

.contact-title {
    font-size: 3.2rem;
    font-weight: bold;
    color: #469ABF;
    margin: 0 0 8px 0;
    font-family: var(--font-main);
}

.contact-sub {
    color: #469ABF;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.contact-desc {
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 2;
}

.contact-tel-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    font-weight: bold;
    color: #EB8030;
    margin-bottom: 8px;
}

.contact-tel-icon {
    font-size: 3.6rem;
    margin-right: 12px;
    color: #EB8030;
}

.contact-tel-number {
    font-size: 3.6rem;
    color: #EB8030;
    font-weight: bold;
}

.contact-tel-caption {
    color: var(--color-text);
    font-size: 1.6rem;
    margin-bottom: 40px;
}

.contact-section-btn {
    display: inline-block;
    background: #469ABF;
    color: #fff;
    font-weight: bold;
    border-radius: 9999px;
    padding: 18px 0;
    font-size: 1.6rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    width: 320px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #469ABF;
}

.contact-section-btn:hover {
    background: #fff;
    color: #469ABF;
    border: 1px solid #469ABF;
}

@media (max-width: 787px) {
    .contact-section-inner {
        flex-direction: column;
        min-height: 0;
        padding: 40px 14px;
    }

    .contact-section-left,
    .contact-section-right {
        border-radius: 0;
        padding: 32px 16px;
    }

    .contact-section-left {
        border-radius: 32px 32px 0 0;
    }

    .contact-section-right {
        border-radius: 0 0 32px 32px;
    }
}

@media (max-width: 787px) {
    .contact-section-common {
        margin-top: 100px;
        border-radius: 16px;
        margin-bottom: 24px;
		padding-bottom: 50px;
		padding-top: 50px;
    }

    .contact-section-left,
    .contact-section-right {
        padding: 18px 8px;
        border-radius: 0;
    }

    .contact-section-left {
        border-radius: 16px 16px 0 0;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-section-right {
        border-radius: 0 0 16px 16px;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .section-header {
        margin-bottom: 24px;
    }

}

@media (max-width: 599px) {
    .contact-section-btn {
        width: 100%;
    }
	
	.contact-tel-number,
	.contact-tel-icon{
    font-size: 3rem;
}
}

/* =============================
   Main Footer Section
   ============================= */
.main-footer-section {
    padding: 0;
    margin-top: 0;
}

.main-footer-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    width: 93.75vw;
    margin: 0 auto;
    padding: 80px 0 80px 0;
}

.main-footer-left {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 32px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 48px;
    margin-right: 12px;
}

.footer-logo-main {
    font-size: 2.4rem;
    font-weight: bold;
    color: #545454;
    display: block;
}

.footer-logo-sub {
    font-size: 1.1rem;
    color: #888;
    margin-top: 2px;
    display: block;
}

.footer-catchcopy {
    color: #469ABF;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 32px;
    margin-top: 8px;
    line-height: 1.5;
}

.footer-company-info {
    color: var(--color-text);
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 2;
    font-weight: 500;
}

.footer-company-contact {
    font-size: 14px;
    margin-top: 14px;
}

.footer-privacy-link {
    color: #888;
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

.footer-privacy-link:hover {
    color: #469ABF;
}

.footer-copyright {
    color: #B0B0B0;
    font-size: 1.4rem;
    margin-top: 18px;
    margin-bottom: 0;
}

.footer-copyright::before {
    content: "";
    margin-right: 4px;
    width: 100%;
    height: 1px;
    background: #DADADA;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 4px;
}

.main-footer-right {
    flex: 1 1 0;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 32px;
}

.footer-nav-cols {
    display: flex;
    flex-direction: row;
    gap: 56px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.footer-nav-title {
    color: #469ABF;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2px;
    margin-top: 18px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-title:first-child {
    margin-top: 0;
}

.footer-nav-title:hover {
    color: #EB8030;
}

.footer-nav-sub {
    color: #EB8030;
    font-size: 1.2rem;
    margin-bottom: 10px;
    margin-left: 2px;
}

.footer-nav-link {
    color: #6C6C6C;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 6px;
    margin-left: 2px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: #469ABF;
}

@media (max-width: 787px) {
    .main-footer-inner {
        flex-direction: column;
        padding: 32px 0 0 0;
    }

    .main-footer-left,
    .main-footer-right {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        min-width: 100%;
    }

    .main-footer-right {
        align-items: flex-start;
        margin-top: 32px;
    }

    .footer-nav-cols {
        gap: 32px;
    }
}

@media (max-width: 599px) {
    .main-footer-inner {
        padding: 18px 0 0 0;
    }

    .footer-logo-img {
        height: 36px;
    }


    .footer-nav-cols {
        flex-direction: column;
        gap: 16px;
    }
}

.subpage-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 60px 0;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 40px;
    border-bottom: 1px solid #999999;
    width: 93.75vw;
}

.subpage-hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 420px;
    margin-top: 30px;
}

.subpage-hero__dot {
    width: 12px;
    height: 12px;
    background: #EB8030;
    border-radius: 50%;
    margin-bottom: 8px;
    margin-left: 4px;
}

.subpage-hero__title {
    font-size: 64px;
    font-weight: bold;
    color: #469ABF;
    margin-bottom: 8px;
    margin-top: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.subpage-hero__subtitle {
    color: #469ABF;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 50px;
    margin-left: 4px;
}

.subpage-hero__breadcrumb {
    color: #888;
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-left: 4px;
    letter-spacing: 0.1em;
}

.subpage-hero__breadcrumb-current {
    color: #469ABF;
    font-weight: bold;
    margin-left: 16px;
}

.subpage-hero__breadcrumb-sep {
    color: #cccccc;
    margin: 0 10px;
}

.subpage-hero__breadcrumb a {
    color: #888;
    text-decoration: none;
    margin-right: 16px;
}

.subpage-hero__right {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
}

.subpage-hero__image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    display: block;
}

@media (max-width: 1024px) {
    .subpage-hero__right {
        display: none;
    }
}

@media (max-width: 768px) {
    .subpage-hero__left {
        min-width: 100%;
    }
}

.company-table-section {
    margin: 60px auto 0 auto;
    max-width: 1100px;
    width: 100%;
}

.company-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.company-table__row {
    display: flex;
    align-items: stretch;
    min-height: 56px;
}

.company-table__row:first-child {}

.company-table__th {
    display: flex;
    align-items: center;
    width: 220px;
    min-width: 120px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 1.5rem;
    background: transparent;
    padding: 28px 0 66px 0;
    position: relative;
    letter-spacing: 0.05em;
    position: relative;
}

.company-table__th::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: #469ABF;
    margin-right: 18px;
    flex-shrink: 0;
    position: absolute;
    top: 0;
}

.company-table__td {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-text);
    padding: 28px 0 66px 0;
    background: transparent;
    word-break: break-all;
    border-top: 1px solid #e5e5e5;
}

.company-table__row:last-child .company-table__td {
    border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 700px) {
    .company-table-section {
        max-width: 100vw;
        padding: 0 10px;
    }

    .company-table__row {
        flex-direction: column;
        min-height: 0;
    }

    .company-table__th,
    .company-table__td {
        width: 100%;
        padding: 12px 0 12px 0;
        font-size: 1.2rem;
    }

    .company-table__th {
        margin-bottom: 2px;
    }
}

.news-list-section {
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 0 10px;
}

.news-list {
    width: 100%;
}

.news-list__row {
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    padding: 28px 0 28px 0;
    font-size: 1.5rem;
}

.news-list__row:last-child {
    border-bottom: 1px solid #e5e5e5;
}

.news-list__date {
    min-width: 180px;
    color: #666;
    font-size: 1.4rem;
    margin-right: 24px;
    font-weight: 500;
}

.news-list__cat {
    display: inline-block;
    min-width: 90px;
    text-align: center;
    color: #469ABF;
    border: 1.5px solid #469ABF;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 500;
    background: #fff;
    padding: 6px 24px;
    margin-right: 32px;
    margin-left: 0;
    box-sizing: border-box;
    transition: background 0.2s, color 0.2s;
}

.news-list__title {
    flex: 1 1 0;
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 500;
    word-break: break-all;
}

.news-list__link {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.news-list__link:hover {
    color: #469ABF;
}

.news-list__pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}

@media (max-width: 787px) {
    .news-list-section {
        width: 93.75vw;
    }

    .news-list__row,
    .top-news-item {
        flex-direction: column;
        align-items: flex-start;
        font-size: 1.1rem;
        padding: 18px 0 18px 0;
        gap: 12px;
    }

    .news-list__date {
        margin-bottom: 6px;
        min-width: 0;
    }

    .news-list__cat {
        margin-bottom: 6px;
        min-width: 0;
        padding: 4px 14px;
        font-size: 1.1rem;
    }

    .top-news-date {
        min-width: 100px;
    }

    .top-news-meta {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }

    .top-news-cat {
        margin-right: 0;
    }

    .top-news-title {
        margin-left: 0;
    }
}

/* お電話でのお問い合わせセクション */
.contact-phone-section {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 60px;
    padding: 54px;
    background: var(--color-sub-main);
    border-radius: 30px;
}

.contact-phone-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-phone-left {
    display: flex;
    flex-direction: column;
}

.contact-phone-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.contact-phone-hours {
    font-size: 1.4rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-phone-right {
    display: flex;
    align-items: center;
}

.contact-phone-number {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-phone-icon {
    font-size: 3rem;
    color: var(--color-accent);
}

.contact-phone-link {
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.contact-phone-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .contact-phone-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 16px;
    }
	
	.contact-phone-section {
    padding: 20px;
}

    .contact-phone-title {
        font-size: 1.6rem;
    }

    .contact-phone-hours {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .contact-phone-link {
        font-size: 2.8rem;
    }

    .contact-phone-icon {
        font-size: 2rem;
    }
}

/* Contact Form 7 お問い合わせフォームスタイル */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 0 auto;
    padding: 60px 20px;
}

/* Contact Form 7で自動挿入される不要なbr要素を非表示 */
.contact-form-wrapper br {
    display: none;
}

.contact-form-wrapper .wpcf7-form br {
    display: none;
}

.form-group {
    margin-bottom: 60px;
}

.form-label {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.4;
}

.form-label-required {
    position: relative;
}

.required-mark {
    color: #e74c3c;
    font-weight: bold;
    margin-left: 4px;
}

.optional-mark {
    color: #666;
    font-weight: normal;
    margin-left: 4px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 11.5px 20px;
    font-size: 1.4rem;
    border: 1px solid #999999;
    border-radius: 4px;
    background: #fff;
    color: var(--color-text);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.wpcf7-radio {
    display: flex;
    align-items: center;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(70, 154, 191, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-size: 1.4rem;
}

/* ラジオボタンスタイル */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.wpcf7-spinner {
    display: none;
}

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

.form-privacy {
    display: flex;
    justify-content: center;
}

.privacy-link {
    font-size: 1.4rem;
    font-weight: 500;
}

.radio-group .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: center;
}

.radio-group .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    padding-left: 32px;
}

.radio-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-group .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s;
}

.radio-group .wpcf7-list-item-label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-main);
    opacity: 0;
    transition: all 0.2s;
}

.radio-group input[type="radio"]:checked+.wpcf7-list-item-label::before {
    border-color: var(--color-main);
}

.radio-group input[type="radio"]:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

/* チェックボックススタイル */
.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.form-checkbox-group .wpcf7-list-item {
    margin: 0;
    display: flex;
    align-items: flex-start;
}

.form-checkbox-group .wpcf7-list-item-label {
    display: flex;
    align-items: flex-start;
    font-size: 1.4rem;
    color: var(--color-text);
    cursor: pointer;
    position: relative;
    padding-left: 24px;
    line-height: 1.5;
    font-weight: 500;
}

.form-checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-checkbox-group .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 15px;
    height: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s;
}

.form-checkbox-group .wpcf7-list-item-label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 1px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.2s;
}

.form-checkbox-group input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
    border-color: var(--color-main);
    background: var(--color-main);
}

.form-checkbox-group input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
    opacity: 1;
}

/* 送信ボタンスタイル */
.form-submit-wrapper {
    text-align: center;
    margin-top: 48px;
}

.form-submit-btn {
    background: var(--color-main);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 200px;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: #3a7fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(70, 154, 191, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* エラーメッセージスタイル */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 4px;
    display: block;
}

.wpcf7-validation-errors {
    background: #ffeaea;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.4rem;
}

.wpcf7-mail-sent-ok {
    background: #eaf4ea;
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 16px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.4rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 0 16px;
        margin-top: 40px;
    }

    .form-group {
        margin-bottom: 24px;
    }

    .form-label {
        font-size: 1.4rem;
    }

    .form-input,
    .form-textarea {
        padding: 14px 16px;
        font-size: 1.3rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 16px;
    }

    .radio-group .wpcf7-list-item-label {
        font-size: 1.3rem;
    }

    .form-checkbox-group .wpcf7-list-item-label {
        font-size: 1.2rem;
    }

    .form-submit-btn {
        font-size: 1.4rem;
        padding: 14px 36px;
        min-width: 180px;
    }
}

/* 物件検索フォーム（アコーディオン） */
.property-search-box {
    background: #fcf8ec;
    width: 93.75vw;
    max-width: 1100px;
    margin: 60px auto 60px auto;
    overflow: hidden;
}

.property-search-form {
    width: 100%;
}

.search-accordion-btn {
    width: 100%;
    background: #469abf;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 18px 24px;
    border: none;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    outline: none;
    position: relative;
    transition: background 0.2s;
}

.search-accordion-btn .arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.5rem;
    margin-left: 8px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

.search-accordion-btn.active .arrow {
    transform: translateY(-50%) rotate(180deg);
}

.search-accordion-content {
    padding: 32px 32px 16px 32px;
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
    gap: 18px 24px;
}

.search-label {
    min-width: 100px;
    font-weight: bold;
    color: #555;
    margin-right: 16px;
    font-size: 1.1rem;
}

.search-row label {
    margin-right: 16px;
    font-weight: normal;
    color: #333;
    font-size: 1.6rem;
}

.search-input-short {
    width: 120px;
    padding: 6px 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1.6rem;
    margin: 0 8px;
    background: #fff;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 18px 0;
}

.search-row-center {
    justify-content: center;
}

.search-submit-btn {
    width: 280px;
    height: 48px;
    background: #469abf;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    padding: 10px 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    transition: background 0.2s;
}

.search-submit-btn:hover {
    background: #357a99;
}

.search-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.search-options {
    display: contents;
}

@media (max-width: 700px) {
    .property-search-box {
        padding: 0;
        max-width: 98vw;
    }

    .search-accordion-content {
        padding: 18px 6px 8px 6px;
    }

    .search-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .search-label {
        margin-bottom: 2px;
        font-size: 1.4rem;
        margin-right: 0;
    }

    .search-options {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 18px;
        width: 100%;
    }

    .search-row label:not(.search-label) {
        font-size: 1.4rem;
        margin-right: 0;
    }

    .search-input-short {
        width: 100%;
    }
	
	.search-submit-btn {
		width: 100%;
	}
}

/* 物件アーカイブカードデザイン（最適化・統一） */
.property-archive-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    width: 93.75vw;
}

@media (min-width: 768px) {
    .property-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.property-archive-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.property-archive-card {
    position: relative;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.property-archive-card-media {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.property-archive-card-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 600px) {
    .property-archive-card-media img {
        height: 32vw;
        min-height: 100px;
        max-height: 200px;
        aspect-ratio: 4/3;
    }
}

.property-archive-badge-sold {
    background: var(--color-sold);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 4px;
    width: 94px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.12);
}

.property-archive-badge-type {
    display: inline-block;
    background: var(--color-sub-main);
    border: 1px solid var(--color-main);
    color: #009ecb;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 0.2em 1.2em;
    height: 32px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.property-archive-badge-status {
    background: var(--color-accent);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 4px;
    width: 94px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.property-archive-card-content {
    padding: 18px 0 12px 0;
}

.property-archive-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    color: #222;
}

.property-archive-location-row {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    color: #555;
    gap: 6px;
}

.property-archive-location-icon,
.property-archive-price-icon {
    color: var(--color-main);
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
}

.property-archive-price-row {
    font-size: 2rem;
    font-weight: bold;
    color: #009ecb;
}

.property-archive-price-unit {
    font-size: 1.3rem;
    font-weight: normal;
    margin-left: 0.2em;
}

.property-archive-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 1.2em 0;
}

.property-archive-info-row {
    display: flex;
    align-items: center;
    gap: 1.2em;
    font-size: 1.4rem;
    color: #7C7C7C;
}

.property-archive-madori {
    font-weight: bold;
}

.property-archive-station {
    color: #888;
    font-size: 1.2rem;
}

@media (max-width: 600px) {
    .property-archive-card-media img {
        height: 120px;
    }

    .property-archive-card-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* ========== 物件詳細ページ（single-property） ========== */
.single-property-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 60px 0;
    background: #fff;
    width: 93.75vw;
}

.single-property-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
}

.single-property-label {
    display: inline-block;
    border: 1px solid #469ABF;
    color: #469ABF;
    border-radius: 999px;
    padding: 6px 28px;
    font-size: 1.4rem;
    font-weight: bold;
    background: var(--color-sub-main);
    margin-right: 8px;
}

.single-property-title {
    font-size: 3.2rem;
    font-weight: bold;
    color: #545454;
    letter-spacing: 0.02em;
}

.single-property-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.single-property-slider-area {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    flex: 1 1 0;
}

.property-detail-swiper {
    width: 100%;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.property-detail-swiper .swiper-slide {
    background: #f9f9f9;
    text-align: center;
    /* 画像の高さを固定し、中央揃え */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    height: 400px;
    /* 必要に応じてmax-heightも指定可能 */
}

.property-detail-swiper .swiper-slide img {
    width: auto;
    height: 400px;
    max-width: 100%;
    object-fit: contain;
    background: #f9f9f9;
    display: block;
    margin: 0 auto;
}


/* @media (max-width: 599px) {
    .property-detail-swiper .swiper-slide img {
        height: 56vw;
        min-height: 200px;
        max-height: 320px;
    }
} */

.property-detail-swiper .swiper-button-prev,
.property-detail-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: #fff;
    color: #469ABF;
    border: 1px solid #469ABF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: translateY(-50%); */
    font-size: 24px;
    transition: background 0.2s, color 0.2s;
}

.property-detail-swiper .swiper-button-prev {
    left: 14px;
}

.property-detail-swiper .swiper-button-next {
    right: 14px;
}

.property-detail-swiper .swiper-button-prev::after,
.property-detail-swiper .swiper-button-next::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border: solid #469ABF;
    border-width: 0 4px 4px 0;
    padding: 0;
    margin: 0 auto;
    position: relative;
    background: none;
    font-family: inherit;
    font-size: 0;
}

.property-detail-swiper .swiper-button-prev::after {
    transform: rotate(135deg);
    left: 2px;
}

.property-detail-swiper .swiper-button-next::after {
    transform: rotate(-45deg);
    right: 2px;
}

.property-detail-swiper .swiper-pagination {
    display: none;
}

.property-detail-thumbs {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    box-sizing: border-box;
    margin-top: 12px;
}

.property-detail-thumbs .swiper-wrapper {
    width: auto !important;
    min-width: 0;
}

.property-detail-thumbs .swiper-slide {
    height: 120px;
    cursor: pointer;
    overflow: hidden;
    border: none;
    transition: opacity 0.3s, border 0.3s;
    background: #f6fafd;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-detail-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.property-detail-thumbs .swiper-slide:last-child {
    margin-right: 0;
}

.property-detail-thumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    opacity: 0.4;
}

.property-detail-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #469ABF;
}


@media (max-width: 600px) {
    .single-property-slider-area {
        padding: 12px 2px 8px 2px;
    }

}



.single-property-contact-btn:hover {
    background: #fff;
    color: #469ABF;
    border: 1px solid #469ABF;
}

@media (max-width: 787px) {

    .contact-btn,
    .main-nav {
        display: none;
    }
}


@media (max-width: 900px) {

    .property-detail-swiper .swiper-thumb img {
        height: 40px;
    }
}

@media (max-width: 599px) {

    .property-detail-swiper .swiper-thumb img {
        height: 32px;
    }

    .single-property-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .single-property-title {
        font-size: 2.4rem;
    }

    .single-property-label {
        font-size: 1.2rem;
    }
}

/* ========== 物件詳細ページ 右サイド ========== */
.single-property-info-area {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.single-property-contact-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 32px 24px 18px 24px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-property-contact-btn {
    display: block;
    width: 100%;
    background: #50a8cf;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 999px;
    padding: 16px 0;
    text-align: center;
    margin-bottom: 18px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    border: 1px solid #469ABF;
}

.single-property-contact-btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.single-property-contact-btn i {
    font-size: 1.2em;
}


.single-property-tel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2.2rem;
    color: #EB8030;
    font-weight: bold;
    margin-bottom: 4px;
    justify-content: center;
}

.single-property-tel-icon {
    font-size: 3.2rem;
}

.single-property-tel-number {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.02em;
}

.single-property-tel-caption {
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
}

.single-property-summary-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-property-summary-title-bar {
    display: inline-block;
    width: 3px;
    height: 24px;
    background: #469ABF;
}

.single-property-summary-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
    font-size: 1.4rem;
    box-shadow: none;
    margin-bottom: 0;
    border: 1px solid #e5e7eb;
}

.single-property-summary-table th,
.single-property-summary-table td {
    padding: 0 16px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    color: var(--color-text);
    height: 48px;
}

.single-property-summary-table th {
    background: #f8fafc;
    font-weight: bold;
    width: 32%;
    border-right: 1px solid #e5e7eb;
}


.single-property-summary-table tr:last-child th,
.single-property-summary-table tr:last-child td {
    border-bottom: none;
}

.single-property-summary-price {
    font-size: 2.4rem;
    color: #2196cf !important;
    font-weight: bold;
}

@media (max-width: 700px) {
    .single-property-info-area {
        max-width: 100%;
        width: 100%;
        padding: 0;
        gap: 16px;
    }

}

@media (max-width: 599px) {

    .single-property-summary-table th,
    .single-property-summary-table td {
        font-size: 1.2rem;
    }
}

/* ========== 物件詳細ページ 担当者コメント ========== */
.single-property-comment-box {
    background: #fff;
    border-radius: 8px;
    margin: 80px auto 0 auto;
    max-width: 1100px;
}

.single-property-comment-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-property-comment-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 24px;
    background: #469ABF;
}

.single-property-comment-body {
    color: var(--color-text);
}

@media (max-width: 700px) {
    .single-property-comment-box {
        padding: 14px 6px 10px 6px;
        margin-top: 18px;
    }
}

/* ========== 物件詳細ページ 物件詳細テーブル ========== */
.single-property-detail-box {
    margin: 40px auto 0 auto;
    max-width: 1100px;
}

.single-property-detail-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 24px;
    background: #469ABF;
    border-radius: 2px;
    margin-right: 8px;
}

.single-property-detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
    font-size: 1.4rem;
    box-shadow: none;
    margin-bottom: 0;
    border: 1px solid #e5e7eb;
}

.single-property-detail-table th,
.single-property-detail-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    text-align: left;
    font-weight: normal;
    background: #fff;
}

.single-property-detail-table th {
    background: #f8fafc;
    color: #333;
    font-weight: normal;
    width: 16%;
}

.single-property-detail-table td {
    color: #333;
    width: 37%;
}

.single-property-detail-table tr:last-child th,
.single-property-detail-table tr:last-child td {
    border-bottom: none;
}

.single-property-detail-table tr th:last-child,
.single-property-detail-table tr td:last-child {
    border-right: none;
}

@media (max-width: 700px) {
    .single-property-detail-box {
        padding: 14px 6px 10px 6px;
        margin-top: 18px;
    }

    .single-property-detail-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .single-property-detail-title::before {
        height: 16px;
        width: 4px;
        margin-right: 6px;
    }
}


/* ========== 物件詳細ページ お問い合わせフォーム ========== */
.single-property-contactform-box {
    background: #fcf8ec;
    margin: 80px auto 0 auto;
}

.single-property-contactform-box h2,
.single-property-contactform-box .wpcf7-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 32px;
    position: relative;
    color: #222;
}

.single-property-contactform-box h2::after,
.single-property-contactform-box .wpcf7-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #469ABF;
    border-radius: 2px;
    margin: 8px auto 0 auto;
}

.single-property-contactform-box label {
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 20px;
    display: block;
}

.single-property-contactform-box input[type="text"],
.single-property-contactform-box input[type="email"],
.single-property-contactform-box textarea {
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 4px;
    padding: 12px 16px;
    background: #fff;
    color: #222;
    box-sizing: border-box;
}

.single-property-contactform-box textarea {
    min-height: 120px;
}


.single-property-contactform-box input[type="checkbox"] {
    margin-right: 6px;
}

.single-property-contactform-box .wpcf7-submit,
.single-property-contactform-box input[type="submit"] {
    display: block;
    font-size: 1.5rem;
    margin: 32px auto 0 auto;
    background: #50a8cf;
    color: #fff;
    font-weight: bold;
    border-radius: 999px;
    padding: 16px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.single-property-contactform-box .wpcf7-submit:hover,
.single-property-contactform-box input[type="submit"]:hover {
    background: #469ABF;
}

.single-property-contactform-box .wpcf7-acceptance {
    margin: 18px 0 0 0;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 700px) {
    .single-property-contactform-box {
        padding: 18px 6px 18px 6px;
        margin-top: 18px;
        max-width: 98vw;
    }

    .single-property-contactform-box h2,
    .single-property-contactform-box .wpcf7-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    .single-property-contactform-box h2::after,
    .single-property-contactform-box .wpcf7-title::after {
        width: 32px;
        height: 2px;
        margin: 6px auto 0 auto;
    }

    .single-property-contactform-box .wpcf7-submit,
    .single-property-contactform-box input[type="submit"] {
        font-size: 1rem;
        padding: 10px 24px;
    }
}

@media (max-width: 1024px) {
    .single-property-content {
        flex-direction: column;
        gap: 24px;
    }

    .single-property-slider-area,
    .single-property-info-area {
        max-width: 100%;
    }
}

/* プライバシーポリシー本文用レイアウト */
.privacy-policy-content {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 60px;
}

.privacy-policy-content h2 {
    font-size: 2.0rem;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.privacy-policy-content h2:first-child {
    margin-top: 0;
}

.privacy-policy-content p {
    margin-bottom: 1.6em;
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 2;
}

.privacy-policy-content ul {
    margin-bottom: 1.6em;
    padding-left: 1.5em;
}

.privacy-policy-content ul li {
    list-style: disc;
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    color: var(--color-text);
}

@media (max-width: 600px) {
    .privacy-policy-content {
        max-width: 100vw;
        padding: 24px 4vw 0 4vw;
    }

    .privacy-policy-content h2 {
        font-size: 1.3rem;
        margin-top: 2em;
        margin-bottom: 0.8em;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul li {
        font-size: 1.1rem;
    }
}

@media (max-width: 787px) {
    .l-container {
        width: 100%;
        padding: 0 14px;
    }
}

.pc-only {
    display: inline-flex !important;
}

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

@media (max-width: 787px) {
    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: inline-flex !important;
        margin-top: 40px;
        justify-content: center;
        align-items: center;
        /* width: 100%; ← 削除 */
    }

    .top-news-list-btn-center {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-common {
        margin-top: 100px;
    }

    .l-inner {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .card03 .slide-media {
        padding-top: 0;
    }

    .section-dot {
        width: 10px;
        height: 10px;
    }

    .section-header {
        margin-bottom: 24px;
    }
}

@media (max-width: 599px) {
	
	.single-property-tel-number,
	.single-property-tel-icon{
		font-size: 3rem;
	}

    .single-property-detail-table,
    .single-property-detail-table tbody,
    .single-property-detail-table tr {
        display: block;
        width: 100%;
    }


    .single-property-detail-table th,
    .single-property-detail-table td {
        vertical-align: top;
        box-sizing: border-box;
        border-right: none;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
    }

    .single-property-detail-table th {
        width: 32%;
        background: #f8fafc;
        font-weight: bold;
        color: var(--color-text);
        text-align: left;
    }

    .single-property-detail-table td {
        width: 68%;
        color: var(--color-text);
        text-align: left;
    }

    /* 1行にth,tdが2セットある場合は折り返す */
    .single-property-detail-table tr {
        display: flex;
        flex-wrap: wrap;
    }

    .single-property-detail-table th,
    .single-property-detail-table td {
        width: 32%;
        min-width: 32%;
        max-width: 32%;
    }

    .single-property-detail-table td {
        width: 68%;
        min-width: 68%;
        max-width: 68%;
    }

    /* 設備（colspan=3）は全幅 */
    .single-property-detail-table td[colspan="3"] {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        display: block;
        margin-top: 8px;
    }
}

/* ========== お知らせ詳細ページ ========== */
.news-article-section {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    width: 93.75vw;
}

.news-article-content {
    background: #fff;
    border-radius: 8px;
}

.news-article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.news-article-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1.4 !important;
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.news-article-date {
    color: #666;
    font-weight: 500;
}

.news-article-cat {
    display: inline-block;
    min-width: 90px;
    text-align: center;
    color: #469ABF;
    border: 1.5px solid #469ABF;
    border-radius: 999px;
    font-weight: 500;
    background: #fff;
    padding: 6px 24px;
    box-sizing: border-box;
}

.news-article-body {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--color-text);
}

.news-article-body h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 2.5em;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #e5e5e5;
    line-height: 1.4 !important;
}

.news-article-body h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1.2em;
    line-height: 1.4 !important;
    padding-left: 1em;
    border-left: 4px solid #469ABF;
}

.news-article-body p {
    margin-bottom: 1.8em;
}

.news-article-body a {
    color: #469ABF;
    text-decoration: underline;
}

.news-article-body a:hover {
    text-decoration: none;
}

.news-article-body img {
    max-width: 100%;
    height: auto;
    margin: 2em 0;
    border-radius: 8px;
}

.news-article-body ul,
.news-article-body ol {
    margin-bottom: 1.8em;
    padding-left: 2em;
}

.news-article-body li {
    margin-bottom: 0.8em;
}

.news-article-body ul li {
    list-style-type: disc;
}

.news-article-body ol li {
    list-style-type: decimal;
}

@media (max-width: 787px) {

    .news-article-title {
        font-size: 2.2rem;
    }
}

.pagination-container {
	max-width: 1100px;
    margin: 0 auto;
    width: 93.75vw;
	text-align: center;
}