@charset 'utf-8';
/* CSS Document */
<!-- タグクラウド風 -->
#tag ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#tag ul li {
	display: inline-block;
	margin: 0 .3em .3em 0;
	padding: 0;
	float:left;
	font-size:12px;
}
#tag ul li a {
	display: inline-block;
	/*max-width: 100px;*/
	height: 28px;
	line-height: 28px;
	padding: 0 1em;
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 3px;
	white-space: nowrap;
	/*text-overflow: ellipsis;*/
	/*overflow: hidden;*/
	color: #333;
	font-size: 13px;
	text-decoration: none;
	-webkit-transition: .2s;
	transition: .2s;
	font-size:12px;
}
#tag ul li a:hover {
	background-color: #3498db;
	border: 1px solid #3498db;
	color: #fff;
	font-size:12px;
}

<!-- タグクラウド風 -->


<!-- ページ上部商品ストーリーFV -->

#textarea{  
    width:600px;  
    margin-left:auto;  
    margin-right:auto;  
    }  
          
.textarea{  
    width:600px;  
    margin-left:auto;  
    margin-right:auto;  
    }  
  
.photo-show {   
 height: 550px; /*表示したい大きさ*/  
    /*margin: 30px auto; /*縦余白は任意*/  
    position: relative;  
    width: 600px; /*表示したい大きさ、height と合わせる*/  
}  
  
/*各画像のアニメーションの合計秒数*/  
.photo-show img {   
    animation: show 20s infinite;  
    -webkit-animation: show 20s infinite;  
    height: auto;  
    max-width: 100%;  
    opacity: 0;  
    position: absolute; /*画像を全て重ねる*/  
}  
  
/*アニメーション*/  
  
@keyframes show {  
    0% {opacity:0}  
    10% {opacity:1}  
    20% {opacity:1}  
    40% {opacity:0}  
 }  
  
@-webkit-keyframes show {  
    0% {opacity:0}  
    10% {opacity:1}  
    20% {opacity:1}  
    40% {opacity:0}  
}  
  
/*各画像のアニメーションの開始時間をずらす*/  
  
/*1枚目*/  
.photo-show img:nth-of-type(1) {  
    animation-delay: 0s;  
    -webkit-animation-delay: 0s;  
}  
/*2枚目*/  
.photo-show img:nth-of-type(2) {  
    animation-delay: 6s;  
    -webkit-animation-delay: 6s;  
}  
/*3枚目*/  
.photo-show img:nth-of-type(3) {  
    animation-delay: 12s;  
    -webkit-animation-delay: 12s;  
}

<!-- ページ上部商品ストーリーFV -->
