/*
Theme Name:d1_nerima-heiwadai


/* ===================================
   CSS変数定義
   =================================== */
:root {
    /* カラーパレット */
    --primitive-white: #fff;
    --primitive-light-beige: #FAF8F3;
    --primitive-beige: #FFF4E7;
    --primitive-brown: #621C0D;
    --primitive-black: #333;
    --primitive-gray: #6C6C6C;
    --primitive-green: #004F3C;

    --text-default: var(--primitive-black);
    --text-accent: var(--primitive-green);
    --text-secondary: var(--primitive-gray);
    --text-invert: var(--primitive-white);
    --background-default: var(--primitive-white);
    --background-accent: var(--primitive-green);
    --background-base: var(--primitive-beige);
    --background-base-light: var(--primitive-light-beige);
    --border-default: var(--primitive-black);
    --border-accent: var(--primitive-green);
    --border-secondary: var(--primitive-brown);
    
    /* フォントファミリー */
    --font-family-jp: "Noto Sans JP", sans-serif;
    --font-family-en: "Marcellus", serif;
    
    /* フォントサイズ */
    --font-size-10: 0.625rem; /* 10px */
    --font-size-12: 0.8rem; /* 12px */
    --font-size-14: 0.875rem; /* 14px */
    --font-size-16: 1rem; /* 16px */
    --font-size-18: 1.125rem; /* 18px */
    --font-size-20: 1.25rem; /* 20px */
    --font-size-25: 1.56rem; /* 25px */
    --font-size-30: 1.875rem; /* 30px */
    --font-size-35: 2.18rem; /* 35px */
    --font-size-50: 3.125rem; /* 50px */
    --font-size-60: 3.75rem; /* 60px */

    /* フォントウェイト */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* ブレークポイント */
    --breakpoint-600: 600px;
    --breakpoint-768: 768px;
        
    /* トランジション */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* ===================================
   既存スタイル（変更なし）
   =================================== */

/*共通*/
img {
    object-fit: contain;
}

.for-ipad {
    overflow: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
    font-weight: var(--font-weight-normal);
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--text-default);
}

/* .cont-inner {
    padding: 0 30px;
} */

.cont-inner.yellow {
    background: var(--background-skin);
    padding: var(--spacing-md);
}

.title {
    text-align: center;
    padding: 40px 0;
    line-height: 30px;
    font-weight: bold;
}

.title-detail-main {
    font-size: 36px;
    display: block;
}

.title-detail-sub {
    font-size: 12px;
}

.icon-pows {
    /* width: 1.6rem; */
    width: 20px;
    height: 20px;
}

.more-btn {
    background: #766262;
    color: #fff;
    border-radius: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}

@media screen and (max-width: 767px) {
.br_pc {
        display: none;
}
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: var(--font-size-14);
}

.section-title-en {
    font-family: var(--font-family-en);
    font-size: var(--font-size-35);
    font-weight: var(--font-weight-normal);
    color: #004F3C;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
    .section-title {
        text-align: center;
        font-size: var(--font-size-16);
    }
    
    .section-title-en {
        font-family: "Marcellus", serif;
        font-size: var(--font-size-60);
        font-weight: 400;
        color: #004F3C;
    }
}


/*ヘッダー*/
.header {
    position: fixed;
    top: 15px;
    left: 0;
    z-index: 9990;
    display: block;
    width: 100%;
    width: 100%;
    padding: 0 15px;

}

.header-inner {
    display: flex;
    justify-content: space-between;
    height: 40px;
}

.header-logo {
    display: block;
    line-height: 40px;
    width: 50%;
}

.header--sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    animation: kf-slideDown 0.5s ease-in-out;
    z-index: 20;
}

.header-menu-links {
    display: flex;
    justify-content: space-evenly;
}

.header-menu-link {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-default);
    /* border-radius: 4px; */
    padding: 10px;
    background: var(--background-base-light);
    height: 50px;
}

.header-menu-link-img {
    width: 20%;
    height: 57%;
    margin: 10px;
}

.header-menu-link-text {
    font-size: var(--font-size-14);
}


/*ハンバーガーメニュー*/
.hamburger-menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    appearance: none;
    padding: 0;
    right: -5px;
    cursor: pointer;
    background: var(--background-default);
    border: 1px solid var(--border-accent);
}

.hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 1px;
    background: var(--border-accent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
}

.hamburger-menu__bar:first-child {
    top: 16px;
}

.hamburger-menu__bar:nth-child(2) {
    top: 24px;
}

.hamburger-menu__bar:last-child {
    top: 32px;
}

.hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
}

.hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
}

.navigation {
    display: none;
    background: var(--background-base-light);
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 100vh;
}

.navigation__list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation__list-item {}

.navigation__link {
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    display: flex;
    padding: 24px;
    transition: .5s;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.navigation__button {
    text-align: center;
    max-width: 275px;
    margin: 10px auto 0;
}

.navigation__button .faq_btn_line {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
}



/*fv*/
.fv {
    position: relative;
}

.fv-main-copy {
    position: absolute;
    z-index: 10;
    color: var(--text-invert);
    bottom: 50px;
    left: 20px;
    font-size: var(--font-size-14);
}

.fv-main-copy-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fv-main-copy-point {
    background: var(--background-default);
    padding: 2px 8px;
    color: var(--text-default);
    font-weight: var(--font-weight-normal);
}

.fv-main-copy-text {
    /* background: #fff; */
    display: block;
    /* padding: 3px 5px; */
    margin-top: 5px;
    font-weight: var(--font-weight-semibold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.fv-main-copy-text-large {
	font-size: var(--font-size-30);
}

.top-mv__pcimg {
    width: 100%;
    height: 70vh; /* ビューポートの60%の高さ */
    object-fit: cover;
}

.swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}

/* 下層FV */
.lower-fv {
    height: 300px;
}

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

/*index*/
/* .title-index {
    color: #bb0813;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}

.index-wrapper {
    padding: 70px 35px;
}

.index-list {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    flex-wrap: wrap;
}

.index-list-item {
    padding-top: 10px;
}

.index-list-link {
    text-decoration: none;
    position: relative;
    border: 1px solid #7a4d34;
    border-radius: 50%;
    display: block;
    text-align: center;
    padding: 10px;
    width: 95px;
    height: 95px;
}

.index-list-img {
    width: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, 0%);
}

.index-list-text {
    display: block;
    color: #7a4d34;
    font-weight: bold;
    font-size: 0.7rem;
    padding-top: 10px;
} */

/*comingsoon*/

/* .comingsoon {
    padding: 40px 5%;
}

.comingsoon-text-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: "FOT-セザンヌ Pro DB", "CezannePro-DB", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #bb0813;
    margin: 0 auto 1.5em;
}

.comingsoon-text {
    padding: 0 5%;
}

.comingsoon-text-title-sub {
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    font-family: "FOT-セザンヌ Pro DB", "CezannePro-DB", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #bb0813;
    margin: 0 auto;
    padding: 0px 0 25px 0;
}

.comingsoon-list-item a {
    padding: 13px 80px 13px 20px;
    border-radius: 7px;
    border: solid 2px #bb0813;
    margin: 15px;
    display: block;
    color: #bb0813;
}

.comingsoon-line-wrapper {
    background: #FDF1DA;
    padding: 25px;
}

.comingsoon-line {
    text-align: center;
    display: block;
    background: #06C755;
    color: #fff;
    padding: 15px 0;
    border-radius: 4px;
    width: 90%;
    margin: 30px auto;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}

.comingsoon-line-icon {
    width: 30px;
    height: 30px;
} */

/*footer*/

.footer {
    background-color: var(--background-accent);
    color: #fff;
}

.footer-inner {
    padding: 0 30px;
}

.footer-logo {
    margin: auto;
    width: 300px;
    padding: 30px 0;
}

.icon-instagram {
    width: 1.6rem;
}

.footer-instagram {
    text-align: center;
    padding-bottom: 30px;
}

.footer-instagram-btn {
    background-color: #ffffff;
    color: #766262;
    border-radius: 10px;
    height: 70px;
    margin-top: 15px;
    font-weight: bold;
    display: block;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-instagram-btn span {
    padding: 20px;
    display: block;
}

.fnav-list {
    padding: 0 0 30px;
}

.fnav-list-item+.fnav-list-item {
    padding-top: 5px;
}

.other {
    font-size: 1.4rem;
    padding-bottom: 7px;
}

.other span {
    font-size: 1rem;
}

.icon-open-new-tab {
    width: 0.8em;
    vertical-align: text-top;
}

.info-company {
    font-size: 0.8rem;
    font-weight: normal;
}

.footer__copyright {
    text-align: center;
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid #ffffff74;
    font-size: 0.8rem;
}

/*contact-page*/

.cont-inner.beige {
    padding: 100px 0 50px 0;
    background: var(--background-base-light);
}

.contact {
   padding: 0 30px;
   /* padding: 100px 0 100px; */
   background: var(--background-base-light);
    }

.contact__text {
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: var(--font-size-14);
    text-align: center;
}

.contact_required {
    background: #BB0813;
    color: #fff;
    padding: 2px 5px;
    font-size: var(--font-size-14);
    margin-right: 5px;
}

  .contact_title {
      padding-top: 25px;
      padding-bottom: 25px;
      font-size: var(--font-size-16);
  }

label[for="name"]>span {
    font-size: 0.8rem;
}

.mwform-radio-field.horizontal-item {
    display: block;
}

.mwform-checkbox-field.horizontal-item {
    display: inline-block;
    width: 45%;
}

.mwform-radio-field.horizontal-item>label {
    align-items: center;
    display: flex;
    padding: 5px 0;
}

.mwform-checkbox-field.horizontal-item>label {
    align-items: center;
    display: flex;
    padding: 5px 0;
}

   input[type=text], input[type=email], input[type="tel"] {
    background: #fff;
    border: 0.0625rem solid var(--border-default);
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 1.6rem;
    height: 1.6rem;
    background: #fff;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-right: 5px;
    position: relative;
    padding: 0;
    border: 1px solid var(--border-default);
}

input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: var(--background-accent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.mwform-radio-field-text {
    font-size: 1rem;
}

.contact_contact {
    padding-bottom: 25px;
}

input[type="submit"] {
    background: var(--background-accent);
    color: #fff;
    height: 55px;
    line-height: 50px;
    text-align: center;
    border: none;
    display: block;
    margin: auto;
	margin-top: 75px;
    cursor: pointer;
    width: 100%;
    font-size: var(--font-size-20);
    border: 1px solid var(--border-accent);
}

   input[type="text"],input[type="email"],input[type="tel"] {
	font-size: 1rem;
}

textarea {
	font-size: 1rem;
    border: 0.0625rem solid var(--border-default);
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    line-height: 24px;
    resize: none;
    height: 200px;
	margin-bottom: 30px;
}

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

.wpcf7-list-item > label {
    align-items: center;
    display: flex;
    padding: 5px 0;
}

/*thanks-page*/

.thanks {
    height: 400px;
    text-align: center;
    padding: 100px 5px;
}

.page-title.thanks__title {
    font-size: 2rem;
    font-weight: bold;
}

.thanks__btn {
    border: solid 1px;
	color: var(--text-accent);
    padding: 20px;
    display: block;
    margin: 40px;
}

/*ctaエリア*/
.cta-area {
    text-align: center;
    padding: 50px 30px 30px;
}

.cta-area-text {
    font-weight: bold;
}

.mail {
    text-align: center;
    background: var(--background-base);
    color: var(--text-default);
    font-size: var(--font-size-14);
    height: 60px;
    line-height: 60px;
    margin-top: 15px;
}

.mail:hover {
    opacity: 70%;
    transition: 0.3s;
}

.line {
    text-align: center;
    background: #66B44B;
    color: #fff;
    font-size: var(--font-size-14);
    height: 60px;
    line-height: 60px;
    margin-top: 15px;
}

.line:hover {
    opacity: 70%;
    transition: 0.3s;
}


.icon-mail,
.icon-line {
    width: 20px;
}


/*下部フロート*/
.floating {
    position: fixed;
    bottom: 0;
    background: rgba(0, 79, 60, 0.7);
    width: 100%;
    z-index: 10;
    padding: 0 15px;
    display: none;
}

.floating.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.floating__btns {
    text-align: center;
    display: flex;
    gap: 10px;

}

.floating__btns>a {
    width: 50%;
    margin: 10px 0;
    font-size: 0.9rem;
    line-height: 1rem;
    padding: 15px 0;
    display: flex;
    justify-content: space-evenly;
}

/* property-archive */

.property-archive__cards {
    width: 1105px;
    width: 69.0625rem;
    max-width: 100%;
    margin: 0 auto;
}

.rooms {
	background: var(--background-base-light);
	padding: 50px 30px;
}

[data-filter-view]:not([data-filter-view=""]) [data-filter-key] {
    display: none;
}

[data-filter-view][data-filter-view~="1LDK"] [data-filter-key="1LDK"],
[data-filter-view][data-filter-view~="2LDK"] [data-filter-key="2LDK"] {
    display: block;
}

.filter-cond-title {
    border-bottom: 2px solid #bbb6b6;
    font-size: 0.8rem;
    padding-top: 20px;
    line-height: 2rem;
}

.service-room {
    position: relative;
    border-bottom: none;
    line-height: 1.2rem;
}

.service-room:after {
    content: "";
    border-top: 1px solid #742E1F;
    border-left: 1px solid #742E1F;
    display: inline-block;
    width: 7px;
    height: 7px;
    transform: rotate(-135deg);
    position: absolute;
    left: 85%;
    top: 58%;
}

.service-room.show::after {
    transform: rotate(45deg);
    top: 65%;
}

.filter-cond-text {
    font-size: 0.8rem;
    display: none;
}

.filter-cond-img {
    padding: 15px 0;
}

.filter-cond-note-big {
    font-weight: bold;
    padding: 0 0 15px 0;
}

.emphasis {
    font-weight: bold;
    color: #ff914d;
}

.filter-cond {
    gap: 10px;
    padding-top: 10px;
}

.filter-cond-item {
    padding-top: 10px;
}

input[type=checkbox]:checked+span.plan::before {
    background: #766262;
}

input[type=checkbox]:checked+span.plan::after {
    opacity: 1;
}

/* card */
.card {
    background: #fff;
}

.card__inner {
    display: block;
}

a.card__inner:hover {
    opacity: 1;
}

a.card__inner:hover .card__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.card__img {
    width: 100%;
    padding: 110px;
    overflow: hidden;
    position: relative;
}

.card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.card__body {
    padding: 20px 20px 25px;
}

.card__titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card__title {
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-14);

}

.card__check {
    display: inline-block;
    font-size: 14px;
    font-size: 0.875rem;
    color: #fff;
    background: #c96f6f;
    border-radius: 0.25rem;
    margin-left: 9px;
    margin-left: 0.5625rem;
    padding: 0 8px;
    padding: 0 0.5rem;
}

.card__prices {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    color: var(--text-accent);
    margin-top: 20px;
}

.card__price {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-medium);
    color: var(--text-accent);

}

.card__fee {
    margin-left: 10px;
    margin-bottom: 0.125rem;
    font-size: var(--font-size-14);
}

.card__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* color: #766262; */
    margin-top: 10px;
    margin-top: 0.625rem;
}

.card__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card__list-item+.card__list-item {
    margin-left: 11px;
    margin-left: 0.6875rem;
}

.card__list-title {
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-regular);
    color: var(--text-invert);
    background: var(--background-accent);
    padding: 5px 10px;
}

.card__list-title span {
    padding-left: 21px;
    padding-left: 1.3125rem;
    background: url(https://dearwancourt.com/bunkyo-sengoku/wp-content/uploads/pows-white.webp) no-repeat center left/16px;
    background: url(https://dearwancourt.com/bunkyo-sengoku/wp-content/uploads/pows-white.webp) no-repeat center left/1rem;
}

.card__list-text {
    margin-left: 0.4375rem;
    font-size: var(--font-size-14);
    /* color: var(--text-default); */
}

.card__breadth {
    /* color: var(--text-default); */
    margin-top: 10px;
    font-size: var(--font-size-14);
}

.card__more-wrapper {
    margin-top: 10px;
    margin-top: 0.625rem;
}

.card__more {
    /* background: #CE9470; */
    color: var(--text-accent);
    /* width: 100%; */
    /* text-align: center; */
    /* padding: 10px; */
    margin-top: 15px;
    font-size: var(--font-size-14);
    /* border-radius: 5px; */
}

/* cards */
.cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cards__item {
    width: calc(33.33333% - 1.33333rem);
    margin: 50px 10px 0;
}

/* check */
input[type=checkbox] {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

input[type=checkbox]+span {
    cursor: pointer;
    display: inline-block;
    padding-left: 27px;
    padding-left: 1.6875rem;
    position: relative;
}

input[type=checkbox]+span::before,
input[type=checkbox]+span::after {
    position: absolute;
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

input[type=checkbox]+span::before {
    border: 2px solid #766262;
    border: 0.125rem solid #766262;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 22px;
    width: 1.375rem;
    height: 22px;
    height: 1.375rem;
    border-radius: 0.25rem;
    left: 0;
    top: 50%;
}

input[type=checkbox]+span::after {
    border-bottom: 2px solid #fff;
    border-bottom: 0.125rem solid #fff;
    border-left: 2px solid #fff;
    border-left: 0.125rem solid #fff;
    height: 6px;
    height: 0.375rem;
    width: 11px;
    width: 0.6875rem;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 5px;
    left: 0.3125rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

input[type=checkbox]:checked+span::after {
    opacity: 1;
}

input[type=checkbox]:checked+span::before {
    background: #742E1F;
}

.outline-table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-top: 1px solid var(--border-default);
    border-collapse: collapse;
    font-size: 0.8rem;
}

.outline-table th {
    width: 8em;
    vertical-align: top;
    padding: 15px;
    border-bottom: 1px solid var(--border-default);
    position: relative;
    font-weight: var(--font-weight-medium);
}

.outline-table td {
    vertical-align: middle;
    padding: 15px;
    border-bottom: 1px solid var(--border-default);
}

/*declaration*/
.declaration {
    padding: 60px 0 60px;
}

.declaration-inner {
    padding: 0 30px;
}

.declaration-container {
    padding: 20px;
    border: #dfdfdf solid 1px;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.declaration-img {
    text-align: center;
}


.declaration-contents {
    margin-top: 20px;
}

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

.declaration-text {
    font-size: 12px;
    margin-top: 12px;
}

.background-color_white {
    background-color: var(--background-white);
}

.background-color_light-beige {
    background-color: var(--background-base-light);
}

.background-color_beige {
    background-color: var(--background-base);
}

.margin_auto {
    margin: auto;
}

.margin-top_60px {
    margin-top: 60px;
}

.margin-top_50px {
    margin-top: 50px;
}

.margin-top_40px {
    margin-top: 40px;
}

.margin-top_30px {
    margin-top: 30px;
}

.margin-top_20px {
    margin-top: 20px;
}

.margin-top_10px {
    margin-top: 10px;
}

.margin-top_5px {
    margin-top: 5px;
}

.margin-right_10px {
    margin-right: 10px;
}

.margin-left_10px {
    margin-left: 10px;
}

.margin-bottom_30px {
    margin-bottom: 30px;
}

.font-size_110per {
    font-size: 110%;
}

.font-size_105per {
    font-size: 105%;
}

.font-size_100per {
    font-size: 100%;
}

.font-size_95per {
    font-size: 95%;
}

.font-size_88per {
    font-size: 88%;
}

.font-size_80per {
    font-size: 80%;
}

.font-size_70per {
    font-size: 70%;
}

.font-size_65per {
    font-size: 65%;
}

.font-size_50per {
    font-size: 50%;
}

.font-size_10per {
    font-size: 10%;
}

.font-size_25px {
    font-size: 25px;
}

.font-size_8px {
    font-size: 8px;
}

.font-weight_500 {
    font-weight: 500;
}

.font-weight_bold {
    font-weight: bold;
}

/* 追加 */
.max-width_1140px {
    max-width: 1200px; /*左右パディング30pxずつ含む*/
    margin: auto;
}

/* 追加 */
.max-width_894px {
    max-width: 954px; /*左右パディング30pxずつ含む*/
    margin: auto;
}

.width_80per {
    width: 80%;
}

.width_50per {
    width: 50%;
}

.width_47per {
    width: 47%;
}

.width_33per {
    width: 33%;
}

.img_frame {
    border-radius: 10px;
}

.dotted {
    border-bottom: dashed 5px #CE9470;
}

.footer_appeal_text {
    font-weight: var(--font-weight-medium);
    text-align: center;
    padding-bottom: 20px;
}

.footer_appeal_link {
    padding: 10px;
    border: solid 1px var(--background-base-light);
    margin: 15px;
    display: block;
    color: var(--text-default);
    text-align: center;
    font-weight: bold;
    background-color: var(--background-base-light);
}

.footer_appeal_link a {
    display: block;
    text-decoration: none;
    height: 100%;
    width: 100%;
    color: inherit;
    font-weight: var(--font-weight-semibold);
    padding: 10px;
}

.arrow_right {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    line-height: 1;
    position: relative;
    width: 8%;
    height: 0.1em;
    background: currentColor;
    margin-right: 2em;
    margin-top: 0.25em;/* ボタン調整 */
}

.arrow_right::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}

/*===============
TOP
===============*/

/* 空室情報 */
.vacancy .sp-padding-container{
    padding: 50px 0;
}

.vacancy__slider {
    margin-top: 50px;
}

.vacancy-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

/* 空室情報スライダーの矢印を下中央に配置 */
.vacancy-swiper {
    position: relative;
    padding-bottom: 80px; /* 矢印のためのスペース */
}

/* スライダーが無効化された場合のスタイル */
.vacancy-swiper--disabled {
    padding-bottom: 0; /* 矢印がないのでパディングを削除 */
}

.vacancy-swiper--disabled .swiper-wrapper--flex {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    transform: none !important;
}

.vacancy-swiper--disabled .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}



.vacancy-swiper .swiper-button-prev,
.vacancy-swiper .swiper-button-next {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 40px;
    height: 40px;
    background-color: var(--background-accent);
    border-radius: 50%;
    color: var(--text-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin: 0;
}

.vacancy-swiper .swiper-button-prev {
    left: calc(50% - 55px);
}

.vacancy-swiper .swiper-button-next {
    right: calc(50% - 55px);
}

.vacancy-swiper .swiper-button-prev::after,
.vacancy-swiper .swiper-button-next::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--text-invert);
    border-right: 1px solid var(--text-invert);
    display: block;
}

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

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

/* コンセプト */
.concept-container {
    position: relative;
}

.concept-container::before {
    content: '';
    background-image: url(https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/top-deco_01.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -70px;
    right: 0;
    width: 164px;
    height: 164px;
}

.concept-contents {
    margin-top: 50px;
}

.concept-img {
    aspect-ratio: 315 /179;
    overflow: hidden;
}

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

.concept-text {
    margin-top: 50px;
}

.concept-text-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
}

.concept-text-text {
    margin-top: 25px;
    font-size: var(--font-size-14);
}

/* 特徴 */
.feature-contents {
    margin-top: 50px;
}

.feature-list-item {
    background-color: #fff;
    padding: 28px;
}

.feature-list-item + .feature-list-item {
margin-top: 40px;
}

.feature-list-item:last-child {
margin-bottom: 40px;
}

.feature-list-item-img {
}

.feature-list-item-title {
font-size: var(--font-size-16);
font-weight: var(--font-weight-medium);
padding: 20px 0;
display: flex;
align-items: flex-start;
gap: 5px;
}

.feature-list-item-title .icon-pows {
margin-top: 0.2em;
}

.feature-list-item-text {
font-size: var(--font-size-14);	
}

.feature-list-item-text a {
font-size: var(--font-size-14);
text-decoration: underline;
display: inline-block;
}

.feature-list-item-text span {
display: inline-block;
margin-left: 5px;
}

.feature-list-item-text + .feature-list-item-text {
margin-top: 10px;
}

.feature-list-item-text-note {
font-size: var(--font-size-12);
}

.feature-list-item-text + .feature-list-item-text-note {
padding-top: 20px;
}

.icon-train {
width: 1rem;
}

.map-accessinfo-inner + .map-accessinfo-inner {
margin-top: 30px;
}

.map-accessinfo-text {
font-weight: var(--font-weight-medium);
line-height: 1.2;
}

.map-accessinfo-text .icon-check {
    margin-right: 5px;
}

.map-accessinfo-text span {
   display: inline-block;
}

.map-accessinfo-text .font-accent {
    font-size: var(--font-size-20);
    color: var(--text-accent);
    display: inline;
}

.map-accessinfo-lists {
    margin-top: 10px;
}

.map-accessinfo-list-item {
    padding-bottom: 5px;
    border-bottom: 1px dashed var(--border-default);
    display: flex;
    align-items: center;
}

.map-accessinfo-list-item + .map-accessinfo-list-item {
    margin-top: 5px;
}

.map-accessinfo-list-item .icon-train {
    margin-right: 5px;
}

.map-accessinfo-list-item .font-accent {
    font-size: var(--font-size-20);
    color: var(--text-accent);
    /* display: inline-block; */
}

.map-accessinfo-note {
    font-size: var(--font-size-10);
    margin-top: 10px;
}

.feature-button {
    text-align: center;
}

.feature-more-text {
    font-size: var(--font-size-14);
    margin-bottom: 10px;
    display: inline-block;
}

/* TOP　周辺環境 */
.top-location-container {
    position: relative;
}

.top-location-container::before {
    content: '';
    background-image: url(https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/top-deco_02.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -70px;
    right: 0;
    /* width: 45%;
    height: 45%; */
    width: 164px;
    height: 164px;
}

.top-location-contents {
    margin-top: 50px;
}

.top-location-intro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    align-items: start;
    margin-top: 50px;
}

.top-location-intro-text-title {
    font-size: var(--font-size-16);
    text-align: left;
}

.top-location-intro-text-title span {
    font-weight: var(--font-weight-medium);
}

.top-location-intro-text-text {
    font-size: var(--font-size-14);
    text-align: left;
}

.top-location-intro-text-text p + p {
    margin-top: 25px;
}

.top-location-parks {
    margin-top: 50px;
    text-align: center;
}

.top-location-parks-text {
    font-size: var(--font-size-14);
}

.top-location-park-imgs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 15px;
}

.top-location-park-img {
    aspect-ratio: 315 / 180;
    overflow: hidden;
}

.top-location-park-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-location-button {
    margin-top: 50px;
    text-align: center;
}

.top-location-intro-img {
    aspect-ratio: 314 / 209;
    overflow: hidden;
}

.top-location-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 間取り */
/* .room .sp-padding-container {
    padding: 100px 0;
} */

.room-contents {
    margin-top: 50px;
}   

.swiper-roomplan {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  
  .swiper-slide-roomplan {
    flex: 0 0 auto;
    max-width: 300px;
    height: 100%;
    margin-right: 10px;
  }
  .roomplan-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .room-button {
    margin-top: 50px;
    text-align: center;
}

/* 入居者様の声 */
.voice-container {
    position: relative;
}

.voice-container::before {
    content: '';
    position: absolute;
    top: -75px;
    left: -20px;
    width: 181px;
    height: 181px;
    background-image: url(https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/top-deco_03.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.voice-contents {
    margin-top: 50px;
}

.voice_list_item {
    background: var(--background-base-light);
    height: 100%;
    /* height: 510px; */
}

.voice_list_item_contents {
    padding: 30px 20px;
}

.voice_list_item_title {
    text-align: center;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-16);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-secondary);
}

.voice_list_item_img {
    /* padding: 20px; */
    pointer-events: none;
}

.voice_list_item_text {
    text-align: justify;
    font-size: var(--font-size-14);
}

.voice_list_item_text:first-of-type {
    margin-top: 25px;
}

.voice_list_item_text + .voice_list_item_text {
    padding-top: 10px;
}

.voice_list_item_name {
    margin-top: 30px;
    text-align: center;
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
}

.swiper-pagination-voice {
    text-align: center;
    margin-top: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--background-accent) !important;
}

.voice-note {
    font-size: var(--font-size-12);
    margin-top: 30px;
}

.section_container {
    padding: 30px 30px 80px 30px;
}

.img_order {
    display: flex;
    justify-content: space-around;
}

/* FAQ */
.faq-container .sp-padding-container{
    padding-top: 0;
}

.faq-contents {
    margin-top: 50px;
}

.faq-intro-text {
    font-size: var(--font-size-14);
    text-align: center;
}

.faq-list {
    font-size: var(--font-size-16);
}

.faq-item-question {
    background: var(--background-base);
    position: relative;
    margin-bottom: 10px;
    padding: 20px 75px 20px 20px;
    cursor: pointer;
}

.faq-item-question::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.2sease-out;
    background: url(https://dearwancourt.com/bunkyo-sengoku/wp-content/uploads/ico_plus.webp) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 18px;
    content: "";
}

.faq-item-question.show::after {
    background-image: url(https://dearwancourt.com/bunkyo-sengoku/wp-content/uploads/ico_minus.webp);
}

.faq-item-answer {
    padding: 10px 20px 20px;
    margin-bottom: 10px;
    display: none;
}

.building_info {
    color: var(--text-default);
}

#building_info_point {
    /* font-weight: normal; */
}

.faq_btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* 特徴 */
.info-contents {
    margin-top: 50px;
}


/*===============
設備
===============*/

  /*　追加　*/

.equipment {
    background-color: var(--background-base-light);
}

.equipment__inner {
    padding: 100px 30px;
    background-color: var(--background-base-light);
    position: relative;
}

.equipment__intro {
    margin-top: 50px;
    font-size:  var(--font-size-14);
    text-align: center;
}

.equipment__area {
margin-top: 50px;
  background-color: #fff;
  padding: 30px 20px 30px;
}

.room-area-list-small-item {
    /* border-top: 1px dashed #766262; */
}

.equipment__area-title {
  font-weight: bold;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  display: flex;
  gap: 8px;
}

.equipment-icon-pows {
    width: 20px;
    height: 20px;
    object-fit: contain;
    align-self: flex-start;
    margin-top: 0.1em;
}

.equipment__area-list-big {
    margin-top: 30px;
}

.equipment__area-list-big-title,
.equipment__area-list-small-title {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-16);
  padding: 15px 0 10px;
  border-bottom: 1px solid var(--border-secondary);
}

.equipment__area-list-small-title span {
    font-size: var(--font-size-12);
}

.equipment__area-list-big-text,
.equipment__area-list-small-text {
    margin-top: 10px;
  font-size: var(--font-size-14);
}

.equipment__area-list-small {
    margin-top: 30px;
}

.equipment__area-list-small li + li {
    margin-top: 30px;
}

.equipment__area-list-small-item {
  display: flex;
    gap: 15px;
    align-items: center;
}

.equipment__area-list-big-img {
    aspect-ratio: 275 / 154;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment__area-list-item-small-img-wrapper {
    width: 40%;
    aspect-ratio: 105 / 152;
    overflow: hidden;
}

.equipment__area-list-item-small-img {
    width: 100%;
}

.equipment__area-list-small-text-wrapper {
  width: 60%;
}


/*===============
周辺環境
===============*/

/*===============
物件詳細
===============*/
.property_faq_title {
    color: var(--text-default);
    font-size: var(--font-size-14);
    text-align: center;
    padding: 50px 30px 0px;
}

.property_appeal_red_bold {
    color: #BB0813;
    font-weight: bold;
    font-size: 1.2rem;
}



.property-single {
    background: var(--background-base-light);
    padding: 30px 30px 100px;
}

.property-single__content {
    background-color: var(--background-default);
}

.property-single__slide {
    background: #fff;
    padding: 20px;
}

.property-single__list {
    margin-top: 10px;
    background: #fff;
    padding: 30px;
}

.property-single__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #B6B6B6;
    border-bottom: 0.0625rem solid #B6B6B6;
    padding: 13px 0;
    padding: 0.8125rem 0;
    max-height: 150px;
}

.property-single__list-title {
    font-size: var(--font-size-14);
}

.property-single__list-item-setsubi {
    max-height: 150px;
}

.property-single__title {
    font-weight: bold;
    text-align: center;
    margin: auto;
}

.page-title.other__title {
    font-size: 1rem;
    display: flex;
    padding: 17px 0px;
    font-weight: bold;
}

.property-single__header {
    padding: 15px 0;
}

/* お部屋詳細　募集中のお部屋のタイトル */
.other .equipment__area-title {
    padding-top: 50px;
    /* display: block; */
    text-align: center;
}

.u-pc {
    display: none;
}

.u-sp {
    display: block;
}

/* 768px以上でPC版を表示、SP版を非表示 */
@media screen and (min-width: 768px) {
    .u-pc {
        display: block;
    }
    
    .u-sp {
        display: none;
    }
}

.property-single__thumbnail {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 10px;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 40px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slick-arrow-prev {
    left: -8%;
}

.slick-arrow-next {
    right: -8%;
}

.slick-slide img {
    margin: auto;
}

/* .property-single__thumbnail .slick-track {
    -webkit-transform: unset !important;
    transform: unset !important;
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
} */
.property-single__thumbnail .slick-track {
    display: flex;
    width: 100%;
    transform: unset !important;
}

/* .property-single__thumbnail .slick-slide {
    display: block !important;
    float: none !important;
    width: calc(16.666% - 0.3125rem) !important;
    margin-top: 8px;
    margin-top: 0.5rem;
} */
.property-single__thumbnail .slick-slide {
    display: inline-block;
    margin-right: 8px;
    width: auto;
}

@media screen and (max-width: 767px) {
    .property-single__thumbnail .slick-slide {
        width: calc(50% - 0.46875rem) !important;
    }
}

.property-single__thumbnail .slick-slide:not(:nth-child(6n+1)) {
    margin-left: 6px;
    margin-left: 0.375rem;
}

@media screen and (max-width: 767px) {
    .property-single__thumbnail .slick-slide:not(:nth-child(6n+1)) {
        margin-left: 0;
    }
}

@media screen and (max-width: 767px) {
    .property-single__thumbnail .slick-slide:not(:nth-child(2n+1)) {
        margin-left: 0.9375rem;
    }
}

.property-single__thumbnail-item {
    cursor: pointer;
}

.property-single__thumbnail-item img {
    height: 97px;
    height: 6.0625rem;
    -o-object-fit: cover;
    object-fit: cover;
}

section.property-single>div>section.cta-area {
    padding: 50px 0 30px 0;
}

.card__title_property {
    font-size: 1.2rem;
}

.card__prices_property {
    font-size: 1.2rem;
}

.card__fee_property {
    font-size: 1rem;
    /* color: #7A4D34; */
}

.card__list-title_property {
    font-size: 0.4rem;
}

.card__list-text_property {
    font-size: 1rem;
    /* color: #7A4D34; */
}

.card__more_property {
    font-size: 1.2rem;
}

.other__slider>ul.slider__cards>li {
    margin-top: 20px;
}

.property-single__list-text {
    max-width: 80%;
}

.property-single__list-text.large {
    font-size: var(--font-size-20);
    font-weight: var(--font-weight-medium);
}

.property-single__list-text-setsubi {
    overflow: scroll;
    font-size: 0.8rem;
}


.u-pc .slick-slider .slick-list .slick-track .slick-current img {
    border: 3px solid #ff6900;
}

.thumb-item.slick-current img {
    border: 3px solid #ff6900;
}

/*===============
SP
===============*/
/* 共通 */
@media screen and (max-width: 767px) {
    .sp-dis_no {
        display: none;
    }

    .sp-margin-top_60px {
        margin-top: 60px;
    }

    .sp-margin-top_40px {
        margin-top: 40px;
    }

    .sp-margin-top_30px {
        margin-top: 30px;
    }

    .sp-margin-top_20px {
        margin-top: 20px;
    }

    .top-mv__spimg_20per {
        width: 20%;
        display: block;
        margin: auto;
    }

    /* .sp-padding_30px {
        padding: 30px;
    } */

    /* 追加 */
    .sp-padding-container {
        padding: 100px 30px;
    }

    .sp-font-size_105per {
        font-size: 90%;
    }

    .sp-font-size_80per {
        font-size: 80%;
    }
    
    /* .title_ear2 {
        position: relative;
        margin: 3em auto;
        padding: 10px 20px 10px;
        width: 60%;
        background: #fff;
        color: #BB0813;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        border: 1px solid #7A4D34;
        border-radius: 50px;
    }
    
    .title_ear2::before,
    .title_ear2::after {
        height: 3.5em;
        width: 1.75em;
        position: absolute;
        content: '';
        top: 2px;
    }
    
    .title_ear2::before {
        left: -4%;
        background: #CE9470;
        border: 2px solid #7A4D34;
        border-radius: 100px 100px;
        transform: rotate(20deg);
    }
    
    .title_ear2::after {
        right: -4%;
        background: #CE9470;
        border: 2px solid #7A4D34;
        border-radius: 100px 100px;
        transform: rotate(-20deg);
    }

    .title_merit {
        position: relative;
        margin: 2em auto;
        background: #fff;
        color: #7A4D34;
        font-size: 100%;
        font-weight: bold;
        text-align: center;
    }

    .title_merit_point {
        color: #BB0813;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        margin: 25px 0px 30px;
    } */

    .detail_btn {
        display: flex;
        align-items: center;
        color: var(--text-invert);
        text-decoration: none;
        cursor: pointer;
        background-color: var(--background-accent);
        border: 1px solid var(--border-accent);
        max-width: 315px;
        min-height: 70px;
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-regular);
        margin: 0 auto;
        justify-content: flex-end;/*ボタン調整*/
    }

    .detail_btn_text {
        padding: 15px 0px 15px 20px;
        /* width: 80%; */
        width: 75%; /*ボタン調整*/
    }

    .vacancy__btn {
        text-align: center;
    }

    .access_container {
        padding: 30px 30px 60px 30px;
    }

    /* .access_appeal_route {
        font-size: 2rem;
        color: #BB0813;
        font-weight: bold;
    }

    .access_appeal_sta {
        font-size: 1.25rem;
    }

    .access_appeal_sta_red {
        font-size: 1.75rem;
        color: #BB0813;
        font-weight: bold;
    } */

    /* .supplement {
        font-size: 72%;
        padding: 10px;
        margin-top: 20px;
        color: #444444;
    }

    .rank_container {
        padding-bottom: 20px;
        margin-top: 20px;
    }
    .rank_img {
        width: 50%;
        text-align: center;
    }
    .rank_homes {
        font-size: 70%;
        padding: 10px 20px;
    }

    .env_merit_point {
        color: #BB0813;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
    }
    .env_merit_point_no1_container {
        padding: 20px;
        width: 90%;
        margin: auto;
    }
    .env_merit_point_no1 {
        color: #BB0813;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
    }
    .env_merit_point_no1_reason {
        font-weight: bold;
        color: #444444;
        font-size: 83%;
        line-height: 1.5;
    }

    .env_appeal_black {
        font-size: 1.4rem;
        color: #000;
        font-weight: bold;
        margin-right: 5px;
    }

    .env_walk_spot {
        font-size: 80%;
        padding: 5px;
        text-align: center;
    }
    .env_walk_spot_sup {
        font-size: 70%;
        padding: 30px 10px 50px;
        color: #444;
    }
 */
    .reviews_point {
        font-weight: bold;
        color: #444444;
        font-size: 15px;
        line-height: 1.5;
        text-align: center;
        padding: 10px 0px 15px;
    }
    .reviews_sup {
        padding: 50px 0px;
        font-size: 105%;
    }

    .floor_plan_intro_sizeA {
        background-color: #FDF1DA;
        border-radius: 10px;
        position: absolute;
        top: 75%;
        left: 0px;
        width: 100%;
    }

    .floor_plan_intro_sizeB {
        background-color: #FDF1DA;
        border-radius: 10px;
        position: absolute;
        top: 77.5%;
        left: 0px;
        width: 100%;
    }

    .floor_plan_intro_sizeC {
        background-color: #FDF1DA;
        border-radius: 10px;
        position: absolute;
        top: 74%;
        left: 0px;
        width: 100%;
    }

    .footprints {
        display: block;
        width: 37%;
        margin-top: 60px;
    }

    .m-breadcrumb {
        color: var(--text-default);
        font-size: var(--font-size-12);
        padding: 25px 20px;
		overflow: scroll;
        white-space: nowrap;
    }

    .faq_btn {
        padding: 10px 10px 15px;
        color: var(--text-default);
        text-align: center;
        text-decoration: none;
        background-color: var(--background-base);
        border: 1px solid var(--border-default);
        font-size: 100%;
        width: 50%;
    }

    .faq_btn_line {
        padding: 10px 10px 15px;
        color: white;
        text-align: center;
        text-decoration: none;
        background-color: #66B44B;
        border: 1px solid #66B44B;
        font-size: 100%;
        width: 50%;
    }

    /*===============
周辺環境
===============*/

    .location__inner .background-color_beige {
        padding: 100px 30px 150px;
        background-color: var(--background-base);
        position: relative;
    }

    .location__inner .background-color_beige::before {
        content: '';
        display: block;
        width: 60px;
        height: 140px;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_01.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 10px;
    }

    .location__inner .background-color_beige::after {
        content: '';
        display: block;
        width: 160px;
        height: 160px;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_02.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 0;
        right: 0;
    }


    .location__intro {
        margin-top: 50px;
        font-size:  var(--font-size-14);
        text-align: center;
    }

    .location__contents {
        padding-top: 100px;
    }

    .location__contents-title {
        text-align: center;
    }

    .location__contents-title-icon {
        width: 80px;
        height: 80px;
        margin: auto;
    }

    .location__contents-title h3 {
        margin-top: 10px;
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-medium);
    }

    .location__contents-wrapper {
        margin-top: 50px;
    }

    .location__contents-wrapper {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .location__content-icon-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .location__content-icon {
        width: 20px;
        height: 20px;
        object-fit: contain;
        align-self: flex-start;
        margin-top: 0.1em;
    }

    .location__content-title {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-medium);
        margin: 0;
    }

    .location__content-text {
        font-size: var(--font-size-14);
    }

    .location__content-img {
        aspect-ratio: 315 / 191;
        width: 100%;
        height: 100%;
        /* max-width: 315px; */
        margin: 20px auto 0;
        display: block;
    }

    .location__inner .background-color_white {
        padding: 50px 30px;
        background-color: var(--background-white);
    }

    .location__inner .background-color_white .location__contents {
        padding-top: 0;
    }

    .location__content-lists {
        margin-top: 20px;
    }
    .location__content-list {
        font-size: var(--font-size-14);
    }
    .location__content-list span {
        display: block;
        text-indent: 1em;
    }

    .location__content-list + .location__content-list {
        margin-top: 5px;
    }

    .location__inner .background-color_light-beige {
        padding: 50px 0;
        background-color: var(--background-base-light);
        position: relative;
    }

    .location__inner .background-color_light-beige::before {
        content: '';
        display: block;
        width: 60px;
        height: 140px;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_01.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 15px;
        transform: scaleX(-1);
    }

    .location__inner .background-color_light-beige .location__contents {
        padding-top: 0;
    }

    .location__map {
        width: 100%;
        height: 268px;
        margin-top: 50px;
    }

    .location__map iframe {
        width: 100%;
        height: 100%;
    }

    /*===============
物件詳細
===============*/
    .property_decoration {
        width: 80%;
        margin-top: 50px;
    }

    .property_title_merit_point {
        color: var(--text-accent);
        font-size: var(--font-size-20);
        font-weight: var(--font-weight-medium);
        text-align: center;
        margin: 100px 0px 50px;
        padding: 50px 0 0;
    }

    .cost {
        max-width: 960px;
        margin: auto;
    }

    .savings__table {
        font-size: 0.8rem;
    }

    .thumb-ul {
        width: 100%;
        display: flex;
        overflow: auto;
    }

    .thumb-item img {
        z-index: 1; /* 画像が他の要素よりも上に表示されるように */
    }

    .slick-prev, .slick-next {
        display: none !important;
    }
}

/* タブレット、PCサイズの表示 */
@media screen and (min-width: 768px) {
    .pc-dis_no {
        display: none;
    }
	
	.br_sp {
        display: none;
    }

    .pc-dis_flex {
        display: flex;
    }

    .pc-juscon_even {
        justify-content: space-evenly;
    }

    .pc-juscon_cent {
        justify-content: center;
    }

    .pc-order1 {
        order: 1;
    }

    .pc-order2 {
        order: 2;
    }

    .pc-margin-top_150px {
        margin-top: 150px;
    }

    .pc-margin-top_100px {
        margin-top: 100px;
    }

    .pc-margin-top_50px {
        margin-top: 50px;
    }

    .pc-margin-top_30px {
        margin-top: 30px;
    }

    .pc-margin-top_20px {
        margin-top: 20px;
    }

    .pc-padding_100px {
        padding: 100px;
    }

    .pc-padding_50px {
        padding: 50px;
		max-width: 1240px;
		margin: auto;
    }

    /* 追加 */
    .pc-padding-container {
        padding: 200px 30px;
    }

    .pc-padding-top_150px {
        padding-top: 150px;
    }

    .pc-width_100per {
        width: 100%;
    }

    .pc-width_70per {
        width: 70%;
    }

    .pc-width_66per {
        width: 66%;
    }

    .pc-width_65per {
        width: 65%;
    }

    .pc-width_50per {
        width: 50%;
    }

    .pc-width_40per {
        width: 40%;
    }

    .pc-width_33per {
        width: 33%;
    }

    .pc-width_30per {
        width: 30%;
    }

    .pc-width_25per {
        width: 25%;
    }

    .pc-font-size_1-5rem {
        font-size: 1.5rem;
    }

    .pc-font-size_105per {
        font-size: 105%;
    }
    .pc-font-size_95per {
        font-size: 95%;
    }

    .pc-text-align_cent {
        text-align: center;
    }

    .top-mv__pcimg_10per {
        width: 10%;
        display: block;
        margin: auto;
    }

    .breadcrumbs {
        color: #7A4D34;
        font-size: 0.8em;
        padding: 25px 0px;
		max-width: 1240px;
		margin: auto;
    }

    /*===============
    TOP
    ===============*/

    /* 空室情報 */
    .vacancy .pc-padding-container{
        padding: 100px 0;
    }

    .vacancy__slider {
        margin-top: 100px;
    }

    .vacancy-swiper .swiper-slide {
        width: 280px;
    }

    .vacancy-swiper {
        padding-bottom: 80px;
    }
    
    .vacancy-swiper .swiper-button-prev,
    .vacancy-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
    }
    
    .vacancy-swiper .swiper-button-prev {
        left: calc(50% - 85px);
    }
    
    .vacancy-swiper .swiper-button-next {
        right: calc(50% - 85px);
    }
    
    .vacancy-swiper .swiper-button-prev::after,
    .vacancy-swiper .swiper-button-next::after {
        width: 10px;
        height: 10px;
    }

    /* 空室情報スライダーの中央寄せ */
    .vacancy-swiper--disabled .swiper-wrapper--flex {
        gap: 30px;
    }   


    /* コンセプト */

    .concept-container::before {
        /* width: 337px;
        height: 337px; */
        width: 30%;
        height: 30%;
        bottom: unset;
        top: 70px;
        right: -5%;
    }

    .concept-contents {
        display: flex;
        gap: 50px;
        align-items: center;
        margin-top: 100px;
    }

    .concept-img {
        width: 41%;
        aspect-ratio: 344 / 391;
        overflow: hidden;
    }

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

    .concept-text {
        width: 59%;
        margin-top: 0;
    }

    .concept-text-title {
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
    }

    .concept-text-text {
        font-size: var(--font-size-16);
    }

    .concept_env_text_appeal {
        font-weight: bold;
        color: #444444;
        font-size: 25px;
        line-height: 1.5;
    }
    .concept_env_text_small {
        font-weight: bold;
        color: #444444;
        font-size: 12px;
        line-height: 1.5;
    }

    /* 特徴 */
    
      .feature-list {
        display: flex;
        justify-content: space-evenly;
        gap: 30px;
      }
    
      .feature-list-item {
        margin-top: 40px;
        width: 50%;
        /* width: calc(100% / 2 - 50px); */
        height: 525px;
      }

      .feature-list-item-text {
        font-size: var(--font-size-16);
      }

      .feature-list-item-text a {
        font-size: var(--font-size-14);
      }
    
      .feature-list-item-img {
        width: 95%;
        margin: auto;
        display: block;
      }
          
         .feature-list-item-big {
              max-width: 900px;
              width: 100%;
              display: flex;
              margin: auto;
              margin-top: 40px;
             height: auto;
             gap: 30px;
          }
          
           .map-near-station-img2 {
              width: 54%;
          }
    
          .map-accessinfo-inner-wrapper {
            width: 46%;
          }

          .map-accessinfo-text {
           font-weight: var(--font-weight-regular); 
          }

          .map-accessinfo-text .font-accent {
            font-size: var(--font-size-25);
          }

          .feature-button {
            margin-top: 100px;
          }
            
          .fearure-more-text {
            font-size: var(--font-size-16);
          }
    
    /* TOP 周辺環境 */
    .top-location-container::before {
        content: '';
        background-image: url(https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/top-deco_02.webp);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: -70px;
        right: 0;
        width: 30%;
        height: 30%;
        /* width: 324px;
        height: 324px; */
    }

    .top-location-intro {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 88px auto;
        gap: 20px 40px;
        align-items: center;
        margin-top: 100px;
    }
    .top-location-intro-img {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        /* 画像を左側に固定 */
    }
    .top-location-intro-text-title {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin-bottom: 20px;
        text-align: left;
        font-size: var(--font-size-25);
    }

    .top-location-intro-text-title span {
        display: block;
        margin-top: 8px;
        font-weight: var(--font-weight-medium);
    }

    .top-location-intro-text-text {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        text-align: left;
        align-self: start;
        font-size: var(--font-size-16);
    }

    .top-location-parks {
        margin-top: 100px;
    }

    .top-location-parks-text {
        font-size: var(--font-size-16);
    }

    .top-location-park-imgs { 
        margin-top: 30px;
        flex-direction: row;
        gap: 40px;
    }

    .top-location-park-img {
        width: 50%;
    }

    .top-location-button {
        margin-top: 100px;
    }
    
    /* 間取り */
    /* .room .pc-padding-container {
        padding: 200px 0;
    } */

    .room-contents {
        margin-top: 100px;
    }   

    .swiper-roomplan::-webkit-scrollbar {
        /* display: none; */
    }

    .swiper-slide-roomplan {
        overflow: hidden;
        /* width: 30%; */
        max-width: 370px;
    }

    .roomplan-img {
        height: 370px;
    }

    .roomplan-img:hover {
        transform:scale(1.1,1.1);
        transition:1s all;
    }

    .room-button {
        margin-top: 100px;
    }

    /* 入居者様の声 */
    .voice-container::before {

        /* width: 326px;
        height: 326px; */
        width: 30%;
        height: 30%;
        top: -40px;
        left: -30px;
    }

    .voice-contents {
        margin-top: 100px;
    }

    .swiper_voice {
        overflow: hidden;
        cursor: pointer;
    }
        
    .voice_list_item {
        height: auto;
    } 
    
    .voice_list_item_title {
        font-size: var(--font-size-18);
        padding-bottom: 20px;
    }
    
    .voice_list_item_text {
        font-size: var(--font-size-16);
    }

    .voice_list_item_name {
        font-size: var(--font-size-16);
        font-weight: var(--font-weight-medium);
    }

    .voice-note {
        font-size: var(--font-size-14);
    }
    
    .detail_btn {
        display: flex;
        align-items: center;
        color: #FFF;
        text-decoration: none;
        cursor: pointer;
        background-color: var(--background-accent);
        border: 1px solid var(--border-accent);
        max-width: 350px;
        min-height: 70px;
        font-size: var(--font-size-18);
        margin: auto;
        transition: 0.3s;
        justify-content: flex-end;
    }
	
	.detail_btn:hover {
        opacity: 70%;
    }

    .detail_btn_text {
        padding: 15px 0px 15px 30px;
        /* width: 80%; */
        width: 73%; /*ボタン調整*/
    }

    .arrow_right {
        display: inline-block;
        vertical-align: middle;
        color: #FFF;
        line-height: 1;
        position: relative;
        width: 8%;
        height: 0.1em;
        background: currentColor;
        margin-right: 2em;
        margin-top: 0.2em;/* ボタン調整 */
    }

    .arrow_right::before {
        content: '';
        width: 0.65em;
        height: 0.65em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        border-right: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: -0.05em;
        box-sizing: border-box;
    }

    .vacancy__btn {
        text-align: center;
    }

    /* .detail_btn {
        display: inline-block;
        position: relative;
        padding: 18px 85px 15px;
        align-items: center;
        color: #FFF;
        text-decoration: none;
        cursor: pointer;
        background-color: var(--background-accent);
        border: 1px solid var(--border-accent);
        max-width: 350px;
        min-height: 70px;
        font-size: var(--font-size-18);
        margin: auto;
        transition: 0.3s;
    }
	
	.detail_btn:hover {
        opacity: 70%;
    }

    .arrow_right {
        position: absolute;
        top: 50%;
        right: 0;
        display: inline-block;
        vertical-align: middle;
        color: #FFF;
        line-height: 1;
        position: relative;
        width: 8%;
        height: 0.1em;
        background: currentColor;
        margin-right: 2em;
    }

    .arrow_right::before {
        content: '';
        width: 0.65em;
        height: 0.65em;
        border: 0.1em solid currentColor;
        border-left: 0;
        border-bottom: 0;
        border-right: 0;
        transform: rotate(45deg);
        transform-origin: top right;
        position: absolute;
        top: 50%;
        right: -0.05em;
        box-sizing: border-box;
    } */



    /* FAQ */

    .faq-contents {
        margin-top: 100px;
    }  

    .faq-intro-text {
        font-size: var(--font-size-20);
        font-weight: var(--font-weight-medium);
    }

    .faq-list {
        font-size: 16px;
    }

    .faq-item-question {
        background: var(--background-base);
        position: relative;
        margin-bottom: 10px;
        padding: 20px 75px 20px 20px;
        cursor: pointer;
    }

    .faq-item-question::after {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        transition: all 0.2sease-out;
        background: url(https://dearwancourt.com/bunkyo-sengoku/wp-content/uploads/ico_plus.webp) no-repeat center;
        background-size: contain;
        width: 18px;
        height: 18px;
        content: "";
    }

    .faq-item-answer {
        padding: 10px 20px 20px;
        margin-bottom: 10px;
        display: none;
    }

    .building_info {
        color: var(--text-default);
    }

    #building_info_point {
        /* font-weight: normal; */
    }

    .faq_btn-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 50px;
    }

    .faq_btn {
        padding: 10px 10px 15px;
        color: var(--text-default);
        text-align: center;
        text-decoration: none;
        background-color: var(--background-base);
        border: 1px solid var(--border-default);
        font-size: var(--font-size-25);
        width: 50%;
    }
	
    .faq_btn:hover {
       opacity: 70%;
    }

    .faq_btn_line {
        padding: 10px 10px 15px;
        color: white;
        text-align: center;
        text-decoration: none;
        background-color: #66B44B;
        border: 1px solid #66B44B;
        font-size: var(--font-size-25);
        width: 50%;
    }
	
    .faq_btn_line:hover {
       opacity: 70%;
    }

    /*===============
    設備
    ===============*/
    .equipment__inner {
        max-width: 1140px;
        margin: 0 auto 0;
        padding: 100px 30px;
    }
    
    .equipment__intro {
        margin-top: 100px;
        font-size:  var(--font-size-16);
        text-align: center;
    }
        
    .equipment__area {
        margin-top: 100px;
        padding: 50px;		
        }

        .equipment__area--pc {
            position: relative;;
        }

        .equipment__area--pc::before {
            content: '';
            display: block;
            /* width: 382px;
            height: 382px; */
            width: 30%;
            height: 30%;
            background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/equipment-deco.webp');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            position: absolute;
            bottom: 80px;
            right: 0;
        }
    
        .equipment__area-title {
            font-size: var(--font-size-25);
            font-weight: var(--font-weight-medium);
        }

        .equipment-icon-pows {
            width: 30px;
            height: 30px;
        }
    
    .equipment__area-list-big {
            display: flex;
            column-gap: 30px;
        }
        
    .equipment__area-list-big-img {
            width: 53%;
        }
        
    .equipment__area-list-small {
        margin-top: 50px;
        }
        
    .equipment__area-list-small-item {
            display: block;
            border: none;
    }

    .equipment__area-list-small li + li {
        margin-top: 0;
    }
        
    .equipment__area-list-big-text-wrapper {
        width: 47%;
        }

    .equipment__area-list-big-title,
    .equipment__area-list-small-title {
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
        padding-bottom: 15px;
    }

    .equipment__area-list-big-text,
    .equipment__area-list-small-text {
        font-size: var(--font-size-16);
        margin-top: 15px;
    }
    
    .equipment__area-list-small {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 38px;
    }
        
    .equipment__area-list-small-item + .equipment__area-list-small-item {
        border-top: none;
    }
        
    .equipment__area-list-small-item img {
    aspect-ratio: 320 / 180;
      width: 100%;
      height: auto;
      object-fit: cover;
    }
        
    .equipment__img {
        background-position: center 43%;
    }
  
    .equipment__area-list-small-text-wrapper {
        width: 100%;
    }

    /*===============
    周辺環境　
    ===============*/

    .location__inner .background-color_beige {
        padding: 100px 30px;
        background-color: var(--background-base);
        position: relative;
    }

    .location__inner .background-color_beige::before {
        content: '';
        display: block;
        width: 122px;
        height: 284px;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_01.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: calc(50% - min(45vw, 600px));
    }

    .location__inner .background-color_beige::after {
        content: '';
        display: block;
        /* width: 326px;
        height: 326px; */
        width: 30%;
        height: 30%;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_02.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: -250px;
        right: 0;

    }


    .location__intro {
        margin-top: 50px;
        font-size:  var(--font-size-16);
        text-align: center;
    }

    .location__contents {
        padding-top: 100px;
    }

    .location__contents-title {
        text-align: center;
    }

    .location__contents-title-icon {
        width: 110px;
        height: 110px;
        margin: auto;
    }

    .location__contents-title h3 {
        margin-top: 10px;
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
    }

    .location__contents-wrapper {
        margin: 100px auto 0;
        display: flex;
        flex-direction: row;
        gap: 50px;
        max-width: 1140px;
    }

    .location__content-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .location__contents-wrapper.flex-2col .location__content-item {
        width: 50%;
    }

    .location__content-icon-title {
        display: flex;
        gap: 10px;
        flex-basis: 76px;
    }

    .location__content-icon {
        width: 30px;
        height: 30px;
        object-fit: contain;
        align-self: flex-start;
        margin-top: 0.1em;
    }

    .location__content-title {
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
        margin: 0;
    }

    .location__content-text {
        font-size: var(--font-size-16);
    }
    
    .location__content-img {
        width: 100%;
        /* max-width: 315px; */
        margin: 30px auto 0;
        display: block;
    }

    .location__inner .background-color_white {
        padding: 100px 30px;
        background-color: var(--background-white);
    }

    .location__inner .background-color_white .location__contents {
        padding-top: 0;
    }

    .location__contents-wrapper.flex-3col .location__content-item {
        width: 33.33%;
    }

    .location__content-lists {
        margin-top: 20px;
    }
    .location__content-list {
        font-size: var(--font-size-16);
    }
    .location__content-list span {
        display: block;
        text-indent: 1em;
    }

    .location__content-list + .location__content-list {
        margin-top: 5px;
    }

    .location__inner .background-color_light-beige {
        padding: 100px 0;
        background-color: var(--background-base-light);
        position: relative;
    }

    .location__inner .background-color_light-beige::before {
        content: '';
        display: block;
        width: 122px;
        height: 284px;
        background-image: url('https://dearwancourt.com/nerima-heiwadai/wp-content/uploads/location-deco_01.webp');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: calc(50% - min(45vw, 620px));
        transform: scaleX(-1);
    }

    .location__inner .background-color_light-beige .location__contents {
        padding-top: 0;
    }

    .location__map {
        max-width: 1140px;
        margin: 100px auto 0;
        width: 100%;
        height: 528px;
    }

    .location__map iframe {
        width: 100%;
        height: 100%;
    }

    /*===============
    物件詳細
    ===============*/
    .property_title_merit_point {
        color: var(--text-accent);
        font-size: var(--font-size-25);
        text-align: center;
        margin: 10px 0px 0px;
    }

    .property_faq_title {
        color: var(--text-default);
        font-size: var(--font-size-16);
        text-align: center;
        padding: 50px 30px 0px;
    }

    .property_faq_title br {
        display: none;
    }

    .property_decoration {
        width: 50%;
        margin-top: 50px;
    }

    .property_appeal_red_bold {
        color: #BB0813;
        font-weight: bold;
        font-size: 1.2rem;
    }

    .property_appeal_img {
        display: block;
        width: 90%;
        margin: auto;
        margin-bottom: 50px;
    }

    .cost {
        max-width: 1240px;
        margin: auto;
    }

    .savings__table {
        font-size: 0.8rem;
        width: 1240px;
        margin: auto;
    }

    .savings__table thead {
        font-size: 15px;
    }

    .savings__table tbody {
        font-size: 15px;
    }

    .savings__table tbody td {
        padding: 20px;
    }

    .savings__table thead th {
        font-size: 1rem;
    }

    .cost-note {
        display: block;
        margin: auto;
        max-width: 685px;
    }

    .icon-double-arrow {
        width: 5%;
        padding-top: 40px;
    }

    .cost-compare {
        margin-top: 40px;
    }

    .cost-compare-text-main {
        font-size: 1.4rem;
    }

    .cost-compare-text-sub {
        font-size: 1rem;
        text-align: center;
        padding-top: 25px;
    }



    .property-single {
        padding: 80px 28px 100px 28px;
    }
	
	section.property-single > div.l-inner {
		max-width: 1240px;
		margin: auto;
	}

    /* お部屋詳細　募集中のお部屋のタイトル */
    .other .equipment__area-title {
    padding-top: 100px;

}

    .u-pc {
        display: block;
    }

    .property-single__content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        background: #fff;
        padding: 80px;
        max-width: 1200px;
        margin: auto;
    }

    .other {
        max-width: 1200px;
        margin: auto;
    }

    section.property-single>div>section.cta-area {
        max-width: 960px;
        margin: auto;
    }

    .property-single__slide {
        width: 54%;
        box-shadow: none;
    }


    .property-single__side {
        width: 39%;
    }

    .property-single__slider-wrapper {
        position: relative;
    }

    .property-single__icon {
        position: absolute;
        right: 25px;
        right: 1.5625rem;
        bottom: 23px;
        bottom: 1.4375rem;
        width: 117px;
        width: 7.3125rem;
        max-width: 100%;
        cursor: pointer;
    }

    .property-single__slider-item img {
        height: 660px;
        height: 41.25rem;
        -o-object-fit: cover;
        object-fit: cover;
    }


    .property-single__thumbnail {
        padding: 0 10px;
        padding: 0 0.625rem;
    }

    .property-single__thumbnail .slick-track {
        -webkit-transform: unset !important;
        transform: unset !important;
        width: 100% !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .property-single__thumbnail .slick-slide {
        display: block !important;
        float: none !important;
        width: calc(16.666% - 0.3125rem) !important;
        margin-top: 8px;
        margin-top: 0.5rem;
    }

    .property-single__thumbnail .slick-slide:not(:nth-child(6n+1)) {
        margin-left: 6px;
        margin-left: 0.375rem;
    }


    .property-single__thumbnail-item {
        cursor: pointer;
    }

    .property-single__thumbnail-item img {
        height: 97px;
        height: 6.0625rem;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .property-single__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }


    .property-single__link {
        display: block;
        text-align: center;
        width: 162px;
        width: 10.125rem;
        max-width: 100%;
        border: 1px solid #742E1F;
        border: 0.0625rem solid #742E1F;
        border-radius: 1rem;
        color: #742E1F;
        padding: 3px 5px;
        padding: 0.1875rem 0.3125rem;
    }

    .property-single__link span {
        letter-spacing: -0.5em;
    }

    .property-single__title {
        color: #766262;
        font-size: 32px;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.1em;
    }


    .property-single__list {
        margin-top: 10px;
        margin-top: 0.625rem;
        box-shadow: none;
    }

    .property-single__list-item-setsubi {
        max-height: 300px;
    }

    .property-single__list-text::-webkit-scrollbar {
        display: none;
    }

    .property-single__list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-bottom: 1px solid #B6B6B6;
        border-bottom: 0.0625rem solid #B6B6B6;
        padding: 13px 0;
        padding: 0.8125rem 0;
    }

    .property-single__list-title {
        font-size: var(--font-size-16);
        letter-spacing: 0.1em;
    }

    .property-single__list-text {
        margin-left: 10px;
        margin-left: 0.625rem;
    }

    .property-single__list-text.large {
        color: var(--text-default);
        font-size: var(--font-size-25);
        line-height: 1;
    }

    .property-single__items {
        margin-top: 19px;
        margin-top: 1.1875rem;
    }

    .property-single__item+.property-single__item {
        margin-top: 30px;
        margin-top: 1.875rem;
    }

    .property-single__item-title {
        color: #742E1F;
        background: url(../img/foot-icon02.png) no-repeat center left/40px;
        background: url(../img/foot-icon02.png) no-repeat center left/2.5rem;
        padding: 10px 0 10px 47px;
        padding: 0.625rem 0 0.625rem 2.9375rem;
    }

    .property-single__item-text {
        font-size: 14px;
        font-size: 0.875rem;
        margin-top: 15px;
        margin-top: 0.9375rem;
    }

    .page-title.other__title {
        font-size: 1.4rem;
    }

    .other__slider>ul>li.card {
        width: 32%;
    }

    .slick-slide img {
        max-height: 450px;
    }

    .slick-arrow {
        width: 50px;
    }

    .slick-arrow-prev {
        left: 4%;
    }

    .slick-arrow-next {
        right: 4%;
    }

    .other__slider>.slider__cards {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.savings__table thead th {
    height: 60px;
    width: 33%;
    background: #CE9470;
    color: #fff;
    /* padding: 20px 0; */
    padding: 10px 0;
    vertical-align: middle;
    font-size: 95%;
}

.savings__table tbody td {
    height: 60px;
    width: 33%;
    background: #FFF;
    text-align: center;
    /* padding: 20px 0; */
    color: #CE9470;
    vertical-align: middle;
    line-height: 1;
}

.savings__table tbody td.room_point {
    height: 60px;
    width: 33%;
    background: #CE9470;
    color: #fff;
    /* padding: 20px 0; */
    vertical-align: middle;
    line-height: 1;
}

.min {
    font-size: 0.8rem;
}

.bold {
    font-weight: bold;
    font-size: 1.4rem;
}

.pink {
    color: #c96f6f;
}

.brown {
    color: #766262;
}

.cost-note {
    font-size: 0.8rem;
}

.cost-note-text {
    padding-top: 10px;
}

.icon-double-arrow {
    display: block;
    margin: auto;
    padding-top: 20px;
    width: 15%;
}

.cost-compare {
    background: url(https://dearwancourt.com/shinagawa/wp-content/uploads/2024/11/cost.webp) no-repeat center;
    object-fit: cover;
    background-position: center 40%;
    background-size: 100%;
    color: #766262;
    padding: 25px;
    margin-top: 20px;
}

.cost-compare-text-main {
    text-align: center;
}

.cost-compare-text-sub {
    font-size: 0.8rem;
    padding-top: 25px;
}




/* notfound */
.notfound {
    padding: 200px 0;
    padding: 12.5rem 0;
    text-align: center;
}

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

    /* property-archive */
    .property-archive__check {
        padding-top: 20px;
    }

    .property-archive__cards {
        /* margin-top: 1rem; */
        margin-top: 50px;
    }

    /* cards */
    .cards {
        display: block;
    }

    .cards__item {
        width: 100%;
        max-width: 21.875rem;
        margin: 0 auto 30px auto;
        /* border-radius: 10px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
        padding: 15px 15px 20px; */
    }

    .cards__item+.cards__item {
        margin-top: 1.25rem;
    }

    .cards__item:not(:nth-child(3n+1)) {
        margin-left: auto;
    }
}

/* タブレット、PCサイズの表示 */
@media screen and (min-width: 768px) {

    /*共通*/
    .more-btn {
        width: 95%;
        margin: auto;
        margin-top: 20px;
    }

    .more-btn:hover {
        background: #997f7f;
        transition: 0.3s;
    }

    .cont-inner.beige {
        padding: 150px 0 100px 0;
		background: var(--background-base-light);
    }

    .title {
        font-size: 2rem;
        line-height: 3rem;
    }

    /*header*/
    .header {
        /* height: 110px; */
        height: 95px;
    }

    .header-inner {
        padding: 0 40px;
        height: 100%;
        /* padding-top: 18px; */
        padding-top: 8px;
    }

    .header-logo {
        width: 50%;
    }

    a.header-logo-link:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    a.header-logo-link>img {
        width: 50%;
    }

    /*footer*/
    .footer-inner {
        max-width: 960px;
        margin: auto;
    }

    .footer-logo {
        margin: 0;
    }

    .fnav-list-item>a:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    .footer-instagram {
        text-align: left;
    }

    .footer-instagram-btn {
        width: 35%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

    .hamburger-menu:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    .hamburger-menu__bar:first-child {
        top: 18px;
    }
    
    .hamburger-menu__bar:nth-child(2) {
        top: 28px;
    }
    
    .hamburger-menu__bar:last-child {
        top: 38px;
    }

    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }

    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    
    .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }    

    .header-menu-link {
        height: 60px;
    }

    .header-menu-link:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    /*ぱんくずリスト用*/
    .m-breadcrumb {
        font-size: 0.8rem;
        padding: 30px 10px 10px;
        width: 960px;
        margin: auto;
    }
	
	.m-breadcrumb::-webkit-scrollbar{
    display: none;
  }

    .m-breadcrumb ul li {
        display: inline-block;
    }

    .m-breadcrumb ul li:not(.lastChild):after {
        content: "\003e";
        display: inline-block;
        padding-left: 4px;
        clear: both;
    }



    /*タイトル*/
    .title-group {
        text-align: center;
        padding: 60px 0 40px;
        position: relative;
        display: block;
        margin: auto 1em auto;
    }

    .title-group-main {
        margin: auto;
        width: 100px;
    }

    .title-group-main:after {
        content: "";
        position: absolute;
        bottom: 70px;
        display: inline-block;
        width: 60px;
        height: 2px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #794c35;
        border-radius: 1px;
    }

    .title-group-sub {
        padding-top: 15px;
    }

    .review-title,
    .roomplan-title,
    .location-title,
    .cost-title,
    .faq-title,
    .outline-title {
        padding: 100px 0 40px;
    }

    .navigation {
        top: 110px;

    }

    .navigation__list {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .navigation__link:hover {
        opacity: 0.5;
        transition: 0.3s;
    }

    .header-menu-links {
        gap: 10px;
    }

    .header-menu-link-text {
        font-size: var(--font-size-16);
    }

    .navigation__button {
        margin: 0;
    }

    .navigation__button .faq_btn_line {
        font-size: var(--font-size-16);
        height: 60px;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1.2;
        transition: 0.3s;
    }

    .navigation__button .faq_btn_line span {
        display: block;
    }

    /*fv*/
    .fv-main-copy {
        bottom: 80px;
        left: unset;
        right: 30px;
        font-size: var(--font-size-25);
    }

    .fv-main-copy-points {
        margin-bottom: 10px;
        font-size: var(--font-size-20);
    }

    .fv-main-copy-point {

    }

    .fv-main-copy-text {
        margin-top: 8px;
    }

    .fv-main-copy-text-large {
        font-size: var(--font-size-50);
    }

    .fv-picture>img {
        width: 100%;
    }

    .fv-title {
        bottom: 10%;
        max-width: 960px;
        margin: auto;
        left: 53%;
    }

    .fv-title-icon-wrapper {
        padding-bottom: 10px;
    }

    .fv-title-icon {
        width: 150px;
    }

    .fv-title-text-sub {
        font-size: 1.6rem;
    }

    .fv-title-text-main {
        font-size: 3rem;
    }

    /* 下層FV */
    .lower-fv {
        height: 400px;
    }

    .title-index {
        font-size: 1.4rem;
        padding-bottom: 35px;
    }

    .index-list {
        justify-content: center;
        gap: 20px;
    }

    .index-list-item:hover {
        transform: scale(1.1);
        transition: all 0.2s ease-in-out;
    }

    .index-list-link {
        width: 120px;
        height: 120px;
    }

    .index-list-img {
        width: 40px;
        top: 42%;
    }

    .index-list-text {
        font-size: 0.9rem;
        padding-top: 15px;
    }

    /*contact-page*/
    .contact {
        max-width: 960px;
        margin: auto;
		/* background: #FDF1DA; */
    }

    .contact__text {
        font-size: var(--font-size-16);
    }

    input[type="submit"] {
        max-width: 580px;
    }


    input[type="submit"]:hover {
        color: var(--text-accent);
		background: var(--background-default);
        transition: 0.3s;
    }

    .mwform-checkbox-field.horizontal-item {
        width: 30%;
    }

    /*thanks-page*/
    .thanks {
        max-width: 960px;
        margin: auto;
    }

    .thanks__btn {
        max-width: 580px;
        margin: 50px auto 0;
    }

    .thanks__btn:hover {
        background: var(--background-accent);
        color: var(--text-invert);
    }

    /*ctaエリア*/
    .cta-area-btn-warpper {
        display: flex;
        justify-content: space-between;
    }

    .cta-area-btn-warpper>a {
        width: 49%;
    }

    .cta-area-text {
        padding: 16px 0;
    }

    /*下部フロート*/
    .floating__btns {
        max-width: 960px;
        margin: 7px auto;
    }

    .floating__btns>a {
        width: 50%;
        margin: 10px 0;
        font-size: var(--font-size-20);
        line-height: 3.2rem;
        padding: 4px;
        display: block;
    }

    /* 募集中のお部屋 */
    .rooms {
        padding: 50px 30px;
    }

    .rooms-list-wrapper {
        max-width: 1240px;
        margin: 100px auto 100px;
    }
	
	.rooms-list-title-sub {
		font-size: 25px;
	}

    /* card */
    .card__img {
        border-radius: 0;
    }

    .card-title {
        font-size: var(--font-size-16);
    }

    .card__price {
        font-size: var(--font-size-25);
    }

    .card__fee {
        font-size: var(--font-size-16);
    }

    .card__list-title {
        font-size: var(--font-size-16);
    }

    .card__list-text {
        font-size: var(--font-size-16);
    }

    .card__breadth {
        font-size: var(--font-size-16);
    }

    .card__more {
        font-size: var(--font-size-16);
    }

    /*comingsoon*/
    .comingsoon-line {
        width: 500px;
    }

    .comingsoon-line:hover {
        opacity: 0.7;
    }

    .comingsoon {
        max-width: 960px;
        margin: auto;
        padding: 80px 40px;
    }

    .comingsoon-text {
        text-align: center;
    }

    .comingsoon-list {
        display: flex;
        justify-content: center;
    }

    .comingsoon-list-item a {
        padding: 20px;
    }

    .comingsoon-list-item a:hover {
        color: #fff;
        background-color: #bb0813;
        transition: all 0.2s ease-out;
    }

    /* 建物情報 */
    .info-contents {
        margin-top: 100px;
    }
    

    .outline {
        /* max-width: 960px; */
        max-width: 1240px;
        margin: auto;
        padding-bottom: 70px;
    }

    .outline-inner {
        display: flex;
        /* max-width: 960px; */
        max-width: 1240px;
        margin: auto;
    }

    .outline-table {
        margin: 0;
        padding: 0;
        width: 100%;
        border-top: 1px solid var(--border-default);
        border-collapse: collapse;
        font-size: var(--font-size-14);
    }

    .outline-table th {
        width: 8em;
        vertical-align: top;
        padding: 15px;
        border-bottom: 1px solid var(--border-default);
        position: relative;
        font-weight: var(--font-weight-medium);
    }

    .outline-table td {
        vertical-align: middle;
        padding: 15px;
        border-bottom: 1px solid var(--border-default);
    }

    /*declaration*/
    .declaration {
        padding: 60px 0 60px;
    }

    .declaration-inner {
        padding: 0 30px 0;
    }

    .declaration-container {
        max-width: 960px;
        margin: 0 auto;
        padding: 30px;
    }

    .declaration-flex {
        display: flex;
        align-items: center;
        column-gap: 30px;
    }

    .declaration-img {
        width: 24%;
    }

    .declaration-contents {
        width: 72%;
        margin-top: 0;
    }

    .declaration-title {
        font-size: 16px;
    }

    .declaration-text {
        font-size: 13px;
        margin-top: 13px;
    }

}

/*article*/

#wrapper-article {
  width: 100%;
  max-width: 700px;
  padding: 0 1.4rem;
  margin: 2rem auto 0 auto;
  text-align: left;
  font-size: 0.9rem;
  padding-bottom: 10px;
}

.title-article {
  margin: 30px 0 10px 0;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px dashed;
  line-height: 1.6;
  padding-bottom: 10px;
}

.dateinfo-article {
  padding: 10px 0 20px 0;
}

h2.wp-block-heading {
  padding: 50px 0 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid;

}

h3.wp-block-heading {
  padding-top: 50px;
  font-size: 1rem;
  font-weight: bold;
}

h3.wp-block-heading::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(https://dearwancourt.com/shinagawa/wp-content/uploads/2024/11/pows.webp);
    background-position: center;
    background-size: contain;
    vertical-align: middle;
}


.wp-block-image {
	padding-top: 20px;
	margin-bottom: 0;
}

.wp-block-list {
  background: #eaeaea;
  padding: 10px;
  font-size: 0.8rem;
}

.text-article {
  padding-top: 20px;
}

.small-text-article {
  padding-top: 20px;
  font-size: 0.8rem;
}

.link-article {
  text-decoration: underline;
  overflow-wrap: break-word;
}

.review-article {
	background: #FDF1DA;
    margin: 30px 0;
    padding: 20px 10px;
}

.linebtn-artcle {
  text-align: center;
  background: #00b900;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  height: 60px;
  margin-top: 30px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

.linebtn-artcle > .link-article {
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.more-btn-article {
    text-align: center;
    background: #BB0813;
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    height: 60px;
    margin-top: 30px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
	border: 1px solid #BB0813;
}

.more-btn-article > .link-article {
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.related-post-wrap {
  padding: 10px 0;
}

.title-related-post {
  padding: 0px 0 20px 0;
  font-weight: bold;
}

.item-related-post {
  display: flex;
  border: #dfdfdf solid 1px;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.item-related-post + .item-related-post {
  margin-top: 20px;
}

.name-related-post {
  padding-top: 20px;
}

.title-related-post {
	padding: 20px 0;
}


  @media screen and (min-width: 768px) {     
	  
	  #wrapper-article {
		  font-size: 1rem;
		  padding-top: 100px;
	  }
	  
     .m-breadcrumb-article {
      width: 700px;
      margin: auto;
      }
	  
	  .more-btn-article:hover {
      background: #ffffff;
	  color: #BB0813;
    }
	  
	 .linebtn-artcle:hover {
      opacity: 70%;
    }
	  
     .list-related-post {
      display: flex;
	  gap: 3%;
    }		  
	 
     .item-related-post {
      max-width: 50%;
    }	
	  
	 .item-related-post:hover {
	  opacity: 0.6;
	 }
	  
	 .item-related-post + .item-related-post {
      margin-top: 0px;
}
	.title-related-post {
    padding-bottom: 40px;
}
}