/*font-family: "Anton", sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
.light02 {
	background: #0d0d14;
	padding-bottom: calc(100px*(694/1000));
}
.light02 a:hover {
	text-decoration: none;
}
.light02 .mv_ttl {
	padding-top: calc(50px*(694/1000));
}
.light02 .mv_ttl {
	text-align: center;
}
.light02 .mv_ttl img {
	width: 50%;
	text-align: center;
}
.light02 .mv_des {
	padding-top: calc(70px*(694/1000));
	margin-bottom: calc(120px*(694/1000));
}
.light02 .mv_des p {	
	line-height: 2;
	color: #FDFDE7;
	text-align: center;
	font-size: calc(25px*(694/1000));
}
/*item*/

.light02 .item_main {
	display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: calc(200px*(694/1000));
}
.light02 .item_col {
	width: 50%;
	text-align: center;
}
.light02 .item_detail {
	display: flex;
	width: calc(413px*(694/1000));
	justify-content: space-between;
	padding-top: calc(40px*(694/1000));
	margin-left: calc(50px*(694/1000));
	align-items: flex-end;
}
.light02 .item_detail p {
	font-family: "Anton", sans-serif;
	color: #FDFDE7;
}
.light02 .item_detail__ttl .txt {
	color: #FDFDE7;
	font-size: calc(50px*(694/1000));
	line-height: calc(65/50);
	text-align: left;
}
.light02 .item_price_buy {
	text-align: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
	width: calc(150px*(694/1000));
	padding-bottom: 10px;
}
.light02 .item__price p {
	font-size: calc(30px*(694/1000));
	line-height: calc(50/30);	
}
.light02 .item__buy {
	padding-top: 15px;
}
.light02 .item__buy img {
	width: calc(150px*(694/1000));
}
.light02 .item_point {
	position: relative;
	text-align: center;
	width: calc(386px*(694/1000));
	margin: 0 auto;
}
.light02 .item_point img {
	width: calc(386px*(694/1000));
	display: block;
}
.light02 .item_point .img_p1 {
	position: absolute;
	top: 0;
	left: 0;
}

.light02 .item_point .img_p1 {
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.light02 .item_point .img_p2 {
  opacity: 0;  
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
}
.light02 .item_img {
	width: calc(450px*(694/1000));
	display: inline-block;
}

.light02 .item:hover .img_p1 {
  opacity: 0;
}

.light02 .item:hover .img_p2 {
  opacity: 1; 
}
/*---------------------------------------
  アニメーション設定
---------------------------------------*/
.light02 .ani {
  visibility: hidden;
}

.light02 .ani.animated {
  visibility: visible;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.light02 .delay1 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.light02 .delay2 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.light02 .delay3 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.light02 .delay4 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.light02 .delay5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.light02 .delay6 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.light02 .delay7 {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

.light02 .delay8 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.light02 .delay9 {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s;
}

.light02 .delay10 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/*  */
.light02 .action-top {
  -webkit-animation-name: TopIn;
  animation-name: TopIn;
}

@-webkit-keyframes TopIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes TopIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.light02 .action-bottom {
  -webkit-animation-name: BottomIn;
  animation-name: BottomIn;
}

@-webkit-keyframes BottomIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes BottomIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* 左から */
.light02 .action-left {
  -webkit-animation-name: LeftIn;
  animation-name: LeftIn;
}

@-webkit-keyframes LeftIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes LeftIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 右から */
.light02 .action-right {
  -webkit-animation-name: RightIn;
  animation-name: RightIn;
}

@-webkit-keyframes RightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes RightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}