/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   overwrite
---------------------------------------------------------------------------*/
.l-page__main {
  padding-top: 0;
}

/*--------------------------------------------------------------------------
   common
---------------------------------------------------------------------------*/
/* comment
-----------------------------------------------------------------*/
.sec-dummy {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .sec-dummy {
    width: 50%;
  }
}

/*--------------------------------------------------------------------------
   #sec-mv
---------------------------------------------------------------------------*/
.sec-mv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 870px;
}
@media only screen and (max-width: 767px) {
  .sec-mv {
    width: 100vw;
    height: 120vw;
  }
}
.sec-mv .swiper-slide {
  width: 100%;
  height: 870px;
}
@media only screen and (max-width: 767px) {
  .sec-mv .swiper-slide {
    width: 100vw;
    height: 120vw;
  }
}
.sec-mv .swiper-slide__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
}
.sec-mv .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}
.sec-mv .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec-mv .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 7px !important;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .sec-mv .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    margin: 0 5px !important;
  }
}
.sec-mv .swiper-pagination-bullet:hover {
  background-color: #4d4d4d;
}
.sec-mv .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4d4d4d;
}

/*--------------------------------------------------------------------------
   #sec-about
---------------------------------------------------------------------------*/
.sec-about {
  max-width: 1000px;
  margin: 120px auto 0;
}
@media only screen and (max-width: 767px) {
  .sec-about {
    margin: 56px 35px 0;
  }
}
.sec-about__hdg {
  font-size: 22px;
  letter-spacing: 0.3em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-about__hdg {
    font-size: 16px;
  }
}
.sec-about__txt {
  margin-top: 21px;
  font-size: 15px;
  line-height: 2.5;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-about__txt {
    margin: 24px 15px 0;
    font-size: 14px;
    line-height: 2.4;
    text-align: justify;
    letter-spacing: 0.9px;
  }
}
@media only screen and (max-width: 767px) {
  html:lang(en) .sec-about__txt {
    text-align: left;
  }
}
.sec-about__link {
  margin-top: 22px;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1.8px;
}
@media only screen and (max-width: 767px) {
  .sec-about__link {
    margin-top: 27px;
    font-size: 13px;
  }
}
.sec-about__movie {
  margin-top: 88px;
}
@media only screen and (max-width: 767px) {
  .sec-about__movie {
    margin-top: 76px;
  }
}
.sec-about__movie video {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   #sec-items
---------------------------------------------------------------------------*/
.sec-items {
  position: relative;
  margin: 137px auto 0;
}
@media only screen and (max-width: 767px) {
  .sec-items {
    margin: 88px auto 0;
  }
}
.sec-items__filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .sec-items__filter {
    width: 600px;
  }
}
.sec-items__filter-item {
  position: relative;
  margin: 0 30px 20px;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .sec-items__filter-item {
    margin: 0 14px;
    font-size: 14px;
    letter-spacing: 1px;
  }
}
.sec-items__filter-item::after {
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background-color: #000;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  content: "";
}
@media only screen and (max-width: 767px) {
  .sec-items__filter-item::after {
    bottom: 6px;
  }
}
.mode-pc .sec-items__filter-item:hover::after, .sec-items__filter-item.is-current::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.mode-pc .sec-items__filter-item:hover .filter-num, .sec-items__filter-item.is-current .filter-num {
  opacity: 1;
}
.sec-items__filter-item a {
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.sec-items__filter-item a .filter-num {
  opacity: 0;
  position: absolute;
  top: -8px;
  right: 0;
  font-size: 9px;
  -webkit-transform: translateX(90%);
          transform: translateX(90%);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.sec-items__filter-item:hover .select-list {
  max-height: 999px;
  opacity: 1;
  pointer-events: all;
}
.sec-items__filter-item .name::before {
  display: inline-block;
  width: 20px;
  text-align: center;
  content: ":";
}
.sec-items .select-list {
  position: absolute;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  max-height: 0;
  padding: 20px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 5;
}
.sec-items .select-list__item {
  font-size: 12px;
  white-space: nowrap;
}
.sec-items .select-list__item:not(:first-of-type) {
  padding-top: 10px;
}
.sec-items .select-list__item a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec-items .select-list__item a::after {
  content: none;
}
.mode-pc .sec-items .select-list__item a:hover {
  color: #968c86;
}
.sec-items__filter-item--material .name {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .sec-items__filter-item--material {
    display: none;
  }
}
.sec-items__filter-item--lineup .select-list {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
}
@media only screen and (max-width: 767px) {
  .sec-items__filter-item--lineup {
    display: none;
  }
}
.sec-items__lineup {
  max-width: 860px;
  margin: 0 auto 50px;
  padding-top: 12px;
}
@media only screen and (max-width: 767px) {
  .sec-items__lineup {
    margin: 0 auto 20px;
    padding-top: 7px;
  }
}
.sec-items__lineup .lineup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .sec-items__lineup .lineup {
    display: block;
    padding: 0 40px;
  }
}
.sec-items__lineup .lineup__hdg {
  width: 134px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .sec-items__lineup .lineup__hdg {
    width: auto;
    font-size: 14px;
  }
}
.sec-items__lineup .lineup__txt {
  width: calc(100% - 134px);
  font-size: 15px;
  line-height: 2.2;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .sec-items__lineup .lineup__txt {
    width: auto;
    margin: 15px 0 0;
    font-size: 12px;
    line-height: 2.25;
    letter-spacing: 0.7px;
  }
}
.sec-items__loader {
  height: 200px;
  padding-top: 20px;
}
.sec-items__loader span, .sec-items__loader span:before, .sec-items__loader span:after {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation: itemloader 1.8s infinite ease-in-out;
          animation: itemloader 1.8s infinite ease-in-out;
}
.sec-items__loader span {
  display: block;
  color: #f5f5f5;
  font-size: 10px;
  margin: 0 auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
.sec-items__loader span:before, .sec-items__loader span:after {
  content: "";
  position: absolute;
  top: 0;
}
.sec-items__loader span:before {
  left: -40px;
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.sec-items__loader span:after {
  left: 40px;
}
@-webkit-keyframes itemloader {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}
@keyframes itemloader {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 2.5em 0 -1.3em;
            box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    -webkit-box-shadow: 0 2.5em 0 0;
            box-shadow: 0 2.5em 0 0;
  }
}

/* en overwrite
-----------------------------------------------------------------*/
html:lang(en) body .sec-items__filter-item .name {
  font-size: 17px;
}

/*--------------------------------------------------------------------------
   #sec-season
---------------------------------------------------------------------------*/
.sec-season {
  margin: 110px auto 0;
}
@media only screen and (max-width: 767px) {
  .sec-season {
    margin: 68px auto 0;
  }
}
.sec-season__hdg {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767px) {
  .sec-season__hdg {
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 1.8px;
  }
}

/*--------------------------------------------------------------------------
   #sec-story
---------------------------------------------------------------------------*/
.sec-story {
  max-width: 1000px;
  margin: 150px auto 0;
}
@media only screen and (max-width: 767px) {
  .sec-story {
    margin: 70px 50px 0;
  }
}
.sec-story__hdg {
  font-size: 17px;
  letter-spacing: 2px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-story__hdg {
    font-size: 15px;
  }
}
.sec-story__lead {
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 1.8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec-story__lead {
    margin: 16px -30px 0 -5px;
    font-size: 14px;
    text-align: left;
    line-height: 2;
    letter-spacing: 0.5px;
  }
}
.sec-story__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .sec-story__list {
    display: block;
    margin-top: 33px;
  }
}
.sec-story__item {
  max-width: 465px;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .sec-story__item {
    max-width: 100%;
    width: 100%;
  }
}
.sec-story__item a {
  display: block;
}
@media only screen and (max-width: 767px) {
  .sec-story__item a {
    text-align: center;
  }
}
.sec-story__item a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mode-pc .sec-story__item a:hover img {
  opacity: 0.7;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
@media only screen and (max-width: 767px) {
  .sec-story__item--color {
    margin-top: 58px;
  }
}
.sec-story__item-hdg {
  position: relative;
  max-width: 460px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .sec-story__item-hdg {
    max-width: 100%;
    width: 100%;
  }
}
.sec-story__item-hdg .img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec-story__item-hdg .img img {
  width: 100%;
  height: auto;
}
.sec-story__item-hdg .hdg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.sec-story__item-hdg .hdg img {
  width: 80%;
  height: auto;
}
.sec-story__item-txt {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2.2;
}
@media only screen and (max-width: 767px) {
  .sec-story__item-txt {
    margin-top: 16px;
    font-size: 12px;
    line-height: 2.25;
    letter-spacing: 0.8px;
  }
}
.sec-story__item-link {
  margin-top: 28px;
}
@media only screen and (max-width: 767px) {
  .sec-story__item-link {
    margin-top: 26px;
    text-align: center;
  }
}
.sec-story__item-link a {
  display: inline-block;
}

/* en contents
-----------------------------------------------------------------*/
html:lang(en) body .sec-story__item--color .sec-story__item-hdg .hdg img {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  html:lang(en) body .sec-story__item--color .sec-story__item-hdg .hdg img {
    width: 56%;
  }
}
/*# sourceMappingURL=../maps/index/style.css.map */
