@charset "utf-8";


/*===========================================================*/
/*機能編  4-2-1 背景色が伸びる（下から上） */
/*===========================================================*/


/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img{
	width:50px;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/

.splashbg{
	display: none;
}

body.appear .splashbg{
    display: block;
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #1B7E47;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	50% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:top;
	}
	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#wrapper{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


/*===========================================================*/
/*機能編  5-1-12 クリックしたらナビが下から上に出現 */
/*===========================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	bottom:-120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#1B7E47;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    bottom: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*===========================================================*/
/*機能編  5-2-5	MENUが×に */
/*===========================================================*/

.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 1%;
	cursor: pointer;
    width: 70px;
    height:60px;
    border-left:2px solid #ccc;
}
	
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
	background: #333;
  	width:30%;
    opacity: 0;
    top:22px;
    left:20px;
 }

.openbtn span:nth-of-type(2) {
	top:22px;
	left:18px;
	text-transform: uppercase;
	color: #333;
    font-size: 0.9rem;
}

@media screen and (max-width:550px) {
.openbtn span:nth-of-type(2) {
    font-size: 0.8rem;
    }
    
}

.openbtn span:nth-of-type(3) {
    top:35px;
}


/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/

.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
    opacity:1;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
}

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

.openbtn.active span:nth-of-type(3){
    top: 40px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
}



/*===========================================================*/
/*機能編  5-1-26 追従メニューの現在地ハイライト*/
/*===========================================================*/

/*========= 現在地表示のためのCSS ===============*/

#header{
	position: fixed;/*header固定*/
	height: 90px;/*Headerの高さ設定*/
	width:100%;
	margin-top: -50px;
    z-index: 9;
	display: flex;
	justify-content:  flex-end;
	align-items: center;
    background: #fff;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

@media screen and (max-width:990px) {
#header{
    height: 75px;
    }  
}

.anchor {
  padding-top: 100px;
  margin-top: 100px;
  height: 300px;
}

.anchor-1 {
  padding-top: 100px;
  margin-top: 100px;
  height: 1200px;
}

.anchor-2 {
  padding-top: 100px;
  margin-top: 100px;
  height: 1300px;
}

.anchor-3 {
  padding-top: 100px;
  margin-top: 100px;
  height: 1300px;
}

@media screen and (max-width:990px) {
.anchor {
  height: 330px;
}

.anchor-1 {
  height: 2300px;
}

.anchor-2 {
  height: 2300px;
}

.anchor-3 {
  height: 2300px;
}
}


@media screen and (max-width:768px) {
.anchor {
  height: 330px;
}

.anchor-1 {
  height: 2100px;
}

.anchor-2 {
  height: 2000px;
}

.anchor-3 {
  height: 2000px;
}
}


@media screen and (max-width:640px) {
.anchor {
  height: 300px;
}

.anchor-1 {
  height: 2600px;
}

.anchor-2 {
  height: 2600px;
}

.anchor-3 {
  height: 2300px;
}
}



@media screen and (max-width:480px) {
.anchor {
  height: 360px;
}
}

#pc-nav{
	list-style: none;
	display: flex;
	justify-content: flex-end;
    margin: 0 6% 0 0%;
}

#pc-nav ul{
	list-style: none;
	display: flex;
	justify-content: flex-end;
    margin: 0 0 0 2%;
	font-size: 0.9em;
}

#pc-nav li a{
	display: block;
	text-decoration: none;
	padding:0 10px;
	 margin: 0 5px;
	transition:all 0.3s;
	white-space: nowrap
}

#pc-nav li.current a,
#pc-nav li a:hover{
	color:#1B7E47;	
}

/*===========================================================*/
/*機能編  9-1-5 スクロールをするとエリアの高さに合わせて線が伸びる*/
/*===========================================================*/

.scrollgress{
	z-index:99;/*他のposition指定しているエリアより前に出すためz-indexの数字を大きく*/
}

/*===========================================================*/
/*機能編  7-1-35	下線が伸びて背景に変わる*/
/*===========================================================*/


.btnlinestretches3{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/  
	color:#333;
    padding: 5px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*テキストの設定*/
.btnlinestretches3 span{
    /*テキストを前面に出すためz-indexの値を高く設定*/
	position:relative;
	z-index: 2;
}

.btnlinestretches3:hover span{
	color: #fff;
}

/*線の設定*/
.btnlinestretches3::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
	z-index:1;
	bottom:0;
	left:0;
    /*線の形状*/
	background:#333;
	width:100%;
	height:3px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

/*線が伸びて背景に*/
.btnlinestretches3:hover::after {
	height:100%;
}

/*===========================================================*/
/*機能編  8-1-3 ページの指定の高さを超えたら右から出現*/
/*===========================================================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#1B7E47;
	width: 80px;
	height: 70px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #B3CB31;
}

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

/*　左の動き　*/

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

/*===========================================================*/
/*機能編  9-2-2 任意の場所をクリックすると隠れていた内容が開き、先に開いていた内容が閉じる*/
/*===========================================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

@media screen and (max-width:768px) {
.title {
    font-size:0.9rem;
}
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}




/*===========================================================*/
/* 印象編 4 最低限おぼえておきたい動き*/
/*===========================================================*/

/*4-9　シャッ（左から）*/
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #eb6100;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/* 4-1 ふわっ（下から） */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/* 4-2　パタッ（左へ） */
.flipLeft{
animation-name: flipLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
 	opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

/* スマホ表示用。flipLeftTriggerを指定している親要素に指定しないとうまく動かない*/
#vision,
.service-area{
    transform:  translate3d(0, 0, 0);
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgLRextendTrigger,
.bgappearTrigger,
.fadeUpTrigger,
.flipLeftTrigger{
    opacity: 0;
}


/*===========================================================*/
/* 印象編　6-6　スクロールすると下のエリアがヘッダーにかぶさる*/
/*===========================================================*/

/* トップページ　*/
#top-main{
	width:100%;
	height: 90vh;
	position: relative;
} 

#top-main:before{
	content: '';
	position:fixed;
	top:10vh;
	left:0%;
	z-index:-1;
	width:100%;
	height: 90vh;
	/*背景画像設定*/
	background:url("../img/main.webp") no-repeat center;
	background-size:cover;
}

@media screen and (max-width:768px) {
#top-main:before{
    background-position: top center;
    background-size:auto 98%;
    }
}




#container{
	position: relative;
	z-index:1;
	background:#fff;
}




/*==================================================
 ボタンデザイン
===================================*/

/*　角丸タイプのベタ塗りバージョン　*/
a.btn_04 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 180px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #40bf40;
	background: #40bf40;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_04:hover {
	color: #00cc44;
	background: #fff;
}



/*　左側にFont Awesomeメールのアイコン　*/
a.btn_14 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	width: 200px;
	font-weight: bold;
	border: 2px solid #40bf40;
	background: #40bf40;
	color: #fff;
	border-radius: 100vh;
	font-size: 0.9em;
}

a.btn_14:before {
    content: "\f0e0";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
}
a.btn_14:hover {
	color: #00cc44;
	background: #fff;
}




/*　角丸タイプの白ベースバージョン（フッターお問い合わせフォームへ）　*/

.footer_btn {
  display: inline-block;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #40bf40;
  background-color: #fff;
  position: relative;
  border: 2px solid #40bf40;
  transition: color 0.5s ease;
}

.footer_btn a {
  color: #40bf40;
}

.footer_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.footer_btn::before {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
 color: #006600;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #79d279;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.text {
  position: relative;
}

.footer_btn a :before {
    content: "\f0e0";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
}

/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
}


/*　角丸タイプの白ベースバージョン（フッター不動産情報へ）　*/
.footer2_btn {
  display: inline-block;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #4d9900;
  background-color: #fff;
  position: relative;
  border: 1px solid #4d9900;
  transition: color 0.5s ease;
}
.footer2_btn:hover {
  color: #fff;
}

.footer2_btn a {
  color: #4d9900;
}

.footer2_btn:hover::before {
  transform: scaleY(1);
}
.footer2_btn::before {
  position: absolute;
  border-radius: 10px;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #99ff33;
  transform: scaleY(0);
  transition: all 0.5s ease;
  transition-property: transform;
}
.text {
  position: relative;
}

@media only screen and (max-width: 768px) {

.footer2_btn {
  display: inline-block;
  width: 30%;
  margin-top: 30px;
}
}

@media only screen and (max-width: 550px) {

.footer2_btn {
  display: inline-block;
  width: 80%;
  margin-top: 10px;
}
}


/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
}



/*　角丸タイプの緑ベースバージョン（売買物件情報ボタン）　*/
.d-btn {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  margin: 5px;
}
 
.d-btn {
  background: #eb6100;
  border: 2px solid #eb6100;
  border-radius: 10px;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
}
 
.d-btn a {
  color: #fff;
}

.d-btn.reverse:hover {
  background: #DFA065;
  color: #ffffff;
}




/*　角丸タイプの緑ベースバージョン（賃貸物件情報ボタン）　*/
.e-btn {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  margin: 5px;
}
 
.e-btn {
  background: #008020;
  border: 2px solid #008020;
  border-radius: 10px;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
}
 
.e-btn a {
  color: #fff;
  margin: 5px;
}

.e-btn.reverse:hover {
  background: #71AF50;
  color: #ffffff;
}





/*　角丸タイプの緑ベースバージョン（売買実績ボタン）　*/
.f-btn {
  cursor: pointer;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  margin: 5px;
}
 
.f-btn {
  background: #71AF42;
  border: 2px solid #71AF42;
  border-radius: 10px;
  display: block;
  font-weight: bold;
  max-width: 300px;
  padding: 15px 40px;
  text-align: center;
}
 
.f-btn a {
  color: #fff;
}

.f-btn.reverse:hover {
  background: #7BA798;
  color: #ffffff;
}



/*　角丸タイプのスライドホバーバージョン（もっと見るボタン）　*/
.viewmore_btn {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #59b300;
  background-color: #fff;
  position: relative;
  border: 1px solid #59b300;
  transition: color 0.5s ease;
  margin-bottom: 10px;
}
.viewmore_btn:hover {
  color: #fff;
}
.viewmore_btn:hover::before {
  transform: scaleY(1);
}
.viewmore_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #59b300;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transition-property: transform;
}
.text {
  position: relative;
}

/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
}




/*　角丸タイプのスライドホバーバージョン（詳細を見る）　*/
a.Todetail_btn {
  display: inline-block;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: #fff;
  background-color: #008020;
}
a.Todetail_btn:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  color: #fff;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #FAC800;}
  70% {box-shadow: 0 0 0 10px rgb(250 200 0 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(250 200 0 / 0%);}
}


a.Todetail_btn:before {
    content: "\f002";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
}

/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
}



/*　角丸タイプのスライドホバーバージョン（お問い合わせ）　*/
a.Tocontact_btn {
  display: inline-block;
  width: 250px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  color: #fff;
  background-color: #40bf40;
}
a.Tocontact_btn:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
  color: #fff;
}
@keyframes ripple {
  0% {box-shadow: 0 0 0 0 #FAC800;}
  70% {box-shadow: 0 0 0 10px rgb(250 200 0 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(250 200 0 / 0%);}
}

a.Tocontact_btn:before {
    content: "\f0e0";
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 15px;
}

/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
}



/*　細矢印ボタン（検索する）　*/
.button-54 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 280px;
    margin: 0 auto;
    padding: .9em 3em .9em 2em;
    border: 1px solid #eb6100;
    border-radius: 5px;
    background-color: #fff;
    color: #eb6100;
    font-size: 1em;
}

.button-54::after {
    position: absolute;
    right: 1.6em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #eb6100;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.button-54:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

