/* ===================================================================
CSS
 file name  :  style.css
=================================================================== */
body, button, input, select, textarea {
	font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.8;
}
.font_serif{
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
html{
    font-size: 62.5%;/* 10px*/
}
body{
    font-size:1.6rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
a{
	color: #113068;
	text-decoration: underline;
}
a:hover{
	color: #3E79AC;
}
a.btn{
	position: relative;
	text-decoration: none;
	display: block;
	padding: 1em;
	border-radius: 5px;
	text-align: center;
	color: #0E2749;
	line-height: 1;
	background: #F3C758;
	border-bottom: 5px solid #EDAF4F;
	transition: all .3s;
	font-weight: bold;
	font-size: 2.2rem;
}
a:hover.btn{
	background: #FFB700;
	border-bottom: 5px solid #DEA003;
}
@media screen and (max-width: 768px) {
	a.btn{
		font-size: 1.4rem;
	}
}
.bg_blue{
	background: #F4FAFE;
}
.text_red{
	color: #D50003
}
@media print, screen and (min-width: 769px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.pc_none{
		display:none;
	}
}
@media screen and (max-width: 768px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
.main_wrap{
	background: url("../images/bg_main.jpg") no-repeat center center;
	background-size: cover;
	padding: 90px;
}
.main_wrap .main_text{
	margin: auto;
	background: url("../images/main_text_pc.png") no-repeat center center;
	background-size: contain;
	max-width:838px;
	height: 109px;
	text-indent: -9999px;
}
.main_wrap .main_image,
.main_wrap .contact_btn{
	margin: 50px auto auto;
	max-width: 580px;
	transition: all 0.3s;
}
.main_wrap .contact_btn:hover{
	transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
	.main_wrap{
		padding: 50px;
	}
	.main_wrap .main_text{
	    background: url("../images/main_text_sp.png") no-repeat center center;
	    background-size: contain;
		max-width: 460px;
		height: 140px;
	}
	.main_wrap .main_image,
	.main_wrap .contact_btn{
		margin: 25px auto auto;
		max-width: 460px;
	}
}
@media screen and (max-width: 468px) {
	.main_wrap .main_text{
		height: 109px;
	}
}
/* =====================================
コンテンツ共通
======================================== */
.contents_wrap{
	padding: 100px 50px 50px 50px;
}
.contents_wrap_mb{
	padding: 100px 50px;
}
.contents_wrap_mb_none{
	padding: 100px 50px 0 50px;
}
h2.subtitle{
	position: relative;
	text-align: center;
	color: #113068;
	font-size: 3.0rem;
	font-weight: bold;
	padding-bottom: 1em;
}
h2.subtitle::before {
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #3E79AC 0%, #3E79AC 50%, #3C9DBA 50%, #3C9DBA 100%);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
}
h2.subtitle .explanation{
	display: block;
	color: #333;
	font-weight: normal;
	margin-top: 1em;
	font-size: 1.4rem;
}
span.underline,
strong.underline{
	background: linear-gradient(transparent 50%, #FBE972 50%);
	padding-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
	.contents_wrap{
		padding: 50px 20px 20px;
	}
	.contents_wrap_mb{
		padding: 50px 20px;
	}
	.contents_wrap_mb_none{
		padding: 50px 20px 0 20px;
	}
	h2.subtitle{
		font-size: 1.4rem;
	}
	h2.subtitle::before {
		width: 50px;
		height: 2px;
	}
	h2.subtitle .explanation{
		font-size: 1.0rem;
	}
}
/* =====================================
ランキング
======================================== */
.rank_list{
    width: 100%;
    max-width: 660px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.rank_list li{
    max-width: 300px;
}
.rank_list li:nth-child(3),
.rank_list li:nth-child(4){
    margin-top: 30px;
}
.rank_text{
    max-width: 780px;
    margin: 50px auto auto;
}
@media screen and (max-width: 768px) {
    .rank_list{
        max-width: 480px;
    }
    .rank_list li{
        width: 50%;
        padding: 0 5px
    }
    .rank_list li:nth-child(3),
    .rank_list li:nth-child(4){
        margin-top: 10px;
    }
    .rank_text{
        max-width: 480px;
        margin: 20px auto auto;
    }
}
/* =====================================
トピックス
======================================== */
.topix_wrap{
    max-width: 880px;
    margin: 50px auto auto;
    background: #FFF;
    padding: 30px 50px;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}
@media print, screen and (min-width: 769px) {
    .topix_wrap{
        display: flex;
        align-items: flex-start;
    }
}
.topix_wrap .topix_sub_title{
    background: #113068;
    color: #FFF;
    font-weight: 600;
    padding: 0.3em 1em;
    margin-right: 40px;
    line-height: 1;
}
.topix_wrap  dl dt{
    color: #113068;
}
.topix_wrap  dl dd{
    padding-left: 124px;
    margin-top: -1.8em;
    margin-bottom: 0.7em;
}
.topix_wrap  dl dd:last-child{
    margin-bottom: 0;
}
.topix_wrap dl dd a{
    color: #333;
}
.topix_wrap dl dd a:hover{
	color: #3E79AC;
}
@media screen and (max-width: 768px) {
    .topix_wrap{
        max-width: 480px;
        margin: 30px auto auto;
        padding: 30px 20px 20px;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
        position: relative;
    }
    .topix_wrap .topix_sub_title{
        position: absolute;
        top: 0;
        left: 0;
        padding: 0.3em 1.6em;
        margin-right: inherit;
    }
    .topix_wrap  dl dd{
        padding-left: 82px;
    }
}
/* =====================================
会員登録いただくと
======================================== */
ul.feature_list{
	max-width: 880px;
	margin: auto;
	padding-top: 30px;
}
ul.feature_list > li{
	margin-top: 20px;
	border: 3px solid #BADEE9;
	padding: 0.7em;
}
@media print, screen and (min-width: 769px) {
	ul.feature_list > li,
    ul.feature_list > li a{
		display: flex;
	}
	ul.feature_list > li .feature_subtitle,
	ul.feature_list > li a .feature_subtitle{
		width: 20%;
		text-align: right;
		padding-right: 2em;
		font-size: 1.8rem;
	}
}
ul.feature_list > li a{
    text-decoration: none;
    width: 100%;
    color: #000;
}
ul.feature_list > li a span{
    color: #113068;
}
ul.feature_list > li .feature_subtitle{
	color: #3C9DBA;
	font-weight: bold;
}
ul.feature_list > li p.main_text{
	font-size: 1.8rem;
	font-weight: bold;
}
ul.feature_list > li .feature_sublist li{
	background: url("../images/circle.png") no-repeat top 0.4em left;
	background-size: 1em;
	padding-left: 1.5em;
}
.properties_number_wrap{
	background: #F4FAFE;
	max-width: 880px;
	margin: 30px auto auto;
	padding: 30px;
}
.properties_number_wrap .p_n_title{
	font-weight: 600;
	text-align: center;
}
.table_p_n{
	width: 100%;
	max-width: 500px;
	margin: 20px auto auto;
}
.table_p_n th{
	text-align: center;
	font-weight: normal;
}
.table_p_n td{
	padding: 0.3em 0 0 0;
	text-align: center;
}
.table_p_n th.subtitle{
	background: #C6E8FF;
}
.table_p_n td .kind{
	display: inline-block;
	border: 1px solid #CCC;
	border-radius: 100px;
	padding: 0 0.5em;
	width: 110px;
	text-align: center;
	font-size: 1.4rem;
	margin-right: 1em;
}
.table_p_n td span.number_befor{
	font-weight: bold;
	font-size: 1.8rem;
	margin: auto 0.2em;
}
.table_p_n td.arrow{
	padding: 0.1em 1em;
	text-align: center;
}
.table_p_n td span.number_after{
	font-weight: bold;
	font-size: 2.2rem;
	color: #3C9DBA;
	margin: 0 0.2em;
}
p.land_text{
    margin-top: 20px;
    color: #007109;
    text-align: center;
    font-weight: 600;
}
p.bkn_num_attention{
    text-align: right;
}
.member_comment{
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	margin-top: 50px;
}
@media screen and (max-width: 768px) {
	ul.feature_list{
		padding-top: 0px;
		max-width: 480px;
	}
	ul.feature_list > li{
		margin-top: 20px;
		padding: 10px 20px;
	}
	ul.feature_list > li .feature_subtitle{
		text-align: center;
	}
	ul.feature_list > li p.main_text{
		font-size: 1.2rem;
	}
	.properties_number_wrap{
		max-width: 480px;
		margin: 30px auto auto;
		padding: 20px;
	}
	.table_p_n{
		max-width: 400px;
		margin: 10px auto auto;
	}
	.table_p_n td .kind{
		padding: 0 0.3em;
		width: 70px;
		font-size: 1.0rem;
		margin-right: 0.5em;
	}
	.table_p_n td span.number_befor{
		font-size: 1.4rem;
	}
	.table_p_n td span.number_after{
		font-size: 1.6rem;
	}
    p.land_text{
        text-align: left;
    }
    p.bkn_num_attention{
        font-size: 1.0rem;
    }
	.member_comment{
		font-size: 1.4rem;
		margin-top: 20px;
	}
}
/* =====================================
そもそも未公開物件とは？
======================================== */
.lead_blue{
	margin-top: 40px;
	font-size: 2.2rem;
	text-align: center;
	color: #3C9DBA;
	font-weight: bold;
}
.mikokai_text{
	margin-top: 1em;
	text-align: center;
}
.mikokai_text span{
	font-size: 2.2rem;
	font-weight: bold;
}
h3.subtitle{
	margin-top: 1.5em;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
}
ul.mikokai_list{
	margin: 20px auto auto;
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.mikokai_list li{
	margin-top: 20px;
	width: 31%;
	padding: 2%;
	background: #FFF url("../images/icon_mikokai.png") no-repeat top 20px center;
	background-size: 56px auto;
	border-radius: 10px;
	padding-top: 80px;
}
ul.mikokai_list li p{
	text-align: center;
	font-weight: bold;
}
ul.mikokai_list li p.line_1{
	margin-top: 0.5em;
}
.area_network{
	max-width: 980px;
	margin: 50px auto auto;
}
@media screen and (max-width: 768px) {
	.lead_blue{
		margin-top: 20px;
		font-size: 1.4rem;
	}
	.mikokai_text span{
		font-size: 1.4rem;
	}
	h3.subtitle{
		font-size: 1.3rem;
		font-weight: bold;
	}
	ul.mikokai_list{
		margin: 0 auto auto;
		max-width: 680px;
	}
	ul.mikokai_list li{
		margin-top: 20px;
		width: 48%;
		padding: 40px 2% 15px 2%;
		background: #FFF url("../images/icon_mikokai.png") no-repeat top 10px center;
		background-size: 32px auto;
		border-radius: 8px;
	}
	.area_network{
		max-width: 680px;
	    margin: 20px auto auto;
	}
}
/* =====================================
なぜこのエリアに強いのか？
======================================== */
.portalbn_wrap{
    max-width: 1020px;
    margin: 30px auto auto;
}
.graph_wrap{
    max-width: 682px;
    margin: 30px auto auto;
}
@media screen and (max-width: 768px) {
    .portalbn_wrap{
        max-width: 480px;
        margin: 20px auto auto;
    }
    .graph_wrap{
        max-width: 460px;
        margin: 20px auto auto;
    }
}
/* =====================================
提携銀行の住宅ローンで不安を解消！！
======================================== */
.nayami{
	max-width: 980px;
	margin: 40px auto auto;
	padding: 40px 20px 40px 60px;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
}
.nayami h4{
	color: #3C9DBA;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
}
@media print, screen and (min-width: 769px) {
	.nayami .nayami_list{
		margin-top: 20px;
		display: flex;
		flex-wrap: wrap;
	}
}
.nayami .nayami_list li{
	margin-top: 1em;
	width: 50%;
	min-height: 34px;
	box-sizing: border-box;
	padding: 0 3em;
	text-align: left;
	background: url("../images/icon_nayami.png") no-repeat left top;
	background-size: 34px auto;
}
.feature_words_wrap{
	text-align: center;
}
.feature_words{
	margin: 50px auto auto;
	display: inline-block;
	padding: 0 4em;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	background: url("../images/bg_feature_l.png") no-repeat left center, url("../images/bg_feature_r.png") no-repeat right center;
	background-size: auto 85%, auto 85%;
}
.nayami_text{
	text-align: center;
	margin: 30px auto auto;
}
@media screen and (max-width: 768px) {
	.nayami{
		max-width: 680px;
		margin: 20px auto auto;
		padding: 20px;
		border-radius: 6px;
		text-align: center;
	}
	.nayami h4{
		font-size: 1.4rem;
	}
	.nayami .nayami_list{
		display: inline-block;
	}
	.nayami .nayami_list li{
		margin-top: 0.5em;
		width: 100%;
		min-height: inherit;
		padding: 0  0 0 2em;
		text-align: left;
		background: url("../images/icon_nayami.png") no-repeat left top 3px;
		background-size: 18px auto;
		font-size: 1.4rem;
	}
	.feature_words{
		margin: 30px auto auto;
		font-size: 1.4rem;
	}
	.nayami_text{
		text-align: left;
		margin: 20px auto auto;
		max-width: 680px;
	}
}
/* =====================================
創業約3年で180億円を超える取扱高
======================================== */
.graph{
	margin: 50px auto 100px auto;
	max-width: 980px;
}
.voice_suumo{
	margin: 50px auto auto;
	max-width: 640px;
	background: #FFF;
}
.voice_suumo{
	border-radius: 10px;
}
@media print, screen and (min-width: 769px) {
	.voice_suumo{
		display: flex;
		justify-content: space-around;
		align-items: center;
		padding: 20px 50px;
	}
	.voice_suumo .logo_suumo{
		width: 40%;
		padding-right: 20px;
	}
	.voice_suumo .star_wrap{
		width: 50%;
	}
}
.voice_suumo .star_wrap .star{
	display: flex;
	align-items: center;
}
.voice_suumo .star_wrap .star span{
	font-weight: bold;
	color: #00306D;
	font-size: 3.2rem;
	margin-left: 0.5em;
	margin-top: 0.2em;
	font-family: Arial, Helvetica, "sans-serif";
}
.voice_suumo .star_wrap .star img{
	max-width: 190px;
}
.voice_suumo .star_wrap .star_num{
	color: #00306D;
	text-align: center;
}
.voice_suumo .star_wrap .star_num span{
	font-weight: bold;
	font-size: 3.2rem;
	font-family: Arial, Helvetica, "sans-serif";
}
@media screen and (max-width: 768px) {
	.graph{
		margin: 20px auto 50px auto;
		max-width: 640px;
	}
	.voice_suumo{
		margin: 20px auto auto;
	}
	.voice_suumo{
		align-items: center;
		padding: 20px 50px;
	}
	.voice_suumo .logo_suumo{
		max-width: 160px;
		margin: auto;
	}
	.voice_suumo .star_wrap .star{
		margin-top: 10px;
		display: flex;
		justify-content: center;
	}
	.voice_suumo .star_wrap .star span{
		font-size: 2.2rem;
	}
	.voice_suumo .star_wrap .star img{
		max-width: 160px;
	}
	.voice_suumo .star_wrap .star_num span{
		font-size: 2.2rem;
	}
}
/* =====================================
売買仲介実績
======================================== */
.result_text{
	margin: 50px auto auto;
	max-width: 980px;
}
@media print, screen and (min-width: 769px) {
	.result_list{
		margin: 40px auto auto;
		max-width: 980px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.result_list > div{
		width: 30%;
	}
}
.zoom_img a{
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.zoom_img a:after{
 	content: "";
	display: block;
	background: url("../images/results_icon_zoom.png") no-repeat center center;
	background-size: cover;
	width: 25px;
	height: 26px;
	opacity: 0.7;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.zoom_img a:hover:after{
	opacity: 1.0;
}
.zoom_img a img{
	-webkit-transform: translate3d(0, 0, 0) scale(1, 1);
	transform: translate3d(0, 0, 0) scale(1, 1);
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}
.zoom_img a:hover img{
	-webkit-transform: translate3d(0, 0, 0) scale(1.05, 1.05);
	transform: translate3d(0, 0, 0) scale(1.05, 1.05);
	opacity: .7;
}
.result_text2{
	margin: 50px auto auto;
	max-width: 980px;
    text-align: center;
}
.result_text2 strong{
    font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
	.result_text{
		margin: 20px auto auto;
		max-width: 680px;
	}
	.result_list{
		margin: 20px auto auto;
		max-width: 480px;
	}
	.result_list > div{
		margin-top: 20px;
	}
    .result_text2{
        margin: 10px auto auto;
		max-width: 480px;
        text-align: left;
    }
    .result_text2 strong{
        font-size: 1.4rem;
    }
}
/* =====================================
メリット
======================================== */
ul.merit_list{
	margin: 30px auto auto;
	max-width: 980px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.merit_list li{
	margin-top: 20px;
	width: 24%;
	padding: 2%;
	background: #FFF url("../images/icon_merit.png") no-repeat top 20px center;
	background-size: 35px auto;
	border-radius: 10px;
	padding-top: 80px;
}
ul.merit_list li p{
	text-align: center;
	font-weight: bold;
}
.merit_p_number{
	margin: 30px auto 100px auto;
	max-width: 980px;
	padding: 2%;
	background: #FFF url("../images/icon_merit.png") no-repeat top 20px center;
	background-size: 35px auto;
	border-radius: 10px;
	padding-top: 80px;
}
.merit_p_number p{
	text-align: center;
	font-weight: bold;
}
.merit_p_number p .number{
	color: #3C9DBA;
	font-size: 2.0rem;
	margin: auto 0.2em;
}
.merit_p_number p.number_attention{
	font-weight: normal;
}
.soudan_text{
	margin: 50px auto auto;
	max-width: 980px;
}
@media screen and (max-width: 768px) {
	ul.merit_list{
		margin: 0 auto auto;
		max-width: 680px;
		flex-wrap: wrap;
	}
	ul.merit_list li{
		margin-top: 20px;
		width: 48%;
		padding: 40px 2% 15px 2%;
		background: #FFF url("../images/icon_merit.png") no-repeat top 10px center;
		background-size: 20px auto;
	}
	.merit_p_number{
		margin: 20px auto 50px auto;
		padding: 40px 2% 15px 2%;
		background: #FFF url("../images/icon_merit.png") no-repeat top 10px center;
		background-size: 20px auto;
	}
	.merit_p_number p .number{
		font-size: 1.4rem;
	}
	.soudan_text{
		margin: 20px auto auto;
		max-width: 680px;
	}
}
/* =====================================
問い合わせ
======================================== */
.contact_wrap{
	background: url("../images/bg_contact.jpg") no-repeat center center;
	background-size: cover;
	padding: 70px 0;
}
.contact_wrap p.contact_text{
	text-align: center;
}
.contact_wrap p.contact_text span{
	display: inline-block;
	padding-bottom: 1em;
	color: #FFF;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	background: url("../images/contact_line.png") no-repeat center bottom;
	background-size: contain;
}
.contact_wrap .contact_btn{
	margin: 10px auto auto;
	max-width: 580px;
	box-shadow: 0 2px 10px 0 rgba(0,0,0,0.5);
	transition: all 0.3s;
}
.contact_wrap .contact_btn:hover{
	transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
	.contact_wrap{
		padding: 40px 20px;
	}
	.contact_wrap p.contact_text span{
		font-size: 1.2rem;
	}
}
/* =====================================
ページトップ
======================================== */
#page-top{
	position: fixed;
	right: 20px;
	bottom: 30px;
	width: 50px;
	z-index: 1000;
}
@media screen and (max-width: 768px) {
	#page-top{
		width: 30px;
	}
}
/* =====================================
フッター
======================================== */
footer{
	padding: 70px 0 0 0;
    background: #F4F4F4;
}
@media print, screen and (min-width: 769px) {
    .footer_wrap{
        max-width: 1100px;
        margin: auto;
        padding: 0 50px;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: flex-start;
    }
	.footer_nav{
        width: 68%;
        padding-left: 50px;
		display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
	}
	.footer_nav li{
        width: 50%;
        margin-bottom: 20px;
	}
	.footer_nav li a{
        font-size: 1.4rem;
        text-decoration: none;
        padding-left: 20px;
        background: url("../images/icon_arrow.png") no-repeat top 3px left;
        background-size: 9px auto;
    }
    .footer_info{
        width: 32%;
        border-right: 1px solid #777777;
        padding-right: 50px;
    }
    .footer_info .f_logo{
        max-width: 260px;
    }
}
.footer_info p{
    margin-top: 30px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 2;
}
.copy{
    background: #113068;
    margin: 70px 0 0;
    padding: 0.5em 0;
    font-size: 1.2rem;
    color: #FFF;
    text-align: center;
}
@media screen and (max-width: 768px) {
    footer{
        padding: 50px 0 0 0;
    }
    .footer_wrap{
        max-width: 400px;
        margin: auto;
        padding: 0 20px;
    }
	.footer_nav li:not(:first-child){
        margin-top: 1em;
	}
	.footer_nav li a{
        font-size: 1.2rem;
        text-decoration: none;
        padding-left: 18px;
        background: url("../images/icon_arrow.png") no-repeat top 3px left;
        background-size: 9px auto;
    }
    .footer_info{
        margin-top: 30px;
        border-top: 1px solid #777777;
        padding-top: 30px;
        text-align: center;
    }
    .footer_info .f_logo{
        max-width: 240px;
        margin: auto;
    }
    .footer_info p{
        margin-top: 10px;
        text-align: center;
    }
    .copy{
        margin: 50px 0 0;
        font-size: 1.0rem;
    }
}
