@charset "UTF-8";

/*--------------------------------
            CSS Animation
 --------------------------------*/

/*------------ cursor ------------*/

body {
  cursor: none !important;
}

#lp_contents .js-cursor {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
  background-image: url(../img/cursorImg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  width: 8rem;
  height: 8rem;
  transform: translate(1rem, -13rem);
  transform: translate(-3.5rem, -18.5rem);
}

/*------------ Fade In ------------*/

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 2s;
  transition: 1s;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .delay{
  transition-delay: 0.5s;
}


/*------------ item animation ------------*/

#lp_contents .anime{
  overflow: hidden;
}

/*opacity*/
@keyframes opa1 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes opa2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#lp_contents .anime_1{
  opacity: 1;
}

#lp_contents .anime_2{
  opacity: 0;
}

#lp_contents .active .anime_1{
  animation: opa1 1s cubic-bezier(0, 1.7, 0.93, 1.47) 0s 1 forwards;
  animation-delay: 2.5s;
}

#lp_contents .active .anime_2{
  animation: opa2 1s cubic-bezier(0, 1.7, 0.93, 1.47) 0s 1 forwards;
  animation-delay: 2.75s;
}

/*anime*/
@keyframes anime {
  0% {
    transform: rotate(-5deg);
  }

  15% {
    transform: rotate(5deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  45% {
    transform: rotate(3deg);
  }

  60% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

#lp_contents .anime_1 img{
  position: relative;
  animation: anime 1.6s cubic-bezier(0.04, 0.92, 0.7, 1.42) infinite, bounce 1.6s infinite cubic-bezier(0.51, 0.05, 0.79, 0.37);
  animation-delay: 1s;
  z-index: 4;
}

#lp_contents .anime_2 img{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
}

/*anime_a*/
@keyframes anime_a {
  0% {
    opacity: 0;
    transform: translateX(4rem) translateY(4rem) scale(0.85);
  }
  50% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  70% {
    opacity: 1;
    transform: translateX(0.5rem) translateY(1rem) scale(1);
   }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

#lp_contents .anime_2 .item_a{
  z-index: 3;
  transform: translateX(4rem) translateY(4rem) scale(0.85);
}

#lp_contents .active .anime_2 .item_a{
  animation: anime_a 1s cubic-bezier(0, 1.7, 0.93, 1.47) 0s 1 forwards;
  animation-delay: 3s;
}

/*anime_b*/
@keyframes anime_b {
  0% {
    opacity: 0;
    transform: translateX(-5rem) translateY(8rem) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  68% {
    opacity: 1;
    transform: translateX(-1rem) translateY(1rem) scale(0.98);
   }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

#lp_contents .anime_2 .item_b{
  z-index: 2;
  transform: translateX(-5rem) translateY(8rem) scale(0.7);
}

#lp_contents .active .anime_2 .item_b{
  animation: anime_b 1.25s cubic-bezier(0, 1.7, 0.93, 1.47) 0.08s 1 forwards;
  animation-delay: 3s;
}

@keyframes anime_c {
  0% {
    opacity: 0;
    transform: translateY(8rem) scale(0.7);
  }
  50% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
  68% {
    opacity: 1;
    transform: translateY(1rem) scale(1);
   }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

#lp_contents .anime_2 .item_c{
  z-index: 1;
  transform: translateY(8rem) scale(0.7);
}

#lp_contents .active .anime_2 .item_c{
  animation: anime_c 1s cubic-bezier(0, 1.7, 0.93, 1.47) 0.09s 1 forwards;
  animation-delay: 3s;
}


/*------------ modal ------------*/

/* ----- モーダル ----- */

.hidden {
  display: none;
}

#lp_contents .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
/*  background-color: rgba(0, 0, 0, .8);*/
  overflow: auto;
}

#lp_contents .modal:before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  opacity: 0.8;
}

#lp_contents .modal-footer {
  position: relative;
  width: fit-content;
  margin: 3.7rem auto 0;
}

#lp_contents .modal-close {
  font-family: var(--font-calibri);
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
/*  cursor: pointer;*/
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap:1rem;
  width: fit-content;
  margin: auto;
}

#lp_contents .modal-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 80rem;
  margin: auto;
  padding: 0;
}

#lp_contents .modal-content a:hover {
  opacity: 1;
}

#lp_contents .modal-navigation {
  position: fixed;
  top: 50%;
  width: 100%;
}

#lp_contents .modal-navigation .modal-next,
#lp_contents .modal-navigation .modal-prev {
  position: absolute;
  top: 0;
  width: 1.5rem;
  height: 3rem;
  font-size: 0;
}

#lp_contents .modal-next {
  right: -9.5rem;
}

#lp_contents .modal-prev {
  left: -9.5rem;
}

#lp_contents .modal-navigation .modal-next:before,
#lp_contents .modal-navigation .modal-prev:before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#lp_contents .modal-navigation .modal-next:before{
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  left: -0.5rem;
}

#lp_contents .modal-navigation .modal-prev:before{
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  right: -0.5rem;
}

/* ----- 絵本 ----- */

#lp_contents .modal .item_name{
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-white);
}

#lp_contents .modal .item_name big{
  display: block;
  font-family: var(--font-calibri);
  font-size: 3rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

#lp_contents .book_area {
  width: 40rem;
  height: 100%;
  margin-left: auto;
  position: relative;
  perspective: 1000px;
  transition: 1s ease-in .5s;
/*  box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.5);*/
}

#lp_contents .modal.active .book_area{
/*  box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.5);*/
}

/* -- 絵本カバー表 -- */

#lp_contents .book_area_left {
  position: absolute;
  top: 0;
  left: 0;
  width: 40rem;
  height: 40.8rem;
  transform: rotate(0deg);
  transform-style: preserve-3d;
  transform-origin: left;
  transition: all 1s ease-in .5s;
  transition: all 1s linear;
  z-index: 1002;
}

#lp_contents .modal.active .book_area_left {
  transform: rotateY(-180deg);
}

#lp_contents .book_cover{
  width: 40rem;
  height: 40.8rem;
  background-color: var(--color-white);
}

/* -- 絵本カバー裏の内容箇所 -- */

#lp_contents .book_area__cont {
  position: absolute !important;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  width: 100%;
  height: 40.8rem ;
  transform: rotateY(-180deg) translateX(0) translateY(0)
    translateZ(0.1px);
}

#lp_contents .book_area__cont .text_blk{
  padding: 3.2rem 4rem 4rem;
  background-color: var(--color-white);
}

#lp_contents .book_area__cont .text_blk__bottom{
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 32rem;
}

#lp_contents .book_area__cont .cv_text{
  margin-top: 2rem !important;
}

#lp_contents .book_area__cont .price{
  font-size: 2rem !important;
}

#lp_contents .book_area__cont .price big{
  font-size: 2.4rem;
}

#lp_contents .book_area__cont .price small{
  font-size: 1.6rem;
}

#lp_contents .book_area__cont .link_text{
  font-size: 2rem;
}

#book1 .book_cover,
#book7 .book_cover{
  background-color: var(--color-orange);
}

#book5 .book_cover{
  background-color: var(--color-blue);
}

#book2 .detail_blk .text_blk,
#book2 .book_cover,
#book6 .detail_blk .text_blk,
#book6 .book_cover{
  background-color: var(--color-yellow);
}

#lp_contents .modal .note{
  position: absolute;
  display: block;
  width: 100%;
  text-align: right;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 1rem;
}

/*book_area_right*/

#lp_contents .book_area_right{
  background-color: var(--color-blue) !important;
}

#lp_contents .book_area_right img {
  height: 40.8rem;
}

#book7 .book_area_right a{
  width: 20rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  right: 0;
  top: 8rem;
  margin: auto;
  z-index: 2;
}


/*------------ slider ------------*/

#lp_contents .slick-dotted.slick-slider{
  margin-bottom: 0;
}

#lp_contents .slick-dots{
  bottom: 7.5rem;
  line-height: 0;
}

#lp_contents .slick-dots li{
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.75rem;
  border-radius: 100%;
}

#lp_contents .slick-dots li.slick-active{
  border: 1px solid var(--color-white);
}

#lp_contents .slick-dots li button{
  display: none;
  width: 100%;
  height: 100%;
  padding: 0;
}

#lp_contents .slick-dots li button:before{
  font-size: 0;
  line-height: initial;
  width: 100%;
  height: 100%;
}

#lp_contents .slick-dots li:nth-child(1){
  background-color: #FFA798;
}

#lp_contents .slick-dots li:nth-child(2){
  background-color: #D86A44;
}

#lp_contents .slick-dots li:nth-child(3){
  background-color: #B03650;
}

#lp_contents .slick-dots li:nth-child(4){
  background-color: #FF8A59;
}

#lp_contents .slick-dots li:nth-child(5){
  background-color: #C24C51;
}

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  width: 1rem;
  height: 1rem;
  left: 0;
  right: 0;
  top: auto;
  bottom: 7.7rem;
  margin: auto;
  z-index: 1001;
}

#lp_contents .slick-prev{
  transform: translateX(-10rem);
}

#lp_contents .slick-next{
  transform: translateX(10rem);
}

#lp_contents .slick-prev:before,
#lp_contents .slick-next:before{
  content: '';
  display: block;
  font-size: 0;
  background: var(--color-white);
  height: calc(tan(60deg) * 1rem / 2);
  width: 1rem;
  opacity: 1;
}

#lp_contents .slick-prev:before{
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

#lp_contents .slick-next:before{
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* -- セラムオイルリップスティックスライド -- */

#lp_contents .thumb{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4rem;
  margin: auto;
  text-align: center;
  font-family: var(--font-calibri);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-white);
}


/*------------ SmartPhone ------------*/

@media (max-width: 767px) {

  /*------------ modal ------------*/

  /* ----- モーダル ----- */

  #lp_contents .modal-footer {
    margin-top: 7rem;
  }

  #lp_contents .modal-close {
    font-size: 3.6rem;
    gap:2rem;
    pointer-events: auto;
  }

  #lp_contents .modal-content {
    top: 8rem;
    transform: translateY(0);
    width: 100%;
    padding-bottom: 8rem;
    pointer-events: none;
  }

  #lp_contents .modal-navigation {
    position: absolute;
    top: auto;
    bottom: 10rem;
  }

  #lp_contents .modal-navigation .modal-next,
  #lp_contents .modal-navigation .modal-prev {
    width: 1.6rem;
    height: 3.2rem;
    pointer-events: auto;
  }

  #lp_contents .modal-next {
    right: 9.5rem;
  }

  #lp_contents .modal-prev {
    left: 9.5rem;
  }

  #lp_contents .modal-navigation .modal-next:before,
  #lp_contents .modal-navigation .modal-prev:before {
    width: 1.6rem;
    height: 1.6rem;
  }

  #lp_contents .modal-navigation .modal-next:before{
    left: -0.5rem;
  }

  #lp_contents .modal-navigation .modal-prev:before{
    right: -0.5rem;
  }

  #lp_contents .book_area_right .modal-navigation{
    top: 0;
    bottom: auto;
  }

  #lp_contents .book_area_right .modal-navigation .modal-next{
    width: 5rem;
    height: 66.3rem;
    right: -5rem;
    left: auto;
    margin: 0;
  }

  #lp_contents .book_area_right .modal-navigation .modal-next:before{
    content: none;
  }

  /* ----- 絵本 ----- */

  #lp_contents .modal .item_name{
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  #lp_contents .modal .item_name big{
    font-size: 4rem;
  }

  #lp_contents .book_area {
    width: 100%;
    margin-top: 0;
  }

  /* -- 絵本カバー表 -- */

  #lp_contents .book_area_left {
    position: unset;
    width: 65rem;
    height: 100%;
    margin: auto;
  }

  #lp_contents .book_cover{
    width: 65rem;
    height: 66.4rem;
    position: absolute;
    top: -66.4rem;
    left: 0;
  }

  /* -- 絵本カバー裏の内容箇所 -- */

  #lp_contents .book_area__cont {
    position: static !important;
    width: 59rem;
    height: 100%;
    transform: initial;
    margin: 3.4rem auto 0;
  }

  #lp_contents .book_area__cont .text_blk{
    padding: 0;
    background-color: initial !important;
    color: var(--color-white);
  }

  #lp_contents .book_area__cont .text_blk__bottom{
    position: static;
    max-width: 100%;
    margin-top: 5rem;
  }

  #lp_contents .book_area__cont .cv_text{
    margin-top: 3.6rem !important;
  }

  #lp_contents .book_area__cont .price{
    font-size: 2.8rem !important;
  }

  #lp_contents .book_area__cont .price big{
    font-size: 3.8rem;
  }

  #lp_contents .book_area__cont .price small{
    font-size: 2.2rem;
  }

  #lp_contents .book_area__cont .link_text{
    font-size: 2.8rem !important;
    pointer-events: auto;
  }

  #lp_contents .modal .note{
    position: static;
    text-align: left;
    font-size: 1.5rem;
    width: 59rem;
    margin: 2rem auto 0;
  }

  /*book_area_right*/

  #lp_contents .book_area_right{
    width: 65rem !important;
    margin: auto;
  }

  #lp_contents .book_area_right img {
    width: 65rem;
    height: 66.3rem;
  }

  #book7 .book_area_right a{
    width: 36rem;
    top: 12rem;
  }


  /*------------ slider ------------*/

  #lp_contents .slick-dots{
    bottom: 12rem;
  }

  #lp_contents .slick-dots li{
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 1.2rem;
  }

  #lp_contents .slick-prev, 
  #lp_contents .slick-next{
    width: 1.6rem;
    height: 1.6rem;
    bottom: 12.4rem;
  }

  #lp_contents .slick-prev{
    transform: translateX(-16.5rem);
  }

  #lp_contents .slick-next{
    transform: translateX(16.5rem);
  }

  #lp_contents .slick-prev:before,
  #lp_contents .slick-next:before{
    height: calc(tan(60deg) * 1.6rem / 2);
    width: 1.6rem;
  }

  /* -- セラムオイルリップスティックスライド -- */
  #lp_contents .thumb{
    bottom: 6rem;
    font-size: 2.275rem;
  }
}