@charset "UTF-8";
/* ===========================================
 * 賃貸ステートメントサイト top
 * ======================================== */
/* ---------------------------------------------
*   section / layout
--------------------------------------------- */
/* sec_lead */
.statement_container .sec_lead {
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 60px;
}
.statement_container .sec_lead .sec_lead_mv {
	overflow: hidden;
}
.statement_container .sec_lead .sec_lead_mv > img {
	-webkit-animation: zoom-out 3s ease-in-out 0s 1 normal both;
	        animation: zoom-out 3s ease-in-out 0s 1 normal both;
}
.statement_container .sec_lead .sec_lead_header {
	width: 720px;
	margin: 80px auto 0;
	font-size: 50px;
	font-weight: bold;
}
.statement_container .sec_lead .sec_lead_body {
	width: 720px;
	margin: 67px auto 0;
}
.statement_container .sec_lead .sec_lead_logo {
	margin-top: 77px;
	text-align: center;
}

/* catchblock */
.statement_container .catchblock {
	position: relative;
	margin-top: 76px;
	padding-top: 76px;
	padding-bottom: 16px;
}
.statement_container .catchblock::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 2px;
	background-color: #910d53;
}
.statement_container .catchblock::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 2px;
	background-color: #01437d;
}
.statement_container .catchblock .catchblock_item {
	width: 700px;
	margin: 0 auto;
}

/* ---------------------------------------------
*   module
--------------------------------------------- */
/* desc */
.statement_container .desc .desc_text {
	margin-top: 48px;
	font-size: 20px;
	font-weight: bold;
	line-height: 2;
	letter-spacing: 0.05em;
}
.statement_container .desc .desc_text:first-child {
	margin-top: 0;
}

/* catch */
.statement_container .catch {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
}

/* card */
.statement_container .card {
	display: block;
}
.statement_container .card .card_obj {
	overflow: hidden;
}
.statement_container .card .card_obj > img {
	width: 100%;
}
.statement_container .card .card_title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 85px;
	margin-top: 20px;
	padding: 0 17px;
}
.statement_container .card .card_title:first-child {
	margin-top: 0;
}
.statement_container .card .card_title > img {
	width: 100%;
}
.statement_container .card .card_text {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.5;
}
.statement_container .card .card_text:first-child {
	margin-top: 0;
}
.statement_container .card .card_link {
	margin-top: 26px;
	text-align: right;
}
.statement_container .card .card_linkitem {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	padding-right: 10px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.statement_container .card .card_linkitem::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50px;
	height: 7px;
	background-image: url("../img/common/icon_arrow_link.svg");
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.statement_container .card:hover {
	text-decoration: none;
}
.statement_container .card:hover .card_obj > img {
	-webkit-animation: zoom-in 0.3s ease-in-out 0s 1 normal both;
	        animation: zoom-in 0.3s ease-in-out 0s 1 normal both;
}
.statement_container .card:hover .card_linkitem::before {
	right: -10px;
}