/*
Theme Name:d1_kotake-mukaihara


/* ===================================
   CSS変数定義
   =================================== */
:root {
    /* カラーパレット */
    --primitive-white: #fff;
    --primitive-light-beige: #fffdf9;
    --primitive-beige: #ECE6E1;
    --primitive-brown: #794C35;
    --primitive-navy: #264178;
    --primitive-blue: #9BC7D3;
    --primitive-light-blue: #D7EBF2;
    --primitive-black: #333;
    --primitive-green: #06C755;
    --primitive-gray: #CBD5E0;

    --text-default: var(--primitive-black);
    --text-secondary: var(--primitive-brown);
    --text-accent: var(--primitive-navy);
    --text-invert: var(--primitive-white);
    --background-default: var(--primitive-light-beige);
    --background-default-strong: var(--primitive-beige);
    --background-secondary: var(--primitive-brown);
    --background-accent: var(--primitive-light-blue);
    --background-accent-strong: var(--primitive-blue);
    --background-accent-hover: var(--primitive-navy);
    --background-invert: var(--primitive-white);
    --background-line: var(--primitive-green);
    --background-disabled: var(--primitive-gray);
    --border-default: var(--primitive-black);
    --border-secondary: var(--primitive-brown);
    --border-accent: var(--primitive-navy);
    
    /* フォントファミリー */
    --font-family-jp: "Noto Sans JP", sans-serif;
    --font-family-en: "Montserrat", sans-serif;
    
    /* フォントサイズ */
    --font-size-8: 0.5rem; /* 8px */
    --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-22: 1.375rem; /* 22px */
    --font-size-25: 1.56rem; /* 25px */
    --font-size-30: 1.875rem; /* 30px */
    --font-size-35: 2.18rem; /* 35px */
    --font-size-40: 2.5rem; /* 40px */
    --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;
}
}

/* ===================================
    ユーティリティ
   =================================== */

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

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

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

.inner {
    padding: 0 30px;
}

.sp-padding-container {
    padding: 0 30px;
}

@media screen and (min-width: 768px) {
    .pc-padding-container {
        padding: 0 30px;
    }
}

.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;
    }
}


/* .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;
} */



/* ===================================
    コンポーネント
   =================================== */

/* セクションタイトル */
.section-title {
    text-align: center;
    position: relative;
    color: var(--text-accent);
}

.section-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 30px;
    height: 13px;
    background-image: url(../img/icon-title.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section-title-jp {
    padding-top: 10px;
    font-size: var(--font-size-35);
    font-weight: var(--font-weight-medium);
}

.section-title-jp span {
    display: inline-block;
    font-weight: inherit;
}

.section-title-en {
    font-family: var(--font-family-en);
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
    .section-title::before {
        top: 0;
        width: 40px;
        height: 19px;
    }
    

    .section-title-jp {
        padding-top: 10px;
        font-size: var(--font-size-50);
    }
    
    .section-title-en {
        font-size: var(--font-size-18);
    }
}

/* 詳細ボタン  */
.detail_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    color: var(--text-accent);
    text-decoration: none;
    cursor: pointer;
    background-color: var(--background-invert);
    border: 1px solid var(--border-default);
    max-width: 315px;
    min-height: 64px;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-semibold);
    margin: 0 auto;
    border-radius: 50px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .detail_btn {
        transition: 0.5s;
    }
    .detail_btn:hover {
        color: var(--text-invert);
        background-color: var(--background-accent-hover);
    }
}

@media screen and (min-width: 768px) {
    .detail_btn--wide {
        max-width: 700px;
    }
}

.detail_btn_text {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-semibold);
}

@media screen and (min-width: 768px) {
    .detail_btn_text {
        font-size: var(--font-size-16);
    }
}

@media screen and (min-width: 768px) {
    .detail_btn--wide .detail_btn_text {
        font-size: var(--font-size-20);
    }
}

.detail_btn_arrow {
    width: 80px;
    height: 8px;
    background-image: url(../img/arrow_btn_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* PC版ホバー時　矢印色変更 */
@media screen and (min-width: 768px) {

    .detail_btn .detail_btn_arrow {
        transition: 0.5s;
    }

    .detail_btn:hover .detail_btn_arrow {
        background-image: url(../img/arrow_btn_white_pc.svg);
    }
}

/*ヘッダー*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9990;
    display: block;
    width: 100%;
    height: 60px;
    padding: 10px;
    background-color: var(--background-secondary);
}

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

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

a.header-logo-link>img {
    max-width: 195px;
    width: 100%;
}

.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-line {
    font-size: var(--font-size-14);
    color: #fff;
    background-color: #06c755;
    border-radius: 5px;
    /* padding: 10px; */
}

.header-menu-line a {
    line-height: 1.5;
    text-align: center;
    padding: 3px 10px;
    display: block;
}

.header-menu-line span {
    display: block;
}

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

.header-menu-link {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-secondary);
    padding: 5px;
    background: var(--background-default);
    height: 37px;
    border-radius: 5px;
    transition: 0.3s;
}

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

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

.header-menu-link-text {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}


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

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

.hamburger-menu__bar:first-child {
    top: 30%;
}

.hamburger-menu__bar:nth-child(2) {
    top: 50%;
}

.hamburger-menu__bar:last-child {
    top: 70%;
}

.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-default);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 100vh;
}

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

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

.navigation__button {
    text-align: center;
    margin: 10px 0 0;
    padding-left: 24px;
}

@media screen and (min-width: 768px) {
    .navigation__button.u-pc {
        padding-left: 0;
    }
}

.navigation__button.u-sp {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    .navigation__button.u-sp {
        display: none;
    }
}

.navigation__button .faq_btn_line {
    /* display: inline-block; */
    display: flex;
    gap: 5px;
    align-items: flex-end;
    width: 100%;
    padding: 10px 20px;
    font-weight: var(--font-weight-medium);
    border-radius: 50px;
}

.navigation__button .faq_btn_line .icon-line {
    width: 20px;
}

/*footer*/
.footer {
    background-color: var(--background-secondary);
    color: #fff;
}

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

.footer-logo {
    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;
}

.footer_appeal_list {
    max-width: 270px;
}

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

.footer_appeal_link {
    padding: 10px;
    border: solid 1px var(--background-base-light);
    /* margin: 15px; */
    margin: 0 0 15px;
    display: block;
    color: var(--text-default);
    text-align: center;
    font-weight: bold;
    background-color: var(--background-default);
    border-radius: 50px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

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

.footer_instagram-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 5px;
}

/*下部フロート*/
.floating {
    position: fixed;
    bottom: 0;
    background: rgba(121, 76, 53, 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__btn.line {
    display: flex;
    align-items: center;
    gap: 10px;
} */

.floating__btns>a {
    width: 50%;
    margin: 10px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    gap: 5px;
}

@media screen and (min-width: 768px) {
    /*下部フロート*/
    .floating__btns {
        max-width: 1190px;
        margin: 7px auto;
    }
        
    .floating__btns>a {
        width: 50%;
        margin: 10px 0;
        font-size: var(--font-size-25);
        line-height: 3.2rem;
        padding: 4px;
        gap: 8px;
        /* display: block; */
    }
}

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

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

.mail {
    text-align: center;
    background: var(--background-invert);
    color: var(--text-accent);
    border: 1px solid var(--border-accent);
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-semibold);
    height: 60px;
    line-height: 60px;
    margin-top: 15px;
}

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

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

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

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

@media screen and (min-width: 768px) {
    /*ctaエリア*/
    .cta-area-btn-warpper {
        display: flex;
        justify-content: space-between;
    }
    
    .cta-area-btn-warpper>a {
        width: 49%;
    }
    
    .cta-area-text {
        padding: 16px 0;
    }
}


/* ===================================
    TOPページ
   =================================== */

/*fv*/
.fv {
    position: relative;
    /* padding-top: 60px; */
}

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

.fv-main-copy_bottom {
    margin-top: 20px;
}

.fv-main-copy-text-small {
    font-size: var(--font-size-12);
}

.fv-main-copy-text-medium {
    font-size: var(--font-size-18);
}

.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 {
    display: block;
    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; */
    height: auto;
    object-fit: contain;
}

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

/*coming-soon*/

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

.coming-soon .sp-padding-container {
    padding: 50px 30px; 
} 

@media screen and (min-width: 768px) {
.coming-soon .pc-padding-container {
    padding: 100px 30px; 
    }   
}

.coming-soon_title {
    text-align: center;
}

.coming-soon_title .section-title-en{
    font-family: var(--font-family-jp);
    letter-spacing: normal;
    color: #DE1A1A;
    font-size: var(--font-size-25);
    font-weight: var(--font-weight-semibold);
}

@media screen and (min-width: 768px) {
    .coming-soon_title .section-title-en {
        font-size: var(--font-size-35);
    }
}

.coming-soon-text {
    margin-top: 30px;
    text-align: center;
}

.coming-soon-text p {
    font-size: var(--font-size-16);
    line-height: 1.5;
    font-weight: var(--font-weight-semibold);
}

@media screen and (min-width: 768px) {
    .coming-soon-text p {
    font-size: var(--font-size-18);
    }
}

.coming-soon-text p + p {
    margin-top: 30px;
}

.coming-soon_btn-container {
    margin-top: 20px;
    text-align: center;
}

.coming-soon_btn_line {
    display: inline-block;
    padding: 10px 10px 15px;
    color: white;
    text-align: center;
    text-decoration: none;
    background-color: #06c755;
    border: 1px solid #06c755;
    font-size: var(--font-size-18);
    font-weight: var(--font-weight-semibold);
    width: 285px;
    border-radius: 50px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    }

@media screen and (min-width: 768px) {
    .coming-soon_btn_line {
        padding: 10px 10px 15px;
        font-size: var(--font-size-25);
        width: 400px;
        transition: .3s;
    }
	
    .coming-soon_btn_line:hover {
        opacity: 70%;
    }
}

/* 空室情報 */
.vacancy {
    padding: 30px 0;
    background-image: url("../img/top_bg_vacancy_sp.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.vacancy::before {
    content: "";
    position: absolute;
    top: 36px;
    right: calc(50% - min(44vw, 570px));
    width: 56px;
    height: 82px;
    background-image: url(../img/deco_paws_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .vacancy::before {
        top: 16px;
        right: calc(50% - min(44vw, 520px));    
        width: 112px;
        height: 162px;    
    }
}


.vacancy__slider {
    margin-top: 50px;
}

.vacancy-swiper .swiper-slide {
    /* aspect-ratio: 282 / 410; */
    width: 100%;
    height: auto;
}

.vacancy__card-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

/* 空室情報スライダーの矢印を下中央に配置 */
.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: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--background-accent-strong);
    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;
}

.vacancy__btn {
    text-align: center;
}

@media screen and (min-width: 768px) {
    /* 空室情報 */
    .vacancy{
        padding: 50px 0;
        background-image: url("../img/top_bg_vacancy_pc.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }

    .vacancy__slider {
        margin-top: 50px;
    }

    .vacancy-swiper .swiper-slide {
        /* width: 360px;
        aspect-ratio: 369 / 493; */
        height: auto;
    }

    .vacancy__card-img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .vacancy-swiper {
        padding-bottom: 130px;
    }
    
    .vacancy-swiper .swiper-button-prev,
    .vacancy-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
        bottom: 40px;
    }
    
    .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 {
    padding: 50px 0 20px;
}

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

/* .concept__container {
    max-width: 600px;
    margin-inline: auto;
} */

.concept__contents {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    position: relative;
}

@media screen and (min-width: 768px) {
    .concept__contents {
        margin-top: 50px;
        flex-direction: row-reverse;
        gap: 40px;
        justify-content: center;
        max-width: 895px;
        margin: 50px auto 0;
    }
}

.concept__contents::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(../img/top_line_concept_sp.svg);
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

@media screen and (min-width: 768px) {
    .concept__contents::after {
        bottom: -25%;
        background-image: url(../img/top_line_concept_pc.svg);
        background-size: contain;
        background-position: center;
        background-repeat: repeat;    
    }
}

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

@media screen and (min-width: 768px) {
    .concept__img {
        /* aspect-ratio: 464 / 529; */
        aspect-ratio: 341 / 375;
        overflow: hidden;
        width: 40%;
    }
}

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

@media screen and (min-width: 768px) {
    .concept__img img {
        object-fit: contain;
    }
}

.concept__text-area {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .concept__text-area {
        margin-top: 0;
        width: 60%;
    }
}

.concept__contents-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .concept__contents-title {
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
    }
}

.concept__text {
    margin-top: 15px;
}

@media screen and (min-width: 768px) {
    .concept__text {
        margin-top: 37px;
    }
}

.concept__text p {
    font-size: var(--font-size-14);
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .concept__text p {
        font-size: var(--font-size-16);
    }
}

.concept__text p + p {
    margin-top: 1em;
}

/* アクセス */
.access {
    padding: 50px 0 50px;
    position: relative;
}

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

.access::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(50% - min(39vw, 570px));
    width: 35px;
    height: 50px;
    background-image: url(../img/deco_paws.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .access::before {
        top: 72px;
        left: calc(50% - min(42vw, 570px));
        width: 112px;
        height: 162px;
    }
}

/* .access__container {
    max-width: 600px;
    margin-inline: auto;
} */

.access__contents {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .access__contents {
        margin-top: 50px;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }
}

.access__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .access__img {
        width: calc((100% - 40px) / 2);
    }
}

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

@media screen and (min-width: 768px) {
    .access__img img {
        object-fit: contain;
    }
}

.access__text-area {

}

@media screen and (min-width: 768px) {
    .access__text-area {
        width: calc((100% - 40px) / 2);
    }
}

.access__contents-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .access__contents-title {
        font-size: var(--font-size-25);
    }
}

.access__items {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .access__items {
        margin-top: 20px;
    }
}

.access__item + .access__item {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .access__item + .access__item {
        margin-top: 20px;
    }
}

.access__item-note {
    font-size: var(--font-size-12);
    display: inline-block;
    position: relative;
}

.access__item-note::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    width: 100%;
    height: 5px;
    background-image: url(../img/top_line_access_note_sp.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .access__item-note::before {
        background-image: url(../img/top_line_access_note_pc.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.access__item-title {
    font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 768px) {
    .access__item-title {
        font-size: var(--font-size-20);
        margin-top: 5px;
    }
}

.access__item-title .font-accent {
    color: var(--text-accent);
}

.access__item-title .font-large {
    font-size: var(--font-size-25);    
    display: inline;
}

@media screen and (min-width: 768px) {
    .access__item-title .font-large {
        font-size: var(--font-size-40);
    }
}

.access__item-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
}       

.access__item-lists {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 1fr);
    row-gap: 3px;
    column-gap: 0;
    grid-auto-flow: column;
}

@media screen and (min-width: 768px) {
    .access__item-lists {
        grid-template-columns: 49% 51%;
        row-gap: 10px;
        column-gap: 0x;
    }
}

.access_item-list {
    position: relative;
    font-size: var(--font-size-10);
}

@media screen and (min-width: 768px) {
    .access_item-list {
        /* font-size: var(--font-size-12); */
        /* font-size: max(var(--font-size-10), 0.8vw); */
        font-size: clamp(var(--font-size-10), 0.8vw, var(--font-size-12));
    }
}

.access_item-list::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 90%;
    height: 3px;
    background-image: url(../img/top_line_access_sp.svg);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .access_item-list::before {
        background-image: url(../img/top_line_access_pc.svg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.access_item-list .font-large {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 768px) {
    .access_item-list .font-large {
        font-size: var(--font-size-22);
    }
}

.access_item-list .font-medium {
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 768px) {
    .access_item-list .font-medium {
        font-size: var(--font-size-16);
    }
}

.access_item-list .font-small {
    font-size: var(--font-size-8);
    font-weight: var(--font-weight-regular);
}

@media screen and (min-width: 768px) {
    .access_item-list .font-small {
        /* font-size: var(--font-size-12); */
        /* font-size: max(var(--font-size-10), 0.8vw); */
        font-size: clamp(var(--font-size-8), 0.8vw, var(--font-size-12));
    }
}

.access_item-list .font-accent {
    color: var(--text-accent);
}

.access__note {
    margin-top: 10px;
    font-size: var(--font-size-10);
    line-height: 1.5;
    color: #444;
    letter-spacing: 0.02em;
}

@media screen and (min-width: 820px) {
    .access__note {
        margin-top: -13%;
        padding-left: 50%;
        font-size: var(--font-size-10);
    }
}


/* 特徴 */
.feature {
    padding: 0 10px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .feature {
        padding: 0 30px;
    }
}

.feature::before {
    content: "";
    position: absolute;
    top: -38px;
    /* right: 10%; */
    right: calc(50% - min(40vw, 250px));
    width: 113px;
    height: 39px;
    background-image: url(../img/deco_dogs.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .feature::before {
        top: -91px;
        right: calc(50% - min(42vw, 430px));
        width: 271px;
        height: 93px;
    }
}

.feature-container {
    background-color: var(--background-accent);
    border-radius: 20px;
    padding: 30px 20px;
    /* max-width: 600px;
    margin-inline: auto; */
}

@media screen and (min-width: 768px) {
    .feature-container {
        max-width: 1140px;
        margin: 0 auto;
        /* padding: 70px 100px; */
        padding: 70px 30px;
        border-radius: 50px;
    }
}

.feature-contents {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .feature-contents {
        /* margin-top: 50px; */
        max-width: 940px;
        margin: 50px auto 0;
    }
}

@media screen and (min-width: 768px) {
    .feature-list {
        display: flex;
        justify-content: space-evenly;
        gap: 30px;
    }
}

.feature-list:nth-child(2) {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .feature-list:nth-child(2) {
        margin-top: 30px;
    }
}

.feature-list-item {
    background-color: var(--background-default);
    padding: 28px;
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .feature-list-item {
        width: 50%;
        height: 525px;
    }
}

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

@media screen and (min-width: 768px) {
    .feature-list-item + .feature-list-item {
        margin-top: 0;
    }
}

.feature-list-item-img {
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .feature-list-item-img {
        width: 95%;
        margin: auto;
        display: block;
    }
}

.feature-list-item-title {
font-size: var(--font-size-16);
font-weight: var(--font-weight-bold);
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;
}

@media screen and (min-width: 768px) {
    .feature-list-item-text {
        font-size: var(--font-size-16);
    }

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

.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-link {
    text-align: right;
}

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

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

.feature-button {
    margin-top: 30px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .feature-button {
        margin-top: 40px;
    }
}

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

/* TOP　周辺環境 */
.top-location {
    padding: 50px 0 50px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-location {
        padding: 100px 0 100px;
    }
}

@media screen and (min-width: 768px) {
    .top-location::before {
        content: "";
        position: absolute;
        top: 42px;
        right: calc(50% - min(42vw, 570px));
        width: 112px;
        height: 162px;
        background-image: url(../img/deco_paws.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        }
}



.top-location__contents {
    margin-top: 30px;
    display: grid;
    grid-template-areas:
    "title"
    "img"
    "text";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-location__contents {
        margin-top: 50px;
        grid-template-areas:
        "img title"
        "img text";
        grid-template-columns: 46% auto;
        grid-template-rows: auto auto;
        column-gap: 50px;
        row-gap: 10px;
    }
}

.top-location__img {
    margin-top: 10px;
    aspect-ratio: 315 / 210;
    overflow: hidden;
    grid-area: img;
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .top-location__img {
        margin-top: 0;
        aspect-ratio: 521 / 346;
    }
}

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

.top-location__contents-title {
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    grid-area: title;
}

@media screen and (min-width: 768px) {
    .top-location__contents-title {
        font-size: var(--font-size-25);
        font-weight: var(--font-weight-medium);
    }
}

.top-location__text {
    margin-top: 20px;
    grid-area: text;
}

@media screen and (min-width: 768px) {
    .top-location__text {
        margin-top: 0;
    }
}

.top-location__text p {
    font-size: var(--font-size-14);
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .top-location__text p {
        font-size: var(--font-size-16);
    }
}

.top-location__text p + p {
    margin-top: 1em;
}

.top-location__items {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .top-location__items {
        margin: 50px auto 0;
        max-width: 986px;
        gap: 106px;
    }
}

.top-location__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media screen and (min-width: 768px) {
    .top-location__item {
        gap: 15px;
    }
}

.top-location__item-text {
    /* font-size: min(2vw, 10px); */
    font-size: clamp(var(--font-size-8), 2vw, var(--font-size-10));
    font-weight: normal;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .top-location__item-text {
        /* font-size: var(--font-size-16); */
        /* font-size: max(var(--font-size-14), 1vw); */
        font-size: clamp(var(--font-size-14), 1.1vw, var(--font-size-16));
    }
}

.top-location__item-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

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

@media screen and (min-width: 768px) {
    .top-location-button {
        margin-top: 50px;
    }
}

/* 間取り・入居者様の声　背景画像 */
.top-bg__room-voice {
    background-image: url(../img/top_bg_room-voice_sp.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    padding: 50px 0;
}

@media screen and (min-width: 768px) {
    .top-bg__room-voice {
        background-image: url(../img/top_bg_room-voice_pc.webp);
        padding: 100px 0;
    }
}


/* 間取り */
.room-contents {
    margin-top: 30px;
    padding: 0 0 50px;
    border-bottom: 1px dashed var(--border-accent);
}   

@media screen and (min-width: 768px) {
    .room-contents {
        margin-top: 50px;
    }   
}

.swiper-roomplan {
    position: relative;
    width: 100%;
    min-height: 200px;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
    /* padding: 0 0 80px; */
    padding-bottom: 80px;
}

@media screen and (min-width: 768px) {
    .swiper-roomplan {
        padding-bottom: 130px;
        /* padding: 0; */
    }
}

.swiper-slide-roomplan {
    flex: 0 0 auto;
    max-width: 300px;
    height: 100%;
    margin-right: 10px;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .swiper-slide-roomplan {
        overflow: hidden;
        max-width: 370px;
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

.roomplan-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (min-width: 768px) {
    .roomplan-img {
        height: auto;
    }

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

/* roomplan-swiper 矢印（vacancy-swiperと同じ仕様） */
.roomplan-swiper .swiper-button-prev,
.roomplan-swiper .swiper-button-next {
    position: absolute;
    top: auto;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--background-accent-strong);
    border-radius: 50%;
    color: var(--text-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    margin: 0;
}
.roomplan-swiper .swiper-button-prev {
    left: calc(50% - 55px);
}
.roomplan-swiper .swiper-button-next {
    right: calc(50% - 55px);
}
.roomplan-swiper .swiper-button-prev::after,
.roomplan-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;
}
.roomplan-swiper .swiper-button-prev::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}
.roomplan-swiper .swiper-button-next::after {
    transform: rotate(45deg);
    margin-right: 3px;
}

@media screen and (min-width: 768px) {
    /* roomplan-swiper 矢印（768px以上） */
    .roomplan-swiper .swiper-button-prev,
    .roomplan-swiper .swiper-button-next {
        width: 50px;
        height: 50px;
        bottom: 40px;
    }
    .roomplan-swiper .swiper-button-prev {
        left: calc(50% - 85px);
    }
    .roomplan-swiper .swiper-button-next {
        right: calc(50% - 85px);
    }
}

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


/* 入居者様の声 */
.voice {
    padding: 50px 0 0;
}

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

@media screen and (min-width: 768px) {
    .voice-contents {
        margin-top: 50px;
    }
}

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

.voice_list_item_contents {
    padding: 30px 17px;
    min-height: 401px;
    background-color: var(--background-default);
    border-radius: 0 0 20px 20px;
}

@media screen and (min-width: 768px) {
    .voice_list_item_contents {
        min-height: 437px;
    }
}

.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-accent);
}

.voice_list_item_img {
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}

.voice_list_item_img img {
    border-radius: 20px 20px 0 0;
}

.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;
}

/* voiceスライダー：通常のbulletは白 */
.voice .swiper-pagination-voice .swiper-pagination-bullet {
    background-color: var(--background-invert) !important;
    opacity: 1 !important;
}

/* voiceスライダー：アクティブなbulletは青 */
.voice .swiper-pagination-voice .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--background-accent-strong) !important;
}

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

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

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

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

    .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);
    }
}

/* FAQ */
.faq {
    padding: 50px 0;
}

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

.faq_btn_line {
    padding: 10px 10px 15px;
    color: var(--text-invert);
    font-weight: var(--font-weight-medium);
    text-align: center;
    text-decoration: none;
    background-color: #06c755;
    border: 1px solid #06c755;
    font-size: 100%;
    width: 50%;
    border-radius: 50px;
}

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

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

.faq-list {
    margin-top: 50px;
    font-size: var(--font-size-16);
}

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

.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);
}

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

@media screen and (min-width: 768px) {
    .faq {
        padding: 100px 0 50px;
    }
    
    .faq-contents {
        margin-top: 50px;
    }  

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

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

    .faq-item-question {
        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);
    }

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

    .faq_btn {
        padding: 10px 10px 15px;
        text-align: center;
        text-decoration: none;
        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: #06c755;
        border: 1px solid #06c755;
        font-size: var(--font-size-25);
        width: 50%;
    }
	
    .faq_btn_line:hover {
       opacity: 70%;
    }
}   


/* 建物情報 */
.info {
    padding: 50px 0;
}

@media screen and (min-width: 768px) {
    .info {
        padding: 50px 0 100px;
    }
}

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

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

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

.outline-table td {
    vertical-align: middle;
    padding: 15px 0 15px 10px;
    border-bottom: 1px solid var(--border-default);
    letter-spacing: 0.02em;
}


@media screen and (min-width: 768px) {
    .info-contents {
        margin-top: 50px;
    }
    

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

    .outline-inner {
        display: flex;
        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: 0 0 30px;
}

.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;
}

@media screen and (min-width: 768px) {
    .declaration {
        padding: 0 0 50px;
    }

    .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;
    }
}

/* ===================================
    下層ページ
   =================================== */

/* 下層FV 共通 */
.lower-fv {
    /* height: 248px; */
    aspect-ratio: 375 / 248;
    overflow: hidden;
    position: relative;
}

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

.lower-fv__title {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
    left: 50%;
}

.lower-fv__title h2 {
    font-size: var(--font-size-25);
    font-weight: var(--font-weight-bold);
    line-height: 1;
    color: var(--text-invert);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .lower-fv__title h2 {
        font-size: var(--font-size-50);
    }
}


/* contact-page */

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

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

@media screen and (min-width: 768px) {
    .contact {
        max-width: 960px;
        margin: auto;
        padding: 195px 30px 70px;
    }
}

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

@media screen and (min-width: 768px) {
    .contact__text {
        font-size: var(--font-size-16);
        text-align: center;
    }
}

.contact_required {
    background: #7EB6C6;
    color: #fff;
    padding: 2px 5px;
    font-size: var(--font-size-12);
    margin-right: 5px;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .contact_required {
        margin-right: 10px;
        padding: 5px 10px;
        font-size: var(--font-size-14);
    }
}

.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;
    border-radius: 5px;
}

/* .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: #7EB6C6;
    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-color: var(--background-disabled);
    background-image: url(../img/arrow_btn_white_sp.svg);
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 80px 8px;
    color: #fff;
    height: 64px;
    line-height: 1;
    text-align: center;
    border: none;
    display: block;
    margin: auto;
	margin-top: 20px;
    cursor: pointer;
    width: 100%;
    font-size: var(--font-size-16);
    font-weight: var(--font-weight-bold);
    border: 1px solid var(--background-disabled);
    border-radius: 50px;
    position: relative;
    padding-right: 110px; /* */
    /* cursor: not-allowed;  */
}

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;
    border-radius: 5px;
}

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

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

.wpcf7-spinner {
    display: none;
}

/* 送信ボタン */
@media screen {
    .submit-btn {
        margin-top: 20px;
    }    
}

.submit-btn.detail_btn {
    background-color: var(--background-disabled);
    color: var(--text-invert);
    border: 1px solid var(--background-disabled);
    cursor: not-allowed; /* デフォルトは無効 */
    width: 100%;
}

  /* 有効時 */
.submit-btn.is-active {
    background-color: #7EB6C6;
    cursor: pointer;
}

/* 有効時ホバー(PC) */
@media screen and (min-width: 768px) {
    .submit-btn.is-active:hover {
        background-color: var(--background-accent-hover);
    }    
}

.submit-btn .detail_btn_text {
    font-family: var(--font-family-jp);
}

.submit-btn .detail_btn_arrow {
    background-image: url(../img/arrow_btn_white_sp.svg);
}

.submit-btn__note {
    margin-top: 10px;
    font-size: var(--font-size-12);
    line-height: 1.5;
    text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--border-accent);
}

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

@media screen and (min-width: 768px) {
    .thanks {
        max-width: 960px;
        margin: auto;
        padding: 150px 5px 50px;
    }
}

.page-title.thanks__title {
    font-size: var(--font-size-35);
    font-weight: var(--font-weight-medium);
    color: var(--text-accent);
}

@media screen and (min-width: 768px) {
    .page-title.thanks__title {
        font-size: var(--font-size-50);
    }
}

.thanks__text {
    margin-top: 30px;
    font-size: var(--font-size-16);
    line-height: 1.5;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .thanks__text {
        margin-top: 50px;
        font-size: var(--font-size-20);
    }
}

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

@media screen and (min-width: 768px) {
    .thanks__btn {
        margin-top: 50px;
    }
}

/*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;
} */


/* property-archive */

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

.rooms {
	background: var(--background-default-strong);
	padding: 30px 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;
    line-height: 1.5;
}

.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 {
    display: flex;
    gap: 10px;
}

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

.filter-cond-item label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.filter-cond-item input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0;
    opacity: 0;
    width: 1.375rem;
    height: 1.375rem;
    transform: translateY(-50%);
}

input[type=checkbox]:checked+span.plan::before {
    background: var(--text-default);
}

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

/* card */
.card {
    background: #fff;
    border-radius: 20px;
}

.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; */
    aspect-ratio: 282 / 201;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.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-strong);
    padding: 5px 10px;
    border-radius: 5px;
}

.card__list-title span {
    padding-left: 21px;
    padding-left: 1.3125rem;
    background: url(../img/icon-paws-white.svg) no-repeat center left/16px;
}

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

.card__breadth {
    margin-top: 10px;
    font-size: var(--font-size-14);
}

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

.card__more {
    color: var(--text-accent);
    margin-top: 15px;
    font-size: var(--font-size-14);
}

/* 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); */
    max-width: 600px;
    margin: 40px 10px 0;
    padding: 30px 0 15px;
}

@media screen and (min-width: 768px) {
    .cards__item {
        margin: 0;
        /* width: calc((100% - 60px) / 3); */
        max-width: 360px;
        width: 100%;
    }
}

/* 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: 20px;
    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: 1px solid var(--border-default);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    left: 0;
    top: 50%;
}

input[type=checkbox]+span::after {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 7px;
    width: 7px;
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    /* left: 5px;
    left: 0.3125rem; */
    left: 4px;
    bottom: 43%;
    margin: auto;
}

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

input[type=checkbox]:checked+span::before {
    background: var(--text-default);
}


/* .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;
} */

/* 追加 */

/* .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;
} */


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

.equipment {
    padding: 50px 0;
    background-color: var(--background-default-strong);
}

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

.equipment__intro {
    font-size:  var(--font-size-14);
    padding: 0 30px;
}

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

.equipment__inner {
    padding: 0 10px;
}

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

.equipment__content-icon-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* font-weight: var(--font-weight-bold);
    font-size: var(--font-size-16); */
    /* margin-bottom: 15px; */
}

.equipment__content-icon-title h3 {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-16);
}

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

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

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

/* .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-lists {
    margin-top: 30px;
}

.equipment__area-list {
    border-bottom: 1px dotted var(--border-default);
}

/* ピックアップ設備 */
.equipment__area-list--big {
    /* margin-top: 30px; */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "img"
        "text";
    padding-bottom: 20px;
}

.equipment__area-list-big-img {
    grid-area: img;
    padding-top: 10px;
    aspect-ratio: 315 / 177;
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
}

.equipment__area-list-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.equipment__area-list-big-title {
    grid-area: title;
}

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


/* 一般設備 */
.equipment__area-list--small {
    display: grid;
    grid-template-columns: 33% 67%;
    grid-template-areas:
        "title title"
        "img text";
    padding: 20px 0
}

.equipment__area-list--small:last-child {
    border-bottom: none;
}

.equipment__area-list-small-title {
    grid-area: title;
}

.equipment__area-list-small-img {
    grid-area: img;
    padding-top: 10px;
}

.equipment__area-list-small-text {
    grid-area: text;
    padding-left: 10px;
    display: grid;
    place-items: center;
    margin-top: 10px;
    font-size: var(--font-size-14);

}

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


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

    .equipment__inner {
        max-width: 1200px;
        margin: 0 auto 0;
        padding: 0 30px;
    }
    
    .equipment__intro {
        font-size:  var(--font-size-20);
        text-align: center;
    }
    .equipment__intro-note {
        margin-top: 10px;
        font-size: var(--font-size-16);
    }

    .equipment__area {
        margin-top: 70px;
        /* padding: 50px;		 */
        padding: 50px 20px;		
    }

    .equipment__area--common {
        position: relative;
    }

    .equipment__area--common::before {
        content: '';
        display: block;
        width: 196px;
        height: 301px;
        background-image: url(../img/equipment/deco_equipment_common.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 135px;
        right: calc(50% - min(42vw, 470px));
    }
    
    .equipment__area--private {
        position: relative;
    }

    .equipment__area--private::before {
        content: '';
        display: block;
        width: 332px;
        height: 295px;
        background-image: url(../img/equipment/deco_equipment_private.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        bottom: 110px;
        right: calc(50% - min(37vw, 350px));
    }

    .equipment__area-lists {
        max-width: 1040px;
        margin-inline: auto;
    }


    .equipment__area-list {
        border-bottom: none;
    }
    /* ピックアップ設備 */
    .equipment__area-list--big {
        grid-template-columns: 52% 48%;
        grid-template-rows: 38px auto;
        grid-template-areas:
            "img title"
            "img text";
        padding-bottom: 0;
    }

    .equipment__area-list-big-img {
        /* grid-area: img; */
        padding-top: 0;
        aspect-ratio: 512 / 301;
        padding-right: 15px;
        /* width: 100%;
        height: 100%; */
        /* object-fit: cover; */
    }

    .equipment__area-list-big-img img {
        /* width: 100%;
        height: 100%;
        object-fit: cover; */
        border-radius: 20px;
    }

    .equipment__area-list-big-title {
        /* grid-area: title; */
        padding-bottom: 15px;
        padding-left: 15px;
    }

    .equipment__content-icon-title h3 {
        font-size: var(--font-size-20);
    }

    .equipment__area-list-big-text {
        /* grid-area: text; */
        margin-top: 0;
        padding-top: 15px;
        padding-left: 15px;
        /* margin-top: 10px; */
        font-size: var(--font-size-16);
    }


    /* 一般設備 */

    .equipment__small-lists-layout {
        margin-top: 50px;
        display: grid;
        /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
        grid-template-columns: repeat(3, 1fr);
        gap: 38px;
    }

    .equipment__area-list--small {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(30px, 100px) minmax(120px, 200px);
        grid-template-areas:
            "img"
            "title"
            "text";
        padding: 0;
        height: 390px;
    }

    .equipment__area-list--small:last-child {
        border-bottom: none;
    }

    .equipment__area-list-small-title {
        padding: 10px 10px 0;
        grid-area: title;
        /* min-height: 30px;
        max-height: 60px; */
        place-items: start;
    }

    .equipment__content-icon {
        margin-top: 0.5em;
    }

    .equipment__content-icon-title h3 {
        font-size: var(--font-size-25);
        /* font-size: max(var(--font-size-20), 1.7vw); */
    }

    .equipment__area-list-small-img {
        grid-area: img;
        padding-top: 0;
    }

    .equipment__area-list-small-text {
        grid-area: text;
        padding: 10px 10px 10px;
        display: grid;
        place-items: center;
        margin-top: 0;
        font-size: var(--font-size-16);
        /* min-height: 120px;
        max-height: 200px; */
        place-items: start;
    }

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


        /* .equipment__area--pc::before {
            content: '';
            display: block;
            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 {
    padding: 50px 30px 0;
    background-color: var(--background-default);
}

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

.location__contents {
    padding: 50px 0;
}

.location__contents--convenience {
    border-bottom: 1px dotted var(--border-accent);
}

.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: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location__content-icon-title {
    display: flex;
    align-items: flex-start;
    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 / 203;
    overflow: hidden;
}

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

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

.location__content-lists {
    margin-top: 20px;
}
.location__content-list {
    font-size: var(--font-size-14);
    padding-left: 12px;
    position: relative;
}

.location__content-list::before {
    content: '';
    display: block;
    width: 8px;
    height: 18px;
    background-image: url(../img/icon_square.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0.1em;
    left: 0;
}

.location__inline-block {
    display: inline-block;
    text-indent: 0.5em;
}

.location__block {
    display: block;
    text-indent: 1em;
}

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

.location__contents--pet-friendly {
    position: relative;
}

.location__contents--pet-friendly::before {
    content: '';
    display: block;
    width: 103px;
    height: 83px;
    background-image: url(../img/deco_walking.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -3px;
    right: calc(50% - min(45vw, 620px));
}

.location__contents--park {
    position: relative;
    z-index: 5;
}

.location__contents--park::before {
    content: '';
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100%;
    background-color: var(--background-accent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.location__park {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "img"
        "text";
}

.location__content-icon-title .location__block {
    display: block;
    text-indent: 0;
    font-weight: inherit;
}

.location__park-title {
    margin-bottom: 0;
    grid-area: title;
}

.location__park-img {
    grid-area: img;
    padding-top: 20px;
}

.location__park-text {
    grid-area: text;
    font-size: var(--font-size-14);
    padding-top: 20px;
}

.location__park-text p + p {
    margin-top: 1em;
}

.location__map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* height: 260px; */
    aspect-ratio: 375 / 260;
    margin-top: 30px;
}

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

.location__map-note {
    margin-top: 30px;
    font-size: var(--font-size-12);
    letter-spacing: -0.02em;
}

.m-breadcrumb-bg-location {
    background-color: var(--background-default);
}

@media screen and (min-width: 768px) {
    .location {
        padding: 100px 30px 0;
    }

    .location__intro {
        font-size:  var(--font-size-20);
        text-align: center;
    }

    .location__contents {
        padding-top: 50px;
    }

    .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: 50px auto 0;
        display: flex;
        flex-direction: row;
        max-width: 1140px;
        align-items: stretch;
    }

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

    .location__content-icon-title {
        display: flex;
        gap: 10px;
        margin-bottom: 8px;
        flex-basis: 70px;
    }

    .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%;
        display: block;
    }

    .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);
        padding-left: 14px;
    }
    .location__content-list::before {
        width: 10px;
        height: 10px;
        background-image: url(../img/icon_square.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0.5em;
        left: 0;
    }    
    .location__content-list span {
        display: block;
        text-indent: 1em;
    }

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

    .location__contents--pet-friendly {
        padding-top: 70px;
    }

    .location__contents--pet-friendly::before {
        
        width: 215px;
        height: 172px;
        bottom: -10px;
        right: calc(50% - min(5vw, -80px));
    }

    .location__park {
        margin-top: 50px;
        display: grid;
        grid-template-columns: 47% 53%;
        grid-template-rows: minmax(40px, auto) auto;
        grid-template-areas:
            "img title"
            "img text";
        max-width: 979px;
        margin-inline: auto;
    }

    .location__contents--park {
        padding: 70px 0;
    }
    
    .location__content-icon-title .location__block {
        display: inline-block;
        text-indent: 0;
        font-weight: inherit;
    }
    
    .location__park-title {
        margin-bottom: 0;
        grid-area: title;
        padding-left: 20px;
    }
    
    .location__park-img {
        grid-area: img;
        padding-right: 20px;
        padding-top: 0;
    }
    
    .location__park-text {
        grid-area: text;
        font-size: var(--font-size-16);
        padding-top: 30px;
        padding-left: 20px;
    }
    
    .location__park-text p + p {
        margin-top: 1em;
    }

    .location__contents--map {
        padding: 70px 0;
        position: relative;
    }

    .location__contents--map::before {
        content: "";
        position: absolute;
        top: 36px;
        left: calc(50% - min(39vw, 570px));
        width: 112px;
        height: 162px;
        background-image: url(../img/deco_paws.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    
    }

    .location__map {
        max-width: 980px;
        width: 100%;
        margin: 50px auto 0;
        aspect-ratio: 980 / 538;
    }

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

    .location__map-note {
        margin-top: 20px;
        max-width: 980px;
        margin-inline: auto;
        font-size: var(--font-size-16);
        text-align: center;
    }
}


/*===============
物件詳細
===============*/
.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__slider-item {
    text-align: center;
}

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

.property-single__content {
    background-color: var(--background-default);
    border-radius: 20px;
}

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

.property-single__list {
    /* margin-top: 10px; */
    background: #fff;
    padding: 30px;
    border-radius: 0 0 20px 20px;
}

.property-single__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    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;
    border-bottom: none;
}

.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;
}

.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 var(--background-accent-strong);
}

/*==================================
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-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;
    } */



    /* .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-bg-room,
    .m-breadcrumb-bg-equipment {
        background-color: var(--background-default-strong);
    }

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

    /* .m-breadcrumb--room {
        background-color: var(--background-default-strong);
    } */



    /* .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: #06c755;
        border: 1px solid #06c755;
        font-size: 100%;
        width: 50%;
        border-radius: 50px;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    } */

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


/*===============
物件詳細
===============*/
    .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 0;
        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-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
    ===============*/



    /* コンセプト */

    /* .concept-container::before {
        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;
    } */

    /* 特徴 */
    
    
    /* 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%;

    }

    .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;
    } */


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


    /* 入居者様の声 */

    
    /* .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: 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 */


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

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

    /* .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: 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;

    } */



    /*===============
    物件詳細
    ===============*/

    .property-archive__cards {
        margin-top: 54px;
        /* display: flex; */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px , 1fr));
        gap: 30px;
        place-items: center;
    }


    
    .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: 175px 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%; */
        /* width: calc((100% - 60px) / 3 ); */
        max-width: 600px;
        width: 100%;
    }

    .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; */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(310px , 1fr));
        place-items: center;
        gap: 30px;
    }
}

.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: 40px;
    }

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

    .cards__item {
        width: 100%;
        /* max-width: 21.875rem; */
        /* max-width: 315px; */
        margin: 0 auto 40px auto;
    }

    .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; */
    }

    .header-logo {
        width: 50%;
        padding-bottom: 0;
    }

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

    a.header-logo-link>img {
        /* width: 50%; */
        max-width: 325px;
        width: 70%;
    }

    /*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;
        padding: 0 18px;
        /* min-width: 125px;
        text-align: center; */
    }

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

    /*ぱんくずリスト用*/

    .m-breadcrumb-bg-equipment,
    .m-breadcrumb-bg-room {
        background-color: var(--background-default-strong);
    }    

    .m-breadcrumb {
        max-width: 960px;
        font-size: 0.8rem;
        padding: 30px 30px 10px;
        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;
    }

    .m-breadcrumb--room {
        background-color: var(--background-default-strong);
    }

    /*タイトル*/
    .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: 95px;

    }

    .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-14);
    }

    .navigation__button {
        margin: 0;
    }

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

    .navigation__button .faq_btn_line span {
        display: block;
    }

    /*fv*/

    .fv {
        /* padding-top: 95px; */
    }

    .fv-main-copy {
        bottom: 40px;
        left: 100px;
        /* font-size: var(--font-size-50); */
        font-size: 3.5vw;
    }

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

    .fv-main-copy_bottom {
        margin-top: 30px;
    }

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

    .fv-main-copy-text-small {
        /* font-size: var(--font-size-20); */
        font-size: 1.5vw;
    } 

    .fv-main-copy-text-medium {
        /* font-size: var(--font-size-35); */
        font-size: 2.5vw;
    }

    .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; */
        aspect-ratio: 1440 / 400;
    }

    .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-color: var(--background-default);
        background-image: url(../img/arrow_btn_sp.svg);
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 80px 8px;
        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);
    } */


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

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

    /* card */
    .card__img {
        aspect-ratio: 360 / 225;
        border-radius: 20px;
    }

    .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); */
        /* font-size: max(var(--font-size-12), 1.1vw); */
        font-size: clamp(var(--font-size-12), 1.1vw, var(--font-size-16));
    }

    .card__list-text {
        font-size: var(--font-size-16);
        /* font-size: max(var(--font-size-10), 1.1vw); */
    }

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

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

    /* 建物情報 */

    /*declaration*/

}

/*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;
}
}