.br-pc {
    display: none;
}

@media screen and (min-width: 768px) {
    .br-pc {
        display: block;
    }
}


/* デザイン共通スタイル */
.p-property-detail {
    padding: 40px 0 0;
    background: #FAFAF8;
    letter-spacing: 0.8px;
}

@media screen and (min-width: 768px) {
    .p-property-detail {
        padding: 100px 0 0;
    }
}

/* パンくずリスト */
.c-breadcrumb {
    padding: 20px 0;
}

.c-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.c-breadcrumb li {
    display: flex;
    align-items: center;
}

.c-breadcrumb li a {
    text-decoration: none;
    color: #333;
}

/* 区切り文字「＞」をデザイン通りに追加 */
.c-breadcrumb li:not(:last-child)::after {
    content: "＞";
    margin: 0 10px;
    font-size: 12px;
    color: #333;
}

/* ヘッダーエリア */
.p-property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    margin-bottom: 40px !important;
}

/* 物件タイトル */
.p-property-header__title {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 1.9px;
}

.p-property-header__price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (min-width: 1024px) {
    .p-property-header__price-wrapper {
        flex-direction: row;
        align-items: end;
    }
}

/* タグ（新築戸建・尼崎市） */
.p-property-header__tags {
    display: flex;
    gap: 8px;
}

.c-tag {
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid #538BBD;
    color: #538BBD;
    border-radius: 4px;
    background: #fff;
    font-weight: bold;
}

/* 価格エリア */
.p-property-header__price {
    color: #538BBD;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: baseline;
    margin-bottom: -5px; /* 下線とのバランス調整 */
}

.p-property-header__price .number {
    font-size: 48px;
    letter-spacing: 0.05em;
}

.p-property-header__price .unit {
    font-size: 25px;
    margin-left: 5px;
    color: #333;
}

/* スマホ対応 */
@media (max-width: 767px) {
    .p-property-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .p-property-header__title {
        font-size: 28px;
    }
    .p-property-header__price .number {
        font-size: 40px;
    }
}

.p-property-header__price .number { font-size: 48px; }

.p-property-top-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px !important;
}

@media screen and (min-width: 768px) {
    .p-property-top-content {
        flex-direction: row;
        gap: 60px;
    }
}

/* Swiper カスタマイズ */
.p-property-gallery {
    max-width: 600px;
}

.swiper-property {
    margin-bottom: 20px;
}

.swiper-property .swiper-wrapper {
    height: auto;
}

/* Swiperボタンのデフォルトアイコンを消す */
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* ボタン自体の装飾（白丸・黒枠） */
.swiper-button-prev,
.swiper-button-next {
    width: 46px;
    height: 46px;
    border: 2px solid #212121;
    border-radius: 50%;
}

/* 内部に角丸の「くの字」を描画 */
.swiper-button-prev::before,
.swiper-button-next::before {
    content: "";
    width: 13px;
    height: 13px;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
}

/* 左矢印 */
.swiper-button-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

/* 右矢印 */
.swiper-button-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

.swiper-thumbnail .swiper-slide {
    cursor: pointer;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.swiper-thumbnail .swiper-wrapper {
    height: auto;
}

.swiper-thumbnail .swiper-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

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

.p-property-intro {
    line-height: 1.7;
}

/* おすすめポイント枠 */
.c-point-box {
    background-color: #DCE8F2;
    padding: 20px;
    border-left: 3px solid #538BBD;
    margin: 20px 0;
    color: #4a7ebb;
    line-height: 2;
}

.c-point-box__text {
    color: #4a7ebb;
}

.c-heading-main {
    font-size: 32px;
    color: #4a7ebb;
    margin-bottom: 20px;
}

/* ===============================
    TABLE：SP（デフォルト）は縦積み
=============================== */

.c-table-spec,
.c-table-spec tbody,
.c-table-spec tr,
.c-table-spec th,
.c-table-spec td {
    display: block;
    width: 100%;
}

.c-table-spec {
    background-color: #fff;
    border-top: none;
    margin-bottom: 30px;
}

.c-table-spec tr {
    border-bottom: 1px solid #DDD;
}

.c-table-spec th {
    padding: 20px;
    font-weight: bold;
    color: #727271;
    border: none;
    width: 100%;
    font-size: 16px;
}

.c-table-spec td {
    padding: 0 20px 20px;
    border: none;
    font-size: 16px;
    line-height: 1.7;
}

.c-table-spec tr.is-2col td:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid #DDD;
}

@media screen and (min-width: 768px) {

    .c-table-spec tbody {
        display: table-row-group;
        }

    .c-table-spec,
    .c-table-spec tbody,
    .c-table-spec tr,
    .c-table-spec th,
    .c-table-spec td {
        display: table-row-group;
        width: auto;
    }

    .c-table-spec {
        width: 100%;
        border-collapse: collapse;
        border-top: 1px solid #DDD;
        margin-bottom: 30px;
        line-height: 1.7;
        display: table;
    }

    .c-table-spec tr {
        display: table-row;
        padding: 0;
    }

    .c-table-spec th,
    .c-table-spec td {
        display: table-cell;
        padding: 20px 25px;
        border-bottom: 1px solid #DDD;
    }

    .c-table-spec th {
        width: 190px;
        color: #727271;
        text-align: left;
        vertical-align: middle;
    }

    .c-table-spec tr.is-2col td:nth-child(2) {
        border-right: 40px solid #fff;
        border-bottom: none;
    }
}


.c-table-note {
    margin-bottom: 70px;
    line-height: 1.7;
}

.p-property-map {
    height: 370px;
    margin-bottom: 70px;
}

.p-property-facilities .c-heading-main {
    margin-top: 80px;
    margin-bottom: 40px;
}

.p-property-facilities__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .p-property-facilities__wrapper {
        flex-direction: row;
        gap: 80px;
    }
}

.p-property-facilities__list {
    max-width: 450px;
}

.p-property-facilities__list li {
    font-size: 15px; 
    margin-bottom: 15px;
    padding-left: 30px; 
    position: relative;
    color: #333;
}

.p-property-facilities__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em; 
    width: 12px;
    height: 12px;
    background-color: #6E91C0;
    border-radius: 50%;
}

.p-property-contact {
    padding: 80px 0 100px;
}

.p-property-contact__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.p-property-contact__box {
    flex: 1;
    max-width: 450px;
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-property-contact__box.is-line {
    box-shadow: 0px 0px 11px #06C75527;
}

.p-property-contact__box.is-mail {
    box-shadow: 0px 0px 10px #D2993826;
}

.c-btn-line img, .c-btn-mail img {
    width: 24px;
    height: auto;
}

.p-property-contact__lead {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.c-btn-line, .c-btn-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 70px;
    border-radius: 36px;
    color: #fff;
    text-decoration: none;
    font-size: 19px;
}

.c-btn-line {
    padding: 20px 40px;
    background-color: #06C755;
}

.c-btn-mail {
    padding: 20px 25px;
    background-color: #D29938;
}

.c-btn-line img {
    width: 33px;
    height: auto;
}

.c-btn-mail img {
    width: 25px;
    height: auto;
}

/* スマホ対応 */
@media (min-width: 768px) {

    .p-property-contact__wrapper {
        flex-direction: row;
    }

    .p-property-contact__lead {
        font-size: 20px;
    }
}

/* ===============================
    関連物件(新着物件と共通)
=============================== */

.related-property .c-heading-main {
    margin-bottom: 56px;
}

.new-property {
    padding: 80px 0 130px;
    background-color: #fff;
}
.new-property a {
    opacity: 1;
}
.new-property__head {
    margin-bottom: 60px;
}
.new-property__title {
    font-size: 35px;
    color: #4a7ebb;
    display: flex;
    align-items: baseline;
    gap: 26px;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.new-property__title span {
    font-size: 25px;
    font-family: "Georgia", serif;
    font-weight: normal;
}
.new-property__lead {
    font-size: 16px;
    line-height: 2.1;
    color: #333;
}

.new-property__list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.new-property__item {
    flex: 1;
    text-decoration: none;
    color: #333;
    background-color: #FAFAF7;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.new-property__item:hover {
    background-color: #538BBD33;
}

.new-property__img-wrapper {
    position: relative;
}
.new-property__thumbnail {
    width: 100%;
    aspect-ratio: 380 / 280;
    overflow: hidden;
}
.new-property__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.new-property__item:hover .new-property__thumbnail img {
    transform: scale(1.1);
}

/* Newバッジ */
.new-property__badge {
    position: absolute;
    top: -20px; 
    right: -10px;
    width: 65px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.new-property__badge img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキストエリア */
.new-property__body {
    padding: 40px 30px;
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.new-property__name {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.new-property__address,
.new-property__spec {
    font-size: 16px;
    color: #727271;
    margin-bottom: 10px;
}

.new-property__footer {
    margin-top: auto; 
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.new-property__price {
    color: #333;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1.75px;
}
.new-property__price span {
    color: #538BBD;
    font-size: 35px;
    margin-right: 10px;
}

.new-property__arrow-css {
    position: relative;
    width: 80px;
    height: 12px;
    border-bottom: 2px solid #707070;
    transition: border-color 0.3s ease;
}
.new-property__arrow-css::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -2px;
    width: 20px;
    height: 2px;
    background-color: #707070;
    transform: rotate(35deg);
    transform-origin: right bottom;
    transition: background-color 0.3s ease;
}

.new-property__item:hover .new-property__arrow-css {
    border-color: #538BBD;
}
.new-property__item:hover .new-property__arrow-css::after {
    background-color: #538BBD;
}

/* レスポンシブ */
@media (max-width: 991px) {
    .new-property__list { gap: 15px; }
    .new-property__body { padding: 20px 15px; }
    .new-property__price span { font-size: 28px; }
}
@media (max-width: 767px) {
    .new-property__list {
        flex-direction: column;
        gap: 50px;
    }
}

.c-btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px; 
    width: 100%;
    max-width: 235px;
    height: 70px;
    margin-top: 80px;
    background-color: #538BBD;
    color: #fff;
    text-decoration: none;
    border-radius: 35px;
    font-size: 24px;
}

.c-btn-back .arrow {
    position: relative;
    width: 20px;
    margin-top: 5px;
    border-bottom: 2px solid #fff;
    border-radius: 2px;
}

.c-btn-back .arrow::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.5px;
    width: 2px;
    height: 14px;
    background-color: #fff;
    border-radius: 2px;
    transform: rotate(45deg);
    transform-origin: left bottom;
    
}