@charset "UTF-8";
/* CSS Document */

/*measures*/
.measures{
	width:90%;
	max-width:1400px;
	margin:50px auto;
}

/*corona modal*/
.corona{
	width:80%;
	text-align:center;
	margin:auto;
}
.corona .modalbtn{
	font-size:90%;
	border:none;
	background:none;
	width:100%;
}
.corona .modalbtn a{
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	width:100%;
	text-decoration:none;
	color:#004098;
	display:inline-block;
	text-align:center;
	border:1px solid #004098;
	line-height:1.2em;
	padding:1.5em 1em;
	font-size:120%;
	box-sizing:border-box;
}
.corona .modalbtn a span::before {
	content: "\A" ;
	white-space: pre ;
}
.corona .modalbtn .arrowbtn::after{
    border-right: 2px solid #004098;
    border-bottom: 1px solid #004098;
}
.corona .modalbtn {
}
.corona .modalbtn:hover {
}
.corona .modal {
	display: none;
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}
.corona .modal-content {
	margin: 10% auto 0;
	width: 90%;
	max-width:800px;
	animation-name: modalopen;
	animation-duration: 1s;
}

@keyframes modalopen {
  from {opacity: 0}
  to {opacity: 1}
}

.corona .modal-header {
	background:#fff;
	position:relative;
}
.corona .modal-header h1 {
  margin: 1rem 0;
}
.corona  .modalClose {
	color:#fff;
	font-size: 2rem;
	background:#000;
	position:absolute;
	right:10px;
	top:10px;
	line-height:1em;
}
.corona .modalClose:hover {
  cursor: pointer;
}
.corona .modal-box{
	background:#fff;
	text-align:left;
	padding:20px;
	box-sizing:border-box;
}
.corona .modal-box h5{
	font-size:130%;
	line-height:1.3em;
	margin:30px 0 10px 0;
}
.corona .modal-box p{
		font-size:90%;
	line-height:1.8em
}
.corona .modal-box .cont{
	display:flex;
	justify-content:space-between;
}
.corona .modal-box .cont dt{
	width:280px;
	overflow:hidden;
	margin:0;
}
.corona .modal-box .cont dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.corona .modal-box .cont p{
}
.corona .modal-box .cont p a{
	color:#004098;
}
.corona .modal-box dl{
	width:100%;
	margin:20px auto 0;
}
.corona .modal-box dl dd{
	padding:10px 0;
	border-top:1px solid #ccc;
}
.corona .modal-box dl dd:last-child{
	border-bottom:1px solid #ccc;
}
.corona .modal-box .btn{
	margin:10px 0;
	font-size:90%;
	text-align:center
}
.corona .modal-box .btn a{
	min-width:200px;
	text-decoration:none;
	color:#fff;
	display:inline-block;;
	text-align:center;
	line-height:1.2em;
	padding:0.8em 4em;
	background:#004098;
}
.corona .modal-box .btn .arrowbtn::after{
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
}

/*kino*/
.kino{
	width:100%;
	text-align:center;
	margin-top:30px;
}
.modal-box .kino .btn a{
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	width:80%;
	text-decoration:none;
	color:#fff;
	display:inline-block;
	text-align:center;
	line-height:1.2em;
	padding:1.5em 1em;
	font-size:120%;
	box-sizing:border-box;
	background:#65b3e5;
}
.kino .btn .arrowbtn::after{
}
.kino .btn{
	font-size:90%;
	border:none;
	background:none;
	width:100%;
	position:relative;
}
.kino .btn a h5{
	font-size:75%;
	position:absolute;
	top:-15px;
	left:0;
	right:0;
	background:#fff;
	display:inline-block;
	width:fit-content;
	margin:auto;
	padding:5px 15px;
	color:#65b3e5;
	border-radius:30px;
    border: 1px solid #65b3e5;
}


/*tabs*/
.tabs {
	width: 90%;
	max-width:1400px;
	margin: 0 auto;
	padding-top:30px;
}
/*タブのスタイル*/
.tab_item {
	width:19%;
	display:block;
	background-color: #f0f0f0;
	text-align: center;
	color: #333;
	text-align: center;
	font-weight: bold;
	transition: all 0.2s ease;
	float:left;
	margin-right:1.0%;
	margin-bottom:10px;
	box-sizing:border-box;
	padding:7px 0;
}
.tab_item:last-child{
	margin-right:0;
}
.tab_item:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#tokyo:checked ~ #tokyo_content,
#kanagawa:checked ~ #kanagawa_content,
#saitama:checked ~ #saitama_content,
#chiba:checked ~ #chiba_content,
#ibaraki:checked ~ #ibaraki_content,
#miyagi:checked ~ #miyagi_content,
#kyoto:checked ~ #kyoto_content,
#osaka:checked ~ #osaka_content,
#fukuoka:checked ~ #fukuoka_content{
  display: block;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #004098;
  color: #fff;
}

.tabs .tab_item h4{
	font-size:110%;
	line-height:1em;
	padding:0.2em 0;
}
.tabs .tab_item h4 span{
	font-size:70%;
	display:block;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	line-height:1em;
	letter-spacing:0.2em;
	margin-top:0.5em;
}

/*content_modelhouse archive*/
.content_modelhouse{
	margin-top:70px;
}

.content_modelhouse ol{
	width:100%;
	margin:0 auto 70px;
}
.content_modelhouse ol .area_title{
	margin:0 0 10px 0;
}
.content_modelhouse ol .area_title dt{
	width:50px;
	display:inline-block;
	vertical-align:sub;
	margin:0 10px 0 0;
}
.content_modelhouse ol .area_title h2{
	font-size:130%;
	line-height:1.4em;
	display:inline-block;
}
.content_modelhouse ol .area_title h2 span{
	line-height:1em;
	margin:0 0 20px 0;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	display:block;
	font-size:90%;
	letter-spacing:0.1em;
}
.content_modelhouse ol > h4{
	line-height:1em;
	margin:0 0 20px 0;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
}
.content_modelhouse ol ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
}
.content_modelhouse ol ul li{
	width:31%;
	margin:0 3.5% 50px 0;
	list-style:none;
}
.content_modelhouse ol ul li:nth-child(3n){
	margin:0 0 10px 0;
}
.content_modelhouse ol ul li dl{
	box-sizing:border-box;
}
.content_modelhouse ol ul li dl dt{
	width:100%;
	overflow:hidden;
}
.content_modelhouse ol ul li dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content_modelhouse ol ul li dl dd{
	width:100%;
	box-sizing:border-box;
}
.content_modelhouse ol ul li dl dd h3{
	font-size:130%;
	margin:0.5em 0 0;
	text-align:center;
	line-height:1.5em;
}
.content_modelhouse ol ul li dl dd h4{
	font-size:90%;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	line-height:1.0em;
	text-align:center;
	margin-bottom:0.7em;
	letter-spacing:0.2em;
}

.content_modelhouse ol ul li dl dd table.modelhaouse_info{
	font-size:90%;
	width:100%;
}
.content_modelhouse ol ul li dl dd table.modelhaouse_info tr td{
	border-top:1px dotted #ccc;
}
.content_modelhouse ol ul li dl dd table.modelhaouse_info tr:first-child td:last-child{
	height:6em;
}
.content_modelhouse ol ul li dl dd table.modelhaouse_info tr:last-child td{
	border-bottom:1px dotted #ccc;
}

.content_modelhouse ol ul li dl dd table.modelhaouse_info tr td:first-child{
	width:5em;
	line-height:1em;
}
.content_modelhouse ol ul li dl dd table.modelhaouse_info tr td:last-child{
	line-height:1.5em;
	padding:3px;
}
.content_modelhouse ol ul li .openNews{
	margin-top:10px;
	font-size:90%;
	color:#004097;
	font-weight:bold;
	text-align:center;
}

.content_modelhouse ol ul li dl .guid{
	display:flex;
	justify-content:space-between;
}
.content_modelhouse ol ul li dl .guid div{
	width:48%;
	font-size:80%;
	text-align:center;
	border:1px solid #ccc;
	margin:10px 0 0 0;
}
.content_modelhouse ol ul li dl .guid .new_open{
	width:100%;
	font-size:80%;
	text-align:center;
	border:1px solid #ccc;
	margin:10px 0 0 0;
}
.content_modelhouse ol ul li dl .guid div:first-child{
	border:1px solid #004098;
}
.content_modelhouse ol ul li dl .guid div a{
	display:block;
	padding:5px 0
}

.content_modelhouse ol ul li dl .guid div a.arrowbtn{
	width:100%;
	display:inline-block;
	cursor:pointer;
	position: relative;
	text-decoration: none;
}

.content_modelhouse ol ul li dl .guid div:first-child{
	background:#004098;
}
.content_modelhouse ol ul li dl .guid div:first-child a{
	color:#fff;
}
.content_modelhouse ol ul li dl .guid div a.arrowbtn::after{
    width: 10px;
}
.content_modelhouse ol ul li dl .guid div:first-child a.arrowbtn::after{
	border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
}


/* content_modelhouse single */

.content_title h6{
	margin-bottom:0.2em;
	line-height:1em;
}
.content_title h6 span{
	font-size:50%;
	line-height:1em;
}

.content_modelhouse_single{
	width:100%;
	max-width:1400px;
	margin:auto;
}
.content_modelhouse_single .main{
	margin:0 0 100px 0;
}
.content_modelhouse_single .main dl{
	display:flex;
	justify-content:space-between;
	flex-direction:row-reverse;
}
.content_modelhouse_single .main dl dt{
	width:60%;
	height:500px;
	overflow:hidden;
}
.content_modelhouse_single .main dl dt img{
	object-fit:cover;
	height:100%;
	width:100%;
}
.content_modelhouse_single .main dl dd{
	width:40%;
	position:relative;
}
.content_modelhouse_single .main dl dd .cont{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	width:90%;
	margin:auto;
}
.content_modelhouse_single .main dl dd .newwrite{
	color:#004097;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:0.8rem;
	margin:20px 0;
	font-weight:bold;
	display:inline-block;
	line-height:1.5em;
	border-top:2px solid #004097;
	border-bottom:2px solid #004097;
	padding:10px 10px 10px;
}
.content_modelhouse_single .main dl dd .newwrite span{
	font-size:1.2rem;
	display:block;
}
.content_modelhouse_single .main dl dd h2{
	font-size:100%;
	margin:0 0 1em 0;
}
.content_modelhouse_single .main dl dd h2 span{
	font-size:100%;
	font-weight:normal;
	color:#000;
	margin:0 0 0 2em;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	border-left:1px solid #ccc;
	padding-left:1.5em;
}
.content_modelhouse_single .main dl dd h3{
	font-size:140%;
	line-height:1.6em;
	margin:0 0 20px 0;
}


.modelhouse_swiper.slider{
	width:100%;
	overflow:hidden;
	margin-bottom:100px;
	
}
.modelhouse_swiper.slider .swiper-slide{
	overflow:hidden !important;
	margin:0 2px 0 0;
	box-sizing:border-box;
}
.modelhouse_swiper.slider .swiper-slide img{
	width: 100%;
	object-fit:cover;
	height:100%;
}
.modelhouse_swiper.slider .swiper-wrapper{
}

.content_modelhouse_single .detail{
	display:flex;
	justify-content:space-between;
	margin:0 auto 10px;
	background:#f9f9f9;
	padding:40px;
}
.content_modelhouse_single .detail .floorName{
	width:50px;
	margin:0 20px 0 0;
	padding:0 20px 0 0;
	box-sizing:border-box;
	border-right:1px solid #ccc;
}
.content_modelhouse_single .detail .floorName span{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	line-height:1.2em;
	font-size:280%;
}
.content_modelhouse_single .detail ul{
	width:calc(100% - 50px);
	display:flex;
	flex-wrap:wrap;
}
.content_modelhouse_single .detail ul li{
	list-style:none;
	width:32%;
	margin:0 2% 50px 0;
}
.content_modelhouse_single .detail ul li:nth-child(3n){
	margin-right:0;
}
.content_modelhouse_single .detail ul li dt{
	width:100%;
	height:200px;
	overflow:hidden;
	margin:0 0 10px 0;
}
.content_modelhouse_single .detail ul li dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content_modelhouse_single .detail ul li dd{
	width:100%;
	display: table;
	position:relative;
}
.content_modelhouse_single .detail ul li dd .inner_text{
	display: table-cell;
	vertical-align: middle;
}
.con
.content_modelhouse_single .detail ul li dd h6{
	font-size:50%;
	font-weight:normal;
	color:#000;
	font-weight:100;
	font-family: 'Barlow', sans-serif;
}
.content_modelhouse_single .detail ul li dd h6{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:100%;
	color:#000;
}
.content_modelhouse_single .detail ul li dd h2{
	font-size:110%;
	margin:0.5em 0;
}

.content_modelhouse_single .detail_feature{
	width:100%;
	
}
.content_modelhouse_single .detail_feature dl{
	width:90%;
	margin:auto;
	display:flex;
	justify-content:space-between;
	padding:100px 20px;
}
.content_modelhouse_single .detail_feature dl .inner_image{
	width:60%;
	display:flex;
	justify-content:space-between;
}
.content_modelhouse_single .detail_feature dl .inner_image dt{
	width:48%;
	height:350px;
	overflow:hidden;
}
.content_modelhouse_single .detail_feature dl .inner_image dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content_modelhouse_single .detail_feature dl dd{
	width:35%;
	overflow:hidden;
	display: table;
	position:relative;
}
.content_modelhouse_single .detail_feature dl dd .inner_text{
	display: table-cell;
	vertical-align: middle;
}
.content_modelhouse_single .detail_feature dl dd .inner_text h5{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:200%;
	color:#000;
}
.content_modelhouse_single .detail_feature dl dd .inner_text h6{
	font-family: 'Barlow', sans-serif;
	font-size:100%;
	color:#000;
	font-weight:100;
	display: flex;
    align-items: center;
}
.content_modelhouse_single .detail_feature dl dd .inner_text h6:after {
    content: "";
    height: 1px;
    flex-grow: 0.5;
    background-color: #ccc;
	margin-left: 1rem;
}
.content_modelhouse_single .detail_feature dl dd .inner_text h2{
	font-size:130%;
	line-height:1.5em;
	margin:1em 0;
}

.content_modelhouse_single .detail_feature dl dd .inner_text .special{
	margin:30px 0 0;
}
.content_modelhouse_single .detail_feature dl dd .inner_text .special .ikea{
	background:#005eb2;
	text-align:center;
	padding:10px 0;
	border-radius:100px;
}
.content_modelhouse_single .detail_feature dl dd .inner_text .special .ikea img{
	width:50%;
}

.content_modelhouse_single .detail_movie{
	padding:100px 0 50px;
	margin-top:100px;
	background:#f9f9f9;
}
.content_modelhouse_single .detail_movie dl{
	position: relative;
	width: 96%; 
	max-width:1000px;
	margin:auto;
}
.content_modelhouse_single .detail_movie dl::after{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:280%;
	content:"ROOM TOUR";
	position:absolute;
	top:-1.7em;
	left:0em;
	color:#000;
}
.content_modelhouse_single .detail_movie dl::before {
  content: "";
  display: block;
  padding-top: 60%; /* 比率を指定 */
}
.content_modelhouse_single .detail_movie iframe{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width:100%;
	height:100%;
	border:3px #fff solid;
	box-sizing:border-box;
}

.content_modelhouse_single .detail_staff{
	width:100%;
	margin:0 0 100px 0;
	background: linear-gradient(180deg, transparent 0%, transparent 30%, #f5f5f5 30%, #f5f5f5 100%);
	padding:70px 0 20px;
}
.content_modelhouse_single .detail_staff dl{
	width:90%;
	margin:auto;
	display:flex;
	justify-content:space-between;
}
.content_modelhouse_single .detail_staff dl dt{
	width:400px;
}
.content_modelhouse_single .detail_staff dl dt img{
	width:100%;
	box-shadow:10px 10px 0px #ddd5;
	box-sizing:border-box;
}
.content_modelhouse_single .detail_staff dl dt.no_img img{
	width:100%;
	box-shadow:10px 10px 0px #ddd5;
	border:none;
	box-sizing:border-box;
}
.content_modelhouse_single .detail_staff dl dd{
	width:calc(100% - 420px);
	overflow:hidden;
	display: table;
	position:relative;
}
.content_modelhouse_single .detail_staff dl dd .inner_text{
	display: table-cell;
	vertical-align: middle;
}
.content_modelhouse_single .detail_staff dl dd .inner_text h2{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:200%;
	color:#000000;
	margin:0 0 0.5em 0;
}

.content_modelhouse_single .detail_info{
}
.content_modelhouse_single .detail_info dl{
	width:90%;
	margin:auto;
	display:flex;
	justify-content:space-between;
}
.content_modelhouse_single .detail_info dl dt{
	width:50%;
}
.content_modelhouse_single .detail_info dl dt iframe{
	width:100%;
	height:100%;
}
.content_modelhouse_single .detail_info dl dd{
	width:45%;
	padding:20px 0;
}
.content_modelhouse_single .detail_info dl dd h2{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	font-size:200%;
	color:#666;
	margin:0 0 30px 0;
	line-height:1em
}
.content_modelhouse_single .detail_info dl dd table{
}
.content_modelhouse_single .detail_info dl dd table tr td:first-child{
	width:6em;
	border-right:1px dotted #ccc;
	vertical-align:middle;
}
.content_modelhouse_single .detail_info dl dd table tr td:last-child{
	line-height:1.5em;
	vertical-align:middle;
	padding:0.5em 0 0.5em 1em
}
.content_modelhouse_single .detail_info dl dd table tr{
	border-top:1px dotted #ccc;
}
.content_modelhouse_single .detail_info dl dd table tr:last-child{
	border-bottom:1px dotted #ccc;
}
.content_modelhouse_single .detail_info dl dd .notes{
	font-size:90%;
	line-height:1.5em;
	margin:10px 0 0 0;
}
.content_modelhouse_single .detail_info dl dd table tr td a{
	color:#f04
}

/* content_modelhouse cat */
.content_modelhouse_cat{
	width:96%;
	max-width:1400px;
	margin:auto;
}
.content_modelhouse_cat .mainV{
	margin-bottom:30px;
	position:relative;
	height:500px;
}
.content_modelhouse_cat .mainV dl{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.content_modelhouse_cat .mainV dl dt{
	width:49.8%;
	height:250px;
	overflow:hidden;
	margin-bottom:0.4%;
}
.content_modelhouse_cat .mainV dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content_modelhouse_cat .mainV h1{
	font-size:1.4rem;
	display:inline-block;
	padding:40px;
	color:#fff;
	position:absolute;
	height:fit-content;
	width:fit-content;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	background:#004098;
}
.content_modelhouse_cat > h2{
	font-size:1.1rem;
	margin-bottom:1em;
}
.content_modelhouse_cat ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-start;
	margin-top:30px;
	background:#f6f6f6;
	padding:30px;
}
.content_modelhouse_cat ul li{
	width:32%;
	list-style:none;
	margin:0 2% 50px 0;
	background:#fff;
	position:relative;
	padding-bottom:40px;
}
.content_modelhouse_cat ul li:nth-child(3n){
	margin:0 0% 50px 0;
}
.content_modelhouse_cat ul li a{
}
.content_modelhouse_cat ul li a dt{
	width:100%;
	overflow:hidden;
	margin-bottom:10px;
}
.content_modelhouse_cat ul li a dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.content_modelhouse_cat ul li a dd{
	padding:0 20px;
}
.content_modelhouse_cat ul li a dd h2{
	font-size:1.1rem;
	text-align:center;
	margin-bottom:1em;
}
.content_modelhouse_cat ul li a dd .modelhaouse_info{
	font-size:0.8rem;
	line-height:1.5em
}
.content_modelhouse_cat ul li a dd .modelhaouse_info td:nth-child(1){
	width:3em;
	border-right:1px solid #ccc;
}
.content_modelhouse_cat ul li a dd .modelhaouse_info td:nth-child(2){
	padding-left:1em;
}
.content_modelhouse_cat ul li .arrowbtn{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	position:absolute;
	right:0;
	bottom:5px;
	width:fit-content;
	padding-right:50px;
}
.content_modelhouse_cat ul li:hover .arrowbtn:after{
    right: 10px;
    width: 30px;
    border-right: 2px solid #004098;
    border-bottom: 1px solid #004098;
}

/* modelhouse event */
.modelhouse_event{
	margin:100px 0;
}
.modelhouse_event h2{
	font-weight:100;
	font-family: 'Barlow', sans-serif;
	line-height:1.2em;
	font-size:280%;
	text-align:center;
	margin-bottom:30px;
}
.modelhouse_event ul{
	width:90%;
	max-width:1400px;
	margin:auto;
}
.modelhouse_event ul li{
	list-style:none;
	display:flex;
	justify-content:space-between;
	border-bottom:1px dotted #666;
	padding:20px 0
}
.modelhouse_event ul li:first-child{
	border-top:1px dotted #666;
}
.modelhouse_event ul li dt{
	width:300px;
}
.modelhouse_event ul li dt img{
	width:100%;
}
.modelhouse_event ul li dd{
	width:calc(100% - 330px);
	display:flex;
	align-items:center;
}
.modelhouse_event ul li dd h3{
	font-size:1.2rem;
}
.modelhouse_event ul li dd .date{
	font-size:0.9rem;
	font-weight:bold;
}
.modelhouse_event ul li dd .btn_box{
	display:flex;
	margin-top:30px;
}
.modelhouse_event ul li dd .btn_box .btn{
	width:48%;
	margin-right:20px;
}
.modelhouse_event ul li dd .btn_box .btn .arrowbtn{
	width:100%;
	padding:10px 20px;
	box-sizing:border-box;
	background:#004098;
	color:#fff;
	font-size:80%;
	text-align:center;
}
.modelhouse_event ul li dd .btn_box .btn .arrowbtn::after{
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
}

@media screen and (max-width: 959px) {
	.measures{
		width:90%;
		max-width:1400px;
		margin:50px auto;
		display:block;
		justify-content:unset
	}
	.measures .corona{
		width:80%;
		max-width:700px;
		margin:0 auto 50px;
	}
	.measures .kino{
		width:80%;
		max-width:700px;
		margin:0 auto 0;
	}

	.modelhouse_event ul li dd .btn_box{
		display:block;
		justify-content:unset;
	}
	.modelhouse_event ul li dd .btn_box .btn{
		width:100%;
		margin:0 auto 20px;
	}
}

@media screen and (max-width: 843px) {
	.content_modelhouse ol ul li{
		width:48%;
		margin:0 4% 50px 0;
		list-style:none;
	}
	.content_modelhouse ol ul li:nth-child(3n){
		margin:0 4% 50px 0;
	}
	.content_modelhouse ol ul li:nth-child(even){
		margin:0 0 50px 0;
	}
	.content_modelhouse_single .detail ul li{
		list-style:none;
		width:48.5%;
		margin:0 1.5% 50px 0;
	}
	.content_modelhouse_single .detail ul li:nth-child(3n){
		margin-right:1.5%;
	}
}
@media screen and (max-width: 768px) {
	
	.tab_item {
		width:32%;
		margin-right:2%;
		margin-bottom:10px;
	}
	.tab_item:nth-of-type(3n){
		margin-right:0%;
	}
	.content_modelhouse ol ul li dl dt{
		width:100%;
		overflow:hidden;
	}

	.content_modelhouse_single .main dl{
		display:block;
		justify-content:unset;
		flex-direction:unset;
	}
	.content_modelhouse_single .main dl dt{
		width:100%;
		height:unset;
		overflow:hidden;
	}
	.content_modelhouse_single .main dl dd{
		width:100%;
		position:unset;
	}
	.content_modelhouse_single .main dl dd .cont{
		position:unset;
		bottom:0;
		left:0;
		right:0;
		width:90%;
		margin:auto;
	}
	.content_modelhouse_single .detail{
		padding:40px 20px;
	}
	.content_modelhouse_single .detail ul li dt{
		width:100%;
		height:unset;
		overflow:hidden;
	}
	.content_modelhouse_single .detail .floorName{
		width:30px;
		margin:0 10px 0 0;
		padding:0 20px 0 0;
	}
	.content_modelhouse_single .detail .floorName span{
		font-size:180%;
	}
	.content_modelhouse_single .detail_feature dl{
		display:block;
		justify-content:unset;
	}
	.content_modelhouse_single .detail_feature dl .inner_image{
		width:100%;
		margin-bottom:10px;
	}
	.content_modelhouse_single .detail_feature dl .inner_image dt{
		width:49.5%;
		height:280px;
		overflow:hidden;
	}
	.content_modelhouse_single .detail_feature dl dd{
		width:100%;
		overflow:hidden;
		display: unset;
		position:unset;
	}
	.content_modelhouse_single .detail_feature dl dd .inner_text h2{
		margin:0.3em 0;
		padding:0 0 0 0;
	}
	.content_modelhouse_single .detail_staff dl{
		display:block;
		justify-content:unset;
	}
	.content_modelhouse_single .detail_staff dl dt{
		width:100%;
		max-width:400px;
		margin:auto;
	}
	.content_modelhouse_single .detail_staff dl dd{
		width:100%;
		overflow:hidden;
		display: unset;
		position:unset;
	}
	.content_modelhouse_single .detail_info dl{
		width:90%;
		margin:auto;
		display:block;
		justify-content:unset;
	}
	.content_modelhouse_single .detail_info dl dt{
		width:100%;
	}
	.content_modelhouse_single .detail_info dl dt iframe{
		width:100%;
		height:400px;
	}
	.content_modelhouse_single .detail_info dl dd{
		width:100%;
		padding:20px 0;
	}

	.content_modelhouse_cat ul{
		display:flex;
		justify-content:space-between;
		flex-wrap:wrap;
	}
	.content_modelhouse_cat ul li{
		width:48%;
		margin:0 4% 50px 0;
	}
	.content_modelhouse_cat ul li:nth-child(3n){
	}
	.content_modelhouse_cat ul li:nth-child(2n){
		margin:0 0% 50px 0;
	}
}

/* ----------699px–---------- */

@media screen and (max-width: 699px) {
	.modelhouse_event ul li{
		display:block;
		justify-content:unset;
	}
	.modelhouse_event ul li dt{
		width:100%;
		max-width:350px;
		margin:auto;
	}
	.modelhouse_event ul li dd{
		width:100%;
		display:flex;
		align-items:center;
	}
}

/* ----------649px–---------- */

@media screen and (max-width: 649px) {
	.corona .modal-box .cont{
		display:block;
		justify-content:unset;
	}
	.corona .modal-box .cont dt{
		width:100%;
		height:200px;
		margin:0 0 10px 0;
	}
	.corona .modal-box .cont dt img{
	}
	.corona .modal-box .cont p{
		width:100%;
	}
}
@media screen and (max-width: 599px) {
	.measures .corona{
		width:100%;
		max-width:unset;
		margin:0 auto 50px;
	}
	.measures .kino{
		width:100%;
		max-width:unset;
		margin: 30px 0;
	}
	.modelhouse_swiper.slider .swiper-slide{
		height:300px;
	}
	.content_modelhouse_single .detail ul li{
		list-style:none;
		width:100%;
		margin:0 0 50px 0;
	}
	.content_title h6 span{
		display:block;
	}
}
@media screen and (max-width: 520px) {
	.corona .modalbtn a{
		font-size:100%;
	}
	.kino .btn a{
		font-size:100%;
	}
	.kino .btn a h5{
		font-size:55%;
	}

	.tab_item:nth-of-type(3n){
		margin-right:2%;
	}
	.tab_item:nth-of-type(even){
		margin-right:0;
	}
	.tab_item {
		width:48%;
		margin:0 2% 10px 0;
	}
	.content_modelhouse ol ul li{
		width:100%;
		margin:0 0 50px 0;
		list-style:none;
	}
	.content_modelhouse_cat ul{
		display:block;
		justify-content:unset;
		flex-wrap:unset;
	}
	.content_modelhouse_cat ul li{
		width:100%;
		margin:0 0 50px 0;
	}
	.content_modelhouse_cat ul li:nth-child(3n){
	}
	.content_modelhouse_cat ul li:nth-child(2n){
	}
	.modal-box .kino .btn a{
		width:100%;
		font-size: 12px;
		text-decoration:none;
		color:#fff;
		display:inline-block;
		text-align:left;
		line-height:1.2em;
		padding:1.5em 2.5em 1.5em 1em;
	}
}