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

#by {
		font-family: Optima, Candara, 'Noto Sans', source-sans-pro, sans-serif;
		font-family:'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
		font-size: 12px;
		line-height: 2.0em;
	    overflow: hidden;
		width: 100%;
	    margin: 0 auto;
		color: #000;
	}
img {
		width: 100%;
	    object-fit: cover;
}

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

ul,li {
	list-style: none;
	padding: 0;
	margin: 0;
}

#main_visual {
	margin: 0 auto 10%;
	position: relative;
	
}


#main_visual .main_v{
	width: 100%;
	margin: 0 auto;
	
}

#main_visual .main_ttl{
	width: 48%;
	position: absolute;
	top: 14%;
	left: 50%;
	transform: translate(-50%, -50%);

}

@media only screen and (min-width: 768px){
	#main_visual .main_ttl{
	width: 38%;
	top: 50%;
	}
}

#by .read{
	width: 94%;
	margin: 0 auto 12%;
}

@media only screen and (min-width: 768px){
	#by .read{
		text-align: center;
	}

}


#by section {
	margin: 0% auto 80px;
}


@media only screen and (min-width: 768px){
	#by section {
		margin: 0% auto 5%;
	}
	#by section .ttl_area{
	display: flex;
	width: 1200px;
	align-items: flex-start;
	justify-content: center;
    margin: 5% auto 10%;
	}
}

@media only screen and (min-width: 768px){
	#by section .item_area{
	display: flex;
	justify-content: space-around;
	width: 1200px;
	margin: 0 auto;
	flex-wrap: wrap;
	}
	#by section .item_area .child{
	width: 42%;
    margin: 0 auto 12%;
	}
	#by section .item_area .item_box{
	width: 100%;
	margin: 0 auto;
	position: relative;
	}	
}


#by section .item_area .child .d_time{
	width: 37%;
	margin: 10% auto 5% 0;
}

#by section .item_area .child:nth-of-type(even) .d_time{
	margin: 10% 0 5% auto;
}

#by section .item_area .item_box ul{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap:15px;
	grid-row-gap: 50px;
}
#by section .item_area .item_box ul li .name{
	font-size: 12px;
	text-decoration: underline;
}
#by section .item_area .item_box ul li .price{
	font-size: 12px;
	text-decoration: underline;
}

/*=== 画像の表示エリア ================================= */
#by section .item_area .child .slide {
  position   : relative;
  overflow   : hidden;
  width: 100%;
  height: 705px; /* 画像のサイズに合わせて変更ください */
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
#by section .item_area .child .slide img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime1 12s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
#by section .item_area .child .slide img:nth-of-type(1) { animation-delay: 0s }
#by section .item_area .child .slide img:nth-of-type(2) { animation-delay: 3s }
#by section .item_area .child .slide img:nth-of-type(3) { animation-delay: 6s }
#by section .item_area .child .slide img:nth-of-type(4) { animation-delay: 9s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime1{
   0% { opacity: 0 }
   2% { opacity: 1 }
  25% { opacity: 1 }
  27% { opacity: 0 }
 100% { opacity: 0 }
}
/*=== 画像の表示エリア ================================= */
#by section .item_area .child .slide2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 705px; /* 画像のサイズに合わせて変更ください */
  margin: auto;      /* サンプルは中央寄せの背景：白 */
  background: #fff;
}
 /*=== 画像の設定 ======================================= */
#by section .item_area .child .slide2 img {
  display: block;
  position: absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width: inherit;
  height: inherit;
  opacity: 0;
  animation: slideAnime2 9s ease infinite;
}
 /*=== スライドのアニメーションを段差で開始する ========= */
#by section .item_area .child .slide2 img:nth-of-type(1) { animation-delay: 0s }
#by section .item_area .child .slide2 img:nth-of-type(2) { animation-delay: 3s }
#by section .item_area .child .slide2 img:nth-of-type(3) { animation-delay: 6s }
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime2{
	0% { opacity: 0 }
   3% { opacity: 1 }
  33% { opacity: 1 }
  36% { opacity: 0 }
 100% { opacity: 0 }
}

/*=== 画像の表示エリア ================================= */
#by section .item_area .child .slide3 {
  position   : relative;
  overflow   : hidden;
  width: 100%;
  height: 705px; /* 画像のサイズに合わせて変更ください */
  margin     : auto;      /* サンプルは中央寄せの背景：白 */
  background : #fff;
}
 
 /*=== 画像の設定 ======================================= */
#by section .item_area .child .slide3 img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : inherit;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime3 16s ease infinite;
}
 
 /*=== スライドのアニメーションを段差で開始する ========= */
#by section .item_area .child .slide3 img:nth-of-type(1) { animation-delay: 0s }
#by section .item_area .child .slide3 img:nth-of-type(2) { animation-delay: 4s }
#by section .item_area .child .slide3 img:nth-of-type(3) { animation-delay: 8s }
#by section .item_area .child .slide3 img:nth-of-type(4) { animation-delay: 12s }
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime3{
   0% { opacity: 0 }
   2% { opacity: 1 }
  25% { opacity: 1 }
  27% { opacity: 0 }
 100% { opacity: 0 }
}

@media only screen and (max-width: 768px){
	
	#by section .item_area{
	display: block;
	width: 100%;
	
	}
	
	#by section .item_area .child{
	width: 100%;
    margin: 5% auto 20%;
	}
	
	#by section .item_area .child .slide {
	height: 122vw;
	}
	#by section .item_area .child .slide2 {
	height: 122vw;
	}
	#by section .item_area .child .slide3 {
	height: 122vw;
	}

}

#by section .item_area .child .comment{
	margin: 5% 5% 10% 5%;
}



#by section .item_area .child .credit .item_name{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	font-weight: 600;
	width: 92%;
    margin: 4% auto;
}
#by section .item_area .child .credit .item_name .name {
	position: relative;
}
#by section .item_area .child .credit .item_name span {
	position: relative;
	z-index: 1;
}
#by section .item_area .child .credit .item_name .name img {
	position: absolute;
	bottom: 0%;
	z-index: 0;
}
#by section .item_area .child .credit .item_name .buy{
	
}

#by section .item_area .child .credit .item_name .buy a{
	background-color: #3D0101;
	color: #fff;
	padding: 5px 20px;
	font-size: 12px;

	
}

@media only screen and (min-width: 768px){
	#by section .item_area .child{
		margin: 0 auto 10%;
	}
	#by section .item_area .item_box{
		width: 92%;
		margin: 0 auto 15%;
	}
	#by section .item_area .item_box ul{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		grid-column-gap:15px;
		grid-row-gap: 0px;
	}
	#by section .item_area .child .credit .item_name{
		font-size: 13px;
	}
}

#by section .blog {
	width: 94%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#by section .blog div:nth-of-type(1) {
	width: 36%;
}
#by section .blog div:nth-of-type(2) {
	width: 62%;
}
#by section .blog div:nth-of-type(2) img {
	width: 54%;
	display: block;
	margin: 0 auto 8%;
}
#by section .blog div:nth-of-type(2) p {
	text-align: center;
	font-size: 11px;
	font-weight: 500;
	margin: 2% 0 0;
}
@media only screen and (min-width: 768px){
	#by section .blog {
		width: 600px;
	}
	#by section .blog div:nth-of-type(1) {
		width: 42%;
	}
	#by section .blog div:nth-of-type(2) {
		width: 52%;
	}
	#by section .blog div:nth-of-type(2) p {r;
		font-size: 12px;
	}
}

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


.anim{
	opacity: 0;
	transition: 2.5s all 0s ease;
}
.anim.ac{
	opacity: 1;
}

.anim-left {
	opacity: 0;
}
	
.anim-left.acl {
	opacity: 1;
	width: 100%;
	height: 13px;
	white-space: nowrap;
	overflow: hidden;
	animation: paint 0.3s forwards linear;
}
@keyframes paint {
	 from {
		  width: 0%;
		}
		to {
			width: 100%;
		}
	}