@charset "utf-8";
/* CSS Document */
/*--------------------------------------
ヘディング
---------------------------------------*/
.real-estate-sales-heading {
    padding: 90px 0 40px 0;
    overflow-x: clip;
}
.real-estate-sales-heading .real-estate-sales-heading_lead {
    position: relative;
    width: 100%;
}
.real-estate-sales-heading .real-estate-sales-heading_lead::after {
	content: "";
	position: absolute;
	display: inline-block;
	background-image: url("../images/character/woman_09.png");
	background-size: contain;
	vertical-align: middle;
	width: 360px;
	height: 360px;
    right: 0;
    bottom: 0;
	background-repeat: no-repeat;
    z-index: 1;
}

.real-estate-sales-heading .real-estate-sales-heading_lead .catch {
    font-size: 38px;
    letter-spacing: 2px;
    line-height: 1.6;
    color: #008D95;
    margin-bottom: 36px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}

.real-estate-sales-heading .real-estate-sales-heading_lead .caption {
    font-size: 19px;
    /*width: 83%; リードの横に画像が必要な際にこちらを使用*/
    width: 65%;
    text-align: justify;
}

.real-estate-sales-heading .real-estate-sales-heading_img {
    position: absolute;
    top: 90px;
    right: 0;
    display: flex;
    flex-direction: column;
}

.real-estate-sales-heading .real-estate-sales-heading_img::before {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
    top: 0;
    left: -10px;
}

.real-estate-sales-heading .real-estate-sales-heading_img .heading_img_01 {
    width: 300px;
}
.real-estate-sales-heading .real-estate-sales-heading_img .heading_img_02 {
    width: 300px;
}

@media screen and (max-width: 1024px) {
    .real-estate-sales-heading {
        padding: 70px 4% 60px 4%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_lead .catch {
        font-size: 24px;
        letter-spacing: 6px;
        margin-bottom: 28px;
    }
    .real-estate-sales-heading .real-estate-sales-heading_lead::after {
        width: 220px;
        height: 220px;
        right: -12%;
        bottom: -7%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_lead .caption {
        font-size: 16px;
        width: 76%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_img .heading_img_01 {
        width: 180px;
    }
    .real-estate-sales-heading .real-estate-sales-heading_img .heading_img_02 {
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .real-estate-sales-heading {
        padding: 40px 4% 0 4%;
    }

    .real-estate-sales-heading .real-estate-sales-heading_lead .catch {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }
    .real-estate-sales-heading .real-estate-sales-heading_lead::after {
        width: 140px;
        height: 140px;
        right: -20%;
        bottom: inherit;
        top: 6%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_lead .caption {
        font-size: 14px;
        width: 100%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_img {
        position: absolute;
        top: inherit;
        bottom: inherit;
        right: 0;
        display: flex;
        flex-direction: row;
        padding: 0 4%;
        margin-top: 14px;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_img::before {
        width: 92%;
        height: 15px;
        background-image: linear-gradient(90deg, rgba(242, 153, 4, 1), rgba(242, 153, 4, 0));
        top: inherit;
        left: 4%;
        bottom: -6%;
    }
    
    .real-estate-sales-heading .real-estate-sales-heading_img .heading_img_01 {
        width: 58%;
    }
    .real-estate-sales-heading .real-estate-sales-heading_img .heading_img_02 {
        width: 42%;
    }
}

/*--------------------------------------
特徴
---------------------------------------*/
.real-estate-sales_features {
    margin-bottom: 98px;
}

.features_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.features_list li {
    padding: 36px;
    border: 2px solid #008D95;
    background-color: #F7F7F7;
    width: 31%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.features_list li::after {
	content: "";
	position: absolute;
	display: inline-block;
	background-image: url("../images/character/animal_02.png");
	background-size: contain;
	vertical-align: middle;
	width: 140px;
	height: 140px;
    right: -10%;
    bottom: 5%;
	background-repeat: no-repeat;
    z-index: 1;
}
.features_list li:nth-of-type(2)::after {
	background-image: url("../images/character/animal_03.png");
}
.features_list li:nth-of-type(3)::after {
	background-image: url("../images/character/animal_04.png");
}

.features_list li p {
    line-height: 1.8;
    font-size: 18px;
    letter-spacing: 2px;
}

.features_list li p span {
    font-weight: bold;
    color: #008D95;
    font-size: 22px;
}

@media screen and (max-width: 1024px) {
    .real-estate-sales_features {
        margin-bottom: 64px;
    }
    
    .real-estate-sales_features .inner {
        padding: 0 4%;
    }
    
    .features_list {
        flex-direction: column;
    }
    
    .features_list li {
        margin-bottom: 18px;
        width: 580px;
        justify-content: center;
        text-align: center;
        margin: 0 auto 24px auto;
    }
    .features_list li::after {
        content: "";
        width: 140px;
        height: 140px;
        right: 4%;
        bottom: 2%;
    }
}

@media screen and (max-width: 767px) {
    .real-estate-sales_features {
        margin-bottom: 48px;
    }
    
    .real-estate-sales_features .inner {
        padding: 40px 4% 0 4%;
    }
    
    .features_list li {
        width: 80%;
        justify-content: flex-start;
        text-align: left;
        padding: 8px 18px;
    }
    .features_list li::after {
        content: "";
        width: 80px;
        height: 80px;
        right: -8%;
        bottom: 3%;
    }
    
    .features_list li p {
        letter-spacing: 2px;
        font-size: 16px;
    }
    .features_list li p span {
        font-size: 18px;
    }
}

/*-------------------------------------------
不動産売買・賃貸のご相談例
-------------------------------------------*/
.consultation {
}

.consultation h4 {
    margin-bottom: 46px;
    font-size: 32px;
    line-height: 1.8;
    color: #008D95;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-feature-settings: "halt";
}
.consultation h4 span {
    text-decoration: underline;
    text-decoration-color: #F29904;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.consultation_items {
	width: 100%;
}

.consultation_box {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 65px;
}

.consultation_box:nth-child(even) {
	flex-direction: row-reverse;
}

.consultation_box picture {
	width: 42%;
	margin-right: 2%;
}

.consultation_box:nth-child(even) picture {
	margin-right: 0;
	margin-left: 2%;
}

.consultation_box picture img {
	border-radius: 20px;
}

.consultation_box div {
	width: 56%;
}

.consultation_box div ul {
	margin-bottom: 30px;
}
.consultation_box div ul:last-of-type {
	margin-bottom: 0;
}

.consultation_box div ul p {
	margin-bottom: 15px;
	color: #F29904;
	font-size: 22px;
	font-weight: bold;
}

.consultation_box div ul li {
	margin-left: 20px;
	position: relative;
	line-height: 1.8;
	margin-bottom: 10px;
	font-size: 19px;
}

.consultation_box div ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	top: 11px;
	left: -15px;
	border: solid 2px #F29904;
	border-radius: 50%;
	box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .consultation {
        padding: 0 4%;
    }
	.consultation_box {
		flex-direction: column;
	}
	
	.consultation_box:nth-child(even) {
		flex-direction: column;
	}

	.consultation_box picture {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.consultation_box:nth-child(even) picture {
		margin-left: 0;
	}

	.consultation_box picture img {
		border-radius: 10px;
	}

	.consultation_box div {
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	
	.consultation_box div ul {
		width: 49%;
		margin-right: 2%;
	}

	.consultation_box div ul:last-of-type {
		margin-right: 0;
	}
	
	.consultation_box div ul li {
		font-size: 14px;
	}
	
	.consultation_box div ul li::before {
		width: 16px;
		height: 16px;
		top: 4px;
		left: -20px;
	}

}

@media screen and (max-width: 767px) {
    .consultation h4 {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.8;
        color: #008D95;
    }
    
	.consultation_box div {
		flex-direction: column;
	}
	
	.consultation_box div ul {
		width: 100%;
		margin-right: 0;
	}
	
	.consultation_box div ul li {
		margin-left: 20px;
	}
}

/*--------------------------------------
お客様の声
---------------------------------------*/
.cutomer-voice .inner {
    padding: 0 0;
    border-top: 2px solid #008D95;
}
.customer-voice_item {
    padding: 80px 0;
}

.customer-voice_item:first-of-type {
    border-bottom: 2px solid #008D95;
}

.customer-voice_item .customer-voice_list h4 {
    font-size: 24px;
    color: #008D95;
    margin-bottom: 48px;
    letter-spacing: 2px;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
}

.customer-voice_item .customer-voice_list .bubble,
.customer-voice_item .customer-voice_list .thoughts {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.customer-voice_item .customer-voice_list .bubble:last-of-type,
.customer-voice_item .customer-voice_list .thoughts:last-of-type {
    margin-bottom: 0;
}

.customer-voice_item .customer-voice_list .bubble img,
.customer-voice_item .customer-voice_list .thoughts img {
    width: 120px;
    margin-right: 26px;
}

.customer-voice_item .customer-voice_list .bubble p {
    position: relative;
    display: inline-block;
    padding: 22px 48px;
    border: 3px solid #99CCD3;
    border-radius: 50px;
    background-color: #fff;
    text-align: left;
    font-weight: bold;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    letter-spacing: 2px;
    font-size: 19px;
}
.customer-voice_item .customer-voice_list .bubble p::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 6px 14px 6px 0;
    border-color: transparent #99CCD3 transparent transparent;
    translate: -100% -50%;
}
.customer-voice_item .customer-voice_list .bubble p::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 3.8px 8.9px 3.8px 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
}

.customer-voice_item .customer-voice_list .thoughts {
    margin-bottom: 78px;
}

.customer-voice_item .customer-voice_list .thoughts .thoughts_text {
    border-bottom: 1px solid #008D95;  
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    padding-bottom: 24px;
    width: 100%;
}

.customer-voice_item .customer-voice_list .thoughts .thoughts_text .comment {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 19px;
}

.customer-voice_item .customer-voice_list .thoughts .thoughts_text .comment span {
    color: #008D95;
}

.customer-voice_item .customer-voice_list .thoughts .thoughts_text .name {
    display: flex;
    justify-content: flex-end;
}


@media screen and (max-width: 1024px) {
    .cutomer-voice .inner {
        padding: 0 4%
    }
}

@media screen and (max-width: 767px) {
    .cutomer-voice .inner {
        padding: 0 4%
    }
    
    .customer-voice_item .customer-voice_list h4 {
        font-size: 18px;
        margin-bottom: 32px;
        letter-spacing: 2px;
    }

    .customer-voice_item .customer-voice_list .bubble img,
    .customer-voice_item .customer-voice_list .thoughts img {
        width: 60px;
        margin-right: 8px;
    }
    
    .customer-voice_item .customer-voice_list .bubble p {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
    }
    
    .customer-voice_item .customer-voice_list .thoughts {
        margin-bottom: 46px;
        align-items: flex-start;
    }

    .customer-voice_item .customer-voice_list .thoughts .thoughts_text {
        border-bottom: none;  
        padding-bottom: 24px;
    }

    .customer-voice_item .customer-voice_list .thoughts .thoughts_text .comment {
        font-weight: bold;
        margin-bottom: 8px;
        font-size: 14px;
        text-align: justify;
    }

    .customer-voice_item .customer-voice_list .thoughts .thoughts_text .comment span {
        color: #008D95;
    }

    .customer-voice_item .customer-voice_list .thoughts .thoughts_text .name {
        font-size: 14px;
    }
}

