@charset "UTF-8";
/* ===========================================
 * 賃貸ステートメントサイト
 * ======================================== */
/* ---------------------------------------------
*   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-inline: 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_lead */
.statement_container .sec_lead {
	width: 1000px;
	margin-inline: auto;
	padding-bottom: 60px;
}
.statement_container .sec_lead .sec_lead_mv {
	overflow: hidden;
}
.statement_container .sec_lead .sec_lead_catch {
	margin-top: 80px;
}
.statement_container .sec_lead .sec_lead_header {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
}
.statement_container .sec_lead .sec_lead_desc {
	margin-top: 67px;
	width: 720px;
	margin-inline: auto;
}
.statement_container .sec_lead .sec_lead_move {
	margin-top: 120px;
}

/* unit */
.statement_container .unit {
	margin-top: 60px;
}
.statement_container .unit:first-child {
	margin-top: 0;
}
.statement_container .unit .unit_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 .unit .unit_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 .unit .unit_title::before {
	content: "";
	display: inline-block;
	width: 36px;
	height: 36px;
	background-image: url("../img/icon_title.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
.statement_container .unit .unit_body {
	margin-top: 30px;
}
.statement_container .unit .unit_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
}
.statement_container .unit .unit_list > li {
	width: calc((100% - 100px) / 3);
}

/* sec_contents */
.statement_container .sec_contents {
	position: relative;
	margin-top: 100px;
	padding-top: 94px;
}
.statement_container .sec_contents::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 2px;
	background-color: #910d53;
}
.statement_container .sec_contents::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 2px;
	background-color: #01437d;
}
.statement_container .sec_contents .sec_contents_header {
	font-size: 34px;
	font-weight: bold;
	text-align: center;
}
.statement_container .sec_contents .sec_contents_body {
	margin-top: 75px;
}

/* pickupblock */
.statement_container .pickupblock {
	margin-top: 60px;
}
.statement_container .pickupblock:first-child {
	margin-top: 0;
}
.statement_container .pickupblock .pickupblock_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 27px;
	padding: 16px;
	border: 1px solid #aaa;
}
.statement_container .pickupblock .pickupblock_headernum {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 40px;
	        flex: 0 0 40px;
}
.statement_container .pickupblock .pickupblock_headertext {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}
.statement_container .pickupblock .pickupblock_body {
	margin-top: 40px;
}

/* ---------------------------------------------
*   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;
}

/* movie */
.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/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: 20px;
	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;
}

/* movieacc */
.statement_container .movieacc .movieacc_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 50px;
	overflow: hidden;
	-webkit-transition: height 0.3s ease;
	transition: height 0.3s ease;
}
.statement_container .movieacc .movieacc_list > li {
	width: calc((100% - 50px) / 2);
}
.statement_container .movieacc .movieacc_btn {
	display: none;
	margin-top: 50px;
	text-align: center;
}

/* catch */
.statement_container .catch {
	width: 700px;
	margin-inline: auto;
}
.statement_container .catch .catch_item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 25px;
	margin-top: 40px;
}
.statement_container .catch .catch_item:first-child {
	margin-top: 0;
}
.statement_container .catch .catch_number {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50px;
	        flex: 0 0 50px;
}
.statement_container .catch .catch_desc {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.statement_container .catch .catch_desctitle {
	font-size: 20px;
	font-weight: bold;
}
.statement_container .catch .catch_desctext {
	margin-top: 17px;
	font-size: 16px;
	line-height: 1.5;
}
.statement_container .catch .catch_desctext > strong {
	display: block;
	font-weight: bold;
}
.statement_container .catch .catch_text {
	margin-top: 40px;
	font-size: 16px;
	font-weight: bold;
}

/* 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/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;
}

/* ---------------------------------------------
*   botton
--------------------------------------------- */
/* btn_more */
.statement_container .btn_more {
	display: inline-block;
	width: 246px;
	padding: 13px 5px;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 25px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.statement_container .btn_more:hover {
	background-color: #000;
	color: #fff;
}
.statement_container .btn_more.is-open {
	background-color: #000;
	color: #fff;
}
.statement_container .btn_more.is-open:hover {
	background-color: #fff;
	color: #000;
}

/* 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/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;
}