@charset "utf-8";


/* -------------------------------------------------------
  top
------------------------------------------------------- */

/* mv
------------------------------------------------------- */
.topMv{
  width: 100%;
  position: relative;
  overflow:hidden;
}
.topMv > .topMvBg{
  width: 100%;
  height: 100%;
  background: url("../img/top/mv_img@2x.png") no-repeat left center;
  background-size:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2;
}
.topMv .topMvBg span {
  width:100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #fff;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.topMv .topMvBg span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  transform-origin: 100% 0;
  transform-origin: left bottom;
  transition: all 0.2 0.4s ease-out;
}
.topMv .topMvBg span.active {
  width: 0%;
}
.topMv > .topMvTxt{
  position:absolute;
  top:0;
  bottom: 0;
  right: 30px;
  margin: auto;
  height: 11em;
  line-height: 1;
  z-index: 1;
}
.topMvTxt h2,
.topMvTxt h3{
  font-family: "Roboto","sans-self";
  text-align: right;
  font-weight: 700;
  font-size: 0;
  display: block;
  
}
.topMvTxt h2{
  letter-spacing: 0.1em;
  font-size: 920%;
}
.topMvTxt h3{
  font-size:  140%;
  letter-spacing: 0.3em;
  padding-right: 10px;
}
.topMvTxt h2 span,
.topMvTxt h3 span{
  opacity: 0;
  display: inline-block;
  animation:move 4s ease-out forwards;
  transform: translateY(-100px) scale(1.4);
}
.topMvTxt h2 span:nth-child(1){animation-delay: 0.5s;margin-right: 0.1em;}
.topMvTxt h2 span:nth-child(2){animation-delay: 0.6s;margin-right: -0.1em;}
.topMvTxt h2 span:nth-child(3){animation-delay: 0.7s;}
.topMvTxt h2 span:nth-child(4){animation-delay: 0.8s;}
.topMvTxt h2 span:nth-child(5){animation-delay: 0.9s;}
.topMvTxt h2 span:nth-child(6){animation-delay: 1.0s;margin-right: 0.25em;}
.topMvTxt h3 span:nth-child(1){animation-delay: 0.8s;}
.topMvTxt h3 span:nth-child(2){animation-delay: 0.9s;}
.topMvTxt h3 span:nth-child(3){animation-delay: 1.0s;}
.topMvTxt h3 span:nth-child(4){animation-delay: 1.1s;}
.topMvTxt h3 span:nth-child(5){animation-delay: 1.2s;}
.topMvTxt h3 span:nth-child(6){animation-delay: 1.3s;}
.topMvTxt h3 span:nth-child(7){animation-delay: 1.4s;}
.topMvTxt h3 span:nth-child(8){animation-delay: 1.5s;}
.topMvTxt h3 span:nth-child(9){animation-delay: 1.6s;}
.topMvTxt h3 span:nth-child(10){animation-delay: 1.7s;}
.topMvTxt h3 span:nth-child(11){animation-delay: 1.8s;}
.topMvTxt h3 span:nth-child(12){animation-delay: 1.9s;}

@keyframes move {
  100% {
    transform: translate(33%, 0);
    opacity:  1;
    color: #000;
  }
}



/*slider*/
#slider {
  position: relative;
  z-index: -1;
  overflow: hidden;
}
#slider li {
  opacity: 0;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: opacity 2s linear, transform 7.5s linear;/*transform FadeTime + IntarvalTime + α秒*/
  position: relative;
}
#slider li:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#slider li.show_ {
  opacity: 1;
}
#slider li.zoom_ {
  transform: scale(1.1);
}
#slider li > img {
  display: block;/*下に余白できないように*/
  width: 100%;
  height: 100%;
}
@media screen and (max-width:1024px){
  .topMv > .topMvTxt{
    height:8em;
    right: 10px;
  }
  .topMvTxt h2{
    font-size: 700%;
  }
}
@media screen and (max-width:767px){
  .topMv > .topMvTxt{
    height:6em;
    right: 10px;
  }
  .topMvTxt h2{
    font-size: 340%;
  }
}


/* news
------------------------------------------------------- */
.newsList{
  margin-bottom: 40px;
}
.newsList a{
  color: #222;
}
.newsList a.blue{
  color: #5c8ff9!important;
}
.newsList li{
  position: relative;
  opacity: 0;
  margin-bottom: 20px;
  border-bottom:solid 1px #ccc;
}
.newsList li.active {
  -webkit-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
     -moz-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
      -ms-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
       -o-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  -webkit-animation-name: scale_in_lv1, fade_in;
     -moz-animation-name: scale_in_lv1, fade_in;
      -ms-animation-name: scale_in_lv1, fade_in;
       -o-animation-name: scale_in_lv1, fade_in;
          animation-name: scale_in_lv1, fade_in;
}


.newsList li .newsListImg{
  overflow: hidden;
  height: 220px;
  margin-bottom: 15px;
  position: relative;
}
.newsList li .newsListImg img{
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 100%;
  height: auto;
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.newsList li:hover a .newsListImg img{
  -webkit-transform: scale(1.1);
  -webkit-transform: translate(-50%,-50%) scale(1.1);
  transform: translate(-50%,-50%) scale(1.1);
  opacity: 1;
}

.newsListTtl{
  font-weight: bold;
  font-size: 114%;
  margin-bottom: 10px;
}
p.newsListTxt{
  font-size:100%;
}
.newsListDate{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #999;
  font-size: 88%;
}
.newsListDate strong {
	color: #ff0000;
	margin-right:1em;
}
.newsListDate span {
	font-size: 80%; padding:0.2em 0.5em;background-color: #dbdbdb;color: #000;
	margin-left:0.5em;
}
section.news h2 {
	font-family: "ten-mincho", serif;
	font-size: 1.5em;
}
/*btn*/
.btn.blk.news{
  text-align: left;
}
.btn.blk.news a{
  width: auto;
}
.news_top_marg {
  	margin-top:0px;
  }
@media all and (max-width: 767px) {
  .newsList li{
    margin-bottom: 25px;
  }
  .newsList li .newsListImg{
    height:auto;
    position: inherit;
  }
  .newsList li .newsListImg img{
    top: auto;
    left: auto;
    -webkit-transform: none;
    transform:none;
    position:inherit;
    -webkit-transition: none;
    transition:none;
  }
  .newsList li:hover .newsListImg img{
    -webkit-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .btn.blk.news{
    margin-top: 20px;
  }
  .news_top_marg {
  	margin-top:40px;
  }
}

/* ranking
------------------------------------------------------- */


/* recomend
------------------------------------------------------- */


/* product
------------------------------------------------------- */
.categoryList{
  margin: auto;
}
.categoryList li{
  float: left;
  margin-bottom: 2%;
  position: relative;
  opacity: 0;
}
.categoryList li.active {
  -webkit-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
     -moz-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
      -ms-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
       -o-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  -webkit-animation-name: scale_in_lv1, fade_in;
     -moz-animation-name: scale_in_lv1, fade_in;
      -ms-animation-name: scale_in_lv1, fade_in;
       -o-animation-name: scale_in_lv1, fade_in;
          animation-name: scale_in_lv1, fade_in;
}
.categoryList li::before{
  content: "";
  display: block;
  padding-top: 100%;
}

.categoryList li a{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  z-index: 2;
}
.categoryList li:nth-child(5n+1){
  width: 48.9%;
  margin-right: 2%;
}
.categoryList li:nth-child(5n+2),
.categoryList li:nth-child(5n+3),
.categoryList li:nth-child(5n+4),
.categoryList li:nth-child(5n+5){
  width: 23.4%;
}
.categoryList li:nth-child(5n+2),
.categoryList li:nth-child(5n+3){
  margin-bottom: 2%;
}
.categoryList li:nth-child(5n+2),
.categoryList li:nth-child(5n+4){
  margin-right: 2%;
}
.categoryList li .categoryListImg{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  overflow: hidden;
  z-index: 0;
}
.categoryList li .categoryListImg::before{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all  0.5s ease;
}
.categoryList li:hover .categoryListImg::before{
  background: rgba(0,0,0,0);
}
.categoryList li .categoryListImg img{
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 100%;
  height: auto;
  position: absolute;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.categoryList li:hover .categoryListImg img{
  -webkit-transform: scale(1.1);
  -webkit-transform: translate(-50%,-50%) scale(1.1);
  transform: translate(-50%,-50%) scale(1.1);
  opacity: 1;
}
.categoryList li p{
  font-size: 134%;
  color: #fff;
  position: absolute;
  right: 0;
  left:0;
  top:0;
  bottom: 0;
  margin: auto;
  height: 1em;
  z-index: 1;
  text-align: center;
  font-weight: bold;
}
@media all and (max-width: 767px) {
  .categoryList li:nth-child(5n+1){
    width: 100%;
    margin-right:0;
  }
  .categoryList li:nth-child(5n+2),
  .categoryList li:nth-child(5n+3),
  .categoryList li:nth-child(5n+4),
  .categoryList li:nth-child(5n+5){
    width: 49%;
  }
  .categoryList li:nth-child(5n+2),
  .categoryList li:nth-child(5n+3){
    margin-bottom: 2%;
  }
  .categoryList li:nth-child(5n+2),
  .categoryList li:nth-child(5n+4){
    margin-right: 2%;
  }
  .categoryList li .categoryListImg::before{
    background: rgba(0,0,0,0.2);
  }
}


/* about
------------------------------------------------------- */
.about{
  width: 100%;
  position: relative;
  padding: 100px 0;
  max-width: 1118px;
  margin:0 auto;
}
.aboutTxt{
  width: 560px;
  background: #000;
  margin-top: 100px;
  padding:60px 44px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.aboutTxt h4{
  font-family: "ten-mincho", serif;
  font-feature-settings: "ss02";
  font-weight: normal;
  font-size:200%;
  margin-bottom: 50px;
  position: relative;
  line-height: 2;
}
.aboutTxt h4::after{
  content: "";
  position: absolute;
  left:0;
  bottom: -20px;
  height: 1px;
  width: 2em;
  background-color: #fff;
}
.aboutTxt p{
  line-height: 2.4;
  margin-bottom: 30px;
  font-size: 114%;
}
.aboutImg{
  width: 54%;
  right: 0;
  top: 100px;
  position: absolute;
  z-index: 0;
}
.aboutTxt > .btn.btnLine{
  text-align: right;
}

@media all and (max-width: 1024px) {
  .about{
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .aboutImg{
    width:60%;
    top:50px;
    right: 10px;
  }
  .aboutTxt{
    width:70%;
    margin-top:60px;
    padding:20px 35px;
  }
}
@media all and (max-width: 768px) {
  .aboutTxt{
    width:86%;
    margin-top:60px;
    padding:20px 35px;
  }
}
@media all and (max-width: 414px) {
  .aboutImg{
    width:80%;
    top:30px;
  }
  .aboutTxt{
    width:94%;
    margin-top:40px;
    padding:25px 16px;
  }
  .aboutTxt h4{
    font-size: 136%;
    line-height: 1.7;
  }
  .aboutTxt p{
    line-height: 1.7;
  }
  .aboutTxt > .btn.btnLine{
    text-align: left;
  }
}

/* 中 middle
------------------------------------------------------- */

/* 小 small */
