@charset "UTF-8";
/* ===========================================
 * 賃貸ステートメントサイト common
 * ======================================== */
/* ---------------------------------------------
*   animation
--------------------------------------------- */
/* fadein_left */
@-webkit-keyframes fadein_left {
	0% {
		-webkit-filter: blur(30px);
		        filter: blur(30px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}
@keyframes fadein_left {
	0% {
		-webkit-filter: blur(30px);
		        filter: blur(30px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}
/* fadein_blur */
@-webkit-keyframes fadein_blur {
	0% {
		-webkit-filter: blur(30px);
		        filter: blur(30px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
@keyframes fadein_blur {
	0% {
		-webkit-filter: blur(30px);
		        filter: blur(30px);
	}
	100% {
		opacity: 1;
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
/* zoom-out */
@-webkit-keyframes zoom-out {
	0% {
		-webkit-filter: blur(10px);
		        filter: blur(10px);
		-webkit-transform: scale(1.08);
		        transform: scale(1.08);
	}
	30% {
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	70% {
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
@keyframes zoom-out {
	0% {
		-webkit-filter: blur(10px);
		        filter: blur(10px);
		-webkit-transform: scale(1.08);
		        transform: scale(1.08);
	}
	30% {
		-webkit-filter: blur(10px);
		        filter: blur(10px);
	}
	70% {
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
/* zoom-in */
@-webkit-keyframes zoom-in {
	0% {
		-webkit-filter: brightness(1);
		        filter: brightness(1);
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-filter: brightness(1.1);
		        filter: brightness(1.1);
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}
@keyframes zoom-in {
	0% {
		-webkit-filter: brightness(1);
		        filter: brightness(1);
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-filter: brightness(1.1);
		        filter: brightness(1.1);
		-webkit-transform: scale(1.05);
		        transform: scale(1.05);
	}
}
/* ---------------------------------------------
*   base
--------------------------------------------- */
/* statement_container */
.statement_container {
	width: 1000px;
	margin: 0 auto;
	padding-bottom: 200px;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Noto Sans JP", "BIZ UDPGothic", "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
}

/* hiddenlayer */
.hiddenlayer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	z-index: 10;
	opacity: 1;
}
.hiddenlayer > span {
	width: 0;
	height: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	display: inline-block;
}

/* ---------------------------------------------
*   section / layout
--------------------------------------------- */
/* sec_contents */
.statement_container .sec_contents {
	margin-top: 80px;
}
.statement_container .sec_contents .sec_contents_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.statement_container .sec_contents .sec_contents_title {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 20px;
	font-size: 24px;
	font-weight: bold;
}
.statement_container .sec_contents .sec_contents_title::before {
	content: "";
	display: inline-block;
	width: 36px;
	height: 36px;
	background-image: url("../img/common/icon_title.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
.statement_container .sec_contents .sec_contents_body {
	margin-top: 30px;
}
.statement_container .sec_contents .sec_contents_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 20px 50px;
}
.statement_container .sec_contents .sec_contents_list.sec_contents_list--twocolumn > li {
	width: calc((100% - 50px) / 2);
}
.statement_container .sec_contents .sec_contents_list.sec_contents_list--threecolumn > li {
	width: calc((100% - 100px) / 3);
}

/* ---------------------------------------------
*   module
--------------------------------------------- */
.statement_container .movie .movie_item {
	position: relative;
}
.statement_container .movie .movie_item > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.statement_container .movie .movie_obj {
	position: relative;
	padding: 0;
	border: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	cursor: pointer;
	overflow: hidden;
}
.statement_container .movie .movie_obj::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	width: 80px;
	height: 80px;
	background-image: url("../img/common/icon_play.svg");
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.statement_container .movie .movie_obj > img {
	width: 100%;
}
.statement_container .movie .movie_obj:hover > 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 .movie .movie_title {
	margin-top: 10px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.statement_container .movie.movie--brand .movie_item {
	width: 1000px;
	height: 563px;
}
.statement_container .movie.movie--cm .movie_item {
	width: 475px;
	height: 267px;
}

/* ---------------------------------------------
*   botton
--------------------------------------------- */
/* link_transition */
.statement_container .link_transition {
	position: relative;
	display: inline-block;
	padding-bottom: 5px;
	padding-right: 12px;
	color: #000;
	font-size: 12px;
	font-weight: bold;
}
.statement_container .link_transition::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 .link_transition:hover {
	text-decoration: none;
}
.statement_container .link_transition:hover::before {
	right: -10px;
}