@charset "UTF-8";

.slide-container {
width: 95%;
margin: 20px auto;
display: flex;
align-items: center;
overflow: hidden;
}
.slide-element {
display: flex;
animation: slide-flow 20s infinite linear 1s both;
}
.slide_i{
width: 200px;
object-fit:cover;
border: 1px solid #ddd;
}
@keyframes slide-flow {
0% {transform: translateX(0);}
100% {transform: translateX(-100%);}
}

.instagram_u{
	width: 100%;
	height: 80px;
	background: #ffffff;
	margin-bottom: 0px;
}
.instagram_btn{
	text-align: right;
	margin-right: 30px;
}

div.instagram_btn img{
	margin-top: 20px;	
	width: auto;
    height: 40px;
}

/*スマホ用*/
@media screen and (max-width: 480px){
.instagram_u{
	width: 100%;
	height: 30px;
	background: #ffffff;
	margin-bottom: 0px;
}
.instagram_btn{
	text-align: right;
	margin-right: 10px;
}
div.instagram_btn img{
	margin-top: 30px;
	width: auto;
    height: 40px;
}
}
