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


/*その他情報ページ*/
#otherstop{
	width: 100vw;
/*	max-width:1200px;*/
	height: 60vh;
	background-image: url("../images/otherstop.jpg");
	background-repeat: no-repeat;
	background-size:cover;
	margin-bottom: 50px;
}
#otherstop #top{
	font-size: 8vw;
	margin: auto 0 auto 42vw;
	line-height: 60vh;
	text-align: center;
}
article{
	width:80%;
}
#container{
	margin-top: 20vh;
}

/*その他情報部分*/
#otherstopics{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
#otherstopic,#tebletitle{
	font-size: 30px;
	font-weight: bolder;
}
#otherstopics p{
	margin-bottom: 30px;
}
#otherstopics #photo1{
	width:minmax(100px,200px,300px);
	margin-left: 100px;
	animation: fadeIn 3s ease 1.5s 1 normal;/*左側からIN*/
}
#photo1 img{
	width:15vw;
	min-width:25vw;
}
#photo2{
	margin-left: 500px;
	margin-top: -400px;
	animation: fadeIn-2 3s ease 1.5s 1 normal;/*上部からIN*/
}
#photo2 img{
	width:10vw;
	min-width:20vw;
}
#sele{
	color: red;
	font-weight: bolder;
	font-size:150%;
	animation: flash 1.5s linear infinite;
}
#otherstopics p:last-child{
	margin-bottom: 20vh;
}

/*アレンジ写真リスト部分*/
#arrange,#tablescroll{
	margin-top: 20vh;
}
#tebletitle{
	margin-top: 300px;
}
#arrange ul{
	width:810px;
	height:500px;
	display: flex;
	flex-wrap: wrap;
	overflow-y:scroll;
	list-style: none;
	
/*	overflow-x:hidden;*/
}
/*table tr{
	width:600px;
	height:px;
}*/
 #arrange ul li{
	width:180px;
	height:180px;
	/*overflow:hidden;*/
/*	position:relative;*/
/*	border:.5px solid;*/
}
/*table td:before{
	content:"";
	display:block;
	padding-top:100%;
}*/
#arrange ul li img{
	width:200px;
	height:200px;
	margin:auto;
	object-fit:cover;
}

/*バナー部分*/
aside{
	margin-right: 0%;
}

@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}
@keyframes fadeIn{
	from{
		opacity:0;
		transform:translateX(-100px);
	}
	to{
		opacity:1;
		transform:translateX(0);
	}
}
@keyframes fadeIn-2{
	from{
		opacity:0;
		transform:translateY(-100px);
	}
	to{
		opacity:1;
		transform:translateY(0);
	}
}

@media screen and (max-width:749px){

	#otherstop{
/*		position: absolute;
		top: 0;
		left: 20%;*/
		width: auto;
		font-size:10vw;
		overflow: hidden;
	}
	#otherstop #top{
		padding-top: 15%;
		text-shadow: 2px 2px 5px #fff;
	}
	
	.container{
		display:block;
		margin:0 auto;
	}
	article{
		display:block;
		width: 100%;
	}
	#photo2{
		margin-left: 75%;
	}
	
	/*アレンジメントリスト部分*/
	#arrange ul{
		width: 100%;
		height: 80vh;
		object-fit: cover;
	}
	
	#arrange ul li{
		width: 100%;
		height: 70vh;
	}
	#arrange ul li img{
		width: 100%;
		height: 100%;
		margin: auto;
		object-fit: cover;
	}
	aside{
		margin: 20vh auto 10vh auto;		
	}
}