.p-productSelector {
  position: relative;
  height: 610px;
}
.p-productSelector_list {
  height: 610px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-productSelector_item {
  width: 16.6666666667%;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  background-color: rgba(42, 81, 166, 0);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.p-productSelector_item:last-child {
  border-right: none;
}
.p-productSelector_item.is-active {
  background-color: rgba(42, 81, 166, 0.8);
}
.p-productSelector_item.is-active .p-productSelector_itemInner {
  bottom: 50px;
  padding-bottom: 0;
}
.p-productSelector_item.is-active .p-productSelector_itemBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: fadeIn 0.5s ease 0.3s forwards;
          animation: fadeIn 0.5s ease 0.3s forwards;
}
.p-productSelector_item .p-productSelector_itemInner {
  position: absolute;
  padding: 50px 15px;
  bottom: 0;
  -webkit-transition: bottom 1s ease;
  transition: bottom 1s ease;
}
.p-productSelector_item .p-productSelector_itemHeader {
  -webkit-transition: all 1s;
  transition: all 1s;
}
.p-productSelector_item .p-productSelector_itemHeader h3 {
  color: #fff;
  font-size: 14px;
}
.p-productSelector_item .p-productSelector_itemHeader h3 span {
  display: block;
  font-size: 24px;
  line-height: 1.1;
  font-family: "Outfit", sans-serif;
  padding-bottom: 15px;
}
.p-productSelector_item .p-productSelector_itemBody {
  display: none;
  opacity: 0;
  padding-top: 40px;
}
.p-productSelector_item .p-productSelector_itemBody p {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
  padding-bottom: 40px;
}
.p-productSelector_item .p-productSelector_itemBody a {
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-productSelector_item .p-productSelector_itemBody a i {
  color: #fff;
  font-size: 18px;
  margin-left: 10px;
}
.p-productSelector_background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.p-productSelector_bgImage {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-productSelector_bgImage.is-active {
  opacity: 1;
}
.p-productSelector_bgImage.p-productSelector_bgImage-01 {
  background: url(../img/home/product/01.jpg) no-repeat center center;
  background-size: cover;
}
.p-productSelector_bgImage.p-productSelector_bgImage-02 {
  background: url(../img/home/product/02.jpg) no-repeat center center;
  background-size: cover;
}
.p-productSelector_bgImage.p-productSelector_bgImage-03 {
  background: url(../img/home/product/03.jpg) no-repeat center center;
  background-size: cover;
}
.p-productSelector_bgImage.p-productSelector_bgImage-04 {
  background: url(../img/home/product/04.jpg) no-repeat center center;
  background-size: cover;
}
.p-productSelector_bgImage.p-productSelector_bgImage-05 {
  background: url(../img/home/product/05.jpg) no-repeat center center;
  background-size: cover;
}
.p-productSelector_bgImage.p-productSelector_bgImage-06 {
  background: url(../img/home/product/06.jpg) no-repeat center center;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .p-productSelector {
    height: 600px;
  }
  .p-productSelector_list {
    height: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-productSelector_item {
    cursor: pointer;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .p-productSelector_item:last-child {
    border-bottom: none;
  }
  .p-productSelector_item.is-active .p-productSelector_itemInner {
    bottom: 0px;
    padding-bottom: 15px;
  }
  .p-productSelector_item.is-active .p-productSelector_itemBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-animation: fadeIn 0.5s ease 0.3s forwards;
            animation: fadeIn 0.5s ease 0.3s forwards;
  }
  .p-productSelector_item.is-active .p-productSelector_itemBody p {
    display: none;
  }
  .p-productSelector_item .p-productSelector_itemInner {
    position: relative;
    width: 100%;
    padding: 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-productSelector_item .p-productSelector_itemHeader {
    white-space: nowrap;
  }
  .p-productSelector_item .p-productSelector_itemHeader h3 {
    font-size: 14px;
  }
  .p-productSelector_item .p-productSelector_itemHeader h3 span {
    font-size: 18px;
    padding-bottom: 0px;
  }
  .p-productSelector_item .p-productSelector_itemBody {
    padding-top: 0px;
    padding-left: 20px;
  }
  .p-productSelector_item .p-productSelector_itemBody p {
    font-size: 14px;
    line-height: 1.2;
    padding-bottom: 5px;
  }
  .p-productSelector_item .p-productSelector_itemBody a {
    display: block;
    text-align: right;
    font-size: 12px;
  }
  .p-productSelector_background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .p-productSelector_bgImage {
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-productSelector_bgImage.is-active {
    opacity: 1;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-01 {
    background: url(../img/home/product/01@sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-02 {
    background: url(../img/home/product/02@sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-03 {
    background: url(../img/home/product/03@sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-04 {
    background: url(../img/home/product/04@sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-05 {
    background: url(../img/home/product/05@sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .p-productSelector_bgImage.p-productSelector_bgImage-06 {
    background: url(../img/home/product/06@sp.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .l-subNav {
    top: 0;
  }
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}