@charset "utf-8";
/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

/**
 * CSS Information
 * ===============================================================
 *
 * Site URL:  http://
 * File name: 18sp.css
 * Summary:   2018 SPRING CREATIONの固有スタイル
 * Author:    CrEa., Inc.
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    collection
 *     =1-1  index
 *     =1-2  products
 *
 * ===============================================================
*/



/** =1
 * ========================================
 * collection
 * ========================================
 */

#collection {}

  /* -- >>> styles for narrow layout ----- */
  @media screen and (max-width: 767px) {
  }

  /* -- >>> styles for medium & wide layout ----- */
  @media screen and (min-width: 768px) {
  }

  /* -- >>> styles for medium layout ----- */
  @media screen and (min-width: 768px) and (max-width: 1024px) {
  }

  /* -- >>> styles for wide layout ----- */
  @media screen and (min-width: 1025px) {
  }


/** =1-1
 * ========================================
 * collection - index
 * ========================================
 */
#collection.index {
  background: #d8f1f6 url(../src/pc/image/collection/bg.png);
}

#collection.index #contents {
  overflow: hidden;
}
#collection.index #main {
  position: relative;
}
#collection.index #main::before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: #d8f1f6;
  content: "";
  transition: opacity 1.5s ease;
  pointer-events: none;
}
#collection.index #main.is-loading::before {
  opacity: 1;
  pointer-events: auto;
}

#collection.index .js-fadeIn {
  opacity: 0;
}

  /* -- >>> styles for narrow and medium layout ----- */
  @media screen and (max-width: 1199px) {
    #collection.index #main {
      padding-bottom: 26.67%;
      padding-bottom: -webkit-calc( 320/1200 * 100% );
      padding-bottom: calc( 320/1200 * 100% );
    }
  }

  /* -- >>> styles for wide layout ----- */
  @media screen and (min-width: 1200px) {
    #collection.index #main {
      padding-bottom: 320px;
    }
  }
  
  /* [ flower ]
   ------------------------------ */
  .hero::after, #collection.index #main::after {
    display: block;
    position: absolute;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: 100% auto;
    content: "";
  }
  .hero::after {
    background-position: center top;
    background-image: url(../src/pc/image/collection/flower01.png);
  }
  #collection.index #main::after {
    bottom: 0;
    background-position: center bottom;
    background-image: url(../src/pc/image/collection/flower02.png);
  }
  
    /* -- >>> styles for narrow and medium layout ----- */
    @media screen and (max-width: 1199px) {
      .hero::after, #collection.index #main::after {
        width: 135%;
        width: -webkit-calc( 1620/1200 * 100% );
        width: calc( 1620/1200 * 100% );
      }
      .hero::after {
        padding-top: 37.50%;
        padding-top: -webkit-calc( 450/1200 * 100% );
        padding-top: calc( 450/1200 * 100% );
      }
      #collection.index #main::after {
        padding-top: 20.83%;
        padding-top: -webkit-calc( 250/1200 * 100% );
        padding-top: calc( 250/1200 * 100% );
      }
    }
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .hero::after {
        bottom: -20.83%;
        bottom: -webkit-calc( -250/1200 * 100% );
        bottom: calc( -250/1200 * 100% );
      }
    }
    
    /* -- >>> styles for medium layout ----- */
    @media screen and (min-width: 768px) and (max-width: 1199px) {
      .hero::after {
        bottom: -41.67%;
        bottom: -webkit-calc( -250/600 * 100% );
        bottom: calc( -250/600 * 100% );
      }
    }
    
    /* -- >>> styles for wide layout ----- */
    @media screen and (min-width: 1200px) {
      .hero::after, #collection.index #main::after {
        width: 1620px;
      }
      .hero::after {
        bottom: -250px;
        height: 450px;
      }
      #collection.index #main::after {
        height: 250px;
      }
    }

  /* [ hero ]
  ------------------------------ */
  .hero {
    position: relative;
    text-align: center;
  }
  
    /* -- >>> styles for narrow and medium layout ----- */
    @media screen and (max-width: 1199px) {
      .hero {
        margin-bottom: 19.17%;
        margin-bottom: -webkit-calc( 230/1200 * 100% );
        margin-bottom: calc( 230/1200 * 100% );
      }
    }
  
    /* -- >>> styles for wide layout ----- */
    @media screen and (min-width: 1200px) {
      .hero {
        margin-bottom: 230px;
      }
    }
    
  .heroInner {
    position: relative;
    overflow: hidden;
    z-index: 10;
    background: #000;
  }
  
  .heroInner .image {
    position: relative;
    z-index: 0;
  }
  .heroInner .dark {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,.8), rgba(0,0,0,.0));
    height: 300%;
    z-index: 1;
  }
  .heroInner .twincle01,
  .heroInner .twincle02 {
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: center top no-repeat;
    background-size: cover;
  }
  

    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .heroInner {
      }
      
      .heroInner .twincle01 {
        background-image: url(../src/sp/image/collection/twincle01.png);
      }
      .heroInner .twincle02 {
        background-image: url(../src/sp/image/collection/twincle02.png);
      }
    }

    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
      .heroInner {
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
      }
      
      .heroInner .twincle01 {
        background-image: url(../src/pc/image/collection/twincle01.png);
      }
      .heroInner .twincle02 {
        background-image: url(../src/pc/image/collection/twincle02.png);
      }
    }
    
    /* animation */
    #js-heroAnim .heroInner .dark {
      opacity: 1;
    }
    #js-heroAnim .heroInner .twincle01,
    #js-heroAnim .heroInner .twincle02 {
      opacity: 0;
      filter: blur(2px);
    }
    
    #js-heroAnim.is-appear .heroInner .twincle01 {
      animation: animTwincle .3s ease 1.0s forwards;
    }
    #js-heroAnim.is-appear .heroInner .twincle02 {
      animation: animTwincle .3s ease 1.4s forwards;
    }
    @keyframes animTwincle {
      0% {
        opacity: 0;
        filter: blur(4px);
      }
      100% {
        opacity: 1;
        filter: blur(0);
      }
    }
    
    #js-heroAnim.is-anim .heroInner .twincle01,
    #js-heroAnim.is-anim .heroInner .twincle02 {
      mix-blend-mode: screen;
      transform: scale(1.05) rotateY(180deg);
    }
    #js-heroAnim.is-anim .heroInner .twincle01 {
      animation: animTwincleBlur 4.8s linear infinite;
    }
    #js-heroAnim.is-anim .heroInner .twincle02 {
      animation: animTwincleBlur 4.8s linear 1.6s infinite;
    }
    @keyframes animTwincleBlur {
      0% {
        opacity: 0;
        filter: blur(0);
      }
      8% {
        opacity: .3;
        filter: blur(2px);
      }
      24% {
        opacity: 0;
        filter: blur(0);
      }
      100% {
        opacity: 0;
        filter: blur(0);
      }
    }
    
    #js-heroAnim.is-appear .heroInner .dark {
      animation: animDark 2.4s ease 1.0s forwards;
    }
    #js-heroAnim.is-anim .heroInner .dark {
      opacity: 0;
    }
    @keyframes animDark {
      0% {
        opacity: 1;
        top: 0%;
      }
      40% {
        opacity: 1;
        top: 0%;
      }
      100% {
        opacity: 0;
        top: -200%;
      }
    }
  

  /* [ titlePage ]
  ------------------------------ */
  .titlePage {
    text-align: center;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .titlePage {
        margin-bottom: 20px;
      }
      .titlePage img {
        width: 210px;
      }
    }
  
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
      .titlePage {
        margin-bottom: 40px;
      }
    }

  /* [ boxTextCopy ]
  ------------------------------ */
  .boxTextCopy {
    color: #c89f67;
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 2;
    text-align: center;
  }
  .boxTextCopy .text {
    font-weight: bold;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .boxTextCopy {
        margin-bottom: 40px;
        font-size: 1.65rem;
      }
    }
  
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
      .boxTextCopy {
        margin-bottom: 80px;
      }
    }


  /* [ boxEnterProducts ]
  ------------------------------ */
  .boxEnterProducts {
    position: relative;
    width: 420px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .boxEnterProductsWrap {
        width: 252px;
        margin-right: auto;
        margin-left: auto;
      }
      .boxEnterProducts {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        margin-top: -45px;
        margin-bottom: -45px;
      }
    }
  
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
  
  
    /* btnEnter */
    .boxEnterProducts .btnEnter {
      display: block;
      opacity: 0;
      position: relative;
      width: 420px;
      height: 220px;
      transition: all .4s ease;
    }
    .boxEnterProducts .btnEnter:active {
      transform: scale(.95, 1.05) translateY(-5%);
    }
    .boxEnterProducts .btnEnter .itemText,
    .boxEnterProducts .btnEnter .itemImage {
      display: block;
      position: absolute;
      background-size: contain;
    }
    .boxEnterProducts .btnEnter .itemText {
      opacity: 0;
      overflow: hidden;
      top: -26px;
      left: 50%;
      z-index: 2;
      -webkit-transform-origin: 50% 460%;
      transform-origin: 50% 460%;
      width: 120px;
      height: 26px;
      margin-left: -60px;
      background: url(../src/pc/image/collection/text_click.png) center center no-repeat;
      text-indent: 100%;
      white-space: nowrap;
    }
    .boxEnterProducts .btnEnter .itemImage.imageCat {
      opacity: 0;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      -webkit-transform-origin: 50% 100%;
      transform-origin: 50% 100%;
      background: url(../src/pc/image/collection/image_cat.png) 0 top no-repeat;
    }
    
    /* animation */
    .boxEnterProducts .btnEnter.is-anim {
      opacity: 1;
    }
    
    .boxEnterProducts .btnEnter.is-anim .itemImage.imageCat {
      animation: animAppeearCat 2.4s ease .4s forwards;
    }
    @keyframes animAppeearCat {
      0% {
        opacity: 0;
        transform: scale(.98);
      }
      20% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1);
      }
      62.5% {
        opacity: 1;
        transform: scale(1) rotate(1deg);
      }
      79% {
        opacity: 1;
        transform: scale(1) rotate(-1deg);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
    .boxEnterProducts .btnEnter.is-anim .itemText {
      animation: animAppeearText .2s linear .8s forwards;
    }
    @keyframes animAppeearText {
      0% {
        opacity: 0;
        transform: scale(.9);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }
    
  


/** =1-2
 * ========================================
 * collection - products
 * ========================================
 */

#collection.products {}
#collection.products #main {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

  /* -- >>> styles for narrow layout ----- */
  @media screen and (max-width: 767px) {
  }

  /* -- >>> styles for medium & wide layout ----- */
  @media screen and (min-width: 768px) {
  }

  /* -- >>> styles for medium layout ----- */
  @media screen and (min-width: 768px) and (max-width: 1024px) {
  }

  /* -- >>> styles for wide layout ----- */
  @media screen and (min-width: 1025px) {
  }


  /*
   * block / section
   * ----------------------------------
   */
  .wrapProducts {
    width: 100%;
  }
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      .wrapProducts {
        height: -webkit-calc( 100vh - 51px );
        height: calc( 100vh - 51px );
        font-size: 1.18rem;
      }
    }

    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
      .wrapProducts {
        height: -webkit-calc( 100vh - 169px );
        height: calc( 100vh - 169px );
      }
    }

    /* [ sectionProducts ]
     ------------------------------ */
    .sectionProducts {
      position: relative;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      background: #c89f67;
      letter-spacing: .05em;
      text-align: center;
    }
    .sectionProducts::before {
      display: block;
      position: absolute;
      z-index: 0;
      background-color: #fff;
      content: "";
    }

    .sectionProductsContent {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      position: relative;
      height: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    .sectionProductsContent > * {
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 1;
    }
    .sectionProductsContent .innerContent {
      width: 100%;
    }

      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        .sectionProducts {
          padding: 25px 6.25%;
        }
        .sectionProducts::before {
          top: 8px;
          right: 8px;
          bottom: 8px;
          left: 8px;
        }
      }

      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        .sectionProducts {
          padding-top: 40px;
          padding-right: 10px;
          padding-bottom: 40px;
          padding-left: 10px;
        }
        .sectionProducts::before {
          top: 10px;
          right: 10px;
          bottom: 10px;
          left: 10px;
        }
      }

      /* boxProductText */
      .boxProductText {}
      .boxProductText .fcBrown {
        color: #b69665;
      }

      .boxProductText .textCopy {
        margin-bottom: 1.0em;
        color: #e14f8d;
        line-height: 1.6;
      }
      .boxProductText .textName {
        margin-bottom: .35em;
        color: #e14f8d;
        font-weight: bold;
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.4;
      }
      .boxProductText .textName .textJa {
        display: inline-block;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.4;
      }
      .boxProductText .textPrice {
      }

        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          .boxProductText .textName {
            font-size: 2.0rem;
          }
          .boxProductText .textJa {
            font-size: 1.18rem;
          }
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          .boxProductText .textName {
            line-height: 1.1;
          }
        }

        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          .boxProductText {
            font-size: 12px;
            font-size: 1.2rem;
          }
          .boxProductText .textName {
            font-size: 20px;
            font-size: 2.0rem;
          }
          .boxProductText .textName .textJa {
            font-size: 12px;
            font-size: 1.2rem;
          }
        }


      /* boxProductImage */
      .boxProductImage {}

        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          .boxProductImage .textColor {
            font-size: 12px;
            font-size: 1.2rem;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          .boxProductImage .textColor {
            font-size: 11px;
            font-size: 1.1rem;
          }
        }

        /* wrapProductImage */
        .wrapProductImage {
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          margin-right: auto;
          margin-left: auto;
        }
        .wrapProductImage.column2 .boxProductImage {
          width: 50%;
        }

          /* -- >>> styles for narrow layout ----- */
          @media screen and (max-width: 767px) {
          }

          /* -- >>> styles for medium & wide layout ----- */
          @media screen and (min-width: 768px) {
          }

      /* js-slideProduct */
      .navSlideProduct.js-navSlideProduct {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-right: auto;
        margin-left: auto;
      }
      .navSlideProduct.js-navSlideProduct .itemNav {
        -webkit-transition: opacity 0.3s ease;
        transition: opacity 0.3s ease;
      }
      .navSlideProduct.js-navSlideProduct .itemNav.is-current {
        opacity: .25;
        /* display: none; */
      }
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
        }
      
      /* js-slideProductHorizontal */
      .js-slideProductHorizontal .swiper-slide {
        height: auto;
      }
      
      .js-slideProductHorizontal .swiper-button-prev,
      .js-slideProductHorizontal .swiper-button-next {
        top: 0;
        bottom: 0;
        height: 100%;
        margin-top: 0;
        background: none;
      }
      .js-slideProductHorizontal .swiper-button-prev {
        left: 0;
      }
      .js-slideProductHorizontal .swiper-button-prev {
        right: 0;
      }
      .js-slideProductHorizontal .swiper-button-prev::before,
      .js-slideProductHorizontal .swiper-button-next::before {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        border-top: 2px solid #ddd;
        border-left: 2px solid #ddd;
        content: "";
      }
      .js-slideProductHorizontal .swiper-button-prev::before {
        transform: rotate(-45deg);
      }
      .js-slideProductHorizontal .swiper-button-next::before {
        transform: rotate(135deg);
      }
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          .js-slideProductHorizontal .swiper-button-prev,
          .js-slideProductHorizontal .swiper-button-next {
            width: 56px;
          }
          .js-slideProductHorizontal .swiper-button-prev::before,
          .js-slideProductHorizontal .swiper-button-next::before {
            width: 13px;
            height: 13px;
            margin-top: -7px;
            border-top-width: 1px;
            border-left-width: 1px;
          }
          .js-slideProductHorizontal .swiper-button-prev::before {
            margin-left: -2px;
          }
          .js-slideProductHorizontal .swiper-button-next::before {
            margin-left: -12px;
          }
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          .js-slideProductHorizontal .swiper-button-prev,
          .js-slideProductHorizontal .swiper-button-next {
            width: 100px;
          }
          .js-slideProductHorizontal .swiper-button-prev::before,
          .js-slideProductHorizontal .swiper-button-next::before {
            width: 26px;
            height: 26px;
            margin-top: -14px;
          }
          .js-slideProductHorizontal .swiper-button-prev::before {
            margin-left: -4px;
          }
          .js-slideProductHorizontal .swiper-button-next::before {
            margin-left: -24px;
          }
        }

      /* js-slideProductCenter */
      .slideProduct.js-slideProductCenter {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
      }
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
        }

      .slideProduct.js-slideProductCenter .swiper-slide {
        width: 33%;
        width: -webkit-calc( 1/3 * 100% );
        width: calc( 1/3 * 100% );
        /* -webkit-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; */
      }
      .slideProduct.js-slideProductCenter .swiper-slide.swiper-slide-duplicate-prev,
      .slideProduct.js-slideProductCenter .swiper-slide.swiper-slide-duplicate-next {
        opacity: 0;
      }
      .slideProduct.js-slideProductCenter .swiper-slide.swiper-slide-active,
      .slideProduct.js-slideProductCenter .swiper-slide.swiper-slide-prev,
      .slideProduct.js-slideProductCenter .swiper-slide.swiper-slide-next {
        opacity: 1;
      }

      .slideProduct.js-slideProductCenter .boxProductImage {
        position: relative;
        margin-bottom: 20px;
        cursor: pointer;
      }
      .slideProduct.js-slideProductCenter .boxProductImage .itemImage {
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
      }
      .slideProduct.js-slideProductCenter .swiper-slide-active .boxProductImage .itemImage {
        -webkit-transform: translateY(0);
        transform: translateY(0);
      }
      .slideProduct.js-slideProductCenter .boxProductImage .itemImage img {
        -webkit-transition: width 0.2s linear;
        transition: width 0.2s linear;
      }
      .slideProduct.js-slideProductCenter .boxProductImage .textColor {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        color: #777;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.5;
        white-space: nowrap;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
      }
      .slideProduct.js-slideProductCenter .swiper-slide-active .boxProductImage .textColor {
        opacity: 0;
      }
      .slideProduct.js-slideProductCenter .boxProductImage .textColor .name {
        /* display: none; */
        display: block;
      }
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
        }

        /* next / prev */
        .slideProduct.js-slideProductCenter .slider-button-prev,
        .slideProduct.js-slideProductCenter .slider-button-next {
          position: absolute;
          top: 0;
          bottom: 0;
          z-index: 100;
          width: 33%;
          cursor: pointer;
        }
        .slideProduct.js-slideProductCenter .slider-button-prev {
          left: 0;
        }
        .slideProduct.js-slideProductCenter .slider-button-next {
          right: 0;
        }
          /* -- >>> styles for narrow layout ----- */
          @media screen and (max-width: 767px) {
          }

          /* -- >>> styles for medium & wide layout ----- */
          @media screen and (min-width: 768px) {
          }
          
      /* js-slideProductSP */
      .navSlideProduct.js-navSlideProductSP {}
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          .navSlideProduct.js-navSlideProductSP {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            margin-right: auto;
            margin-top: 10px;
            margin-left: auto;
          }
          .navSlideProduct.js-navSlideProductSP .itemNav {
            -webkit-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
          }
          .navSlideProduct.js-navSlideProductSP .itemNav.is-current {
            display: none;
          }
          
          .navSlideProduct.js-navSlideProductSP .itemNav a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
            height: 100%;
          }
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
        }


      /* sectionProductsNav */
      .sectionProductsNav {}
      .sectionProductsNav .btnPrev,
      .sectionProductsNav .btnNext {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10;
      }

      .sectionProductsNav .btnPrev a,
      .sectionProductsNav .btnNext a {
        display: block;
        overflow: hidden;
        position: relative;
        width: 65px;
        height: 45px;
        text-indent: 100%;
        white-space: nowrap;
        line-height: 1;
      }
      .sectionProductsNav .btnPrev a::after,
      .sectionProductsNav .btnNext a::after {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        margin-top: -6px;
        margin-left: -13px;
        border-right: 13px solid transparent;
        border-left: 13px solid transparent;
        content: "";
      }
      .sectionProductsNav .btnPrev a::after {
        border-bottom: 13px solid #c9caca;
      }
      .sectionProductsNav .btnNext a::after {
        border-top: 13px solid #c9caca;
      }

        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          .sectionProductsNav .btnPrev {
            top: 8px;
          }
          .sectionProductsNav .btnNext {
            bottom: 8px;
          }
          .sectionProductsNav .btnPrev a,
          .sectionProductsNav .btnNext a {
            width: 40px;
            height: 24px;
          }
          .sectionProductsNav .btnPrev a::after,
          .sectionProductsNav .btnNext a::after {
            margin-top: -3px;
            margin-left: -6px;
            border-right-width: 6px;
            border-left-width: 6px;
          }
          .sectionProductsNav .btnPrev a::after {
            border-bottom-width: 6px;
          }
          .sectionProductsNav .btnNext a::after {
            border-top-width: 6px;
          }
        }

        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          .sectionProductsNav .btnPrev {
            top: 10px;
          }
          .sectionProductsNav .btnNext {
            bottom: 10px;
          }
        }



  /*
   * product-collection
   * ----------------------------------
   */
  #product-collection {}
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    
    /* boxProductImage */
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        #product-collection .boxProductImage img {
          width: 280px;
        }
      }
    
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        #product-collection .boxProductImage img {
          width: 640px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        #product-collection .boxProductImage img {
          width: 480px; /* 約75% */
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 670px) {
        #product-collection .boxProductImage img {
          width: 350px; /* 約55% */
        }
      }
      
      /* sectionProductsNav */
      #product-collection .sectionProductsNav .btnNext a {
        width: auto;
        height: auto;
        color: #333;
        letter-spacing: .075em;
        text-align: center;
        text-indent: 0;
      }
      #product-collection .sectionProductsNav .btnNext a::after {
        position: static;
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
      }
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection .sectionProductsNav .btnNext a {
            padding: 5px 5px 10px;
          }
          #product-collection .sectionProductsNav .btnNext a::after {
            margin-top: 6px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection .sectionProductsNav .btnNext a {
            padding: 10px 10px 16px;
          }
          #product-collection .sectionProductsNav .btnNext a::after {
            margin-top: 10px;
          }
        }
        
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection .sectionProductsNav .btnNext a {
            font-size: 12px;
            font-size: 1.2rem;
          }
        }


  /*
   * product-collection-items
   * ----------------------------------
   */
  #product-collection-items {
    background-color: #e7dccd;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
      #product-collection-items {
        padding-right: 8px;
        padding-left: 8px;
      }
      #product-collection-items .l-inner {
        padding-right: 3.75%;
        padding-right: -webkit-calc( 6.25% - 8px );
        padding-right: calc( 6.25% - 8px );
        padding-left: 3.75%;
        padding-left: -webkit-calc( 6.25% - 8px );
        padding-left: calc( 6.25% - 8px );
      }
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    /* -- >>> styles for medium layout ----- */
    @media screen and (min-width: 768px) and (max-width: 1024px) {
      #product-collection-items .l-inner {
        max-width: auto;
        max-width: initial;
        padding-right: 0;
        padding-left: 0;
      }
    }
    /* -- >>> styles for wide layout ----- */
    @media screen and (min-width: 1025px) {
      #product-collection-items .l-inner {
        width: auto;
      }
    }
    
    /* collection items */
    .collectionItems {}
    
    .collectionItemsHead {
      text-align: center;
    }
    .collectionItemsTitle {
      display: inline-block;
      /* padding: .25em 1.5em;
      border: 1px solid #e14f8d; */
      color: #e14f8d;
      line-height: 1.5;
    }
      
    .collectionItemsFooter {}
    .collectionItemsFooter .navCollectionItems {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-right: auto;
      margin-left: auto;
    }
    .collectionItemsFooter .navCollectionItems a {
      color: inherit;
    }
    .collectionItemsFooter .navCollectionItems .itemNav {
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease;
    }
    .collectionItemsFooter .navCollectionItems .itemNav .thumb {
      position: relative;
    }
    .collectionItemsFooter .navCollectionItems .itemNav .thumb::after {
      display: block;
      opacity: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
      height: 100%;
      border: 1px solid #e14f8d;
      border-radius: 50%;
      /* box-sizing: border-box; */
      content: "";
      -webkit-transition: opacity .3s ease;
      transition: opacity .3s ease;
    }
    .collectionItemsFooter .navCollectionItems .itemNav.is-current .thumb::after {
      opacity: 1;
    }
    .collectionItemsFooter .navCollectionItems .itemNav .text {
      font-size: 10px;
      font-size: 1.0rem;
      letter-spacing: 0;
      -webkit-transition: color .3s ease;
      transition: color .3s ease;
    }
    .collectionItemsFooter .navCollectionItems .itemNav.is-current .text {
      color: #e14f8d;
    }
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        .collectionItemsFooter {
          margin-top: 5px;
          padding-top: 15px;
          border-top: 1px solid #ddd;
        }
        .collectionItemsFooter .navCollectionItems {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          max-width: 260px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav {
          width: 25%;
          width: -webkit-calc( 1/4 * 100% );
          width: calc( 1/4 * 100% );
          margin-top: 8px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav:nth-child(-n+4) {
          margin-top: 0;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb::after {
          width: 35px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb img {
          /* width: 40px; */
          width: 35px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .text {
          transform: scale(.8);
          margin-top: .1em;
          white-space: nowrap;
        }
      }
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        .collectionItemsFooter {
          margin-top: 10px;
        }
        .collectionItemsFooter .navCollectionItems {
          max-width: 700px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav {
          width: 14.28%;
          width: -webkit-calc( 1/7 * 100% );
          width: calc( 1/7 * 100% );
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb::after {
          width: 60px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb img {
          width: 60px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .text {
          margin-top: .5em;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        .collectionItemsFooter {
          margin-top: 0;
        }
        .collectionItemsFooter .navCollectionItems {
          max-width: 595px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb::after {
          width: 40px;
        }
        .collectionItemsFooter .navCollectionItems .itemNav .thumb img {
          width: 40px;
        }
      }

    .collectionItemsBody {}
    .collectionItemsBody .boxProduct {}
    .collectionItemsBody .boxProductText {
      letter-spacing: 0;
    }
    .collectionItemsBody .boxProductImage .textColor {
      letter-spacing: 0;
      line-height: 1.4;
    }
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        .collectionItemsBody {
          padding-top: 10px;
          padding-bottom: 10px;
        }
        .collectionItemsBody .boxProductText {
          margin-bottom: 10px;
        }
        
        /* 上下中央寄せ */
        .collectionItemsBody .boxProduct {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          height: 100%;
        }
        .collectionItemsBody .boxProductText {
          -ms-flex-negative: 0;
          flex-shrink: 0
        }
        .collectionItemsBody .boxProductBody {
          -webkit-box-flex: 1;
          -ms-flex-positive: 1;
          flex-grow: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
        }
        .collectionItemsBody .boxProductBodyInner {
          width: 100%;
        }
      }
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        .collectionItemsBody {
          padding-top: 20px;
          padding-bottom: 20px;
        }
        .collectionItemsBody .boxProductText {
          margin-bottom: 20px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-width: 1023px) {
        .collectionItemsBody .boxProductImage .textColor {
          font-size: 10px;
          font-size: 1.0rem;
        }
      }
      
      /* product-collection-items-A (ベースメイク) */
      #product-collection-items-A {}
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-A .wrapProductImage {
            max-width: 240px;
          }
          #product-collection-items-A .boxProductImage img {
            width: 80px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-A .wrapProductImage {
            max-width: 480px;
          }
          #product-collection-items-A .boxProductImage img {
            width: 160px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-A .wrapProductImage {
            max-width: 420px;
          }
          #product-collection-items-A .boxProductImage img {
            width: 120px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-A .boxProductImage img {
            width: 88px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-A .wrapProductImage {
            max-width: 340px;
          }
          #product-collection-items-A .boxProductImage img {
            width: 88px; /* 約55% */
          }
        }
      
      /* product-collection-items-B (ポイントメイク) */
      #product-collection-items-B {}
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-B .boxProductImage.product01 img,
          #product-collection-items-B .boxProductImage.product02 img {
            width: 150px;
          }
          #product-collection-items-B .boxProductImage.product03 img {
            width: 58px;
          }
          
          #product-collection-items-B .navSlideProduct {
            max-width: 160px;
          }
          #product-collection-items-B .navSlideProduct .itemNav {
            width: 50%;
          }
          #product-collection-items-B .navSlideProduct .itemNav.proudct01 img,
          #product-collection-items-B .navSlideProduct .itemNav.proudct02 img {
            width: 49px;
          }
          #product-collection-items-B .navSlideProduct .itemNav.proudct03 img {
            width: 19px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-B .wrapProductImage {
            max-width: 760px;
          }
          #product-collection-items-B .boxProductImage.product01,
          #product-collection-items-B .boxProductImage.product02 {
            width: 39.47%;
            width: calc( 300/760 * 100% );
          }
          #product-collection-items-B .boxProductImage.product03 {
            width: 21.06%;
            width: calc( 160/760 * 100% );
          }
          
          #product-collection-items-B .boxProductImage.product01 img,
          #product-collection-items-B .boxProductImage.product02 img {
            width: 260px;
          }
          #product-collection-items-B .boxProductImage.product03 img {
            width: 100px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-B .wrapProductImage {
            max-width: 585px;
          }
          #product-collection-items-B .boxProductImage.product01 img,
          #product-collection-items-B .boxProductImage.product02 img {
            width: 195px; /* 約75% */
          }
          #product-collection-items-B .boxProductImage.product03 img {
            width: 75px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-B .wrapProductImage {
            max-width: 415px;
          }
          #product-collection-items-B .boxProductImage.product01 img,
          #product-collection-items-B .boxProductImage.product02 img {
            width: 130px; /* 約55% */
          }
          #product-collection-items-B .boxProductImage.product03 img {
            width: 50px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-B .wrapProductImage {
            max-width: 415px;
          }
          #product-collection-items-B .boxProductImage.product01 img,
          #product-collection-items-B .boxProductImage.product02 img {
            width: 130px; /* 約55% */
          }
          #product-collection-items-B .boxProductImage.product03 img {
            width: 50px; /* 約55% */
          }
        }
      
      /* product-collection-items-C (リップ) */
      #product-collection-items-C {}
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-C .boxProductImage.product01 img {
            width: 88px;
          }
          #product-collection-items-C .boxProductImage.product02 img {
            width: 71px;
          }
          #product-collection-items-C .boxProductImage.product03 img {
            width: 54px;
          }
          #product-collection-items-C .boxProductImage.product04 img {
            width: 79px;
          }
          
          #product-collection-items-C .navSlideProduct {
            max-width: 228px;
          }
          #product-collection-items-C .navSlideProduct .itemNav {
            width: 33.33%;
            width: -webkit-calc( 1/3 * 100% );
            width: calc( 1/3 * 100% );
          }
          #product-collection-items-C .navSlideProduct .itemNav.proudct01 img {
            width: 29px;
          }
          #product-collection-items-C .navSlideProduct .itemNav.proudct02 img {
            width: 23px;
          }
          #product-collection-items-C .navSlideProduct .itemNav.proudct03 img {
            width: 18px;
          }
          #product-collection-items-C .navSlideProduct .itemNav.proudct04 img {
            width: 26px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-C .wrapProductImage {
            max-width: 744px;
          }
          #product-collection-items-C .boxProductImage.product01 {
            width: 28.49%;
            width: calc( 212/744 * 100% );
          }
          #product-collection-items-C .boxProductImage.product02 {
            width: 24.46%;
            width: calc( 182/744 * 100% );
          }
          #product-collection-items-C .boxProductImage.product03 {
            width: 20.70%;
            width: calc( 154/744 * 100% );
          }
          #product-collection-items-C .boxProductImage.product04 {
            width: 26.35%;
            width: calc( 196/744 * 100% );
          }
          
          #product-collection-items-C .boxProductImage.product01 img {
            width: 152px;
          }
          #product-collection-items-C .boxProductImage.product02 img {
            width: 122px;
          }
          #product-collection-items-C .boxProductImage.product03 img {
            width: 94px;
          }
          #product-collection-items-C .boxProductImage.product04 img {
            width: 136px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-C .boxProductImage.product01 img {
            width: 114px; /* 約75% */
          }
          #product-collection-items-C .boxProductImage.product02 img {
            width: 92px; /* 約75% */
          }
          #product-collection-items-C .boxProductImage.product03 img {
            width: 71px; /* 約75% */
          }
          #product-collection-items-C .boxProductImage.product04 img {
            width: 102px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-C .boxProductImage.product01 img {
            width: 76px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product02 img {
            width: 61px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product03 img {
            width: 47px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product04 img {
            width: 68px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-C .wrapProductImage {
            max-width: 600px;
          }
          #product-collection-items-C .boxProductImage.product01 img {
            width: 76px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product02 img {
            width: 61px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product03 img {
            width: 47px; /* 約55% */
          }
          #product-collection-items-C .boxProductImage.product04 img {
            width: 68px; /* 約55% */
          }
        }
      
      /* product-collection-items-D (ネイル) */
      #product-collection-items-D {}
      #product-collection-items-D .boxProductImage.product01 {
        width: 46.67%;
        width: calc( 168/360 * 100% );
      }
      #product-collection-items-D .boxProductImage.product02 {
        width: 53.33%;
        width: calc( 192/360 * 100% );
      }
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-D .wrapProductImage {
            max-width: 240px;
          }
          #product-collection-items-D .boxProductImage.product01 img {
            width: 54px;
          }
          #product-collection-items-D .boxProductImage.product02 img {
            width: 66px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-D .wrapProductImage {
            max-width: 360px;
          }
          #product-collection-items-D .boxProductImage.product01 img {
            width: 108px;
          }
          #product-collection-items-D .boxProductImage.product02 img {
            width: 132px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-D .boxProductImage.product01 img {
            width: 81px; /* 約75% */
          }
          #product-collection-items-D .boxProductImage.product02 img {
            width: 99px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-D .boxProductImage.product01 img {
            width: 54px; /* 約55% */
          }
          #product-collection-items-D .boxProductImage.product02 img {
            width: 66px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-D .wrapProductImage {
            max-width: 260px;
          }
          #product-collection-items-D .boxProductImage.product01 img {
            width: 54px; /* 約55% */
          }
          #product-collection-items-D .boxProductImage.product02 img {
            width: 66px; /* 約55% */
          }
        }
      
      /* product-collection-items-E (スキンケア) */
      #product-collection-items-E {}
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-E .wrapProductImage {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
          }
          #product-collection-items-E .boxProductImage.product01 img {
            width: 96px;
          }
          #product-collection-items-E .boxProductImage.product02 img {
            width: 53px;
          }
          #product-collection-items-E .boxProductImage.product03 img,
          #product-collection-items-E .boxProductImage.product04 img,
          #product-collection-items-E .boxProductImage.product05 img {
            width: 61px;
          }
          
          #product-collection-items-E .navSlideProduct {
            max-width: 176px;
          }
          #product-collection-items-E .navSlideProduct .itemNav {
            width: 25%;
          }
          #product-collection-items-E .navSlideProduct .itemNav.proudct01 img {
            width: 32px;
          }
          #product-collection-items-E .navSlideProduct .itemNav.proudct02 img {
            width: 17px;
          }
          #product-collection-items-E .navSlideProduct .itemNav.proudct03 img,
          #product-collection-items-E .navSlideProduct .itemNav.proudct04 img,
          #product-collection-items-E .navSlideProduct .itemNav.proudct05 img {
            width: 20px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-E .wrapProductImage {
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
            height: 100%;
            max-width: 878px;
          }
          #product-collection-items-E .boxProductImage.product01 {
            width: 25.96%;
            width: calc( 228/878 * 100% );
          }
          #product-collection-items-E .boxProductImage.product02 {
            width: 17.31%;
            width: calc( 152/878 * 100% );
          }
          #product-collection-items-E .boxProductImage.product03,
          #product-collection-items-E .boxProductImage.product04,
          #product-collection-items-E .boxProductImage.product05 {
            width: 18.91%;
            width: calc( 166/878 * 100% );
          }
          
          #product-collection-items-E .boxProductImage.product01 img {
            width: 168px;
          }
          #product-collection-items-E .boxProductImage.product02 img {
            width: 92px;
          }
          #product-collection-items-E .boxProductImage.product03 img,
          #product-collection-items-E .boxProductImage.product04 img,
          #product-collection-items-E .boxProductImage.product05 img {
            width: 106px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-E .wrapProductImage {
            max-width: 735px;
          }
          #product-collection-items-E .boxProductImage.product01 img {
            width: 126px; /* 約75% */
          }
          #product-collection-items-E .boxProductImage.product02 img {
            width: 69px; /* 約75% */
          }
          #product-collection-items-E .boxProductImage.product03 img,
          #product-collection-items-E .boxProductImage.product04 img,
          #product-collection-items-E .boxProductImage.product05 img {
            width: 80px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-E .boxProductImage.product01 img {
            width: 84px; /* 約55% */
          }
          #product-collection-items-E .boxProductImage.product02 img {
            width: 46px; /* 約55% */
          }
          #product-collection-items-E .boxProductImage.product03 img,
          #product-collection-items-E .boxProductImage.product04 img,
          #product-collection-items-E .boxProductImage.product05 img {
            width: 53px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-E .wrapProductImage {
            max-width: 600px;
          }
          #product-collection-items-E .boxProductImage.product01 img {
            width: 84px; /* 約55% */
          }
          #product-collection-items-E .boxProductImage.product02 img {
            width: 46px; /* 約55% */
          }
          #product-collection-items-E .boxProductImage.product03 img,
          #product-collection-items-E .boxProductImage.product04 img,
          #product-collection-items-E .boxProductImage.product05 img {
            width: 53px; /* 約55% */
          }
        }
      
      /* product-collection-items-F (ボディケア) */
      #product-collection-items-F {}
      #product-collection-items-F .boxProductImage {
        width: 50%;
      }
      /* #product-collection-items-F .boxProductImage.product01 {
        width: 56.29%;
        width: calc( 170/302 * 100% );
      }
      #product-collection-items-F .boxProductImage.product02 {
        width: 43.71%;
        width: calc( 132/302 * 100% );
      } */
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-F .wrapProductImage {
            max-width: 240px;
          }
          #product-collection-items-F .boxProductImage.product01 img {
            width: 55px;
          }
          #product-collection-items-F .boxProductImage.product02 img {
            width: 36px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-F .wrapProductImage {
            max-width: 380px;
          }
          #product-collection-items-F .boxProductImage.product01 img {
            width: 110px;
          }
          #product-collection-items-F .boxProductImage.product02 img {
            width: 72px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-F .boxProductImage.product01 img {
            width: 82px; /* 約75% */
          }
          #product-collection-items-F .boxProductImage.product02 img {
            width: 54px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-F .boxProductImage.product01 img {
            width: 55px; /* 約55% */
          }
          #product-collection-items-F .boxProductImage.product02 img {
            width: 36px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-F .wrapProductImage {
            max-width: 260px;
          }
          #product-collection-items-F .boxProductImage.product01 img {
            width: 55px; /* 約55% */
          }
          #product-collection-items-F .boxProductImage.product02 img {
            width: 36px; /* 約55% */
          }
        }
      
      /* product-collection-items-G (ポーチ) */
      #product-collection-items-G {}
      #product-collection-items-G .boxProductImage.product01 {
        width: 48.76%;
        width: calc( 356/730 * 100% );
      }
      #product-collection-items-G .boxProductImage.product02 {
        width: 51.24%;
        width: calc( 374/730 * 100% );
      }
        
        /* -- >>> styles for narrow layout ----- */
        @media screen and (max-width: 767px) {
          #product-collection-items-G .wrapProductImage {
            max-width: 255px;
          }
          #product-collection-items-G .boxProductImage.product01 img {
            width: 105px;
          }
          #product-collection-items-G .boxProductImage.product02 img {
            width: 110px;
          }
        }
      
        /* -- >>> styles for medium & wide layout ----- */
        @media screen and (min-width: 768px) {
          #product-collection-items-G .wrapProductImage {
            max-width: 730px;
          }
          #product-collection-items-G .boxProductImage.product01 img {
            width: 316px;
          }
          #product-collection-items-G .boxProductImage.product02 img {
            width: 334px;
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 840px) {
          #product-collection-items-G .boxProductImage.product01 img {
            width: 237px; /* 約75% */
          }
          #product-collection-items-G .boxProductImage.product02 img {
            width: 250px; /* 約75% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-height: 670px) {
          #product-collection-items-G .boxProductImage.product01 img {
            width: 158px; /* 約55% */
          }
          #product-collection-items-G .boxProductImage.product02 img {
            width: 167px; /* 約55% */
          }
        }
        /* -- >>> styles for narrow height layout ----- */
        @media screen and (min-width: 768px) and (max-width: 1023px) {
          #product-collection-items-G .wrapProductImage {
            max-width: 460px;
          }
          #product-collection-items-G .boxProductImage.product01 img {
            width: 158px; /* 約55% */
          }
          #product-collection-items-G .boxProductImage.product02 img {
            width: 167px; /* 約55% */
          }
        }


  /*
   * product-handcream
   * ----------------------------------
   */
  #product-handcream {}
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    
    /* boxProductImage */
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        #product-handcream .wrapProductImage {
          max-width: 280px;
        }
        #product-handcream .boxProductImage img {
          width: 120px;
        }
        
        #product-handcream .boxProductImage .textColor .text {
          display: block;
        }
      }
    
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        #product-handcream .wrapProductImage {
          max-width: 780px;
        }
        #product-handcream .boxProductImage img {
          width: 330px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        #product-handcream .wrapProductImage {
          max-width: 586px;
        }
        #product-handcream .boxProductImage img {
          width: 248px; /* 約75% */
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 670px) {
        #product-handcream .wrapProductImage {
          width: 420px;
        }
        #product-handcream .boxProductImage img {
          width: 180px; /* 約55% */
        }
        
        #product-handcream .boxProductImage .textColor .text {
          display: block;
        }
      }

  /*
   * product-wrapping
   * ----------------------------------
   */
  #product-wrapping {}
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    
    /* boxProductImage */
    #product-wrapping .boxProductImage {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    #product-wrapping .boxProductImage.product01 {
      width: 46.21%;
      width: -webkit-calc(  244/528 * 100% );
      width: calc(  244/528 * 100% );
    }
    #product-wrapping .boxProductImage.product02 {
      width: 53.79%;
      width: -webkit-calc(  284/528 * 100% );
      width: calc(  284/528 * 100% );
    }
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        #product-wrapping .wrapProductImage {
          max-width: 280px;
        }
        #product-wrapping .boxProductImage.product01 img {
          width: 92px;
        }
        #product-wrapping .boxProductImage.product02 img {
          width: 112px;
        }
      }
    
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        #product-wrapping .wrapProductImage {
          max-width: 568px;
        }
        #product-wrapping .boxProductImage.product01 img {
          width: 184px;
        }
        #product-wrapping .boxProductImage.product02 img {
          width: 224px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        #product-wrapping .wrapProductImage {
          max-width: 426px;
        }
        #product-wrapping .boxProductImage.product01 img {
          width: 138px; /* 約75% */
        }
        #product-wrapping .boxProductImage.product02 img {
          width: 168px; /* 約75% */
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 670px) {
        #product-wrapping .boxProductImage.product01 img {
          width: 100px; /* 約55% */
        }
        #product-wrapping .boxProductImage.product02 img {
          width: 123px; /* 約55% */
        }
      }

  /*
   * product-fragrance
   * ----------------------------------
   */
  #product-fragrance {
    background-color: #dcdcdc;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    
    /* boxProductImage */
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        #product-fragrance .boxProductImage img {
          width: 80px;
        }
      }
    
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        #product-fragrance .boxProductImage img {
          width: 160px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        #product-fragrance .boxProductImage img {
          width: 120px; /* 約75% */
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 670px) {
        #product-fragrance .boxProductImage img {
          width: 88px; /* 約55% */
        }
      }

  /*
   * product-mirror
   * ----------------------------------
   */
  #product-mirror {
    background-color: #dcdcdc;
  }
  
    /* -- >>> styles for narrow layout ----- */
    @media screen and (max-width: 767px) {
    }
    /* -- >>> styles for medium & wide layout ----- */
    @media screen and (min-width: 768px) {
    }
    
    /* boxProductImage */
    
      /* -- >>> styles for narrow layout ----- */
      @media screen and (max-width: 767px) {
        #product-mirror .boxProductImage img {
          width: 150px;
        }
      }
    
      /* -- >>> styles for medium & wide layout ----- */
      @media screen and (min-width: 768px) {
        #product-mirror .boxProductImage img {
          width: 300px;
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 840px) {
        #product-mirror .boxProductImage img {
          width: 225px; /* 約75% */
        }
      }
      /* -- >>> styles for narrow height layout ----- */
      @media screen and (min-width: 768px) and (max-height: 670px) {
        #product-mirror .boxProductImage img {
          width: 165px; /* 約55% */
        }
      }
