@charset "UTF-8";

.kv {
    position: relative;
	background: #f8f8f8;
}

.kv__img img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
}

.kv__over {
    position: absolute;
    left: 0;
    bottom: 0;
	color: #fff;
}

.kv__txt--main,
.kv__txt--main * {
	font-weight: 700;
	letter-spacing: 0.1em;
}

.kv__txt--sub,
.kv__txt--sub * {
	font-weight: 600;
	letter-spacing: 0.2em;
}

@-webkit-keyframes scrollBtn{
    0% {
        bottom: 23px;
    }
    88% {
        bottom: 0;
    }
    95% {
        bottom: 0;
    }
    100% {
        bottom: 23px;
    }
}

@keyframes scrollBtn{
    0% {
        bottom: 23px;
    }
    88% {
        bottom: 0;
    }
    95% {
        bottom: 0;
    }
    100% {
        bottom: 23px;
    }
}

.scrollBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	position: absolute;
	right: 0;
	bottom: 0;
	-webkit-animation: .8s ease-in 0s infinite scrollBtn;
	        animation: .8s ease-in 0s infinite scrollBtn;
}

.scrollBtn a {
	display: block;
	position: relative;
	text-decoration: none;
}

.scrollBtn a::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	border-left: solid 1px;
}

.scrollBtn span {
	display: block;
	-webkit-transform: rotate(90deg) translate(-1.5em, 0);
	        transform: rotate(90deg) translate(-1.5em, 0);
}

.top-message {
	position: relative;
}

.top-message__marquee {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	padding-left: 100%;
	color: #faefeb;
	font-weight: 300;
	white-space: nowrap;
	overflow: hidden;
	-webkit-animation: marquee 50s linear infinite;
	        animation: marquee 50s linear infinite;
}

@-webkit-keyframes marquee {
	0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

@keyframes marquee {
	0% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
}

.top-message__txt {
	position: relative;
	z-index: 3;
}

.top-message__lb--sub {
	color: #eb6700;
	font-weight: 600;
	letter-spacing: 0.2em;
}

.top-message__lb--main {
	font-weight: 400;
}

.top-company {
	padding-top: 0;
}

.top-company__cont {
	position: relative;
	z-index: 1;
	background: #fff;
}

.top-company__cont::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #fff;
}

.property-link {
	display: block;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}

.property-link:hover {
	opacity: 1;
}

.property-link__img {
	position: relative;
}

.property-link__img::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	border-style: solid;
}

.is-mark--blue .property-link__img::before {
	border-color: transparent transparent #5ac9d1 #5ac9d1;
}

.is-mark--orange .property-link__img::before {
	border-color: transparent transparent #eb6700 #eb6700;
}

.is-mark--green .property-link__img::before {
	border-color: transparent transparent #1b6b4e #1b6b4e;
}

.property-link__img img {
	-webkit-backface-visibility: hidden;
            backface-visibility: hidden;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
}

.property-link:hover .property-link__img img {
	-webkit-transform: scale(1.08);
	        transform: scale(1.08);
}

.property-link__over {
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	color: #fff;
}

.property-link__txt__main,
.property-link__txt__sub {
	display: block;
}

.property-link__txt__sub {
	padding: 0 .2em;
}

.news-list {
	border-top: solid 1px #ddd;
}

.news-list__item {
	border-bottom: solid 1px #ddd;
}

.news-list__itemInner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-decoration: none;
}

.news-list__img {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	width: 28.1%;
}

.news-list__img .thumb {
	padding-top: 68.27%;
}

.news-list__txt {
	width: 66.9%;
	padding: .2em 0;
}


@media screen and (min-width: 900px) {

	.kv {
		padding-right: 110px;
	}

	.kv__over {
		padding: 6.25% 8.31%;
	}

	.kv__txt--main {
		font-size: 74px;
		line-height: 1.563;
	}
	
	.kv__txt--sub {
		margin-top: 15px;
	}

	.scrollBtn {
		width: 110px;
	}

	.scrollBtn a {
		padding-bottom: 95px;
	}

	.scrollBtn a::before {
		height: 78px;
		border-left-color: #000;
	}

	.scrollBtn span {
		font-size: 12px;
		letter-spacing: 0.2em;
	}

	.top-message {
		padding-bottom: 200px;
	}

	.top-message__marquee {
		font-size: 280px;
		line-height: 1.1;
	}

	.top-message__img {
		width: 38.5%;
	}

	.top-message__imgBack {
		position: relative;
		z-index: 1;
		padding-top: 320px;
	}
	
	.top-message__imgBack::before {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: #f8f8f8;
	}

	.top-message__txt {
		width: 46.66%;
		padding-top: 230px;
	}

	.top-message__lb--sub {
		margin-bottom: 32px;
	}

	.top-message__lb--main {
		margin-bottom: 35px;
		font-size: 34px;
		line-height: 1.824;
	}

	.top-company__head {
		margin-bottom: -90px;
	}

	.top-company__cont {
		padding: 100px 0 100px 160px;
	}

	.top-company__cont::before {
		left: 0;
	}

	.top-company .m-table__th {
		width: 200px;
	}

	.top-company .m-table__td {
		width: 840px;
	}

	.top-property__box {
		width: 48.33%;
	}
	.top-property__box2 {
		width: 32%;
	}

	.property-link__img::before {
		border-width: 87px 110px;
	}	

	.property-link__over {
		padding: 30px;
	}

	.property-link__txt__main {
		font-size: 54px;
		font-weight: 300;
		letter-spacing: 0.1em;
		line-height: 1.556;
	}

	.property-link__txt__sub {
		font-size: 18px;
		font-weight: 400;
		letter-spacing: 0.1em;
		line-height: 1;
	}

	.top-new__cont {
		-ms-flex-preferred-size: 740px;
		    flex-basis: 740px;
		margin-left: 6%;
	}

	.news-list__itemInner {
		padding: 40px 0;
	}

}

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

	.kv__over {
		bottom: 50%;
		transform: translate(0, 50%);
		padding: 12.1% 6.66%;
	}

	.kv__txt--main {
		font-size: 37px;
		line-height: 1.563;
	}
	
	.kv__txt--sub {
		margin-top: 8px;
		font-size: 10px;
	}

	.scrollBtn {
		width: 40px;
	}

	.scrollBtn a {
		padding-bottom: 75px;
		color: #fff;
	}

	.scrollBtn a::before {
		height: 63px;
		border-left-color: #fff;
	}

	.scrollBtn span {
		font-size: 10px;
		letter-spacing: 0.2em;
	}

	.top-message {
		z-index: 1;
		padding: 145px 0 90px;
	}
	
	.top-message::before {
		content: "";
		display: block;
		position: absolute;
		z-index: -1;
		left: 0;
		top: 0;
		width: 50%;
		height: 81.2%;
		background: #f8f8f8;
	}

	.top-message__marquee {
		padding-top: 20px;
		font-size: 103px;
		line-height: 1.1;
	}

	.top-message__txt {
		padding-top: 20px;
	}

	.top-message__lb--sub {
		margin-bottom: 8px;
		font-size: 11px;
	}

	.top-message__lb--main {
		margin-bottom: 15px;
		font-size: 22px;
		line-height: 1.824;
	}

	.top-company__head {
		margin-bottom: -17.33vw;
	}

	.top-company__cont {
		padding: 40px 0 40px 25px;
	}

	.top-company__cont::before {
		left: -10px;
	}

	.top-company .m-table {
		font-size: 12px;
	}

	.top-company .m-table__th {
		width: 33.333%;
	}

	.top-company .m-table__td {
		width: 66.667%;
	}

	.property-link__img::before {
		border-width: 46px 60px;
	}

	.property-link__over {
		padding: 5%;
	}

	.property-link__txt__main {
		font-size: 36px;
		font-weight: 300;
		letter-spacing: 0.1em;
		line-height: 1.556;
	}

	.property-link__txt__sub {
		font-size: 13px;
		font-weight: 400;
		letter-spacing: 0.1em;
		line-height: 1;
	}

	.top-new > .m-inner {
		position: relative;
		padding-bottom: 90px;
	}

	.top-new__link {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		text-align: center;
	}

	.news-list__itemInner {
		padding: 18px 0;
	}

	.news-list__txt {
		font-size: 13px;
	}

}