@charset "UTF-8";

.fadein-blur {
  filter: blur(60px);
  opacity: 0;
  transition: opacity 2s .4s, filter 2s .4s;
}
.fadein-blur.show {
  filter: blur(0);
  opacity: 1;
}

.fadein {
  opacity: 0;
  transition: opacity 2s .4s;
}
.fadein.show {
  opacity: 1;
}

.fadein-up {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 2s .4s, transform 2s .4s;
}
.fadein-up.show {
  transform: translateY(0);
  opacity: 1;
}


#main {
  background-color: #FFF;
  color: #000;
}

#mv .imgBox {
    background-position: 46% center;
}
#mv h1 {
    margin-bottom: 15px;
}
#mv .h4 {
    font-size: 1.4rem;
}
/* ==========================================================================
   Intro
========================================================================== */
#intro {
  overflow: hidden;
  position: relative;
}
#intro .imgBox {
  background-image: url(../img/intro.jpg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#intro .txtBox {
  position: relative;
  z-index: 2;
    color: #FFF;
}
#intro .txtBox h2 {
  letter-spacing: .2em;
}
#intro .txtBox .sub_ttl h4 {
  line-height: 2;
  margin-bottom: .5em;
}

#intro .txtBox p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5em;
  line-height: 2;
}

/* ==========================================================================
   Movie
========================================================================== */
.movieBox {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.movieBox__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movieBox iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}


/* ==========================================================================
   Product
========================================================================== */
#product .content__header .ttl {
  letter-spacing: .2em;
}
#product .row .txtBox {
  position: relative;
  z-index: 5;
}
#product .row .txtBox h2 {
  letter-spacing: .1em;
  white-space: nowrap;
  margin-bottom: .75em;
  position: relative;
}
#product .row .txtBox .detail {
  letter-spacing: .1em;
  position: relative;
  z-index: 5;
}
#product .row .txtBox .detail .num {
  font-size: 1.6rem;
}
#product .row .txtBox .detail .price {
  font-size: 1.1rem;
  margin-top: 1rem;
}
#product .row .txtBox .detail .color {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}
#product .row .txtBox .detail + p {
  max-width: 514px;
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: .1em;
  text-align: justify;
}
#product .row .txtBox .btn {
  margin-top: 30px;
}


#product .feature .panel {
  position: relative;
}
#product .feature .panel .num {
  font-size: 1.6rem;
  position: absolute;
}
#product .feature .panel .num span {
  font-size: 3rem;
}
#product .feature .panel .txtBox {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}
#product .feature .panel .txtBox .ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}
#product .feature .panel .txtBox p {
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: justify;
}

.fade-change {
  position: relative;
}
.fade-change .layer2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: fade_anime 3s infinite;
}
@keyframes fade_anime {
   0% { opacity: 0; }
  50% { opacity: 1; }
 100% { opacity: 0; }
}

/* ---------------
   EC
--------------- */
#ec {
  background-color: #FFF;
}
#ec .content__header {
  color: #000;
}
#ec .slide .txtBox,
#ec .slider-controls-wrap,
#ec .btn {
    color: #FFF;
}
#ec::before {
    content: '';
    position: absolute;
    right: 0; bottom: 0; left: 0;
    background-color: #000;
}
#ec .ec-slider {
    position: relative;
    z-index: 2;
    letter-spacing: .05em;
}
#ec .slide a {
    display: block;
}
#ec .slide figure {
    overflow: hidden;
    color: #000;
}
#ec .slide a figure img,
#ec .slide a figure .no-thumb {
    transition: all .2s .1s ease-in-out;
}
#ec .slide a:hover figure img,
#ec .slide a:hover figure .no-thumb {
    transform: scale(1.1);
    transition: all .2s 0s ease-in-out;
}
#ec .slide figure .no-thumb {
    padding-top: 133.33333%;
    background-color: #F4F4F4;
}
#ec .slide .num {
    margin-bottom: 5px;
}
#ec .slide .size {
    font-weight: 500;
    margin-bottom: 10px;
}
#ec .slider-controls-wrap {
    position: relative;
    z-index: 2;
}
