/*###########################################################################################*/
/*###########################################################################################*/

/* TOP */

/*###########################################################################################*/
/*###########################################################################################*/

/*###########################################################################################*/
/* mainvisual */
/*###########################################################################################*/

.mainvisual {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
	position: relative;
}

/* キャッチコピー（共通） */

.mainvisual .catch-bg{
	position: absolute;
	background: linear-gradient(
			-45deg
			, rgb(3 96 60 / 50%), rgb(0 168 168 / 50%));
}
.mainvisual .catch-copy{
	color: #fff;
	font-size: 2rem;
	padding: 1rem;
	z-index: 111;
	font-weight: normal;
}

/* 帯 */

.wrap-separation{
	position: relative;
}
.wrap-separation .image{
	position: absolute;
	top:-4rem;
}


/* キャッチコピーとビルボードの調整 */

@media screen and (max-width:991px) and (orientation: portrait) {
	/* 幅991px以下に適用されるCSS（スマホ・TB 縦のみ） */

	.mainvisual .catch-wrap {
		display: block;
		z-index: 1;
		padding: 26% 4% 0;
	}

	.mainvisual .catch-wrap .item {
		width: 100%;
		margin: 0 auto;
	}
}

/* medal */

.mainvisual .medal{
	background: url(/common/img/medal.png) no-repeat;
	width: 140px;
	height: 140px;
	background-size: contain;
	bottom: 2rem;
	right: 0.5rem;
	position: absolute;
}
.mainvisual .medal .num{
	position: absolute;
	font-size: 26px;
	top: 36px;
	font-weight: bold;
	right: 65px;
}

@media screen and (max-width: 896px) and (orientation: landscape){
	/* スマホ横のみ */

	.mainvisual .catch-wrap {
		display: flex;
		padding: 12% 2% 0;
		z-index: 1;
	}

}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	/* 帯 */

	.wrap-separation .image{
		top:-138px;
	}

	/* キャッチコピー（共通） */

	.mainvisual .catch-bg{
		bottom: 20rem;
		width: 500px;
	}
	.mainvisual .catch-copy{
		font-size: 3.2rem;
	}

	/* medal */
	.mainvisual .medal{
		width: 175px;
		height: 175px;
		bottom: 5rem;
		right: 2rem;
		z-index: 9990;
	}
	.mainvisual .medal .num{
		top: 5rem;
		right: 8.5rem;
	}
}

/* scroll */

.scroll-wrap{
	margin: 0 auto;
}
.scroll-wrap .text {
	bottom: 0;
	position: absolute;
	display: flex;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 2;
	padding: 10px 0 110px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	letter-spacing: .2em;
	writing-mode: vertical-lr;
	align-items: center;

	/* IE */
	-ms-writing-mode: tb-lr;
}

.scroll-wrap .text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: #fff;
	animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.scroll-wrap .text::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 100px;
	background: rgba(255, 255, 255, .4);
}
@keyframes sdl {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}


/* 効果をかけるためのスタイル設定 */
.slick-main .slick-slide {
	/* slickによってelement.styleで付けられるopacityを無効化 */
	opacity: 1 !important;
}

.slick-main .slideobject {
	/* フェード要素の初期設定 */
	opacity: 0;
	transition: 0s;
}

.slick-main .slick-active .slideobject {
	/* slick-active(効果開始)の際のフェード設定 */
	/* [重要]slick側の設定と同じdurationを取る */
	opacity: 1;
	transition: ease 5.0s;
}

.slick-main .slick-continue .slideobject {
	/* エフェクトの継続用に付与したslick-continueのフェード設定 */
	/* [重要]slick側の設定と同じdurationを取る */
	opacity: 0;
	transition: ease 5.0s;
}

.slick-main .image {
	/* 画像 ズーム要素の初期設定 */
	transform: scale(1.4, 1.4);
	transition: 0s;
}

.slick-main .slick-active .image {
	/* 画像　slick-active(効果開始) */
	/* ズームをかける要素には必ずフェードに対して大きめのtransition-durationを取る */
	transform: scale(1.2, 1.2);
	transition: ease 10.0s;
}
.slick-main .slick-continue .image {
	/* 画像　slick-continue */
	/* ズームをかける要素には必ずフェードに対して大きめのtransition-durationを取る */
	transform: scale(1.0, 1.0);
	transition: ease 10.0s;
}

/* スライド周りの基本スタイル */
.slick-main {
	height:100vh;
	left: 0;
	position: absolute !important;
	top: 0;
	width: 100%;
}

.slick-main .slideobject {
	/*padding-top: 50%;*/
	height: 100vh;
	overflow: hidden;
	position: relative;
	vertical-align: bottom;
	z-index: 10;
}

.slick-main .slideobject .image {
	bottom: 0;
	object-fit: cover;
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 10;

}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	/* スライダーボタン：TOPページ専用 */

	.top-wrap .slick-dots {
		bottom: 3rem;
		height: 20px;
		left: auto;
		margin-left: auto;
		position: relative;
		right: 3rem;
		text-align: right;
		width: 100%;
	}

	.top-wrap .slick-dots li {
		position: relative;
		z-index: 1;
	}

	.top-wrap .slick-dots li {
		border-bottom: 12px solid #fff;
		display: inline-block;
		height: 12px;
		margin: 0 8px 0 0;
		width: 12px;
	}

	.top-wrap .slick-dots li.slick-active{
		border-color: #c2a200;
	}

	.top-wrap .slick-dots li button {
		font-size: 0;
		line-height: 0;
		display: block;
		width: 10px;
		height: 10px;
		padding: 0px;
		cursor: pointer;
		color: transparent;
		border: 0;
		outline: none;
		background: transparent;
		text-indent: -9999999px;
	}

	.top-wrap .slick-dots li button:before {
		font-family: 'slick';
		font-size: 6px;
		line-height: 20px;
		position: absolute;
		top: 0;
		left: 0;
		width: 20px;
		height: 20px;
		content: '?';
		text-align: center;
		opacity: .25;
		color: black;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}

/*###########################################################################################*/
/* BLOG  */
/*###########################################################################################*/

.blog-text{
	line-height: 1.8;
	overflow: hidden;
	height: 7em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin-top: 18px;
}

.blog-title{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #c2c2c2;
	margin-top: 1rem;
}

.blog-type{
	margin-top: 12px;
	margin-bottom: 30px;
	color: grey;
	font-size: 12px;
	text-align: end;
}

.blog-th{
	display: flex;
	justify-content: center;
}

.blog-category h3{
	color: #505050;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.blog-category h3:before{
	content: "■";
	color: #c2a200;
	margin-right: 1rem;
}

.category-tab{
	color: #505050;
	border: none;
	background: none;
	font-weight: bold;
	border-bottom: 1px solid #c2a200;
}

.category-tab.active{
	color: #c2a200;
}

.category-tab:hover{
	cursor: pointer;
}

.category-wrap{
	display: none;
	padding-top: 6rem;
}

.no-blog{
	display: flex;
	justify-content: center;
	margin-top: 4rem;
	margin-bottom: 6rem;
}

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

	.blog-category{
		max-width: 250px;
		float: right;
	}
	.category-wrap{
		max-width: 780px;
	}
	.blog-wrap{
		display: flex;
		justify-content: center;
		margin-bottom: 4rem;
	}

	.blog-title{
		margin-top: 0;
	}
	.blog-title p{
		color: #989898;
	}

	.blog-item{
		margin-left: 3rem;
		width: 50%;
	}
	.blog-type{
		margin-bottom: 0;
	}
}


/*###########################################################################################*/
/* NEWS  */
/*###########################################################################################*/
.section.news .title{
	position: relative;
	font-size: 2rem;
	margin-bottom: 2rem;
}
.section.news .title::before{
	content: "■";
	color: #c2a200;
	margin-right: 1rem;
}

/* list-line */

.section.news .list-line .item{
	border-bottom: 1px solid #d2d2d2;
	line-height: 2;
	margin: 2rem 0;
	padding: 0 0 2rem;
}
.section.news .list-line .item:first-child,
.section.news .list-line .item:last-child{
	margin: 0;
}
.section.news .list-line .item:last-child{
	border: 0;
}

.section.news .list-line .item .date{
	font-size: 1.6rem;
	font-weight: bold;
}

/* list-price-down */

.section.news .list-price-down{
	display: flex;
	justify-content: space-between;
}
.section.news .list-price-down-item.thumbnail{
	position: relative;
	width: 25%;
}
.section.news .list-price-down-item.thumbnail .noimage-text{
	font-size: 1.3rem;
}
.section.news .list-price-down-item.text{
	width: 70%;
}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	.section.news .wrap{
		display: flex;
		justify-content: space-between;
	}
	.section.news .wrap-item{
		width: 48%;
		display: flex;
		justify-content: space-between;
	}

	.section.news .title{
		width: 12%;
		writing-mode: vertical-lr;

		/* IE */
		-ms-writing-mode: tb-lr;
	}
	.section.news .title::before{
		padding-bottom: 0.5rem;
	}

	/* list-line */

	.section.news .list-line{
		width: 88%;
	}
	.section.news .list-line .item{
		height: 100px;
	}
	.section.news .list-line .item img{
		max-height: 80px;
	}
}


/*###########################################################################################*/
/* SEARCH */
/*###########################################################################################*/

/* line */

.section.search{
	position: relative;
}
.section.search .greenline{
	position: absolute;
	top: 7rem;
}
.section.search .goldline{
	position: absolute;
	bottom: 6rem;
}

.section.search .headline{
	color: #fff;
}

/* 物件種別切り替えメニュー */

.list-search-type {
	display: flex;
	justify-content: center;
}
.list-search-type .item {
	text-align: center;
	background: #fff;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: bold;
	display: block;
	padding: 1.2rem;
	position: relative;
	transition: background-color 0.3s ease;
}
.list-search-type .item.active {
	background: #005c00;
	color: #fff;
}
.list-search-type .item:hover {
	color: #005c00;
	background: #fff;
}

/* 検索エリア */

.wrap-search{
	background: #fff;
	padding: 2rem 2rem 0;
}
.wrap-search-item .list-map {
	transform: translate3d(1.4rem, 0, 0) scale(1);
}
.wrap-search-item .list-map .item {
	position: absolute;
	text-align: center;
}

/* 西区 */
.wrap-search-item .list-map .item.map1 {
	height: 14rem;
	left: 0;
	line-height: 14rem;
	top: 8rem;
	width: 20%;
}

/* 桜区 */
.wrap-search-item .list-map .item.map2 {
	height: 8rem;
	left: 10%;
	line-height: 8rem;
	top: 23rem;
	width: 20%;
}

/* 北区 */
.wrap-search-item .list-map .item.map3 {
	height: 8rem;
	left: 22%;
	line-height: 8rem;
	top: 5rem;
	width: 22%;
}

/* 大宮区 */
.wrap-search-item .list-map .item.map4 {
	height: 5rem;
	left: 22%;
	line-height: 5rem;
	top: 14rem;
	width: 22%;
}

/* 中央区 */
.wrap-search-item .list-map .item.map5 {
	height: 8rem;
	left: 33%;
	line-height: 5rem;
	top: 20rem;
	width: 11%;
	writing-mode: vertical-lr;

	/* IE */
	-ms-writing-mode: tb-lr;
}

/* 南区 */
.wrap-search-item .list-map .item.map6 {
	height: 4rem;
	left: 32%;
	line-height: 4rem;
	top: 29rem;
	width: 26%;
}

/* 見沼区 */
.wrap-search-item .list-map .item.map7 {
	height: 14rem;
	left: 46%;
	line-height: 14rem;
	top: 5rem;
	width: 20%;
}

/* 浦和区 */
.wrap-search-item .list-map .item.map8 {
	height: 8rem;
	left: 46%;
	line-height: 5rem;
	top: 20rem;
	width: 11%;
	writing-mode: vertical-lr;

	/* IE */
	-ms-writing-mode: tb-lr;
}

/* 岩槻区 */
.wrap-search-item .list-map .item.map9 {
	height: 19rem;
	left: 68%;
	line-height: 19rem;
	top: 0;
	width: 22%;
}

/* 緑区 */
.wrap-search-item .list-map .item.map10 {
	height: 5rem;
	left: 60%;
	line-height: 5rem;
	top: 20rem;
	width: 30%;
}

.wrap-search-item .list-map .item .map-box {
	background: #005c00;
	color: #fff;
	font-size: 1.5rem;
	height: 100%;
	letter-spacing: 0.5rem;
	align-items: center;
	justify-content: center;
	display: flex;
	transition: background-color 0.3s ease;
	width: 100%;
}
.wrap-search-item .list-map .item .map-box:hover {
	background-color: #c0c0c0;
	color:#5a5a5a;
}

/* 物件種別バナー */

.wrap-search-item .list-bk{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.wrap-search-item .list-bk .item{
	width: 48%;
	position: relative;
	background: url(/common/img/bg_kodate1.png) no-repeat;
	height: 140px;
	background-size: cover;
	text-align: center;
	margin-bottom: 2rem;
}
.wrap-search-item .list-bk .item.kodate2{
	background: url(/common/img/bg_kodate2.png) no-repeat;
	background-position: center;
}
.wrap-search-item .list-bk .item.tochi{
	background: url(/common/img/bg_tochi.png) no-repeat;
	background-position: center;
}
.wrap-search-item .list-bk .item.mansion{
	background: url(/common/img/bg_mansion.png) no-repeat;
	background-position: center;
}
.wrap-search-item .list-bk .item .bk-type{
	padding: 0.6rem 0.8rem 0.2rem;
}
.wrap-search-item .list-bk .item .bk-type .icon{
	width: 16px;
	margin-right: 0.5rem;
}
.wrap-search-item .list-bk .item a{
	display: block;
	height: inherit;
	padding-top: 0.5rem;
}
.wrap-search-item .list-bk .item .title{
	color: #005c00;
	font-size: 2.2rem;
	font-weight: bold;
	width: 100%;
	margin-bottom: 1rem;
}

/* 特集物件バナー */

.section.search .list-bnr .item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #fff;
	margin-bottom: 2rem;
	font-size: 1.5rem;
	position: relative;
}
.section.search .list-bnr .item a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	padding: 0.5rem 1rem;
}

.section.search .list-bnr .item .icon{
	margin-right: 2rem;
	width: 70px;
}
.section.search .list-bnr .item .arrow{
	background: #005c00;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0.6rem;
}
.section.search .list-bnr .item .arrow .icon-arrow{
	width: 8px;
}
.section.search .list-bnr .item .appeal{
	color: #c2a200;
	font-size: 2rem;
	font-weight:  bold;
}

@media screen and (max-width:320px) {
	/* 幅320px以下に適用されるCSS（iphne5/SE）*/

	.wrap-search-item .list-map {
		max-width: 320px;
	}
}

@media screen and (max-width:991px) {
	/* 幅991px以下に適用されるCSS（TB以下） */

	.section.search .sp-bg{
		padding: 5rem 0;
		background: url(/common/img/bg_search.jpg) no-repeat;
		width: 100%;
		height: auto;
		background-size: cover;
	}

	/* 検索エリア */

	.wrap-search-item.map{
		min-height: 600px;
	}

	/* 中央区、浦和区 */
	.wrap-search-item .list-map .item.map5,
	.wrap-search-item .list-map .item.map8{
		line-height: 2.4;
	}

	.section.search .list-bnr{
		padding-top: 5rem;
		padding-bottom: 5rem;
		background-image: linear-gradient(
				-45deg
				, rgb(255 255 255 / 20%) 25%, #005c00 25%, #005c00 50%, rgb(255 255 255 / 20%) 50%, rgb(255 255 255 / 20%) 75%, #005c00 75%, #005c00);
		background-size: 3px 3px;
		background-color: #005c00;
	}
}

@media screen and (max-width: 480px){
	/* 幅px以下に適用されるCSS（480スマホ縦） */

	/* line */

	.section.search .greenline{
		top: 4rem;
	}
	.section.search .goldline{
		bottom: 3rem;
	}

	/* 検索エリア */

	.wrap-search-item.map{
		min-height: 400px;
	}

	/* 物件種別バナー */

	.wrap-search-item .list-bk .item a{
		padding-top: 3rem;
	}
}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	.section.search{
		width: 100%;
		height: auto;
		background: url(/common/img/bg_search.jpg) no-repeat;
		background-size: cover;
	}

	/* 物件種別切り替えメニュー */

	.list-search-type .item {
		padding: 1.7rem 1.2rem;
		width: 260px;
	}

	/* line */

	.section.search .greenline{
		top: 0;
	}
	.section.search .goldline{
		bottom: -5rem;
	}

	.wrap-search{
		display: flex;
	}
	.wrap-search-item{
		width: 50%;
	}
	.wrap-search-item.map {
		padding: 8rem 0;
	}
	.wrap-search-item .list-map {
		transform: translate3d(0, 0, 0) scale(0.8);
	}

	/* 物件種別バナー */

	.wrap-search-item .list-bk .item {
		height: 200px;
	}
	.wrap-search-item .list-bk .item .title{
		font-size: 2.6rem;
	}
	.wrap-search-item .list-bk .item a{
		padding-top: 6rem;
	}

	/* 特集物件バナー */

	.section.search .list-bnr{
		margin-top: 2rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.section.search .list-bnr .item{
		width: 32%;
	}
}


/*###########################################################################################*/
/* VOICE */
/*###########################################################################################*/
.section.voice .item{
	margin-bottom: 5rem;
}

.section.voice .thumbnail img{
	width: 100%;
	height: 250px;
}

.section.voice .icon-new{
	background: #c2a200;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.2rem 1rem;
}

@media screen and (max-width: 991px) {
	/* 幅991px以下に適用されるCSS（TB以下） */

	.section.voice .thumbnail {
		height: 250px;
		overflow: hidden;
	}
}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	.section.voice .list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.section.voice .item{
		width: 30%;
	}
}

/*###########################################################################################*/
/* SERVICE */
/*###########################################################################################*/
.section.service{
	background: #00a6a7;
}
.section.service .headline{
	color: #fff;
}
.section.service .item{
	background: #fff;
	position: relative;
}
.section.service .item::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 0;
	height: 0;
	border-bottom: 2rem solid #c2a200;
	border-left: 2rem solid transparent;
}
.section.service .item .title{
	position: absolute;
	background: #c2a200;
	color: #fff;
	padding: 1rem;
	top: -2rem;
	margin: 0 auto;
	right: 0;
	left: 0;
	width: 20rem;
	text-align: center;
	z-index: 1;
}

.section.service .list .item .text{
	padding: 1.5rem;
	line-height: 1.6;
}
section.service .thumbnail{
	height: 200px;
	overflow: hidden;
}
section.service .thumbnail img{
	width: 100%;
}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	.section.service .list{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.section.service .item{
		width: 30%;
	}
}


/*###########################################################################################*/
/* company */
/*###########################################################################################*/

.section.company .list-company .item .title{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 3rem;
	line-height: 2;
}
.section.company .list-company .item.text{
	background: url(/common/img/company/logo_mark.png) no-repeat;
	background-color: #f0f0f0;
	background-size: 66%;
	background-position: center;
}
.section.company .list-company .item.pict{
	vertical-align: bottom;
}

/* staff */

.section.company .list-company-staff{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.section.company .list-company-staff .item .thumbnail{
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 200px;
}
.section.company .list-company-staff .item .thumbnail img{
	height: inherit;
}
.section.company .list-company-staff .item .text{
	background: #f0f0f0;
	text-align: center;
	padding: 2rem;
}

@media screen and (max-width: 991px) {
	/* 幅991px以下に適用されるCSS（TB以下） */
	.company-header-image {
		height: 300px;
	}

	.section.company .list-company .item.text {
		padding: 2rem 4% 1rem;
	}

	.section.company .list-company-staff .item{
		width: 45%;
	}
}

@media screen and (min-width:992px) {
	/* 幅992px以上に適用されるCSS（PCサイズ以上） */

	.section.company .list-company{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.section.company .list-company .item{
		width: 50%;
	}
	.section.company .list-company .item.text{
		padding: 9rem 5rem 0 5rem;
	}

	/* staff */

	.section.company .list-company-staff .item{
		width: 20%;
		border: 1px solid #f0f0f0;
	}
}