/* CSS Document */


/* スライドする要素 */
.content {
    width: 300px;
    height: 180px;
    list-style-type: none;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content2 {
    width: 480px;
    height: 300px;
    list-style-type: none;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content a img{
	width: auto;
	height: 140%;
}
.content a{
	display: block;
	width: 100%;
	height: 100%;
}
.content img{
	width: auto;
	height: 140%;
}
.content2 img{
	width: auto;
	height: 140%;
}
.content a:hover{
	opacity: 0.6 !important;
}
/* スライドレールの枠 */
.wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 100px;
}
.wrap2 {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 300px;
    width: 480px;
    position: relative;
    float: right;
	border-radius: 10px;
}
/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
  animation: loop-slide 20s infinite linear 1s both;
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ホバー時に動きを止める（パターン2・3）*/
.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
	cursor: pointer;
}
/* ホバー時の装飾（パターン3） */
.content-hover {
  transition: all 0.2s;
  margin-right: 20px;
}
.content-hover:hover {
  transform: translateY(-20px);
  border-radius: 0 10%;
  box-shadow: 0 3px 10px 0 #333;
  opacity: 0.8;
  cursor: pointer;
}









/*──────────────────
sp_phone
──────────────────*/

@media screen and (max-width: 896px){
/* スライドする要素 */
.content {
    width: 300px;
    height: 180px;
    list-style-type: none;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content2 {
    width: 480px;
    height: 300px;
    list-style-type: none;
	overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content a img{
	width: auto;
	height: 140%;
}
.content a{
	display: block;
	width: 100%;
	height: 100%;
}
.content img{
	width: auto;
	height: 140%;
}
.content2 img{
	width: auto;
	height: 140%;
}
.content a:hover{
	opacity: 0.6 !important;
}
/* スライドレールの枠 */
.wrap {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 100px;
}
.wrap2 {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 300px;
    width: 100%;
    position: relative;
    float: none;
    border-radius: 10px;
}	
	
	
	
	
	
	
	
	
	
	
	
	
	
}
