:root {
    /* メインカラー（ロゴの色） */
    --color-main: #008444;
    /* 例：ディープグリーン */

    /* マンション用 */
    --color-mansion: #0063ad;
    /* 例：ロイヤルブルー */

    /* 新築用 */
    --color-shinchiku: #008c88;
    /* 例：ターコイズグリーン */

    /* 中古用 */
    --color-chuko: #08b260;
    /* 例：ライトグリーン */

    /* 事業用 */
    --color-jigyoyo: #a3a300;
    /* 例：オリーブイエロー */

    /* 土地用 */
    --color-tochi: #a55c34;
    /* 例：ブラウンオレンジ */
}


b, strong {
    font-weight: bold;
}

.js-fade {
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 0.5s;
}

.lower-common {
    opacity: 0;
    transition: opacity 1.5s;
    transition-delay: 0s;
}

.js-fadeup {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s, transform 0.6s;
    transition-delay: 0.3s;
}

.inview-fadeup {
    opacity: 1;
    transform: translateY(0px);
}

.inview-fade {
    opacity: 1;
}


.n-fade {
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 0.8s;
}




body{
	font-family: "Noto Sans JP", sans-serif;
}


main {
    margin-top: 123px;
}
main.top-main {
    margin-top: 96px;
}
.common-title {
    font-size: 1rem;
    line-height: 1;
    position: relative;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.01em;
    width: fit-content;
}

.common-title span {
    font-size: .21rem;
    font-weight: 600;
    display: block;
    margin-bottom: 11px;
}

.common-title::after {
    content: "";
    position: absolute;
    left: 112%;
    width: calc(100vw - 112%);
    height: 1px;
    top: 30px;
    bottom: 0;
    margin: auto;
    background-color: #000;

}

.common-btn {
    font-size: .16rem;
    color: #000;
    border: solid 1px #008444;
    border-radius: 10px;
    padding: 10px 36px 10px 50px;

    margin: 0 auto;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: space-between;
    background-color: #fff;
    transition: all .3s;
}


.btn-arrow {
    display: inline-flex;
    position: relative;
    margin-left: 52px;
    margin-right: 0;
    margin-top: -5px;
    width: 53px;
}

.btn-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 53px;
    height: 10px;
    border-bottom: solid 1.5px #008444;
    border-right: solid 2.5px #008444;
    transform: skew(45deg);
    transition: all .3s;
}

.common-btn:hover {
    background-color: var(--color-main);
    color: #fff;
    opacity: 1;
    border: solid 1px#fff;
}

.common-btn:hover .btn-arrow::before {
    border-bottom: solid 1.5px #fff;
    border-right: solid 2.5px #fff;
    width: 70px;
}


/* おすすめ物件 */
.top-property {
    background-color: #F2F2F2;
    padding: 122px 20px 95px;
    margin-bottom: 118px;
}

.top-property-midashi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 63px;
}

.top-property__contents {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

.top-property-midashi p:nth-of-type(1) {
    font-size: .72rem;
    width: 35%;
    font-weight: 600;
}

.top-property-midashi p:nth-of-type(2) {
    font-size: .16rem;
    width: 58%;
}

.top-property__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.top-property__item {
    width: 30%;
    margin-bottom: 80px;
    position: relative;
}

.property-date {
    font-size: .16rem;
    margin-bottom: 5px;
    color: #000;
}

.property-img {
    margin-bottom: 13px;
    overflow: hidden;
    background-color: #CCCCCC;

    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
}

.news-img.noimg,
.property-img.noimg{
	border: solid 1px #a3a3a3;
	background-color: transparent;
}
.property-img.noimg {
    border: solid 1px #c7c7c7;
    background-color: #f0f0f0;
}
.property-img.noimg img{
	opacity:0.5;
}
.property-img img {
    object-fit: contain;
    height: 260px;
}

.property-date span {
    color: var(--color-main);
    display: block;
}

.property-price {
    font-size: .24rem;
    color: #D0281A;
    text-align: right;
    line-height: 1;
}

.property-price span {
    font-size: .16rem;
}

.top-property__item:nth-last-of-type(1),
.top-property__item:nth-last-of-type(2),
.top-property__item:nth-last-of-type(3) {
    margin-bottom: 70px;
}

.top-news .news-item{
	margin-bottom: 0;
}

/* タグ部分 */
.common-label {
    position: absolute;
    right: 0;
    top: 17px;
    font-size: .14rem;
    color: #fff;
    background-color: #008444;
    min-width: 100px;
    padding: 0 10px;
    text-align: center;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}




/* 下層ページ　共通 */

.lower-common {
    width: 1320px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.lower-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 150px;
    background-color: var(--color-main);
}

.lower-title {
    font-size: .48rem;
    position: relative;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.lower-common__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.lower-en-title {
    font-size: 1rem;
    color: #E6E6E6;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    margin-top: 18px;
    letter-spacing: 0.01em;
}

.lower-about {
    width: fit-content;
    margin-left: auto;
    margin-bottom: 28px;
    margin-top: 45px;
}

.lower-intro {
    font-size: .60rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.015em;
    margin-bottom: 28px;
}

.lower-lead {
    font-size: .16rem;
    font-weight: 500;
	width: fit-content;
}
.lower-lead a{
	color: #000;
}



/* リンクボタン */
.category-btn {
    font-size: .21rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    padding: 18px 0;
    width: 30%;
    border-radius: 12px;
    box-shadow: 5px 5px 0px 0px rgba(230, 230, 230, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: #000;
    display: block;
    border: solid 1px var(--color-main);
    margin-bottom: 30px;
}

.category-btn:hover{
    opacity: 1;
}

.category-btn::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    z-index: -1;
    border-radius: 12px;
}

.category-btn:hover::before {
    transition: all .3s;
    background-color: #E1F5EC;
    opacity: 1;
}

.category-active.category-btn::before {
    background-color: #E1F5EC;
    opacity: 1;
}


.sp_only {
    display: none;
}
@media screen and (max-width:1050px){
main {
    overflow: hidden;
}
}



@media screen and (max-width:900px) {
    .sp_only {
        display: block;
    }

    .pc_only {
        display: none;
    }

	main{
		margin-top:106px;
	}
	main.top-main {
		margin-top: 70px;
	}
    .common-title span {
        font-size: .18rem;
        margin-bottom: 7px;
    }

    .common-title {
        font-size: .50rem;
    }


    .common-btn {
        font-size: .15rem;
        border-radius: 10px;
        padding: 7px 22px 7px 50px;

    }
	.category-btn::before {
		left: 2px;
		top: 2px;
		border-radius: 7px;
	}
    .btn-arrow {
        margin-left: 0px;
        margin-right: 0;
        margin-top: -5px;
        width: 53px;
    }

    .btn-arrow::before {
        height: 8px;
    }



    /* おすすめ物件 */
    .top-property__container {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .top-property__item {
        width: 100%;
        margin-bottom: 40px;
    }

    .property-img {
        margin-bottom: 10px;
    }

    .property-img img {
        height: 210px;
    }

    .property-date {
        font-size: .15rem;
        margin-bottom: 3px;
    }

    .property-date span {
        margin-bottom: 3px;
    }

    .top-property__item:nth-last-of-type(1),
    .top-property__item:nth-last-of-type(2),
    .top-property__item:nth-last-of-type(3) {
        margin-bottom: 40px;
    }



    /* 下層ページ */
    .lower-common__wrap {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .lower-common {
        padding: 0px 30px;
    }

    .lower-title {
        font-size: .28rem;
        padding-bottom: 19px;
        margin: 5px 0;
        line-height: 1.5;
    }

    .lower-en-title {
        font-size: .60rem;
        line-height: 1;
        margin-top: 0px;
        margin-bottom: 0;
        width: fit-content;
        margin-left: auto;
    }

    .lower-about {
        margin-top: 0px;
    }

    .lower-intro {
        font-size: .26rem;
        margin-bottom: 27px;
        line-height: 1.75;
    }

    .lower-lead {
    font-size: .15rem;
}



}