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

#ch {
		font-family:'YuMincho', "Times New Roman";
		font-size: 12px;
		line-height: 2.0em;
		padding-bottom: 60px;
		width: 100%;
		margin: 0 auto;
	    
	}

@media only screen and (max-width: 768px){
	
#ch {
	width: 100%;
	overflow: hidden;

	}
	
	
}

img {
		width: 100%;
}

a {
	text-decoration: none;
	color: #000;
}

ul{
	padding: 0;
}

li{
	list-style: none;
}


#ch .main_visual{
	position: relative;
	display: flex;
	width: 1100px;
    margin: 0 auto;
}

#ch .main_visual .main_a{
	width: 28%;
	margin: 3% 0 12% 0;
}

#ch .main_visual .main_b{
	width: 28%;
    position: absolute;
    top: 21%;
    left: 24%;
}

#ch .main_visual .main_ttl{
	position: absolute;
    top: 33%;
    right: 4%;
    width: 380px;
}

@media only screen and (max-width: 768px){
	#ch .main_visual{
	width: 100%;
    margin: 0;
	}
	#ch .main_visual .main_a{
	width: 50%;
	margin: 0;
	}

#ch .main_visual .main_b{
	width: 50%;
	position: static;
    top: 0;
    left: 0;
	}

#ch .main_visual .main_ttl{
    top: 32%;
    right: 0%;
    left: 28%;
    width: 50%;
	}
}

#ch section .item_box{
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    justify-content: center;
	border-bottom: 1px solid #000;
}

@media only screen and (max-width: 768px){
	
	#ch section .item_box{
		display: block;
		margin-bottom: 10%;
        padding-bottom: 33%;
		}
	
	#ch section:nth-of-type(2) .item_box{
        padding-bottom: 48%;
		}
	
	#ch section:nth-of-type(4) .item_box{
		border-bottom: none;
		}
	
	#ch section:nth-of-type(6) .item_box{
		border-bottom: none;
		}
	
	#ch section:nth-of-type(8) .item_box{
		border-bottom: none;
		}
}

#ch section .item_box .img_a{
	width: 40%;
	position: relative;
	
}

#ch section .item_box .img_a img{
	width: 80%;
	margin: 5% auto 10%;
	
}

#ch section:nth-of-type(even) .item_box .img_a img{
	margin: 5% 0 5% 20%;
}


#ch section .item_box .img_a .styling{
	position: absolute;
	bottom: 11%;
	right: 25%;
	
}

#ch section:nth-of-type(even) .item_box .img_a .styling{
	bottom: 8%;
	right: 5%;
	
}

@media only screen and (max-width: 768px){
	
	#ch section .item_box .img_a{
		width: 100%;
		text-align: center;
	}
	
	#ch section .item_box .img_a img{
		width: 82%;
		
	
	}
	
	#ch section .item_box .img_a .styling{
	    bottom: 10%;
        right: 12%;
	
	}
	
	#ch section:nth-of-type(even) .item_box .img_a img{
	margin: auto;
	}
	
	#ch section:nth-of-type(even) .item_box .img_a .styling{
	bottom: 3%;
    right: 12%;
	
	}
	
	
}


#ch section .item_box .img_b{
	width: 40%;
	border-left: 1px solid #000;
	position: relative;
	
}

#ch section .item_box .img_b img{
	width: 80%;
	margin-left: 11%;
	
}

#ch section .item_box .img_b .credit{
	position: absolute;
	left: 10%;
	bottom: 6%;
	
	
}

#ch section .item_box .img_b .credit div{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 350px;
	
	
}

#ch section .item_box .img_b .credit .buy{
	border-bottom: solid 1px #000;
	padding-bottom: 2px;
}

@media only screen and (max-width: 768px){
	
	#ch section .item_box .img_b{
	width: 100%;
	border-left: none;
	text-align: center;
		
	
	}

	#ch section .item_box .img_b img{
		width: 85%;
		margin-left: auto;

	}
	#ch section .item_box .img_b .credit{
		top: 90%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80%;
	
	
	}
	
	#ch section .item_box .img_b .credit div{
	    width: 100%;
	
	
	}
	
}


#ch section:nth-of-type(even) .item_box{
	flex-direction: row-reverse;
}

#ch section:nth-of-type(even) .item_box .img_b{
	border-right: 1px solid #000;
	border-left: none;
}

/*///////////loop////////////*/
.loop_wrap {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
	border-top: 3px solid #000;
	
  }
.loop_wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #111;
    top: 0px;
  }
.loop_wrap::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #111;
    bottom: 0px;
  }
.loop_wrap img {
    height: 48px;
    padding: 11px 0px 5px;
  }
.loop_wrap div {
    flex: 0 0 auto;
    white-space: nowrap;
    overflow: hidden;
  }

.loop_wrap div:nth-child(odd) {
animation: loop 50s -25s linear infinite;
}

.loop_wrap div:nth-child(even) {
animation: loop2 50s linear infinite;
}
@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
@media only screen and (max-width: 768px)  {
	.loop_wrap {
	margin-bottom: 5%;
  }
	
    .loop_wrap img {
        height: 34px;
  }
}
/*////END LOOP////*/

/*////pcview////*/
   .spview {
        display: none;
    }    
    .pcview {
        display: block;
    }
@media only screen and (max-width: 768px)  {
   .spview {
        display: block;
    }    
   .pcview {
        display: none!important;
    }    
}


.anim{
		opacity: 0;
		transition: 3.0s all 0s ease;
}

.anim.ac{
		opacity:1;
}

