@charset "utf-8";
/* CSS Document */
/*=======
header
=======================================================*/
#header{
	position: absolute;	
	z-index: 88;
}

h1 {
	width:clamp(3.125rem, 0.808rem + 9.76vw, 8.125rem);
	height:clamp(3.125rem, 0.808rem + 9.76vw, 8.125rem);
	margin: 20px 20px 0;
}
h1 img{
	width: 100%;
	object-fit: contain;
}



/*=======
menu-nav
=======================================================*/
.openbtn,.pc-mail-btn{
	position:fixed;
    z-index: 1000;/*ボタンを最前面に*/
	top:0;
	right: 0;
	cursor: pointer;
    width: 80px;
    height:80px;
	background: #fff;
	border-left: 1px solid #603813;
	border-bottom: 1px solid #603813;
	padding: .7rem 1rem;
	font-weight: 600;
	font-size: 16px;
	color: #603813;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25%;
    height: 3px;
    border-radius: 2px;
	background-color: #603813;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:50%;	
}

.openbtn span:nth-of-type(2) {
	top:60%;
}

.openbtn span:nth-of-type(3) {
	top:70%;
}

/*nav-open時*/
.openbtn.active span:nth-of-type(1) {
    top: 55%;
    left: 26%;
    transform: translateY(6px) rotate(-45deg);
    width: 48%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 70%;
    left: 26%;
    transform: translateY(-6px) rotate(45deg);
    width: 48%;
}


.pc-mail-btn{
	z-index: 800;
	top:80px;
	right: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
}
.pc-mail-btn a{
    display: block;
    text-align: center;	
}

.pc-mail-btn img{
	width: 80%;	
}

@media(max-width:768px){
	.openbtn,.pc-mail-btn{
		width: 60px;
		height:60px;
		padding: .6rem .6rem;
		font-size: 12px;
	}
	.pc-mail-btn {
		top: 60px;		
	}
	.openbtn.active span:nth-of-type(3) {
		top: 75%;
	}
}
@media(max-width:500px){
	.pc-mail-btn{
		display: none;
	}
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    position:fixed;
    z-index: 999;
	top:-120%;
    left:0;
	width:100%;
	background:url("../img/bg-y.jpg");
	transition: all 0.6s;
	height: 100vh;
	padding: 20px 0;
}
#g-nav {
	top: 0;
	left: 100%;
	width: 350px; 
}

#g-nav.panelactive {
	left: calc(100% - 350px); /* 画面右端から表示 */
}
.nav-logo{
	display: flex;
	height: 80px;
	width: 350px;
	justify-content: flex-start;
	align-items: center;
}
.logomark{
	height: 60px;
	width: 60px;
}
.logotext{
	width: 150px;
	margin-left: 10px;
}

.nav-logo img{
	object-fit: contain;
}
.obi{
	background: #f7931e;
	padding: 5px 1rem;
	color: #fff;
	font-weight: 600;
}
.nav-contact{
	display: flex;
	flex-direction: column;
	background: #fff;
	margin-bottom: 30px;
}
.nav-contact li a{
	width: 100%;
	border: 2px solid #f7931e;
	border-top: none;
	display: block;
	color: #f7931e;
	font-weight: 600;
	position: relative;
	font-size: 1.2rem;
	line-height: 50px;
}
.nav-contact li a span{
	padding-left: 4.5rem;
}
.nav-contact .nav-tel a::before,
.nav-contact .nav-mail a::before{
	position: absolute;
	content: '';
	top: 50%;
	left: 1.5rem;
	border-radius: 50%;
	background: #f7931e;
	height: 35px;
	width: 35px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	color: #fff;
	display: flex;
	flex-direction: column;
    justify-content: center;
	text-align: center;	
}
.nav-contact .nav-tel a::before{
	content: '\f095'
}
.nav-contact .nav-mail a::before{
	content: '\f0e0'
}

.g-nav li{
	padding: .5rem 1rem; 
	border-bottom: 1px dashed #603813;
	position: relative;
	padding-left: 2.5rem;
}
.g-nav li::before{
	position: absolute;
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	top:50%;
	left: 1rem;
	transform: translateY(-50%);
	transition: .3s
}
.g-nav li a{
	display: block;
}
.g-nav li:hover::before{
	left: 1.2rem;
	color: #f7931e;
	transition: .3s;
}
.g-nav li:hover{
	background: rgba(255,255,255,.5);
}
.g-nav li:hover a{
	color: #f7931e;
}
.linktop a{
	position: absolute;
	bottom:0;
	left: 0;
	background: #f7931e;
	padding: .8rem;
	text-align: center;
	display: block;
	width: 100%;
	color: #fff;
}
.linktop a:hover{
	background: #603813;
}

@media(max-width:500px){
	#g-nav {
		width: 100%; 
	}	
	#g-nav.panelactive {
		left: 0; /* 画面右端から表示 */
	}	
}


/*=======
footer
=======================================================*/
footer{
	padding: 40px 0;
	background: #ffe89f;
}

footer .flexbox{
	justify-content: flex-end;
}
.f-img{
	width: 38%;
	margin-left: 2%;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
}
.f-img img{
	 vertical-align: bottom;
	height: 100%;
}
   
.f-info{
	width: 48%;
	text-align: center;
	
}
.flogo{
	width: 330px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
    justify-content: center;
}
.f-logomark{
	width: 90px;
	height: 80px;
	object-fit: contain;
}
.f-logotxt{
	object-fit: contain;
	max-height: 60px;
	max-width:80%;
	object-position: center;
	margin-left: 20px
}
.foot-tel a{
	position: relative;
	font-size: 35px;
	font-weight: 600;
	padding-left: 60px;
	line-height: 70px;
}
.foot-tel a::before{
	position: absolute;
	content: '\f095';
	font-family: "Font Awesome 6 Free";
	color: #fff;
	background: #f7931e;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	top: 0;
	left: 0;
	font-size: 25px;
}

.foot-info{
	border-collapse: separate;
	border-spacing : 0 10px;
	max-width: 680px;
	margin: 0 auto;
}
.foot-info tr{
	background: #fff;
	height:70px; 
	text-align: left;
}
.foot-info th{
	border-radius: 20px 0 0 20px;
	padding-left: 2rem;
	width: 23%;
	text-align-last: justify; 
	font-weight: 600;
	font-size:clamp(1rem, 0.467rem + 1.11vw, 1.3rem); 
}
.foot-info td:last-child{
	border-radius:  0 20px 20px 0;
}
.foot-info td{
	font-weight: 600;
	font-size: clamp(1rem, 0.861rem + 0.59vw, 1.3rem);
	padding-left: 1.5rem;
	
}

.f-ad td{
	font-size: 1rem!important; 
	font-weight: 400!important;
}
.f-map{
	width: 100px;
	padding: 0!important;
}
.f-map .btn01{
	padding: .3rem 1rem .2rem;
}
.copy{
	text-align: center;
	font-size: 13px;
	padding: 3px 0;
	color: #f7931e;
}

@media(max-width:1130px){
	.f-info {
		width: 55%;
	}
}
@media(max-width:768px){
	footer .flexbox{
		align-items: center
	}	
	.f-info{
		width: 96%;
	}	
	.f-img{
		width: 96%;
		height: 35vh;
		margin:10px auto;
		border-radius: 30px;
		overflow: hidden;
	}	
}
@media(max-width:450px){
	.foot-info th {
    	padding-left: 1.3rem;
		font-size: .95rem;
	}
	.f-map {
    	width: 80px;
	}
	.flogo{
		width: 300px;
	}	
}
/*=======
pagetop
=======================================================*/

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
	position: relative;
}

#page-top a::after{
	position: absolute;
	content: '';
	display: block;
	width:40%;
	aspect-ratio:1/1;
	transform: rotate(-45deg);
	border-top:1px solid #808080;
	border-right:1px solid #808080;
	bottom: 15px;
}


#page-top a::before{
	position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #808080;
    bottom: 10px;
}

#page-top a:hover::after{
	animation: loop2 800ms linear infinite;
}

@keyframes loop2 {
	
	0%{transform: translateY(0) rotate(-45deg);}
	50%{transform: translateY(-10px) rotate(-45deg);}
  100%{transform: translateY(0) rotate(-45deg);}
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 30px;
	bottom:18px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime-pagetop 0.5s forwards;
}
@keyframes UpAnime-pagetop{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime-pagetop 0.5s forwards;
}
@keyframes DownAnime-pagetop{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/*=======
index
=======================================================*/
/*--- fv ---*/
.fv-wrap{
	display: flex;
	width: 100%;
	max-height: 100vh;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.fv-left{
	width: calc(100% - 350px);
	position: relative;
}
.fv-left::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	z-index: 2;
	display: block;
    background: linear-gradient(to left, rgba(255,255,255,0) 20%,#fff 80% ,#fff 100%);
	
}
.fv-left h2{
	position: absolute;
	z-index: 3;
	top: 43%;
	left: 2vw;
	font-size: clamp(1.8rem, 0.556rem + 2.59vw, 2.5rem);
	text-align: center;
}
.house-illst{
	position: absolute;
	z-index: 3;
	width:clamp(9.375rem, -1.631rem + 46.34vw, 33.125rem);
	left: 6vw;
	bottom: 0;	
}
.house-illst img{
	object-fit: contain;
}
.fv-slider {
 	position:relative;
	width: 100%;
	max-height: 100vh;
	aspect-ratio: 4 / 3;
	z-index: 1;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url(../img/slide01.jpg);
    background-position: 60% center;/*背景画像の位置を中央に*/
}

.slider-item02 {
    background:url(../img/slide02.jpg);
	background-position: 60% center;
}
.slider-item03 {
    background:url(../img/slide03.jpg);
	background-position: 60% center;	
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    max-height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
	aspect-ratio: 3 / 4;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.fv-right{
	width: 350px;
	background: url("../img/fv-bg.jpg") no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 2%;
}

.right-menu{
	margin: 30px 0;
}

.right-menu li a{
	display: block;
	background: #fff;
	padding: .5rem 2rem;
	padding-right: 3rem;
	margin-top: 20px;
	font-weight: 600;
	position: relative;
}
.right-menu li a::after{
	position: absolute;
	content: '';
	background: url("../img/fv-arrow.svg") no-repeat;
	width: 2rem;
	height: 2rem;
	background-size: contain;
	background-position: center;
	top: 50%;
	right: 2rem;
	z-index: 3;
	transform: translateY(-50%);
}

.right-menu li a span{
	z-index: 3;
	position: relative;
}
.right-menu li a:hover span{
	color: #fff;
}
@media(max-width:1199px){
	.fv-right{
		width: 25vw;
	}
	.fv-left {
		width: calc(100% - 25vw);
		position: relative;
	}	
}
@media(max-width:900px){
	.right-menu li a::after{
		right: 1rem;
	}
}
@media(max-width:768px){
	.fv-right{
		display: none;
	}
	.fv-left {
		width:100%;
	}	
	.fv-left h2{
		font-size: clamp(1.1rem, 0.414rem + 2.89vw, 1.8rem);
	}
	.slider-item {
		aspect-ratio:4 / 3;
	}	
}




/*---- TOP link ----*/
.top-link{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.buy-link,.sale-link{
	width:clamp(40%,40%,450px);
	position: relative;
	border: 3px dashed #f7931e;
	padding: 1.5rem 1rem;
	padding-bottom: 2.5rem;
	text-align: center;
	font-weight: 600;
}
.buy-link{
	margin-right: 2vw;
}
.sale-link{
	margin-left: 2vw;
}
.buy-link a,.sale-link a{
	display: block;
	width: 100%;
	height: 100%;
}
.buy-link figure,
.sale-link figure{
	position: relative;
	height: 100px;
	overflow: hidden;  
	margin: 10px 0 20px;
}
.buy-link figure img,
.sale-link figure img {
  position: absolute;
  top: -80px;
  left: 0;
  height: auto;
  max-width: 100%;
}
.sale-link figure img{
	top: -130px;
}
.buy-link::after,.sale-link::after{
	position: absolute;
	content: '';
	background: url("../img/illst-line.png");
	background-size: contain;
	background-position: bottom;
	background-repeat: repeat-x;
	width: 100%;
	height: 3rem;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.buy-link::before{
	background: url("../img/midashi01.png");
	left: -80px;
}

.sale-link::before{
	background: url("../img/midashi02.png");
	right: -80px;
}

.buy-link::before,.sale-link::before{
	position: absolute;
	content: '';
	width:clamp(135px, 20vw,180px);
	aspect-ratio: 92 / 49;
	top: -70px;	
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
@media(max-width:1000px){
	.sale-link figure img{
		top: -50px;
	}	
}
@media(max-width:768px){
	.buy-link,.sale-link{
		width: 80%;
		margin-top: 50px;
		margin-right: 0;
		margin-left: 10%;
	}
	.sale-link::before{
		background: url("../img/midashi02_sp.svg");
		right: auto;
		left: -80px;
	}	
}
@media(max-width:500px){
	.buy-link,.sale-link{
		width: 85%;
	}
	.buy-link::before,.sale-link::before{
		left: -50px;
		top: -55px;
	}
	
}
/*TOP news*/
.information{
	padding-top: 30px;
	padding-bottom: 120px;
}

.information::before{
	width: 50%;
	min-width: 450px;
	height: 50%;	
	top:15%;
	left: 0;
	background: url("../img/info-bg.jpg");
	background-position: right 35%;
	background-size: cover;	
	z-index: -1;
}
.information::after{
	width: 30%;
	height: 350px;	
	bottom: -80px;
	right: 0;
	background: url("../img/illust/house02.svg");
	background-position: right bottom;
	background-size: contain;
	z-index: -1;
	opacity: .7;
}
.information::before,
.information::after,
.t-sale::after{
	position: absolute;
	content: '';
	background-repeat: no-repeat;
}
.news-flex{
	display: flex;
	justify-content: space-between;
}

.info-title{
	width: 300px;
	color: #333;
}
.news-main{
	box-shadow: 0 0 2px #99591a;
	padding: 1rem;
	margin-top: 15vh;
	width: 70%;
	background: #fff;
	position: relative;
}
.news-main::before{
	position: absolute;
	content: '';
	width: 350px;
	aspect-ratio: 10 / 3;
	background: url("../img/title-info.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: -110px;
	left: 0;
}

.newsList{
	height: 230px;
	overflow-y: auto;
}
.newsList a{
	display: block;
	padding: .8rem 1rem;
	margin-right: 10px;
	border-bottom: 1px dashed #aaa;
	transition: .4s;
}
.newsList a:hover{
	color: #f7931e;
	transition: .4s;
}
.catName{
	background: #eee;
	border: 1px solid #aaa;
	border-radius: 10px;
	font-size: 14px;
	padding: .3rem;
	margin: 0 10px;
}
.newsList a:hover .catName{
	background: #fff;
	border-color: #f7931e;
	transition: .4s;
}
@media(max-width:768px){
	.information::after {
		width: 70%;
		bottom: 0;
	}		
	.news-flex{
		flex-direction: column;
	}
	.info-title,.news-main{
		width: 100%;
	}
	.news-main{
		margin-top: 8vh;
	}	
	.news-main::before{
		width: 40vw;
		min-width: 200px;
		top: -150px;
		left: auto;
		right: 0;
	}	
}
@media(max-width:600px){

	.newsList li{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		line-height: 1.2;
	}
	.newsList li .title{
		margin-top: 5px;
		width: 90%;
	}
	.catName{
		padding-bottom: .2rem;
	}	
}

/*買いたい*/
.t-buy::before {
    content: '';
    display: block;
    background: url("../img/buy-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw;
	min-width: 500px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 20px 20px 0;
    z-index: 0;
    background-position: bottom;
}
.t-buy-txt{
    display: flex;
	justify-content: flex-end;
}
.t-buy-txt .buytxt{
	width: 515px;
	background: rgba(255,255,255,0.8);
	padding: 3rem 3vw;
	z-index: 1;
}

/*売りたい*/
.t-sale::before {
    content: '';
    display: block;
    background: url("../img/sale-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw;
	min-width: 500px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0 20px 20px 0;
    z-index: 0;
    background-position: center bottom;
}
.t-sale::after{
	width: 30%;
	height: 300px;	
	bottom: -80px;
	right: 0;
	background: url("../img/illust/house03.svg")no-repeat;
	background-position: right bottom;
	background-size: contain;
	z-index: -1;
	opacity: .5;
}

.t-sale-list::before{
	position: absolute;
	content: '';
	width: 70vw;
	height: 90%;
	background: rgba(255,248,176,.5);
	top: 10%;
	left: 0;
	border-radius: 0 20px 20px 0;
	z-index: -1;
	
}

@media(max-width:600px){
	.t-sale::after {
		display: none;
	}
}
/*min-slider*/
.min-slider {
   width:94%;
    margin:0 auto;
}

.min-slider img {
    width:100%;
    height:auto;
}
.min-slider .slick-slide {
    margin:0 10px;
}
.min-slider .slick-list {
    padding: 3px 0;
}
.min-slider .slick-prev, 
.min-slider .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.min-slider .slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.min-slider .slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}


/*estate-list*/
.estate-list{
	margin-bottom: 10px;
}
.estate-list li{
	background: #fff;
	box-shadow: 0 0 2px #99591a;
}
.estate-list li a{
	display: block;
}
.estate-list img{
	aspect-ratio: 16 / 9;
}
.txt-box{
	padding: .5rem;
}
.list-name{
	font-weight: 600;
	font-size: 16px;
}
.list-price{
	color: #f7931e;
	font-size: 18px;
	font-weight: 600;	
}
.list-point{
	font-size: 14px;
}
.list-title{
	color: #f7931e;
	font-size: 16px;
}
.list-text{
	font-size: 14px;
	line-height: 1.3;
}

/*top-rent*/
.t_rent {
	position: relative;
	margin-top: 70px;
	overflow: hidden;
}
.t_rent::before {
	content: "";
	display: block;
	background:url("../img/bg-y.jpg");
	width: 26vw;
	height: 550px;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 0px 20px 20px 0px;
	opacity: .5;
	z-index: -1;
}
.t_rent:after {
	content: "";
	display: block;
	background: url(../img/t_rent_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 50vw;
	height: 410px;
	position: absolute;
	top: 40px;
	right: -21px;
	border-radius: 20px 0 0 20px;
	z-index: 0;
	background-position: center top;
}
.t_rent-txt{
    display: flex;
	justify-content: flex-start;
}
.t_rent-txt .buytxt{
	width: 515px;
	background: rgba(255,255,255,0.8);
	padding: 3rem 3vw;
	z-index: 1;
}

@media(max-width:600px){
	.t_rent::before {
	content: "";
	display: block;
	background: url(../img/t_rent_bg_sp.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 80vw;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
	right: auto;		
	border-radius: 0 20px 20px 0;
	z-index: 0;
	background-position: right bottom;
		opacity: 1;
}

.t_rent::after {
	content: "";
	display: block;
	background:url("../img/bg-y.jpg");
	width: 30vw;
	height: 550px;
	position: absolute;
	top: 3%;
	right: 0;
	border-radius: 20px 0px 0px 20px;
	z-index: -1;
}
	.t_rent-txt{
    padding-top: 320px;
    width: 90%;
    margin: 0 auto;
}
}

/*top-about*/
.t-about{
	padding-top: 120px;
}

.t-about::before{
	position: absolute;
	content: '';
	background: url("../img/bg-y.jpg");
	background-size: cover;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80%;
	z-index: -1;
}
.t-bout-flex{
	display: flex;
    justify-content: flex-end;
    max-width: 1100px;
}
.about-img{
	position: absolute;
    content: '';
    height: 75%;
    top: 100px;
    right: 45vw;
    object-fit: contain;
    z-index: 0;
}
.about-img img{
	object-position: right;
	height: 100%;
	object-fit: contain;
}
.about-box{
	position: relative;
	width: 500px;
	padding: 2.5rem 2rem 3rem;
	background: #fff;
	z-index: 1;
	box-shadow: 0 0 2px #f7931e;
	margin: -50px 0 50px;
}
.about-box h2{
	margin-bottom: 20px;
}

.about-box h3{
	position: absolute;
	content: '';
	color: #f7931e;
	top: -18px;
	font-size: 22px;
}
.about-box a{
	position: absolute;
	content: '';
	bottom: -20px;	
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	text-align: center;
}

@media(max-width:768px){
	.t-bout-flex{
		justify-content:center;
		padding-bottom: 120px;
	}	

	.about-img {
		top: auto;
		right: 0;
		bottom: 50px;
		height: 30%;
    	width: 100%;
	}
	.about-img img{
		object-position: center bottom;
		object-fit: cover;
	}	
}

/*=======
下層共通
=======================================================*/
.kfv{
	overflow: hidden;
	
	z-index: 0;
}
.kfv::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .4;
	z-index: -1;
	top: 0;
	
}
.kfvbg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -2;
}
.fv-comp{
	width: 100%;
	height: 100%;
	object-position: center 55%;
}

.kfv h2{
	color: #fff;
	text-align: center;
	z-index: 0;
	text-shadow: 0 0 3px #333;
	font-size:clamp(1.8rem, 1.476rem + 1.37vw, 2.5rem);
}
.kfv h2 span{
	position: relative;
}
.kfv h2 span::before,.kfv h2 span::after{
	position: absolute;
	content: '';
	width:120%;
	height: 2px;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
}
.kfv h2 span::before{
	top: -15px;
}

.kfv h2 span::after{
	bottom: -10px;
}


/*パンくずリスト*/
.binner-wrap{
	background: #f7931e;
	padding-top: 3px;
}
.binner {
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
	color: #FFF;	
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #FFF;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 6 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
}
/*=======
不動産購入
=======================================================*/

/*物件検索*/
.filters{
	font-size: 15px;
	padding: .5rem 1rem;
	border: 2px solid #aaa;
	max-width: 960px;
	margin: 0 auto;
	background: #fff;
}
.filter-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: .5rem 1rem;
  border-bottom: 1px solid #eee;
}

.filter-label {
  margin-right: 10px;
  white-space: nowrap;
}

input[type="checkbox"] + label {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
	margin-bottom: 0!important;
}

/* ボタン */
#search-btn,
#reset-btn {
  padding: 5px 15px;
  width: 100px;
  background: #fff;
  border: 1px solid #666;
  margin: 0 15px;
}
#search-btn:hover,
#reset-btn:hover{
	background: #eee;
}


/*物件情報*/
.property{
	display: flex;
	flex-wrap: wrap;
}

.property li{
	width: calc(100% / 4 - 20px);
	margin: 0 10px 10px;
	box-shadow: 0 0 3px #333;
	background: #fff;
}

.item-img{
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

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

.item-title{
	padding: 1rem 1vw;
}
.item-name{
	color: #f7931e;
	font-size: 1.2rem;
}
.item-title p{
	font-size: 16px;
}

.img_wrap3{
	display: flex;
	gap: 10px;
}
.img_wrap3 .img{
	width: calc(100% / 3 - 20px);
	margin: 0 auto;
}


/*物件概要*/
.b_about tr{
	border: 1px solid #eee;
	font-size: 16px;
}
.b_about th{
	padding: 0.5rem 1rem;
	width: 25%;
	border-right: 1px solid #eee;
	font-weight: 400;
	background: #E4E4E4;
}
.b_about td{
	padding: 0.5rem 1rem;
}
.b_map{
	margin-top: 30px;
}

@media(max-width:899px){
	.property li{
		width: calc(100% / 2 - 20px);
	}	
}
@media(max-width:599px){
	.filters{
		font-size: 14px;
	}	
	.filter-child {
		padding: .5rem 0;
	}
	.filter-label{
		width: 100%;
	}
	input[type="checkbox"] + label {
	  margin-right: 5px!important;
	}	
}
@media(max-width:450px){
	.property li{
		width:  calc(100% - 20px);
	}	
}

img.bgo{
	z-index: 1;
	box-shadow: 10px 10px 0 #FFD3A0;
}


/*=======
　不動産売却
=======================================================*/
.qbox{
	display: flex;
	max-width: 960px;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	padding-bottom: 50px;
}
.qbox::after{
	position: absolute;
	content: '';
	bottom:0;
    width: 100px;
    aspect-ratio: 7 / 2;
    background:#f7931e;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    display: block;
    margin: 4em auto 0;
}
.qtxt{
	width: 55%;
	padding: 1rem 1.5rem;
	background: #fff;
	display: flex;
}
.qtxt ul{
	display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.qtxt li{
	position: relative;
	padding-left: 1.5rem;
}
.qtxt li::before{
	position: absolute;
	content: '\f14a';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	color: #f7931e;
	top:0;
	left: 0;
}
.qimg{
	width: 45%;
}
.qimg img{
	vertical-align: bottom;
}
.q-mes{
	text-align: center;
}

/*流れ*/
.flow-wrap {
    position: relative;
	font-size: 16px;
}

.flow-wrap::before {
    content: "";
    width: 3px;
    background: #f7931e;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 37px;
    z-index: -1;
}

.flow-wrap .item {
    display: flex;
    gap: 18px;
}

.flow-wrap .item+.item {
    margin-block: 4em 0;
}

.flow-wrap .item .step_box {
    flex-shrink: 0;
    width: 80px;
    aspect-ratio: 1/1;
    height: fit-content;
    min-width: 0;
    background: #f7931e;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    letter-spacing: .05em;
    font-weight: 700;
    line-height: 1.2;
}

.flow-wrap .item .step_box .num {
    display: block;
    font-size: 2em;
}

.flow-wrap .item .text_box {
    width: 100%;
    background: #F7F7F7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
    padding: 2em;
}

.flow-wrap .item .text_box .title {
    color: #f7931e;
    font-size: 20px;
    letter-spacing: .05em;
    font-weight: 700;
    line-height: 1.5;
    margin-block: 0 0.3em;
}

.flow-wrap .item .text_box .text {
    font-size: 16px;
    letter-spacing: .05em;
}

.flow-wrap .item .text_box .cta {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-block: 1.5em 0;
}

.flow-wrap .item .text_box .cta .tel_box .tel a {
    display: inline-block;
    color: #f7931e;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.flow-wrap .item .text_box .cta .tel_box .tel a .small {
    font-size: 0.6em;
}

.flow-wrap .item .text_box .cta .tel_box .hours {
    font-size: 14px;
    letter-spacing: .05em;
    margin-block: 0.3em 0;
}

.flow-wrap .item .text_box .cta .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f7931e;
    border: 2px solid #f7931e;
    min-block-size: 50px;
    padding: 0.3em 2em;
    border-radius: 0.5em;
    font-size: 16px;
    letter-spacing: .05em;
    font-weight: 700;
    color: #fff;
    transition: .3s;
}

.flow-wrap .item .text_box .cta .btn a:hover {
    background: #fff;
    color: #f7931e;
}

@media(max-width:734px){
	.flow-wrap .item .text_box .cta {
    	flex-direction: column;
    	align-items: flex-start;
	}
}
@media(max-width:699px){
	.qbox{
		flex-direction: column;
		align-items: center;
	}
	.qtxt ,.qimg{
		width: 100%;
	}
	.qimg{
		height: 38vw;
        overflow: hidden;
        position: relative;
	}
	.qimg img {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}	
}

@media(max-width:450px){
	.q-mes{
		text-align: left;
	}
	.q-mes span.ib{
		display: inline!important;
	}

	.flow-wrap::before {
		left: 23px;	
	}
	.flow-wrap .item .step_box {
		width: 50px;
		font-size: 10px;	
	}
	.flow-wrap .item .text_box .cta .btn a {
    	padding: 0.3em 1em;	
	}
}


/*=======
売却実績
=======================================================*/

#saleList li{
	margin-bottom: 30px;
}
#saleList .title{
	background:#ffe89f;
	width: 100%;
	padding: 5px 2rem;
	margin-bottom: 20px;
	font-weight: 600;
	
}
#saleList .title a{
	display: block;
	width: 100%;
}
#saleList .thumbNailWrap{
	width: 40%;
	padding:0 1rem 1rem;
	aspect-ratio: 7 / 5;
	overflow: hidden;
	
}

#saleList .comment{
	width: 55%;
}
#saleList .sale{
	display: none;
}

table.sale{
	border-collapse: separate;
	
}
.sale th{
	font-size: 16px;
	width: 80px;
	padding:0.3rem 1rem;
	background: #f7931e;
	color: #fff;
	font-weight: 400;
	text-align-last: justify;  
	border-radius: 10px;
	line-height: 1.5;
}
.sale td{
	padding:0.3rem 1rem;
}
.saleh3{
	font-size: 16px;
	padding-left: .5rem;
	border-left: 5px solid #f7931e;
	margin: 10px 0;
}


@media (max-width: 768px){
	#saleList .thumbNailWrap{
		width: 100%;
		aspect-ratio: auto;
		max-height: 45vh;
	}

	#saleList .comment{
		width: 100%;
	}
}

/*=======
　derail
=======================================================*/
.detailUpfile{
	max-width: 680px;
	margin: 20px 0;
}
.ntitle{
	font-size: 18px;
	position: relative;
	padding: 0.5rem 1rem;
	margin-bottom: 10px;
}
.ntitle::after {
    position: absolute;
    bottom: 0;
    left: 0;
	width: 100%;
    height: 8px;
    content: '';
    background-image: -webkit-repeating-linear-gradient(135deg,#f7931e,#f7931e 1px, transparent 2px, transparent 5px);
    background-image: repeating-linear-gradient(-45deg,#f7931e,#f7931e 1px, transparent 2px, transparent 5px);
    background-size: 7px 7px;
	background-repeat: repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.news-detail #up_ymd{
	font-size: 15px;
	text-align: end;
}
.news-box{
	padding: 0 1rem;
}




/*=======
　会社概要
=======================================================*/
.about tr{
	border-bottom: 1px solid #eee;
	font-size: 16px;
}
.about th{
	width: clamp(150px , 30% ,200px) ;
	text-align: left;
	padding: .8rem .5rem;
	font-weight: 400;
	vertical-align: top;
}

.about td{
	padding: .8rem .5rem;
	width:70%;
}

@media(max-width:550px){
	.about th{
		display: block;
		color: #f7931e;
		width: 100%;
		padding-bottom: 0;
	}
	.about td{
		display: block;
		width: 100%;
		padding-left: .8rem;
	}
}

.map{
	max-width: 960px;
	margin: 0 auto;
	height: 45vh;
}







/*=======
お問い合わせ
=======================================================*/
.contact .tel_contact{
	text-align: center;
	border-top: 3px double rgba(251, 176, 59, 0.5);
	border-bottom: 3px double rgba(251, 176, 59, 0.5);
	padding: 15px 0;
	margin: 0 auto;
	width: 94%;
	max-width: 600px;
}
.contact .tel_contact a{
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 500;
	white-space: nowrap;
	letter-spacing: 0.08em;
	line-height: 1.7;
}
.contact .tel_contact a:hover{
	opacity: 0.6;
}
.contact .tel_contact p{
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.2em;
}
@media (max-width: 750px){
	.contact .tel_contact{
		padding: 20px 0;
	}
	.contact .tel_contact a{
		font-size: 2rem;
	}
}
@media (max-width: 450px){
	.contact .tel_contact a{
		font-size: 1.6rem;
	}
}


/*メールフォーム*/
.mailform{
	margin: 0 auto;
	width: 94%;
	max-width: 960px;
}
.mailform .row{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last){
	border-bottom: 1px dotted #cccccc;
}
.mailform .row div:nth-child(1){
	width: 28%;
	font-weight: 500;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2){
	width: 70%;
	line-height: 1.5;
}
.mailform .row span{
  	color: #fff;
  	background: #F7931E;
  	padding: 5px;
  	margin-right: 5px;
  	font-size: 11px;
	border-radius: 2px;
	vertical-align: middle;
	font-weight: 500;
}
.mailform .row small{
	display: block;
	margin-top: 3px;
}
.mailform .box, .mailform textarea{
	border: 1px solid #ddd;
  	padding: 5px;
  	width: 100% !important;
  	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button{
	display: block;
	text-align: center;
	transition: .6s;
	font-size: 1rem;
	font-weight: 500;
	padding: 8px 5px;
	margin: 0 auto;
	width: 250px;
	background: #F7931E;
	border: 1px solid #fff;
	color: #fff;
}
.mailform button:hover{
	background: #fff;
	border: 1px solid #F7931E;	
	color:#F7931E;
}
.mailform button::before{
	font-family: "Font Awesome 6 Free";
	content: "\f1d8";
	font-weight: 700;
	margin-right: 10px;
}

@media (max-width: 750px){
	.mailform .row{
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1){
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2){
		width: 100%;
	}
}

/*チェックボックス*/
input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=checkbox] + label::before{
    background: #fff;
    border: 1px solid #999;
    content: '';
    display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	border-radius: 3px;
}
input[type=checkbox] + label::after{
    border-right: 3px solid #F7931E;
    border-bottom: 3px solid #F7931E;
    content: '';
    display: block;
    height: 15px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 36%;
    width: 5px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=checkbox]:checked + label::after{
    opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
@media (max-width: 750px){
	input[type=checkbox] + label{
		display: block;
	}
}

/*ラジオボタン*/
input[type=radio]{
	display: none;
}
input[type=radio] + label{
    display: inline-block;
	padding-left: 20px;
	position:relative;
	margin-right: 20px;
	margin-bottom: 10px;
	cursor: pointer;
}
input[type=radio] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	transform: translate(0,-50%);
  	left: 0;
    width: 15px;
  	height: 15px;
	background: #f4f4f4;
	border-radius: 100%;
	border: 1px solid #b4b4b4;
	cursor: pointer;
	text-align: center;
	transition: all 250ms ease;
}
input[type=radio]:checked + label::before {
	background-color: #F7931E;
	box-shadow: inset 0 0 0 2px #f4f4f4;
}
input[type=radio]:focus + label::before{
	outline: none;
	border-color: #F7931E;
}
input[type=radio]:disabled + label::before {
	box-shadow: inset 0 0 0 2px #f4f4f4;
	border-color: #b4b4b4;
	background: #b4b4b4;
}
input[type=radio] + label:empty::before{
	margin-right: 0;
}
@media (max-width: 750px){
	input[type=radio] + label{
		display: block;
	}
}


.contact_info ul li{
	margin-bottom: 5px;
	text-align: center;
	font-size: 0.9rem;
}

/*アコーディオン*/
.privacy{
}
.privacy li{
}
.privacy li .privacy_wrap{
	border: 1px solid #ccc;
}
.privacy li .privacy_wrap .privacy_subject{
	cursor: pointer;
	transition: all .5s ease;
	padding: 15px 20px;
	padding-right: 30px;
	position: relative;
	color: #fff;
	background-color: #F7931E;
}
.privacy li .privacy_wrap .privacy_subject.area_close{
}
.privacy li .privacy_wrap .privacy_subject h3{
	font-size: 1.1rem;
}
/*アイコンの＋と×*/
.privacy li .privacy_wrap .privacy_subject::before,
.privacy li .privacy_wrap .privacy_subject::after{
	position: absolute;
	top:48%;
	right: 15px;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
}
.privacy li .privacy_wrap .privacy_subject::before{
	transform: rotate(0deg);
}
.privacy li .privacy_wrap .privacy_subject::after{
	transform: rotate(90deg);
}
/*area_closeクラスがついたら形状変化*/
.privacy li .privacy_wrap .privacy_subject.area_close::before{
transform: rotate(45deg);
}
.privacy li .privacy_wrap .privacy_subject.area_close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.privacy li .privacy_wrap .privacy_box{
	position: relative;
	display: none;/*はじめは非表示*/
	padding: 20px;
	background: #fff;
}

.privacy_flame{
	height: 250px;
	overflow-y: scroll;
}
.privacy_flame p{
	padding: 10px;
	font-size: 0.8rem;
}
.privacy_flame p span{
	display: block;
	color: #F7931E;
	font-size: 0.95rem;
	font-weight: 500;
}
.privacy_flame p span::before{
	content: "■";
	display: inline-block;
	font-size: 0.6rem;
	margin-right: 0.5em;
	transform: translateY(-2.5px);
}
.privacy_flame ul li{
	font-size: 0.8rem;
}

/*スクロールバー*/
.privacy_flame::-webkit-scrollbar{
    overflow: hidden;
    width: 1px;
    background: #F7931E;
}
.privacy_flame::-webkit-scrollbar-button {
    display: none;
}
.privacy_flame::-webkit-scrollbar-thumb, .privacy_flame::-webkit-scrollbar-corner {
    background: #fafafa;
}












