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

::selection{
    background: #1d1b62;
    color: #ffffff;
}

*{
	margin: 0px;
	padding: 0px;
}

/*　catch_logo　*/
.catch_logo{
	width:120px;
	height:120px;
	bottom:2vh;
	right:1vw;
	position:fixed;
	z-index:10;
	transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
}
.catch_logo.is-hidden{
	visibility: hidden;
	opacity: 0;
}
.catch_logo:hover{
	width:150px;
	height:150px;
}
.catch_logo dl{
	position:relative;
}
.catch_logo dl.fade_image_effect.active{
	overflow:visible;
	animation: toplogo 2.8s cubic-bezier(0.6,0,0.4,1);
}
.catch_logo dl dt{
	position:absolute;
	top:0;
	overflow:hidden;
}
.catch_logo dl dt img{
	width:100%;

}
.catch_logo dl dt:nth-child(1) img{
	animation:30s linear infinite rotation-toplogo;
}
@keyframes rotation-toplogo{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}


/*　Gnavi　*/
.navi_menu{
    position: fixed;
    width: 100px;
    right:0;
    z-index:11;
}

.navi_menu .navi_menu-inner{
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.navi_menu .menu-wrapper{
    position: relative;
}

.navi_menu .btn{
    width: 100%;
    display: block;      
    width: 100px;      
    height: 60px;      
    position: absolute;
    right: 0;
    z-index: 999;/*追記：いつも一番上*/
}
  
.navi_menu .bar{
    width: 70px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    transition: transform .3s;
}
  
.navi_menu .bar-top{
	top: 10px;
}
.navi_menu .bar-middle{    
    top: 50%;
    transform: translate(-50%,-50%);
}
.navi_menu .bar-bottom{bottom: 10px;
}

.navi_menu .btn.close .bar-top{      
    transform: translate(-50%,16px) rotate(45deg);      
    transition: transform .3s;
}  

.navi_menu .btn.close .bar-middle{      
    opacity: 0;       
    transition: opacity .3s;    
}    

.navi_menu .btn.close .bar-bottom{      
    transform: translate(-50%,-22px) rotate(-45deg);      
    transition: transform .3s;    
}

.navi_menu .menu-lists{
    display: none;
    background-color:rgba(255,255,255,0.95);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 100px;
    overflow: scroll;
}
.navi_menu .menu-lists .navi_title{
	width:400px;
	margin:auto;
	margin-bottom:50px;
}
.navi_menu .menu-lists .lineup{
	width:80%;
	max-width:1000px;
	margin:0 auto 50px;
}
.navi_menu .menu-lists .lineup h4{
		font-size:130%;
	font-family:'Jost', sans-serif;
	font-weight:normal;
	margin:0 0 1em 0;
	display: flex;
    align-items: center;
        letter-spacing:0.1em;
    line-height:1.1em;
}
.navi_menu .menu-lists .lineup h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #999;
}
.navi_menu .menu-lists .lineup h4:after {
    margin-left: 1rem;
}

.navi_menu .menu-lists .lineup ul{
	padding:0;
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
}
.navi_menu .menu-lists .lineup ul li{
	list-style:none;
	width:47.5%;
	margin-right:5%;
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px dotted #999;
}
.navi_menu .menu-lists .lineup ul li a{
	text-decoration:none;
	color:#000;
	display:flex;
	justify-content:space-between;
}
.navi_menu .menu-lists .lineup ul li:nth-child(even){
	margin-right:0;
}
.navi_menu .menu-lists .lineup ul li dt{
	width:20%;
	height:90px;
	overflow:hidden;
}
.navi_menu .menu-lists .lineup ul li dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.navi_menu .menu-lists .lineup ul li dd{
	width:75%;
	margin:0;
	display: table;
	position:relative;
}
.navi_menu .menu-lists .lineup ul li dd:after{
	font-family:'Jost', sans-serif;
	font-size:140%;
	position:absolute;
	top:0;
	right:0;
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(1) dd:after{
	content:"01";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(2) dd:after{
	content:"02";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(3) dd:after{
	content:"03";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(4) dd:after{
	content:"04";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(5) dd:after{
	content:"05";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(6) dd:after{
	content:"06";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(7) dd:after{
	content:"07";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(8) dd:after{
	content:"08";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(9) dd:after{
	content:"09";
}
.navi_menu .menu-lists .lineup ul li:nth-of-type(10) dd:after{
	content:"10";
}
.navi_menu .menu-lists .lineup ul li dd h5{
	font-size:110%;
	margin:0;
	 display: table-cell;
  vertical-align: middle;
}
.navi_menu .menu-lists .lineup ul li dd h5 span{
	font-family:'Jost', sans-serif;
	font-size:80%;
	display:block;
	line-height:1em;
	font-weight:normal;
}
.navi_menu .menu-lists .lineup ul li dd h5 em{
	display:block;
	font-size:70%;
	font-weight:normal;
	line-height:1.5em;
	font-style:normal;
}
.navi_menu .menu-lists .park_present{
	width:80%;
	max-width:1000px;
	margin:0 auto 50px;
}
.navi_menu .menu-lists .park_present .park,
.navi_menu .menu-lists .park_present .present{
	width:100%;
	margin-bottom:50px;
}
.navi_menu .menu-lists .park_present .park h4,
.navi_menu .menu-lists .park_present .present h4{
	font-size:130%;
	font-family:'Jost', sans-serif;
	font-weight:normal;
	margin:0 0 1em 0;
	display: flex;
    align-items: center;
    letter-spacing:0.1em;
    line-height:1.1em;
}
.navi_menu .menu-lists .park_present .park h4:after,
.navi_menu .menu-lists .park_present .present h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #999;
    margin-left: 1rem;
}
.navi_menu .menu-lists .park_present dl dd > div h5{
	font-size:130%;
	line-height:1.8em;
	margin-bottom:0.3em;
	text-align:center;
}
.navi_menu .menu-lists .park_present dl dd > div h5 span{
	font-size:75%;
	line-height:1.5em;
	display:block;
}
.navi_menu .menu-lists .park_present > div p{
	font-size:95%;
	line-height:2em;
}
.navi_menu .menu-lists .park_present .park dl,
.navi_menu .menu-lists .park_present .present dl{
	display:flex;
	justify-content:space-between;
}
.navi_menu .menu-lists .park_present .park dl dt{
	width:50%;
	height:250px;
}
.navi_menu .menu-lists .park_present .park dl dt{
	overflow:hidden;
}
.navi_menu .menu-lists .park_present .park dl dt img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.navi_menu .menu-lists .park_present .park dl dd{
	width:100%;
	margin:0;
}

.navi_menu .menu-lists .park_present .present dl dt{
	width:50%;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.navi_menu .menu-lists .park_present .present dt picture{
	width:24%;
	padding-top:24%;
	background:#f0f0f0;
	margin-bottom:8px;
	position:relative;
}
.navi_menu .menu-lists .park_present .present dt picture img{
	width:70%;
	max-width:60px;
	box-shadow:5px 5px 10px #ccc;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
}
.navi_menu .menu-lists .park_present .park dl dd,
.navi_menu .menu-lists .park_present .present dl dd{
	width:45%;
	margin:0;
	display:table;
	position:relative;
}
.navi_menu .menu-lists .park_present dl dd > div{
	display: table-cell;
	vertical-align: middle;
}

.navi_menu .menu-lists .park_present > div .inner_btn{
	width:80%;
	color:#fff !important;
	font-size:100%;
	text-align:center;
	margin:20px auto;
	padding:5px 0;
	border-radius:60px;
	background:#333;
}
.navi_menu .menu-lists .park_present > div .inner_btn a{
	color:#fff;
	text-decoration:none;
	display:block;
}



.navi_menu .menu-lists .mukuinfo{
	font-family:'Jost', sans-serif;
	font-weight:normal;
	width:80%;
	max-width:1000px;
	margin:auto;
	padding-bottom:200px;
}
.navi_menu .menu-lists .mukuinfo h4{
	font-size:100%;
	font-family:'Jost', sans-serif;
	font-weight:normal;
	margin:0 0 30px;
	display: flex;
    align-items: center;
    letter-spacing:0.1em;
}
.navi_menu .menu-lists .mukuinfo h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #999;
}
.navi_menu .menu-lists .mukuinfo h4:after {
    margin-left: 1rem;
}
.navi_menu .menu-lists .mukuinfo h5 {
	font-size:120%;
	margin:0;
	font-weight:normal;

}
.navi_menu .menu-lists .mukuinfo ul{
	padding:0;
	margin:0 0 30px;;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.navi_menu .menu-lists .mukuinfo ul li{
	list-style:none;
	width:48%;
	border-bottom:1px dotted #666;
}
.navi_menu .menu-lists .mukuinfo ul li a{
	color:#000;
	text-decoration:none;
	padding-left:1em;
	display:block;
}
.navi_menu .menu-lists .mukuinfo ul li a:before{
}
.navi_menu .menu-lists .mukuinfo .logo{
	width:150px;
	margin:100px auto 0;
	text-align:center;
}
.navi_menu .menu-lists .mukuinfo .logo strong{
	font-size:90%;
	letter-spacing:0.2em;
}
.navi_menu .menu-lists .mukuinfo .logo img{
}
.navi_menu .menu-lists .mukuinfo p.text{
	text-align: center;
    font-size: 12px;
}
/*　Gnavi　ここまで*/




body{
	margin:0;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 14.7px;
	line-height:2.3em;
	background:none;
	position:relative;
}

/* ----------スクロール時 表示アニメーション–---------- */

.animate,
.animate_load{
	transform: translateY(20px);
	transition: all 1.0s;
	position: relative;
	overflow: hidden;
	padding: 0 0 0 0;
}
.animate:after,
.animate_load:after{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100.5%;
	background:#fff;
	transform: translate3d(0%,0,0);
}
.animate.show,
.animate_load.show{
	transform: translateY(0);
}
.animate.show:after,
.animate_load.show:after{
	animation: swipebottom 1.8s cubic-bezier(0.1,0,0.4,1);
	animation-fill-mode: forwards;
}

/* 
@keyframes swipebottom {
	0% {
		transform: translate(0);
	}
	50%, 60% {
		transform: translate3d(0,100%,0);
	}
	100% {
		transform: translate3d(0,100%,0);
	}
}
@media screen and (min-width: 2001px) {
	.animate.show:nth-of-type(4n+1){
	  transition-delay: 0.3s;
	}
	.animate.show:nth-of-type(4n+2){
	  transition-delay: 0.6s;
	}
	.animate.show:nth-of-type(4n+3){
	  transition-delay: 0.9s;
	}
	.animate.show:nth-of-type(4n+4){
	  transition-delay: 1.2s;
	}
	.animate.show:nth-of-type(4n+1):after{
		animation-delay: 0.0s;
	}
	.animate.show:nth-of-type(4n+2):after{
		animation-delay: 0.3s;
	}
	.animate.show:nth-of-type(4n+3):after{
		animation-delay: 0.6s;
	}
	.animate.show:nth-of-type(4n+4):after{
		animation-delay: 0.9s;
	}
}
@media screen and (max-width: 2000px) {
	.animate.show:nth-of-type(2n+1){
	  transition-delay: 0.3s;
	}
	.animate.show:nth-of-type(2n+2){
	  transition-delay: 0.6s;
	}
	.animate.show:nth-of-type(2n+1):after{
		animation-delay: 0.0s;
	}
	.animate.show:nth-of-type(2n+2):after{
		animation-delay: 0.3s;
	}
}
*/
/* ----------スクロール時 表示アニメーション フッターカタログ–---------- */
.catalog ul > li:nth-child(1).animate:after {
	background:#F44336;
}
.catalog ul > li:nth-child(2).animate:after {
	background:#E91E63;
}
.catalog ul > li:nth-child(3).animate:after {
	background:#9C27B0;
}
.catalog ul > li:nth-child(4).animate:after {
	background:#673AB7;
}
.catalog ul > li:nth-child(5).animate:after {
	background:#3F51B5;
}
.catalog ul > li:nth-child(6).animate:after {
	background:#2196F3;
}
.catalog ul > li:nth-child(7).animate:after {
	background:#00BCD4;
}
.catalog ul > li:nth-child(8).animate:after {
	background:#009688;
}
.catalog ul > li:nth-child(9).animate:after {
	background:#8BC34A;
}
.catalog ul > li:nth-child(10).animate:after {
	background:#eff92f;
}
.catalog ul > li.animate.show:nth-of-type(1){
  transition-delay: 0.1s;
}
.catalog ul > li.animate.show:nth-of-type(2){
  transition-delay: 0.2s;
}
.catalog ul > li.animate.show:nth-of-type(3){
  transition-delay: 0.3s;
}
.catalog ul > li.animate.show:nth-of-type(4){
  transition-delay: 0.4s;
}
.catalog ul > li.animate.show:nth-of-type(5){
  transition-delay: 0.5s;
}
.catalog ul > li.animate.show:nth-of-type(6){
  transition-delay: 0.6s;
}
.catalog ul > li.animate.show:nth-of-type(7){
  transition-delay: 0.7s;
}
.catalog ul > li.animate.show:nth-of-type(8){
  transition-delay: 0.8s;
}
.catalog ul > li.animate.show:nth-of-type(9){
  transition-delay: 0.9s;
}
.catalog ul > li.animate.show:nth-of-type(10){
  transition-delay: 1.0s;
}
.catalog ul > li.animate.show:nth-of-type(1):after{
	animation-delay: 0.2s;
}
.catalog ul > li.animate.show:nth-of-type(2):after{
	animation-delay: 0.3s;
}
.catalog ul > li.animate.show:nth-of-type(3):after{
	animation-delay: 0.4s;
}
.catalog ul > li.animate.show:nth-of-type(4):after{
	animation-delay: 0.5s;
}
.catalog ul > li.animate.show:nth-of-type(5):after{
	animation-delay: 0.6s;
}
.catalog ul > li.animate.show:nth-of-type(6):after{
	animation-delay: 0.7s;
}
.catalog ul > li.animate.show:nth-of-type(7):after{
	animation-delay: 0.8s;
}
.catalog ul > li.animate.show:nth-of-type(8):after{
	animation-delay: 0.9s;
}
.catalog ul > li.animate.show:nth-of-type(9):after{
	animation-delay: 1.0s;
}
.catalog ul > li.animate.show:nth-of-type(10):after{
	animation-delay: 1.1s;
}


/* section catalog*/
section.catalog{
	width:100%;
	margin:0 auto 15vh;
	background-image:linear-gradient(90deg, #ffffff 0%, #ffffff 10%, #ebecee 10%,  #ebecee 90%, #fff 90% ,#fff 100%);
	padding:10vh 0 10vh;
	position:relative;
}
section.catalog ul{
	width:95%;
	max-width:1300px;
	padding:0;
	margin:0 auto;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
section.catalog ul li{
	width:9%;
	list-style:none;
		-webkit-filter: drop-shadow(5px 23px 16px rgba(0,0,0,0.25));
    filter: drop-shadow(5px 10px 5px rgba(0,0,0,.15));
}

section.catalog ul li img{
	width:100%;
}
section.catalog dl{
	width:70%;
	max-width:800px;
	padding:30px 50px;
	margin:0 auto;
	box-sizing:border-box;
	background:#fff;
		-webkit-filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.15));
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,.15));
}
section.catalog dl h5{
	font-size:120%;
	line-height:1.5em;
	margin:0 0 10px 0;
}
section.catalog dl p{
	margin:0;
}
section.catalog dl .btn{
	font-size:120%;
	font-weight:bold;
	text-align:center;
	margin-top:20px;
	border-radius:60px;
	background:linear-gradient(45deg, #E91E63,#9844b7,#3F51B5);/*グラデーションを定義*/
	background-size: 200% 200%;/*サイズを大きくひきのばす*/
	animation: bggradient 5s ease infinite;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
section.catalog dl .btn a{
	color:#fff;
	text-decoration:none;
	display:block;
	padding:20px 10px;
}
section.catalog dl:before{
	font-family:'Jost', sans-serif;
	font-size:700%;
	font-weight:normal;
	color:#fff;
	content:"PRESENT";
	position:absolute;
	top:-0.4em;
	left:0em;
}

footer{
}
footer .footerinfo{
	width:90%;
	max-width:1400px;
	margin:0 auto;
}
footer .footerinfo.concept{
	margin-bottom: 50px;
}
footer .footerinfo h2{
	font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
}
footer .footerinfo h4{
	font-size:150%;
	font-family:'Jost', sans-serif;
	font-weight:normal;
	margin:0;
	display: flex;
    align-items: center;
    letter-spacing:0.1em;
}
footer .footerinfo h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #999;
}
footer .footerinfo h4:after {
    margin-left: 1rem;
}
footer .footerinfo h5{
	font-size:120%;
	font-family:'Jost', sans-serif;
	font-weight:normal;
	margin:30px 0 0;
}
footer .footerinfo ul{
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	padding:0;
}
footer .footerinfo ul li{
	width:48%;
	list-style:none;
	margin-right:4%;
	line-height:1.5em;
	margin-bottom:1em;
}
footer .footerinfo ul li:nth-child(2n){
	margin-right:0;
}
footer .footerinfo ul li a{
	color:#000;
	text-decoration:none;
}

footer .footerinfo .logo{
	width:100%;
	margin:15vh 0 0;
}
footer .footerinfo .logo dl{
	display:flex;
	justify-content:space-between;
}
footer .footerinfo .logo dl dt{
	display: table;
}
footer .footerinfo .logo dl dt:nth-child(1){
}
footer .footerinfo .logo dl dt:nth-child(1) img{
	width:230px;
}
footer .footerinfo .logo dl dt:nth-child(2){
}
footer .footerinfo .logo dl dt:nth-child(2) strong{
	font-size:90%;
	font-weight:normal;
	letter-spacing:0.1em;
	color:#000;
	font-family:'Jost', sans-serif;
	margin-right:0.5em;
	display:inline-block;
}
footer .footerinfo .logo dl dt:nth-child(2) img{
	width:70px;
}
footer .footerinfo .logo dl dt a{
	display: table-cell;
	vertical-align: middle;
	text-decoration:none;
}
footer .footerinfo p.copy{
	font-size:80%;
	font-family:'Jost', sans-serif;
	text-align:right;
}
footer .footerinfo p.text{
    text-align: right;
    font-size: 13px;
}

/* ----------599px–---------- */
@media screen and (max-width: 959px) {
	section.catalog ul{
		justify-content:space-evenly
	}
	section.catalog ul li{
		width:17%;
	}
	.navi_menu .menu-lists .lineup{
		width:90%;
		max-width:unset;
		margin:0 auto 50px;
	}
	.navi_menu .menu-lists .park_present{
		width:90%;
		max-width:unset;
		margin:0 auto 50px;
	}
	.navi_menu .menu-lists .mukuinfo{
		width:90%;
		max-width:unset;
	}
	footer .footerinfo p.text{
	    text-align: center;
	}
}

/* ----------VR full–---------- */
section.model_vrfull{
	width:100vw;
	height:100vh;
}
section.model_vrfull iframe{
	width:100%;
	height:100%;
	border:none;
}
section.model_vrfull .logo{
	top:30px;
	left:30px;
	margin:0;
	position:absolute;
	display:flex;
	justify-content:space-between;
}
section.model_vrfull .logo dt{
	width:100px;
	position:relative;
}
section.model_vrfull .logo dt img{
	width:90px;
	position:absolute;
	top:-0.2em;
	left:0;
}
section.model_vrfull .logo dt img:nth-child(2){
	animation:30s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
section.model_vrfull .logo dd a{
	display:block;
	line-height:1.5em;
}
section.model_vrfull .logo dd img{
	width:100%;
	margin:0;
}
section.model_vrfull .logo dd h4{
	font-size:80%;
	font-weight:normal;
	font-family:'Jost', sans-serif;
	line-height:1.5em;
	margin:0;
	padding:0.6em 0 0 0;
	display:inline-block;
	border-top:1px solid #000;
}
section.model_vrfull .logo dd h4.town{
	font-size:150%;
	border-top:none;
	padding:0;
}
section.model_vrfull .logo dd h4 span{
	font-size:150%;
}
section.model_vrfull .logo dd h4.town span{
	display:block;
	border-top:1px solid #000;
}
section.model_vrfull .logo dd h4 a{
	text-decoration:none;
	color:#000;
	display:block;
}




/* ----------768px–---------- */
@media screen and (max-width: 768px) {
	.navi_menu .menu-lists .navi_title{
		width:50%;
	}
	.navi_menu .menu-lists .lineup ul{
		padding:0;
		display:block;
		justify-content:unset;
		flex-wrap:unset;
	}
	.navi_menu .menu-lists .lineup ul li{
		width:100%;
	}
	.navi_menu .menu-lists .park_present .park dl,
	.navi_menu .menu-lists .park_present .present dl{
		display:block;
		justify-content:space-between;
	}
	.navi_menu .menu-lists .park_present .park dl dt,
	.navi_menu .menu-lists .park_present .present dl dt{
		width:100%;
	}
	.navi_menu .menu-lists .park_present .present dt picture{
	}
	.navi_menu .menu-lists .park_present .present dt picture img{
		width:70%;
		max-width:90px;
	}
	.navi_menu .menu-lists .park_present .park dl dd,
	.navi_menu .menu-lists .park_present .present dl dd{
		margin:30px 0;
		width:100%
	}
	section.catalog dl{
		width:90%;
		max-width:unset;
		padding:30px 5%;
	}
	section.model_vrfull .logo dt{
		width:90px;
		position:relative;
	}
	section.model_vrfull .logo dt img{
		width:80px;
		position:absolute;
		top:-0.5em;
		left:0;
	}
	section.model_vrfull .logo dd img{
		width:80%;
		margin:0;
	}

}

/* ----------599px–---------- */

@media screen and (max-width: 599px) {
	.navi_menu .btn{
		width: 60px;
		height: 60px;
	}
	.navi_menu .bar{      
		width: 60px;
	}
	.navi_menu .bar-top{
		top: 0px;
	}
	.navi_menu .bar-middle{    
		top: 30%;
		transform: translate(-50%,-50%);
	}
	.navi_menu .bar-bottom{
		bottom: 23px;
    }

	.navi_menu .menu-lists .park_present{
		width:90%;
		max-width:unset;
		margin:0 auto 50px;
		display:block;
		justify-content:unset;
	}
	.navi_menu .menu-lists .park_present .park{
		width:100%;
		margin-bottom:50px;
	}
	.navi_menu .menu-lists .park_present .present{
		width:100%;
	}
	.navi_menu .menu-lists .mukuinfo ul{
		padding:0;
		margin:0 0 30px;;
		display:block;
		justify-content:unset;
		flex-wrap:unset;
	}
	.navi_menu .menu-lists .mukuinfo ul li{
		list-style:none;
		width:100%;
		border-bottom:1px dotted #666;
	}

	section.catalog{
		margin:0 auto 10vh;
		padding:5vh 0 5vh;
	}
	section.catalog ul li{

	    text-align:center;
    }
    section.catalog ul li img{
    	width:100%;
    }
    section.catalog dl{
		width:90%;
		max-width:unset;
		padding:30px 6%;
		margin:0 auto;
		box-sizing:border-box;
		background:#fff;
			-webkit-filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.15));
		filter: drop-shadow(5px 5px 10px rgba(0,0,0,.15));
		position:unset;
		top:unset;
		left:unset;
		right:unset;
	}
	section.catalog dl:before{
		font-size:14vw;
		font-weight:normal;
		color:#fff;
		content:"PRESENT";
		position:absolute;
		top:-0.5em;
		left:0em;
	}
	section.catalog dl .btn{
		font-size:120%;
	}
	footer .footerinfo .logo{
		width:100%;
		margin:10vh 0 0;
	}
		footer .footerinfo ul li{
		width:100%;
		list-style:none;
		margin-right:0;
		line-height:1.5em;
		margin-bottom:1em;
		padding-left:1em;
	}
	footer .footerinfo .logo dl{
		display:unset;
		justify-content:unset;
	}
	footer .footerinfo .logo dl dt{
		width:100%;
		display: block;
		text-align:center;
	}
	footer .footerinfo .logo dl dt a{
		display: unset;
		vertical-align: unset;
		text-decoration:none;
		margin:auto;
	}
	footer .footerinfo p.copy{
		font-size:80%;
		font-family:'Jost', sans-serif;
		text-align:center;
	}
		footer .footerinfo .logo dl dt:nth-child(2){
		margin:50px 0;
	}
	footer .footerinfo .logo dl dt:nth-child(2) strong{
		display:block;
	}
	footer .footerinfo .logo dl dt:nth-child(2) img{
		width:120px;
	}
	section.model_vrfull .logo{
		top:10px;
		left:10px;
	}
	section.model_vrfull .logo dt{
		width:80px;
		position:relative;
	}
	section.model_vrfull .logo dt img{
		width:70px;
		position:absolute;
		top:-0.5em;
		left:0;
	}
	section.model_vrfull .logo dd{
		width:calc(100% - 80px)
	}
	section.model_vrfull .logo dd img{
		width:60%;
		margin:0;
	}
	section.model_vrfull .logo dd h4 span{
		font-size:130%;
	}
}