@charset "utf-8";

/*******************************************

-------------------------------------------
TOP
********************************************/

/*MVのアニメーション
========================================== */

.add-animation {
	animation: zoom-fade 10s both;
}

@keyframes zoom-fade {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

/*MV
========================================== */

.mv-pic {
	position: absolute;
	right: 0;
	top: 0;
	width: 860px;
}
.mv-pic ul {
	border-radius: 0 0 0 90px;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.mv-pic {
		position: relative;
		background: #FCFCFC;
		width: 100%;
	}
	.mv-pic ul {
		width: 95%;
		margin-left: auto;
	}
}

.mv {
	min-height: 390px;
	background: #FCFCFC;
}
.mv .mv-copy {
	padding-top: 100px;
	font-family: "Noto Serif JP", serif;
	position: relative;
	animation: fadeUpAnime 2s forwards;
}
@keyframes slideinRight {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	30% {
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.mv .mv-copy > h1 {
	font-weight: 700;
	font-size: 36px;
}
.mv .mv-copy > h1 em {
	font-size: 49px;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.mv {
		min-height: inherit;
	}
	.mv .mv-copy {
		padding-top: 50px;
	}
	.mv .mv-copy > h1 {
		font-size: 22px;
	}
	.mv .mv-copy > h1 em {
		font-size: 35px;
	}
}


/*お知らせ
========================================== */

.news {
	margin-top: 80px;
	position: relative;
}
.news > h2 {
	font-size: 16px;
	font-weight: bold;
}
.news > dl {
	padding-left: 30px;
	border-left: 2px solid #28384B;
	padding: 10px 30px;
	margin-top: 10px;
}
.news > dl dt {
	font-size: 14px;
}
.news > dl dd {
	font-size: 16px;
}
@media only screen and (max-width: 767px) {
	.news {
		margin-top: 40px;
	}
	.news > dl dt {
		font-size: 12px;
	}
	.news > dl dd {
		font-size: 14px;
	}
}

/*トータルサービス
========================================== */

.total {
	padding: 220px 0 120px;
	position: relative;
}
.total::after {
	content: "";
	width: 100%;
	height: 980px;
	background: url(../img/home/bg_ts.png) no-repeat bottom center;
	background-size: auto 100%;
	display: block;
	position: absolute;
	top: 0;
	z-index: -1;
}
.total .total-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.total {
		padding: 80px 0 120px;
	}
	.total .total-flex {
		flex-wrap: wrap;
	}
	.total figure {
		margin-top: 50px;
	}
}


.total .total-tit > em {
	font-size: 16px;
	position: relative;
	padding-left: 50px;
}
.total .total-tit > em::after {
	content: "";
	width: 30px;
	height: 2px;
	display: block;
	background: #1C294F;
	position: absolute;
	top: 10px;
}
.total .total-tit > h2 {
	font-size: 40px;
	margin-top: 20px;
	font-weight: bold;
}
.total .total-txt {
	margin-top: 40px;
}
.total .total-txt > p {
	line-height: 3;
}
.total .total-txt > p + p {
	margin-top: 30px;
}
@media only screen and (max-width: 767px) {
	.total .total-tit > h2 {
		font-size: 28px;
	}
	.total .total-txt > p {
		line-height: 2;
		font-size: 14px;
	}
}


/*事業案内
========================================== */

.biz .biz-tit h2 {
	font-weight: bold;
	text-align: center;
	font-size: 45px;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.biz .biz-tit h2 {
		font-size: 28px;
	}
}

/* ---------------------------
事業案内-ページ内リンク
----------------------------- */

.biz ul.biz-link-list {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-bottom: 50px;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	.biz ul.biz-link-list {
		display: block;
	}
	.biz ul.biz-link-list li {
		width: 100%;
	}
	.biz ul.biz-link-list li + li {
		margin-top: 10px;
	}
}


/* ---------------------------
事業案内-各項目
----------------------------- */

.biz .biz-item {
	position: relative;
	padding-top: 120px;
}
.biz .biz-item::after {
	content: "";
	width: 63%;
	height: 800px;
	display: block;
	background: #E4F3F9;
	top: 0;
	mix-blend-mode: multiply;
	position: absolute;
	z-index: -2;
	opacity: 0;
}
.biz .biz-item.inView::after {
	animation: slideinLeft 3s forwards;
}

.biz .biz-item .biz-item-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*偶数時*/
.biz .biz-item:nth-of-type(odd).biz-item::after {
	background: #EFEAE8;
	right: 0;
}
.biz .biz-item:nth-of-type(odd) .biz-item-flex {
	flex-direction: row-reverse;
}
.biz .biz-item:nth-of-type(odd).inView::after {
	animation: slideinRight 5s forwards;
}

@media only screen and (max-width: 767px) {
	.biz .biz-item {
		padding-top: 60px;
	}
	.biz .biz-item::after {
		width: 75%;
		height: 100%;
	}
	.biz .biz-item .biz-item-flex {
		flex-wrap: wrap;
	}
}

/* ---------------------------
事業案内-主な内容
----------------------------- */

.biz .biz-item .biz-item-txt {
	max-width: 470px;
	width: 100%;
}
.biz .biz-item .biz-item-txt > h3 {
	font-size: 30px;
	line-height: 1;
	font-weight: bold;
}
.biz .biz-item .biz-item-txt .biz-item-catch {
	font-size: 20px;
	margin-top: 30px;
	font-weight: bold;
	line-height: 2;
}
.biz .biz-item .biz-item-txt p {
	margin-top: 35px;
	line-height: 3;
}
.biz .biz-item .biz-item-txt p + p::before {
	content: "";
	width: 80px;
	height: 1px;
	background: #1C294F;
	display: block;
	position: absolute;
	top: 0;
}
.biz .biz-item .biz-item-txt p + p {
	padding-top: 35px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.biz .biz-item .biz-item-txt {
		max-width: 100%;
		margin-bottom: 20px;
	}
	.biz .biz-item .biz-item-txt > h3 {
		font-size: 28px;
	}
	.biz .biz-item .biz-item-txt .biz-item-catch {
		font-size: 18px;
	}
	.biz .biz-item .biz-item-txt p {
		line-height: 2;
		font-size: 14px;
	}
}


/* ---------------------------
事業案内-主な内容-一覧
----------------------------- */

.biz .biz-work {
	padding: 30px 55px;
	background: #fff;
	border: #ADB0B7 1px solid;
	margin-top: 50px;
}
.biz .biz-work .biz-work-tit {
	padding-bottom: 1em;
	position: relative;
	padding-left: 22px;
	border-bottom: 2px solid #C8C8C8;
}
.biz .biz-work .biz-work-tit::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #1C294F;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}

.biz .biz-work ul {
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	padding-bottom: 28px;
}
.biz .biz-work ul li {
	background: #E4F3F9;
	padding: 20px;
	text-align: center;
	width: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.biz .biz-work ul li > h3 {
	text-align: center;
}

.biz .biz-renova-btn {
	margin-top: 40px;
	padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
	.biz .biz-work {
		padding: 30px;
	}
	.biz .biz-work ul {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 15px;
	}
	.biz .biz-work ul li {
		width: 100%;
		font-size: 14px;
	}

}

/*ビル背景
========================================== */

.bg-buil {
	background: url(../img/home/bg_buil.jpg) no-repeat center top;
	height: 420px;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.bg-buil {
		height: 200px;
	}
}

/*当社管理物件
========================================== */

.mp {
	background: #FCFCFC;
	padding:60px 0 70px;
}
.mp .mp-tit > h2 {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
}

.mp ul.mp-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 70px;
	justify-content: space-between;
	gap: 15px;
}
.mp ul.mp-list li {
	background: #ECECEF;
}
.mp ul.mp-list li figure figcaption {
	padding: 10px 15px;
}
@media only screen and (max-width: 767px) {
	.mp ul.mp-list {
		gap:15px 2%;
		margin-top: 40px;
	}
	.mp ul.mp-list li {
		width: 48%;
	}
	.mp ul.mp-list li figure figcaption {
		font-size: 12px;
	}
}

.mp .mp-more-txt {
	text-align: center;
	margin-top: 50px;
}
.mp .mp-more-txt > p {
	text-align: center;
}

/* ---------------------------
当社管理物件-もっと見る
----------------------------- */

.mp .mp-morelink {
	background: #F8F8F8;
	max-width: 830px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 30px;
	justify-content: center;
	gap: 50px;
	display: flex;
	margin-top: 32px;
}
.mp .mp-morelink dl {}
.mp .mp-morelink dl dt {
	text-align: center;
	font-size: 14px;
}
.mp .mp-morelink dl dd {
	text-align: center;
	margin-top: 18px;
}
@media only screen and (max-width: 767px) {
	.mp .mp-morelink {
		flex-wrap: wrap;
	}
	.mp .mp-morelink dl dd {
		font-size: 14px;
	}
}


/*物件問い合わせリンク
========================================== */

.home-link {
}
.home-link a {
	display: block;
	text-align: center;
	background: #28384B;
	color: #fff;
	font-size: 20px;
	padding: 42px 30px;
	line-height: 1;
}
.home-link a:hover {
	background: #7babe6;
}

/*会社情報
========================================== */

.cmp {
	position: relative;
	min-height: 760px;
	padding: 120px 0 110px;
}
.cmp figure {
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
.cmp .cmp-txt {
	max-width: 450px;
}
.cmp .cmp-tit > h2 {
	font-size: 45px;
	font-weight: bold;
	line-height: 1;
}
.cmp .cmp-tit > em {
	font-weight: bold;
	font-size: 18px;
	margin-top: 18px;
	line-height: 1;
	display: inline-block;
}
.cmp .cmp-txt .cmp-catch {
	padding-bottom: 53px;
	margin-top: 98px;
}
.cmp .cmp-txt .cmp-catch > p {
	font-size: 36px;
	font-weight: bold;
}
.cmp .cmp-txt .cmp-btn {
	margin-top: 53px;
}
@media only screen and (max-width: 767px) {
	.cmp {
		padding-top: 80px;
		padding-bottom: 50px;
	}
	.cmp .cmp-txt {
		width: 100%;
	}
	.cmp .cmp-txt .cmp-catch {
		margin-top: 30px;
		padding-bottom: 30px;
	}
	.cmp figure {
		margin-top: 30px;
		position: relative;
	}
	.cmp .cmp-txt .cmp-catch > p {
		font-size: 24px;
	}
}

/*採用情報
========================================== */

.rec {
	position: relative;
	padding-top: 80px;
}

.rec.inView::before {
	animation: slideinLeft 2s forwards;
}
.rec::before {
	content: "";
	width: 80%;
	height: 340px;
	background: #E4F3F9;
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: ;
}
.rec .rec-flex {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
	.rec .rec-flex {
		flex-wrap: wrap;
	}
}

.rec .rec-tit {
	padding-top: 100px;
	margin-bottom: 85px;
	padding-left: 20px;
	max-width: 460px;
	position: relative;
	width: 100%;
}
.rec .rec-tit::after {
	content: "";
	background: url(../img/home/bg_txt_recruit.svg) no-repeat;
	width: 460px;
	height: 82px;
	display: block;
	position: absolute;
	top: 0;
}
.rec .rec-tit > h3 {
	font-size: 36px;
	line-height: 1;
	font-weight: bold;
}
.rec .rec-btn {
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	.rec .rec-tit {
		padding-top: 60px;
		padding-left: 0;
		margin-bottom: 40px;
	}
	.rec .rec-tit > h3 {
		font-size: 26px;
	}
	.rec .rec-tit::after {
		width: calc(100% - 30px);
		background-size: contain;
	}
	.rec .rec-btn {
		margin-bottom: 50px;
	}
}
