@charset "Utf-8";

/* ------------------------------
 共通
------------------------------ */

#content{border-bottom: none!important}


/* マウスストーカーのスタイル */
.stalker {
  background: url("../img/front/ghost.svg")no-repeat center / contain;
  height: 120px; 
  left: -50px; /* widthの半分 */
  opacity: 0; /* カーソルを画面内に入れるまでは透明 */
  pointer-events: none; /* 直下のリンクをクリック可能にする */
  position: fixed; /* スクロールしてもカーソルの位置で固定 */
  top: -15px; /* widthの半分 */
  transition: transform .3s ease-out; /* 遅れてついてくる時間 */
  width: 100px; /* 円の幅 */
  z-index: 999; /* 一番上に来るように */
}

/* セクションの下矢印部分 */
.section_arrow{
	position: relative;
	margin-bottom: 150px;
	padding: 5em 0;
}
.section_arrow:after{
	content: '';
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: -49px;
	left: 0;
}

@media print, screen and (min-width: 1024px) {
	.section_arrow:after{
		height: 100px;
		bottom: -99px;
	}
}



/* アニメーション */

/*　上下 */
@keyframes movetate {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}

/*　左右 */
@keyframes moveyoko {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(10px);
  }
}


/* ------------------------------
 トップページ　ヘッダー
------------------------------ */

#front_header{
	background: url("../img/front/header_bg.jpg") no-repeat center / cover;
	position: relative;
	height: calc(100svh - 50px);
}


/*  ヘッダーロゴ */
.header_logo{
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translate(-50%, 0 );
	width: 95%;
	margin: 0 auto;
}

@media print, screen and (min-width: 1024px) {
	.header_logo{
		max-width: 600px;
	}
}
@media print, screen and (min-width: 1400px) {
	.header_logo{
		top: 10%;
	}
}


/* ヘッダーメニュー */
.pxbox li{
	font-size: 20px;
	font-family: 'pm12';
	position: relative;
	line-height: 1.5em;
}
.pxbox li a{
	color: #fff;
}
.pxbox li a:before {
	content: "";
	width: 10px;
	height: 15px;
	display: inline-block;
	padding: 0 15px 0 0;
}
.pxbox li.current a:before,
.pxbox li a:hover:before {
	background: url(../img/dot_arrow.svg) no-repeat left center;
	background-size: contain;
}
.pxbox li a:hover {
	color: #66f0e8;
}


/*　キャラクター部分 */
.character_wrap{
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50% , 0);
}

.character{
    display: flex;
    justify-content: space-between;
	margin-bottom: 1em;
}
.character span{
	margin: 0 5px;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	animation: movetate 1s steps(3) infinite;
}
#chara1,
#chara3{width: 60px}
#chara2{width: 40px;}

@media print, screen and (min-width: 1400px) {
	#chara1,
	#chara3{width: 70px}
	#chara2{width: 50px;}
}
@media print, screen and (min-width: 1920px) {
	#chara1,
	#chara3{width: 90px}
	#chara2{width: 70px;}
}

.start:after{
	content: "";
	background: url("../img/front/dot_arrow2.svg") no-repeat left center;
    -moz-background-size: contain;
    background-size: contain;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50% , 0);
}

.start span{
	font-family:'pm12';
	color: #fff;
	font-size: 2.5em;
	text-align: center;
	letter-spacing: 3px;
	display: block;
	padding-bottom: 35px;
	animation: movetate 1s steps(3) infinite;
}

@media print, screen and (max-width: 1023px) {
	#chara4{display: none}
}
@media print, screen and (min-width: 1024px) {
	#chara4{
		position: absolute;
		top: 63%;
		left: 10%;
		animation: moveyoko 1s steps(2) infinite;
		width: 60px
	}
}
@media print, screen and (min-width: 1920px) {
	#chara4{width: 80px}
}


.character_mov{
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 100%;
	max-width: 1200px;
	height: auto;
	z-index: 100;
	overflow: hidden
}




/* ------------------------------
 ADらぼについて
------------------------------ */

#about,
#about:after{
	background: #95C221;
}

.about_wrap{
	border: solid 6px #000;
	background: #fff;
	padding: 3em 1em;
	position: relative;
}
.about_wrap:before{
	content: '';
	background: url("../img/front/person1.svg")no-repeat center / contain;
	width: 60px;
	height: 100px;
	display: block;
	position: absolute;
	bottom: -5px;
	right: 5%;
	animation: movetate 1s steps(2) infinite;
}

#about .pxbtn:first-of-type{
	position: absolute;
	top: -2em;
	left: 50%;
	transform: translate(-50% , 0);
	min-width: 250px;
}
#about p{
	line-height: 2.2;
	max-width: 800px;
	margin: 2em auto;
}

@media screen and (max-width: 767px) {
	#about p br{
		display: none
	}
}	


/* ------------------------------
 お知らせ
------------------------------ */
#news{margin-bottom: 5em;}
#news ul{margin: 3em auto}



/* ------------------------------
 業務案内
------------------------------ */
#service{
	position: relative;
	padding: 5em 0;
	background: #EEF5DE;
}

#service:before,
#service:after{
	content: '';
	width: 100%;
	height: 150px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50% , 0);
	z-index: 0;
	background-size: cover;
	background-repeat: repeat-x;
}
#service:before{
	background-image: url("../img/front/service_top.png");
	background-position: top center;
	top: 0;
}
#service:after{
	background-image: url("../img/front/service_bottom.png");
	background-position: bottom center;
	bottom: 0;
}
@media print, screen and (min-width: 768px) {
	#service:before,
	#service:after{
		height: 300px;
		background-size: contain
	}
}
@media print, screen and (min-width: 1080px) {
	#service{padding: 8em 0}
}

#service .pxbtn{
	position: relative;
	z-index: 1;
}

#service_list_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap:2%;
	margin-top: 3em;
}
.service_list{
	position: relative;
	z-index: 1;
	width: 45%;
	margin: 1em 0 3em;
	text-align: center;
}

.service_list a{
	display: block;
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
}

.service_list a:hover{
	opacity: .8;
	transition: .2s
}

.service_list a:hover .fukidashi{
	color: #00A64D
}

@media print, screen and (min-width: 768px) {
	#service_list_wrap{gap:3%}
	.service_list{width:30%}
	#service2{margin-top: 5%}
	#service5{margin-top: -3%}
}


.fukidashi{
	content: '';
	background: url("../img/front/fukidashi.svg")no-repeat center bottom / contain;
	width: 100%;
	height: 100px;
	display: block;
	text-align: center;
	position: relative
}

.fukidashi span{
	font-family: 'pm12';
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    height: 80%;
    margin-left: -10px;
	font-size: .9em;
}


@media print, screen and (min-width: 768px) {
	.fukidashi{
		height: 130px;
	}
	.fukidashi span{
		font-size: 1em;
	}
}
@media print, screen and (min-width: 1400px) {
	.fukidashi{
		height: 150px;
	}
	.fukidashi span{
		font-size: 1.2em;
	}
}



/* ------------------------------
 実績
------------------------------ */

.secswiper{
	overflow: hidden
}

#works,
#works:after{
	background: #5BC0F0;
}

#works{
	overflow: hidden
}

#works:after{z-index: 1}

#works:before{
	content: '';
	background: url("../img/front/jisseki_bg.svg")repeat-x center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	animation: moveyoko 1s steps(4) infinite;
	display: block;
	width: 100%;
	height: 150px;
	z-index: 0;
	overflow: hidden
}

#works .map{
	margin: 3em auto;
	width: 90%;
	max-width: 1000px;
	position: relative
}
#works .map img{
	position: relative;
	z-index: 1;
	margin: 0 auto;
}

.kanban{
	display: block;
	background: url("../img/map_board.png") no-repeat left top;
	background-size:contain;
	position: absolute;
	width: 25vw;
	padding-top: 30%; 
	left: 0;
	top:0;
	z-index: 10
}

.pin{
	position: absolute;
	z-index: 20;
	background-size:contain;
	background-repeat: no-repeat;
	background-position: left top;
	width: 5.8vw;
	padding-top: 9%;
	width: 
}

.pin a{
	display: block;
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pin:hover{
	transition: .2s;
	transform: translateY(-10px);
	opacity: .8
}

.pin.shinchiku{
	background-image: url(../img/flag_red.png);
}

.pin.reform{
	background-image: url(../img/flag_blue.png);
}


.pin.renovation{
	background-image: url(../img/flag_ye.png);
}

 

@media print, screen and (min-width: 768px) {
	#works:before{
		height: 350px;
	}
}

.remodal{position: relative}

.close{
	position: absolute;
	right: -10px;
	top:-10px;
	background: #fff;
	border-radius: 50%;
	
}

.close::before{
	font-family: icomoon;
	content: "\e929";
	font-size: 30px
}

.btn-close{
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	right: 0
}

.remodal_inner h3{
	margin: 1em 1em 0;
}

.remodal_inner h3 span{
	display: block;
	background: #000;
	color: #fff;
	margin-top: 1em;
	border-radius: 5px;
	padding: .6em;
	letter-spacing: .5em
}

.remodal-wrapper {
    padding: 10px 20px 0 !important;
}



/* ------------------------------
 土地情報
------------------------------ */

#tochi,
#tochi:after{
	background: #95C221;
}
#tochi{
	margin-top: -150px;
	padding-top: 200px
}

/* 左右の木々 */
#tochi div.wrap{
	position: relative;
}
#tochi div.wrap:before,
#tochi div.wrap:after{
	content: '';
	display: block;
	position: absolute;
	z-index: 0;
}
#tochi div.wrap:before{
	background: url("../img/front/tochi_left.svg")no-repeat center / contain;
	width: 70px;
	height: 70px;
	top: 0;
	left: 0;
}
#tochi div.wrap:after{
	background: url("../img/front/tochi_right.svg")no-repeat center / contain;
	width: 100px;
	height: 100px;
	top: -50px;
	right: 0;
}

/* 宝箱 */
.tochi_title{
	position: relative;
	z-index: 1
}
.tochi_title:before{
	content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    display: block;
    background: url(../img/front/tochi_box.svg) no-repeat center / contain;
    top: -80px;
    left: 10%;
    animation: movetate 1s steps(2) infinite;
    
}

@media print, screen and (min-width: 768px) {
	#tochi div.wrap:before{
		width: 90px;
		height: 90px;
		left: 15%
	}
	#tochi div.wrap:after{
		width: 140px;
		height: 140px;
		right: 15%
	}
	.tochi_title:before{
		width: 130px;
		height: 130px;
		left: 25%;
	}
	
}

@media print, screen and (min-width: 1080px) {
	
}



/* 土地情報リスト */

.tochi_entry{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 3em;
	justify-content:center
}

.tochi_entry > li{
	background: #fff;
	border: solid 4px #000;
	padding: 1em;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 2em;
}
@media print, screen and (min-width: 768px) {
	.tochi_entry > li{
		width:32%
	}
}


.tochi_entry > li img{
	aspect-ratio:4 / 3;
	object-fit: cover;
	vertical-align: bottom;
}
.tochi_entry ul{margin-bottom: 1em}
.tochi_entry ul > li{
	border-bottom: solid 1px #000;
	padding: .5em;
	text-align: center;
	display: block!important
} 
.tochi_entry h3{
	margin: .5em 0 0;
	padding: .5em;
	font-size: 1.3em;
	border-bottom: solid 1px #000;
	text-align: center;
}
.price{
	font-weight: bold;
	font-size: 1.5em;
	color: red;
}



