/* font-family: 'Barlow', sans-serif; */
/* font-family: 'Poppins', sans-serif; */
/* font-family: 'Zen Maru Gothic', sans-serif; */


/* #region CSS Reset and Setup --------------- */
html, body, div,
p, a, img, figure,
dl, dt, dd,
ul, ol, li,
button,
h1, h2, h3, h4, h5, h6,
hr, header, footer, section, article {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

/* Document setup */
html {
	font-size: 62.5%; /* 1rem = 10px */
}

body {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	font-size: 1.6em; /* default 16px */
	background: #fff;
	color: #000;
	text-align: center;
}

#bodybox {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	margin: 0 auto;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

img {
	border: none;
	max-width: 100%;
	vertical-align: middle;
}

svg {
	fill: currentcolor;
}

* {
	box-sizing: border-box;
}

.inner {
	display: block;
	position: relative;
	max-width: 1180px;
	padding: 0 40px;
	margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
	body {
		-webkit-text-size-adjust: 100%;
	}
	.inner {
		max-width: 600px;
		padding: 0 25px;
	}
}

@media print {
	body {
		width: 1000px;
		-webkit-transform: scale(0.79);
		transform: scale(0.79);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
	}
}

/* Clearfix  */
.clearfix::after {
	content: '';
	display: block;
	clear: both;
}

/* pc mb */
@media only screen and (min-width: 1025px) {
	.pc {
		display: block;
	}
	.pc-ib {
		display: inline-block;
	}
	.mb, .mb-ib {
		display: none!important;
	}
}
@media only screen and (max-width: 1024px) {
	.pc, .pc-ib {
		display: none!important;
	}
	.mb {
		display: block;
	}
	.mb-ib {
		display: inline-block;
	}
}
.wrapper {
	display: inline-block;
	position: relative;
}
/* img-box */
.img-box {
	position: relative;
	overflow: hidden;
}
.img-box img {
	position: absolute;
	height: 100%;
	width: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}
/* #endregion -------------------------------- */


/* #region General --------------------------- */
/* .banner-box {
	display: flex;
	justify-content: center;
}
.banner-link {
	display: block;
	max-width: 360px;
	margin: 10px;
	transition: opacity 0.3s;
}
.banner-link:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
	.banner-box {
		display: block;
	}
	.banner-link {
		margin: 10px auto;
	}
} */
/* go-to-top */
.go-to-top {
	display: none;
	position: fixed;
	right: 65px;
	bottom: 65px;
	width: 42px;
	height: 42px;
	background: #fff;
	z-index: 25;
}
.go-to-top-btn {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	border: none;
	background: #3e3a39;
	transition: 0.2s;
	cursor: pointer;
}
.go-to-top-btn:focus {
	outline: none;
}
.go-to-top-btn:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 1024px) {
	.go-to-top {
		right: 25px;
		bottom: 25px;
	}
}
/* #endregion -------------------------------- */


/* #region Loading --------------------------- */
#loading {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	background: #89B154;
	z-index: 9999;
}
#loading .loading-content {
	width: 100%;
	padding: 20px;
	transition: all 0.5s 0.7s;
}

#loading .loader-logo {
	display: block;
	max-width: 300px;
	width: 60%;
	margin: 0 auto;
}

#loading .loader,
#loading .loader::before,
#loading .loader::after {
	border-radius: 50%;
	width: 10px;
	height: 10px;
	animation: loader 1.8s infinite ease-in-out both;
}
#loading .loader {
	position: relative;
	display: inline-block;
	margin-top: 20px;
	color: rgba(255, 255, 151, 0.75);
	animation-delay: -0.15s;
	transform: translateZ(0);
}
#loading .loader::before,
#loading .loader::after {
	content: '';
	position: absolute;
	top: 0;
}
#loading .loader::before {
	left: -20px;
	animation-delay: -0.3s;
}
#loading .loader::after {
	left: 20px;
}
#loading.loaded {
	opacity: 0;
	visibility: hidden;
}
@keyframes loader {
	0%, 80%, 100% {
		box-shadow: 0 10px 0 -5px;
	}
	40% {
		box-shadow: 0 10px 0 0;
	}
}
/* #endregion -------------------------------- */

/* #region Header ---------------------------- */
#header	{
	position: relative;
	width: 100%;
	height: 140px;
	background: #8fb954;
	color: #fff;
	z-index: 20;
}
#header .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1590px;
	/* padding: 70px 20px 50px; */
	padding: 15px 20px;
}
.header-head {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.header-head .site-title {
}
.header-head .site-title p {
	margin-bottom: 3px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.header-logo {
	display: block;
	width: 227px;
	transition: opacity 0.3s;
}
.header-logo:hover {
	opacity: 0.3;
}
.header-logo .logo-img {
	display: none;
}
#mb-burger-btn {
	display: none;
}
.head-nav {
	display: flex;
	align-items: center;
}
.head-nav .nav-list {
	display: flex;
}
.head-nav .nav-cont {
	font-size: 14px;
	margin: 1em;
	letter-spacing: 0.075em;
}
.head-nav .nav-link {
	display: block;
	position: relative;
	white-space: nowrap;
}
.head-nav .mail-btn {
	display: inline-block;
	padding: 11px 30px 14px;
	margin-left: 20px;
	border-radius: 24px;
	/* border: 2px solid #8fb954; */
	border: 2px solid #fff;
	/* background: #fff; */
	color: #fff;
	line-height: 1;
	transition: background 0.3s;
	white-space: nowrap;
}
.head-nav .mail-btn:hover {
	/* background: #ecf4dd; */
	background: rgba(255,255,255,0.3);
	/* opacity: 0.6; */
}
.head-nav .mail-btn .icon {
	display: inline-block;
	margin-right: 7px;
	width: 19px;
	max-width: none;
	vertical-align: middle;
}
.head-nav .mail-btn .text {
	vertical-align: middle;
	letter-spacing: 0.075em;
}
.head-nav .tel-box {
	display: none;
}
@media only screen and (min-width: 1023px) {
	.head-nav {
		visibility: visible !important;
	}
	.head-nav .nav-link::after {
		content: '▲';
		position: absolute;
		left: 0;
		right: 0;
		bottom: -25px;
		margin: 0 auto;
		color: #fff;
		opacity: 0;
		transition: opacity 0.1s;
		pointer-events: none;
	}
	.head-nav .nav-link:hover::after {
		opacity: 1;
	}
}
@media only screen and (max-width: 1024px) {
	#header {
		position: fixed;
		top: 0;
		height: auto;
		background: #8fb954;
		color: #fff;
	}
	#header.open {
		background: #8fb954;
	}
	.header-logo .logo-img {
		display: none;
	}
	.header-logo .logo-img-wh {
		display: block;
	}
	#header.open .header-logo .logo-img {
		display: none;
	}
	#header.open .header-logo .logo-img-wh {
		display: block;
	}
	#header .inner	{
		display: block;
		/* padding: 35px 25px 20px; */
		padding: 15px 25px 15px;
	}
	.header-logo {
		width: 173px;
	}
	#mb-burger-btn {
		display: inline-block;
		flex-shrink: 0;
		width: 67px;
		height: 67px;
		margin-left: 25px;
		z-index: 50;
		cursor: pointer;
		transition: transform 0.3s;
	}
	#mb-burger-btn:hover {
		/* transform: scale(1.1); */
	}
	#mb-burger-btn .btn-img02 {
		display: none;
	}
	#mb-burger-btn.open .btn-img01 {
		display: none;
	}
	#mb-burger-btn.open .btn-img02 {
		display: block;
	}
	.head-nav {
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
		display: none;
		width: 100%;
		/* height: calc(100vh - 127px); */
		height: calc(100vh - 97px);
		height: calc(100dvh - 97px);
		top: 0;
		left: 0;
		color: #fff;
		z-index: 10;
	}
	#header.open .head-nav {
		display: flex;
	}
	.head-nav .nav-list {
		display: block;
		width: 100%;
		margin-bottom: 50px;
	}
	.head-nav .nav-cont {
		font-size: 21px;
		margin: 0;
		margin-bottom: 1.1em;
	}
	.head-nav .nav-cont:last-of-type {
		margin-bottom: 0;
	}
	.head-nav .nav-link {
		transition: opacity 0.3s;
	}
	.head-nav .nav-link:hover {
		opacity: 0.6;
	}
	.head-nav .mail-btn {
		/* border-color: #fff;
		color: #fff; */
		margin-left: 0;
		margin-bottom: 25px;
	}
	.head-nav .mail-btn:hover {
		/* background: rgba(255,255,255,0.3); */
	}
	.head-nav .tel-box {
		display: block;
		width: 100%;
	}
	.head-nav .tel-link {
		display: block;
		margin-bottom: 3px;
		transition: opacity 0.3s;
	}
	.head-nav .tel-link:hover {
		opacity: 0.6;
	}
	.head-nav .tel-link .icon {
		display: inline-block;
		width: 22px;
		margin-right: 8px;
		vertical-align: middle;
	}
	.head-nav .tel-link .num {
		display: inline-block;
		font-family: 'Poppins', sans-serif;
		font-weight: 500;
		font-size: 32px;
		line-height: 1em;
		vertical-align: middle;
	}
	.head-nav .reception-hours {
		font-weight: 700;
		font-size: 15px;
		letter-spacing: 0.075em;
	}
}
/* #endregion -------------------------------- */

/* #region Footer ---------------------------- */
#footer {
	padding-top: 55px;
	padding-bottom: 25px;
	background: #8fb954;
	color: #fff;
}
#footer .banner-box {
	margin-bottom: 170px;
}
.foot-info {
	margin: 0 auto 50px;
}
.foot-info .foot-logo {
	display: block;
	max-width: 305px;
	margin: 0 auto 35px;
	transition: opacity 0.3s;
}
.foot-info .foot-logo:hover {
	opacity: 0.6;
}
.foot-info .address {
	font-size: 13px;
	letter-spacing: 0.075em;
}
.foot-info .tel-link {
	display: inline-block;
	margin-bottom: 15px;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 38px;
	letter-spacing: 0.025em;
	transition: opacity 0.3s;;
}
.foot-info .tel-link:hover {
	opacity: 0.6;
}
.foot-info .tel-link span {
	font-size: 31px;
}
.foot-info .mail-btn {
	display: block;
	max-width: 210px;
	width: 100%;
	margin: 0 auto;
	padding: 5px 10px 10px;
	border-radius: 18px;
	border: 2px solid #fff;
	color: #fff;
	line-height: 1;
	transition: background 0.3s;
}
.foot-info .mail-btn:hover {
	background: rgba(255,255,255,0.3);
}
.foot-info .mail-btn .icon {
	display: inline-block;
	margin-right: 5px;
	width: 14px;
	vertical-align: middle;
}
.foot-info .mail-btn .text {
	vertical-align: middle;
	font-size: 12px;
	letter-spacing: 0.075em;
}
.foot-nav {
	margin-bottom: 110px;
	font-size: 14px;
	letter-spacing: 0.075em;
}
.foot-nav .nav-cont {
	display: inline-block;
	margin: 0 1em;
}
.foot-nav .nav-link {
	display: block;
	transition: opacity 0.3s;
}
.foot-nav .nav-link:hover {
	opacity: 0.6;
}
.rtt01 {
	display: inline-block;
	margin-bottom: 35px;
	transition: opacity 0.3s;
	cursor: pointer;
}
.rtt01 .arrow {
	position: relative;
	height: 30px;
	margin-bottom: 7px;
	border-left: 1px solid #fff;
	opacity: 0.5;
}
.rtt01 .arrow::after {
	position: absolute;
	content: '';
	top: 0;
	left: 0px;
	height: 11px;
	border-left: 1px solid #fff;
	transform: translate(3px,-1px) rotate(-45deg);
}
.rtt01 .text {
	font-size: 12px;
	letter-spacing: 0.1em;
}
.rtt01:hover {
	opacity: 0.6;
}
.copyright {
	font-size: 13px;
	letter-spacing: 0.1em;
}
@media only screen and (max-width: 1024px) {
	#footer {
		padding-top: 45px;
		padding-bottom: 40px;
	}
	#footer .banner-box {
		margin-bottom: 85px;
	}
	.foot-info {
		margin-bottom: 90px;
	}
	.foot-nav {
		display: none;
	}
	.rtt01 {
		margin-bottom: 40px;
	}
	.copyright {
		font-size: 12px;
	}
}
/* #endregion -------------------------------- */

/* #region Main ------------------------------ */
#main {
	position: relative;
	/* padding-top: 140px; */
	padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
	#main {
		/* padding-top: 128px; */
		padding-top: 97px;
	}
}


.title-cont01 {
	display: inline-block;
	position: relative;
	text-align: left;
	padding-top: 33px;
	padding-left: 40px;
	white-space: nowrap;
}
.title-cont01::after {
	content: url(../images/common/deco01.svg);
	position: absolute;
	left: 0;
	top: 0;
	width: 69px;
	height: 69px;
}
.title-cont01 .ja {
	margin-bottom: 4px;
	font-weight: 500;
	font-size: 22px;
	line-height: 1;
	letter-spacing: 0.075em;
}
.title-cont01 .en {
	padding-left: 5px;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.1em;
}

/* #region infomation-box */
.infomation-block {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.infomation-block .title-cont01 {
	margin-right: 20px;
	margin-bottom: 30px;
}
.infomation-box {
	flex: 0 1 830px;
	text-align: right;
}
.info-list {
	margin-bottom: 20px;
}
.info-cont {
	border-bottom: 1px dotted #3E3A39;
}
.info-cont:first-of-type {
	border-top: 1px dotted #3E3A39;
}
.info-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 13px 0;
	font-size: 13px;
	text-align: center;
	transition: background 0.3s;
}
.info-link:hover {
	background: #ecf4dd;
}
.info-link::after {
	content: '';
	display: inline-block;
	flex: 0 0 11px;
	width: 11px;
	height: 11px;
	margin: 0 10px;
	background-image: url('../images/common/icon-arrow.svg');
	background-size: contain;
	vertical-align: middle;
}
.info-link .date {
	display: inline-block;
	flex: 0 0 100px;
	margin: 0 5px;
	color: #8fb954;
	letter-spacing: 0.1em;
}
.info-link .cat {
	display: inline-block;
	flex: 0 0 100px;
	width: 100px;
	margin: 0 5px;
	margin-right: 20px;
	background: #8fb954;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
}
.info-link .cat.blog {
	background: #f3981c;
}
.info-link .title {
	display: block;
	flex: 1 1 635px;
	margin: 0 5px;
	letter-spacing: 0.025em;
	text-align: left;
}
.infomation-btn-box {
	margin: 0 -10px;
}
.infomation-btn {
	display: inline-block;
	max-width: 305px;
	width: 100%;
	height: 45px;
	margin: 10px;
	background: #8fb954;
	color: #fff;
	border-radius: 23px;
	font-size: 15px;
	line-height: 45px;
	text-align: center;
	transition: opacity 0.3s;
}
.infomation-btn.blog {
	background: #f3981c;
}
.infomation-btn:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
	.infomation-block {
		display: inline-block;
		text-align: left;
	}
	.infomation-box {
		flex: 0 1 830px;
		text-align: center;
	}
	.info-link {
		display: block;
		padding: 13px 18px;
		text-align: left;
	}
	.info-link::after {
		display: none;
	}
	.info-link .date {
		margin-bottom: 2px;
	}
}
/* #endregion  */

/* #region property-list */
.property-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.property-list::after {
	content: '';
	display: block;
	width: 30%;
}
.property-cont {
	position: relative;
	width: 31%;
	margin-bottom: 85px;
}
.property-link {
	display: block;
	width: 100%;
	height: 100%;
}
.property-link .caption-box {
	position: relative;
	margin-bottom: 12px;
}
.property-link .caption-box .new-icon {
	position: absolute;
	padding: 7px 20px;
	left: 0;
	top: 0;
	background: #fcc800;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.2em;
	z-index: 2;
}
.property-link .caption-box .img-box {
	position: relative;
	width: 100%;
	padding-top: 65%;
}
.property-link.soldout .caption-box .img-box::after {
	content: 'SOLD OUT';
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(35, 24, 21, 0.5);;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.2em;
}
.property-link .caption-box .img-box img {
	transition: transform 0.3s;
}
.property-link:hover .caption-box .img-box img {
	transform: scale(1.1);
}
.property-link.soldout:hover .caption-box .img-box img {
	transform: scale(1);
}
.property-link .caption-box .category {
	padding: 7px;
	background: #8fb954;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.025em;
}
.property-link .data-box {
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 0.025em;
	text-align: left;
}
.property-link .data-box p {
	margin-bottom: 6px;
}
@media only screen and (max-width: 1024px) {
	.property-list {
		display: block;
		width: 325px;
		margin: 0 auto;
	}
	.property-list::after {
		display: none;
	}
	.property-cont {
		width: 100%;
		margin-bottom: 30px;
	}
}
/* #endregion  */

/* #region sell-buy-btn-box */
.sell-buy-btn-box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -10px 40px;
}
.sell-buy-btn {
	display: inline-block;
	max-width: 540px;
	width: 100%;
	margin: 10px;
	padding: 50px 10px 36px;
	border-radius: 26px;
	background: #7db257;
	color: #fff;
	transition: opacity 0.3s;
}
.sell-buy-btn:hover {
	opacity: 0.6;
}
.sell-buy-btn .img-wrapper {
	display: inline-block;
	max-width: 317px;
	height: 122px;
	width: 100%;
}
.sell-buy-btn.sell {
	background: #7db257;
}
.sell-buy-btn.buy {
	background: #f3981c;
}
@media only screen and (max-width: 1024px) {
	.sell-buy-btn-box {
		flex-wrap: wrap;
		margin: 0;
		margin-bottom: 40px;
	}
	.sell-buy-btn {
		flex: 0 1 325px;
		margin: 7px;
		padding: 46px 10px 13px;
	}
	.sell-buy-btn .img-wrapper {
		max-width: 246px;
		height:  min(130px,35vw);
	}
}
/* #endregion  */

/* #region ----------------------------------- */
.banner-link-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 687px;
	margin: 0 auto;
}
.site-link-btn {
	display: inline-block;
	max-width: 339px;
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid rgba(35, 24, 21, 0.5);
	overflow: hidden;
	transition: opacity 0.3s;
}
.site-link-btn:hover {
	opacity: 0.6;
}
.loan-link-banner {
	display: block;
	max-width: 687px;
	margin: 0 auto;
	border: 1px solid rgba(35, 24, 21, 0.5);
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.loan-link-banner:hover {
	opacity: 0.6;
}
.banner-link-mb {
	display: none;
}
@media only screen and (max-width: 1024px) {
	.banner-link-box {
		display: block;
	}
	.loan-link-banner {
		max-width: 325px;
	}
	.banner-link-pc {
		display: none;
	}
	.banner-link-mb {
		display: block;
	}
}
/* #endregion -------------------------------- */

/* #region contact-block */
.contact-block {
	display: flex;
	justify-content: space-between;
}
.contact-block .title-cont01 {
	margin-right: 25px;
	margin-bottom: 55px;
}
.contact-block .contact-info-box {
	flex: 0 1 960px;
	position: relative;
	padding-top: 20px;
	padding-left: min(80px,5vw);
	border-radius: 31px 0 0 31px;
	z-index: 2;
}
.contact-block .contact-info-box::after {
	content: '';
	position: absolute;
	width: 100vw;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	padding-bottom: 60px;
	background: #fff;
	border-radius: 31px 0 0 31px;
	z-index: -1;
}
.contact-block .contact-info-box .info-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contact-info-box .tel-box {
	display: block;
	margin: 0 20px;
	margin-bottom: 22px;
}
.contact-info-box .tel-link {
	display: block;
	margin-bottom: 2px;
	white-space: nowrap;
}
.contact-info-box .tel-link .icon {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	margin-right: 7px;
	color: #8fb954;
}
.contact-info-box .tel-link .num {
	display: inline-block;
	vertical-align: middle;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 46px;
	line-height: 1;
}
.contact-info-box .tel-box .reception-hours {
	font-size: 14px;
	letter-spacing: 0.075em;
}
.contact-info-box .mail-btn {
	display: inline-block;
	flex: 0 1 342px;
	max-width: 342px;
	width: 100%;
	padding: 23px 10px;
	margin-bottom: 22px;
	background: #8fb954;
	color: #fff;
	border-radius: 9px;
	white-space: nowrap;
	transition: opacity 0.3s;
}
.contact-info-box .mail-btn:hover {
	opacity: 0.6;
}
.contact-info-box .mail-btn .icon {
	display: inline-block;
	vertical-align: middle;
	width: 24px;
	margin-right: 10px;
}
.contact-info-box .mail-btn .text {
	display: inline-block;
	vertical-align: middle;
	font-size: 17px;
}
.contact-info-text {
	font-size: 16px;
	letter-spacing: 0.075em;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.contact-block {
		display: block;
		margin: 0 auto 40px;
		text-align: left;
	}
	.contact-block .contact-info-box .info-wrapper {
		display: block;
	}
	.contact-info-box::after {
		display: none;
	}
	.contact-info-box .info-wrapper {
		display: block;
		text-align: center;
	}
	.contact-info-box .tel-box {
		margin: 0;
		margin-bottom: 20px;
	}
	.contact-info-box .tel-link .icon {
		width: 17px;
		margin-right: 6px;
	}
	.contact-info-box .tel-link .num {
		font-size: min(34px,9vw);
	}
	.contact-info-box .tel-box .reception-hours {
		font-size: 12px;
	}
	.contact-info-box .mail-btn {
		max-width: 325px;
		width: 100%;
		padding: 21px 10px;
		margin-bottom: 22px;
		white-space: normal;
	}
	.contact-info-text span {
		white-space: nowrap;
	}
}
/* #endregion  */

/* #region contact-block */
.map-box {
	max-width: 1320px;
	height: 405px;
	padding: 0 20px;
	margin: 0 auto;
}
.map-box iframe {
	width: 100%;
	height: 100%;
	border-radius: 33px;
	overflow: hidden;
}
@media only screen and (max-width: 1024px) {
	.map-box {
		height: 290px;
		padding: 0;
		padding-left: 20px;
	}
	.map-box iframe {
		border-radius: 33px 0 0 33px;
	}
}
/* #endregion  */

/* #region small-slider */
.small-slider .img-box {
	width: 217px;
	height: 217px;
	margin: 0 15px;
}
/* #endregion  sub */
.sub-head-block {
	background: #f2f8eb;
}
.sub-head-block .headding-m {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.sub-head-block .headding-m span {
	white-space: nowrap;
}
.sub-head-block .headding-l {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: min(34px, 9vw);
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.sub-head-block .headding-l span {
	white-space: nowrap;
}
.sub-head-block .headding-text{
	max-width: 380px;
	margin: 0 auto;
	font-size: 13px;
	line-height: 1.692;
	letter-spacing: 0.025em;
}
.sect-title {
	display: inline-block;
	position: relative;
	padding: 0 13px 10px;
	margin-bottom: 60px;
	font-weight: 700;
	font-size: 23px;
	line-height: 1;
	letter-spacing: 0.075em;
	z-index: 1;
}
.sect-title::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 17px;
	background: #f2f8eb;
	z-index: -1;
}
.sub-infomation-block {
	margin-bottom: 200px;
}
/* #region */


.sect-contact {
	padding-bottom: 55px;
	margin-bottom: 66px;
	background: #f2f8eb;
}
.sect-contact-title {
	position: absolute;
	left: 0;
	right: 0;
	top: -22px;
	margin: 0 auto;
}
.sect-contact-title .ja {
	font-weight: 500;
	font-size: 26px;
	letter-spacing: 0.075em;
}
.sect-contact-title .en {
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
}
.sect-contact .contact-info-box {
	padding-top: 90px;
}
.sect-contact .contact-info-box .mail-btn {
	margin-bottom: 34px;
}
@media only screen and (max-width: 1024px) {
	.sect-contact {
		padding-bottom: 75px;
		margin-bottom: 40px;
	}
	.sect-contact .contact-info-box {
		padding-top: 75px;
	}
}
.sub-sell-buy-btn-block {
	margin-bottom: 240px;
}
@media only screen and (max-width: 1024px) {
	.sub-sell-buy-btn-block {
		margin-bottom: 130px;
	}
}
/* #endregion  */
/* #endregion -------------------------------- */

/* #region top ------------------------------- */
.hero-block	{
	position: relative;
	max-width: 1710px;
	width: 100%;
	padding-top: 150px;
	padding-bottom: 190px;
	margin: 0 auto;
}

.hero-block	.catch-box {
	margin-bottom: 20px;
	text-align: center;
}
.hero-block	.catch {
	font-size: min(19px, 3vw);
	line-height: 1.4;
	letter-spacing: 0.2em;
	white-space: nowrap;
}
#hero-catch {
	opacity: 0;
	/* transition: opacity 3s cubic-bezier(0.4, 0.6, 0.6, 1); */
	transition: opacity 2s ease-in-out;
}
#hero-catch.loaded {
	opacity: 1;
}

.hero-img-box-wrapper {
	position: relative;
	width: 100%;
	padding-top: calc(17.89% + 10px);
	overflow: hidden;
}
.hero-img-box {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.hero-img-box img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	object-fit: cover;
}
.hero-img-cloud {
	top: -10px;
}
.city02 {
	top: 20px;
}

@media only screen and (max-width: 1024px) {
	.hero-block	{
		padding-top: 30px;
		padding-bottom: 60px;
	}
	.hero-img-box-wrapper {
		position: relative;
		width: 100%;
		padding-top: max( calc(17.89% + 10px),100px);
	}
	.hero-img-box {
		min-width: 691px;
		min-width: 500px;
		min-height: 100px;
		left: -1000px;
		right: -1000px;
	}
}

.posting-block {
	margin-top: -100px;
	margin-bottom: 100px;
}
.posting-block .banner-link {
	display: inline-block;
	width: 520px;
	transition: opacity 0.3s cubic-bezier(0.4, 0.6, 0.6, 1);
}
.posting-block .banner-link:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 1024px) {

	.posting-block {
		margin-top: 0;
		margin-bottom: 60px;
	}
	.posting-block .banner-link {
		width: 260px;
	}
}


.top-intro-block {
	margin-bottom: 125px;
}
.top-intro-box {
	padding: 73px 20px 62px;
	margin-bottom: 20px;
	background: #ecf4dd;
	border-radius: 144px;
}
.top-intro-box .title {
	margin-bottom: 40px;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.top-intro-box .emphasis {
	position: relative;
	color: #8fb954;
	font-size: 1.5em;
	z-index: 1;
}
.top-intro-box .emphasis::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: #fff;
	z-index: -1;
}
.top-intro-main {
	position: relative;
	width: 835px;
	margin: 0 auto;
	margin-bottom: 30px;
	padding-top: 150px;
}
.top-intro-main .speech-bubble {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 253px;
	height: 142px;
	background: #fff;
	border-radius: 50%;
	font-size: 16px;
	line-height: 1.4375;
	z-index: 1;
}
.top-intro-main .speech-bubble::after {
	content: url('../images/top/bubble.png');
	position: absolute;
	z-index: -1;
}
.top-intro-main .intro-img {
	position: relative;
	display: block;
	width: 309px;
	margin: 0 auto;
	z-index: 2;
}
.top-intro-catch {
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.075em;
}
.top-intro-catch .emphasis {
	position: relative;
	color: #8fb954;
	font-size: 1.5em;
	z-index: 1;
}
.top-intro-catch .emphasis::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: #ecf4dd;
	z-index: -1;
}
@media only screen and (min-width: 1025px) {
	.top-intro-main .speech-bubble:nth-child(1) {
		bottom: 0;
		left: 0;
	}
	.top-intro-main .speech-bubble:nth-child(1):after {
		bottom: 70px;
		right: -20px;
		transform: rotate(-55deg);
	}
	.top-intro-main .speech-bubble:nth-child(2) {
		top: 92px;
		left: 62px;
	}
	.top-intro-main .speech-bubble:nth-child(2):after {
		bottom: -3px;
		right: 20px;
	}
	.top-intro-main .speech-bubble:nth-child(3) {
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.top-intro-main .speech-bubble:nth-child(3):after {
		bottom: -23px;
		left: 105px;
		transform: rotate(48deg);
	}
	.top-intro-main .speech-bubble:nth-child(4) {
		top: 92px;
		right: 62px;
	}
	.top-intro-main .speech-bubble:nth-child(4):after {
		bottom: -10px;
		left: 35px;
		transform: rotate(110deg);
	}
	.top-intro-main .speech-bubble:nth-child(5) {
		bottom: 0;
		right: 0;
	}
	.top-intro-main .speech-bubble:nth-child(5):after {
		top: 30px;
		left: -15px;
		transform: rotate(165deg);
	}
	.top-intro-all-img {
		display: none;
	}
}
@media only screen and (max-width: 1024px) {
	.top-intro-block .inner {
		padding: 0;
		max-width: 100%;
	}
	.top-intro-box {
		padding: 20px 0;
		margin: 0 -15px 20px;
		border-radius: 0;
	}
	.top-intro-box .title {
		/* margin-bottom: 30px; */
		font-size: min(16px, 3vw);
		margin-bottom: 20px;
	}
	.top-intro-main {
		display: none;
	}
	.top-intro-all-img {
		display: inline-block;
		width: 100%;
		max-width: 600px;
	}
	.top-intro-catch {
		font-size: min(16px, 3vw);
	}
	/* .top-intro-main {
		padding-top: 0;
		width: 100%;
	}
	.top-intro-main .speech-bubble {
		display: block;
		position: relative;
		width: 100%;
		height: auto;
		padding: 10px 30px;
		border-radius: 20px;
		margin-bottom: 20px;
		text-align: left;
	}
	.top-intro-main .speech-bubble::after {
		display: none;
	}

	.top-intro-main .intro-img {
		margin-top: 80px;
	} */
}

/* .top-banner-box {
	margin-bottom: 75px;
} */
.top-infomation-block {
	margin-bottom: 110px;
}
.top-property-block {
	padding-top: 75px;
	padding-bottom: 90px;
	margin-bottom: 60px;
	background: #ecf4dd;
}
.top-property-block  .title-wrapper {
	margin-bottom: 80px;
	text-align: left;
}
.top-sell-buy-btn-block {
	margin-bottom: 180px;
}
.top-contact-block {
	margin-bottom: 170px;
}

/* #endregion -------------------------------- */

/* #region about ----------------------------- */
.about .sub-head-block {
	position: relative;
	padding-top: 100px;
	padding-bottom: 85px;
	margin-bottom: 188px;
}
.about .sub-head-img {
	width: 273px;
	margin-bottom: 28px;
}
@media only screen and (max-width: 1024px) {
	.about .sub-head-block {
		padding-top: 90px;
		padding-bottom: 50px;
		margin-bottom: 150px;
	}
}

.sect-greeting {
	margin-bottom: 200px;
}
.greeting-box {
	display: flex;
	padding-bottom: 165px;
}
.president-box {
	flex: 0 0 263px;
}
.president-box .img-box {
	width: 100%;
	padding-top: 100%;
	border-radius: 50%;
	margin-bottom: 20px;
}
.president-box .signature {
	font-weight: 700;
	font-size: 15px;
	line-height: 1.44666;
	letter-spacing: 0.05em;
}
.sect-greeting .text-box {
	margin-left: 60px;
	text-align: justify;
}
.sect-greeting .headline {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.625;
	letter-spacing: 0.05em;
	text-align: left;
}
.sect-greeting .headline span {
	white-space: nowrap;
}
.sect-greeting .text {
	font-weight: 700;
	font-size: 13px;
	line-height: 2.23;
}
.sect-greeting .deco-line {
	display: block;
	position: absolute;
	bottom: 0;
	left: -600px;
	right: -600px;
	margin: 0 auto;
	width: 1020px;
	max-width: 1020px;
}
@media only screen and (max-width: 1024px) {
	.greeting-box {
		display: block;
		padding-bottom: 190px;
	}
	.president-box {
		max-width: 290px;
		margin: 0 auto;
		margin-bottom: 70px;
	}
	.president-box .img-box {
		margin-bottom: 25px;
	}
	.sect-greeting .text-box {
		margin: 0;
	}
	.sect-greeting .headline {
		text-align: center;
	}
}

.sect-outline {
	margin-bottom: 210px;
}
.sect-outline dl {
	max-width: 530px;
	width: 100%;
	margin: 0 auto;
	padding: 30px;
	border-bottom: 1px solid rgba(143,185,84,0.75);
	font-size: 15px;
	line-height: 1.666;
	letter-spacing: 0.05em;
	text-align: left;
}
.sect-outline dl:first-of-type {
	border-top: 1px solid rgba(143,185,84,0.75);
}
.sect-outline dt {
	display: inline-block;
	width: 39%;
	vertical-align: top;
}
.sect-outline dd {
	display: inline-block;
	vertical-align: top;
}
.office-imgbox {
	display: flex;
	justify-content: space-between;
	max-width: 1080px;
	margin: 0 auto;
	margin-top: 68px;
}
.office-imgbox .img-box {
	width: 50%;
	/* padding-top: 32%; */
	margin: 0 5px;
	border-radius: 28px;
	aspect-ratio: 3 / 2;
}
@media only screen and (max-width: 1024px) {
	.sect-outline dl {
		padding: 18px;
	}
	.sect-outline dt {
		display: block;
		width: 100%;
	}
	.sect-outline dd {
		display: block;
	}
	.office-imgbox {
		display: block;
		/* margin-top: 25px; */
		margin-top: 0;
	}
	.office-imgbox .img-box {
		width: 100%;
		padding-top: 64%;
		margin: 12px 0;
	}
}

.sect-about-contact {
	padding-bottom: 130px;
	margin-bottom: 445px;
	background: #f2f8eb;
}
.sect-about-contact .contact-info-box {
	padding-top: 90px;
	margin-bottom: 64px;
}
.sect-about-contact .contact-info-box .mail-btn {
	margin-bottom: 34px;
}
.sect-about-contact .map-box {
	margin-bottom: -405px;
}
@media only screen and (max-width: 1024px) {
	.sect-about-contact {
		padding-bottom: 25px;
		margin-bottom: 365px;
	}
	.sect-about-contact .contact-info-box {
		padding-top: 75px;
		margin-bottom: 80px;
	}
	.sect-about-contact .map-box {
		margin-bottom: -290px;
	}
}
/* #endregion -------------------------------- */


/* #region selling buy ----------------------- */
.selling .sub-head-block {
	position: relative;
	padding-top: 110px;
	padding-bottom: 136px;
	margin-bottom: 200px;
}
.selling .sub-head-img {
	width: 364px;
	margin-bottom: 45px;
}
@media only screen and (max-width: 1024px) {
	.selling .sub-head-block {
		padding-top: 90px;
		padding-bottom: 90px;
		margin-bottom: 150px;
	}
	.selling .sub-head-img {
		width: 282px;
		margin-bottom: 32px;
	}
}
.buy .sub-head-block {
	position: relative;
	padding-top: 124px;
	padding-bottom: 136px;
	margin-bottom: 200px;
}
.buy .sub-head-img {
	width: 326px;
	margin-bottom: 47px;
}
@media only screen and (max-width: 1024px) {
	.buy .sub-head-block {
		padding-top: 95px;
		padding-bottom: 90px;
		margin-bottom: 150px;
	}
	.buy .sub-head-img {
		width: 253px;
		margin-bottom: 36px;
	}
}
.sect-selling-strengths, .sect-buy-strengths {
	margin-bottom: 200px;
}
.sect-selling-flow, .sect-buy-flow {
	margin-bottom: 170px;
}


.strengths-box {
	display: flex;
	justify-content: space-between;
}
.strengths-cont img {
	height: 222px;
	margin-bottom: 22px;
}
.strengths-cont .title {
	margin-bottom: 13px;
	font-weight: 700;
	font-size: 19px;
}
.strengths-cont .text {
	max-width: 288px;
	margin: 0 auto;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.666;
	text-align: justify;
}
@media only screen and (max-width: 1024px) {
	.strengths-box {
		display: block;
	}
	.strengths-cont {
		margin-bottom: 60px;
	}
	.strengths-cont .text {
		max-width: 245px;
	}
}

.loan-banner-link-box {
	margin-top: 170px;
}

.flow-list01 {

}
.flow-list01 .flow-cont {
	display: flex;
	align-items: center;
	min-height: 216px;
	padding: 40px;
	margin-bottom: 10px;
	border-radius: 33px;
	background: #f2f8eb;
}
.flow-list01 .flow-img-box {
	flex: 0 0 270px;
	max-width: 270px;
	margin: 0 auto;
}
.flow-list01 .flow-img-box img {
	max-width: 200px;
	width: 100%;
}
.flow-list01 .flow-text-box {
	flex: 0 1 600px;
	margin-left: 50px;
	margin-right: 100px;
	text-align: left;
}
.flow-list01 .flow-text-box .num {
	margin-bottom: 12px;
	color: #8fb954;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.075em;
}
.flow-list01 .flow-text-box .title {
	margin-bottom: 9px;
	font-weight: 700;
	font-size: 20px;
}
.flow-list01 .flow-text-box .text {
	max-width: 600px;
	color: #727171;
	font-size: 12px;
	line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
	.flow-list01 .flow-cont {
		display: block;
		padding-top: 30px;
		margin-bottom: 16px;
		border-radius: 40px;
	}
	.flow-list01 .flow-text-box {
		margin: 0;
		text-align: center;
	}
	.flow-list01 .flow-text-box .text {
		text-align: justify;
	}
}

.sect-new-property {
	padding-top: 110px;
	padding-bottom: 80px;
	margin-bottom: 240px;
	background: #f2f8eb;
}
.sect-new-property .sect-title::after {
	background: #fff;
}
.new-property-list {
	margin-bottom: 115px;
	margin-right: -36px;
}
.new-property-list .property-cont {
	margin-bottom: 0;
	margin-right: 36px;
}
.slick-list {
	overflow: visible;
}
.slick-prev, .slick-next {
	position: absolute;
	top: -88px;
	width: 46px;
	height: 46px;
	z-index: 5;
	transition: opacity 0.3s, transform 0.3s;
}
.slick-prev:hover, .slick-next:hover {
	opacity: 0.6;
}
.slick-prev {
	left: auto;
	right: 96px;
}
.slick-next {
	right: 36px;
}
.slick-prev::before, .slick-next::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 1;
	background-image: url('../images/common/arrow01.png');
	background-size: contain;
}
.slick-next::before {
	transform: rotate(180deg);
}
.slick-prev.slick-disabled, .slick-next.slick-disabled {
    opacity: 0.3;
	pointer-events: none;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.property-link-btn {
	display: block;
	max-width: 340px;
	width: 100%;
	height: 50px;
	margin: 0 auto;
	border-radius: 25px;
	background: #8fb954;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 50px;
	transition: opacity 0.3s;
}
.property-link-btn:hover {
	opacity: 0.6;
}
@media only screen and (max-width: 1024px) {
	.new-property-list {
		padding-top: 75px;
	}
	.slick-prev, .slick-next {
		top: 0;
		left: 0;
		right: 36px;
		margin: auto;
	}
	.slick-prev {
		transform: translateX(-29px);
	}
	.slick-next {
		transform: translateX(29px);
	}
}

.sect-badge {
	margin-bottom: 180px;
}
.sect-badge .badge-box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 180px;
}
/* #endregion -------------------------------- */

/* #region contact --------------------------- */
.contact .sub-head-block {
	position: relative;
	padding-top: 90px;
	padding-bottom: 85px;
	margin-bottom: 114px;
}
.contact .sub-head-img {
	width: 166px;
	margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
	.contact .sub-head-block {
		padding-top: 74px;
		padding-bottom: 95px;
		margin-bottom: 90px;
	}
}
.sect-contactform {
	margin-bottom: 250px;
}
.contactform-intro {
	margin-bottom: 145px;
}
.contactform-intro .headline {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.59;
	letter-spacing: 0.05em;
}
.contactform-intro .headline span {
	white-space: nowrap;
}
.contactform-intro .text {
	font-weight: 700;
	font-size: 13px;
	line-height: 1.923;
}
@media only screen and (max-width: 1024px) {
	.sect-contactform {
		margin-bottom: 230px;
	}
	.contactform-intro {
		margin-bottom: 135px;
	}
}

.contactform-tel-box {
	padding-top: 50px;
	padding-bottom: 60px;
	margin-bottom: 55px;
	border-radius: 60px;
	border: 1px solid #8FB954;
}
.contactform-tel-box .sect-title {
	margin-bottom: 25px;
	font-size: 20px;
}
.contactform-tel-box .tel-link {
	display: block;
	margin-bottom: 10px;
}
.contactform-tel-box .tel-link .icon {
	margin-right: 10px;
	width: 30px;
	color: #8fb954;
}
.contactform-tel-box .tel-link .num {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 58px;
	line-height: 1;
}
.contactform-tel-box .reception-hours {
	font-size: 14px;
	line-height: 1.428;
	letter-spacing: 0.075em;
}

@media only screen and (max-width: 1024px) {
	.contactform-tel-box {
		padding: 0;
		margin-bottom: 105px;
		border: none;
	}
	.contactform-tel-box .tel-link .icon {
		margin-right: 5px;
		width: 15px;
	}
	.contactform-tel-box .tel-link .num {
		font-size: 30px;
	}

}

.contactform-box {
	padding: 105px 40px;
	border-radius: 60px;
	border: 1px solid #8FB954;
}
.contactform-box .sect-title {
	margin-bottom: 40px;
	font-size: 20px;
}
.contactform-box .head-text {
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 1024px) {
	.contactform-box {
		padding: 0;
		border: none;
	}
}
/* #endregion -------------------------------- */

/* #region animation ------------------------- */
.is-effect-list > *:nth-child(1) {
	transition-delay: 0.0s;
}
.is-effect-list > *:nth-child(2) {
	transition-delay: 0.2s;
}
.is-effect-list > *:nth-child(3) {
	transition-delay: 0.4s;
}
.is-effect-list > *:nth-child(4) {
	transition-delay: 0.6s;
}
.is-effect-list > *:nth-child(5) {
	transition-delay: 0.8s;
}
.is-effect-list > *:nth-child(6) {
	transition-delay: 1.0s;
}

@media only screen {
	.is-effect-list > *, .is-effect01 {
		opacity: 0;
		transform: translateY(50px);
		transition: 3s cubic-bezier(0.2, 1, 0.2, 1);
		transition-property: opacity, transform;
	}
	.is-effect-list.is-anime > *, .is-effect01.is-anime {
		opacity: 1;
		transform: translateY(0px);
	}
}

@media only screen and (max-width: 1024px) {
	.is-effect-list > *, .is-effect01 {
		transition-property: opacity;
	}
}
/* keyframes */
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.is-float01 {
	animation: float01 2.5s cubic-bezier(.22,.03,.76,.94) infinite alternate both;
	transform-origin: 50% 50%;
}
.is-float02 {
	animation: float02 2.5s cubic-bezier(.22,.03,.76,.94) infinite alternate both;
	transform-origin: 50% 50%;
}

@keyframes float01 {
	0% {
		transform: translateX(20px);
	}
	100% {
		transform: translateX(0px);
	}
}
@keyframes float02 {
	0% {
		transform: translateX(-20px);
	}
	100% {
		transform: translateX(0px);
	}
}

.is-test00 {
	animation: test00 2.5s cubic-bezier(.22,.03,.76,.94) infinite alternate both;
	transform-origin: center bottom;

}
@keyframes test00 {
	0% {
		transform: skewX(2deg) scaleY(100%);

	}
	50% {
		transform:  skewX(0deg) scaleY(98%);
	}
	100% {
		transform: skewX(-2deg) scaleY(100%);

	}
}


#bird01 {
	animation: bird 20s linear infinite normal both;
	transform-origin: center bottom;
}
#bird02 {
	left: -70%;
	top: -20%;
	animation: bird 18s linear -12s infinite normal both;
	transform-origin: center bottom;
}
@keyframes bird {
	0% {
		transform: translate3d(0,0,0) rotateY(0);
	}
	49.999%{
		transform: translate3d(30%,0,0) rotateY(0);
	}
	50%{
		transform: translate3d(30%,0,0) rotateY(180deg);
	}
	99.999% {
		transform: translate3d(0,0,0) rotateY(180deg);
	}
	100% {
		transform: translate3d(0,0,0) rotateY(0);
	}
}

#train {
	animation: train 10s cubic-bezier(.56,0,.66,.96) infinite alternate both;
	transform-origin: center bottom;
}
@keyframes train {
	0% {
		transform: translate3d(0,0,0);
	}
	15% {
		transform: translate3d(0,0,0);
	}
	100% {
		transform: translate3d(-70%,7%,0);
	}
}

#car01 {
	animation: car-left 15s cubic-bezier(.56,0,.66,.96) infinite alternate both;
	transform-origin: center bottom;
}
#car02 {
	animation: car-left 15s cubic-bezier(.56,0,.66,.96) -8s infinite alternate both;
	transform-origin: center bottom;
}
@keyframes car-left {
	0% {
		transform: translateX(0);
	}
	40% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-40%);
	}
}
#car03 {
	animation: car-right2 20s cubic-bezier(.56,0,.66,.96) -6s infinite normal both;
	transform-origin: center bottom;
}
#car04 {
	animation: car-right1 20s cubic-bezier(.56,0,.66,.96) -7s infinite normal both;
	transform-origin: center bottom;
}
#car05 {
	animation: car-right1 20s cubic-bezier(.56,0,.66,.96) 4s infinite normal both;
	transform-origin: center bottom;
}
@keyframes car-right1 {
	0% {
		transform: translateX(60%);
	}
	50% {
		transform: translateX(9.5%);
	}
	60% {
		transform: translateX(9.5%);
	}
	80% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(0);
	}
}
@keyframes car-right2 {
	0% {
		transform: translateX(60%);
	}
	50% {
		transform: translateX(12.5%);
	}
	60% {
		transform: translateX(12.5%);
	}
	80% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(0);
	}
}

/* #endregion -------------------------------- */