/*---------------------------------------------*/

/* realestate.html

============================================== */


#Land {
    width: 80%;
    margin: 50px auto;
}

#Land h5 {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 0 55px;
}

#Land h5:before,
#Land h5:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
}

#Land h5:before {
    left: 0;
}

#Land h5:after {
    right: 0;
}


#Land h6 {
    color: white;
    background: #ee7800;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
}


#House {
    width: 80%;
    margin: 50px auto 200px;
}

#House h5 {
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 0 55px;
}

#House h5:before,
#House h5:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 1px;
    background-color: black;
}

#House h5:before {
    left: 0;
}

#House h5:after {
    right: 0;
}


.bukken {
    padding: 30px;
    width: 100%;
    margin: 0 auto;
}


.bukken ul {
    display: flex;
    justify-content: space-between;
}

.bukken ul li {
    width: 48%;
    margin: auto 0;
    text-align: left;
}

/* 画像を重ねるためのラッパ */
.img-wrap {
    position: relative;
    /* このliを基準に重ねる */
}

.img-wrap img.overlay {
    position: absolute;
    top: 30%;
    /* 上からの距離（調整可） */
    left: 34%;
    /* 左からの距離（調整可） */
    width: 180px;
    /* 重ねる画像のサイズ調整 */
    opacity: 0.9;
    /* 半透明にしたい場合 */
}

span.money {
    color: red;
    font-size: 50px;
}

p.money-border {
    border-bottom: solid 1px #000000;
}

.bukken ul li p {
    font-size: 20px;
    padding: 0;
}

#House h6 {
    color: white;
    background: #00819d;
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
}


#Land .btn02 {
    display: inline-block;
    padding: 0.8em 5em;
    text-decoration: none;
    color: #0f0f0f;
    border: solid 2px #ee7800;
    border-radius: 3px;
    transition: .4s;
    background: white;
    width: 30%;
    margin-bottom: 40px;
    text-align: center;
}

#Land .btn02:hover {
    background: #ee7800;
    color: white;
}

#Land .btn02 a:hover {
    color: white;
}

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

    .bukkenMain {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }


    .bukken {
        padding: 0;
        width: 100%;
        margin: 20px auto;
    }


}

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

    #Land {
        width: 100%;
        margin: 0;
    }

    #House {
        width: 100%;
        margin: 0;
    }

    .bukkenMain {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        flex-direction: column;
    }


    .bukken {
        padding: 0;
        width: 100%;
        margin: 20px auto;
    }

    .bukken ul {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .bukken ul li {
        width: 100%;
        margin: auto 0;
        text-align: left;
    }

    .bukken ul li p {
        font-size: 16px;
    }

    .bukken ul li p.money-border {
        padding-top: 30px;
    }

    .img-wrap img.overlay {
        top: 25%;
        left: 30%;
        width: 140px;
}

}

/*----　成約済の指示　----*/
.wrap {
    position: relative;
}

/* 下にある画像 */
.wrap img.base {
    width: 100%;
    display: block;
}

/* 下画像全体に白を被せる */
.wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 1;
    /* ← これを追加 */
}

/* 上に乗せたい画像 */
.wrap img.overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* ← これも追加 */
}

.btn02 {
    display: inline-block;
    padding: 0.8em 4em;
    text-decoration: none;
    color: #0f0f0f;
    border: solid 2px #00819d;
    border-radius: 3px;
    transition: .4s;
    background: white;
    width: 50%;
    margin-bottom: 40px;
    text-align: center;
}

.btn02:hover {
    background: #00819d;
    color: white;
}

.btn02 a:hover {
    color: white;
}


@media screen and (min-width: 768px) and (max-width:1024px) {
    .btn02 {
        width: 60%;
    }
}

@media screen and (max-width: 767.98px) {
    .btn02 {
        width: 80%;
    }

}


/*----　下記追加内容　----*/

.fealstate_btnbox {
    padding: 0 30px;
}

.fealstate_btnbox .hk-aboutIntro__cta {
    margin: 15px 0;
}

@media screen and (max-width: 767.98px) {
.fealstate_btnbox {
    padding: 0;
}

}