@charset "UTF-8";

/*//////////////////////////////////////////////////

Celvoke 2026 LIMITED EDITION STARWARS

//////////////////////////////////////////////////*/


/* ========================================================
                      * Layout style *
========================================================= */

html {
  font-size: 62.5%;
  -ms-overflow-style: none;
}

body {
  -webkit-tap-highlight-color: transparent;
}

main {
  max-width: none;
}

footer {
  position: relative;
  z-index: 10;
  margin-top: 0 !important;
}

#Wrap {
  width: 100% !important;
}

#Contents {
  margin-bottom: 0;
  padding-top: 0 !important;
}

.lp_contents a {
  text-decoration: none;
}

.lp_contents p, 
.lp_contents ul, 
.lp_contents ol, 
.lp_contents dl {
  margin: 0;
}

.topic-path {
  margin-right: 0;
  margin-left: 0;
}

footer {
  background: #FAFAFA !important;
}

/* ============================================================================
      Roots
============================================================================ */
:root {
  --rate-sp: 50.4rem / 750;
  --color-text:#000000;
  --color-white:#ffffff;
}

/* ============================================================================
      LP contents
============================================================================ */
.lp_contents {
  position: relative;
  z-index: 0;
  max-width: 100vw;
  z-index: 1;
  margin: 0 auto;
  font-weight: 400;
  font-style: normal;
  font-family: "articulat-cf","Noto Sans JP", sans-serif;
  letter-spacing: 0.07em;
  font-feature-settings: "palt";
  color: var(--color-text);
  overflow: clip;
  background-color: var(--color-white);
}

@media screen and  (max-width:768px) {
.lp_contents {
  overflow: clip;
}
}

.lp_contents p, 
.lp_contents h2, 
.lp_contents h3, 
.lp_contents h4, 
.lp_contents h5,
.lp_contents li, 
.lp_contents span {
  font-family: "articulat-cf","Noto Sans JP", sans-serif;
  color: var(--color-text);
  letter-spacing: 0.07em;
  text-align: center;
  font-weight: 400;
}

#FooterWrap {
  position: relative;
  z-index: 2;
}

@media screen and  (max-width:768px) {
  #FooterWrap {
    z-index: 0;
  }
}

.lp_contents *,
.lp_contents *:before,
.lp_contents *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.lp_contents ul,
.lp_contents li {
  list-style: none;
}

.lp_contents a:hover {
  opacity: 0.6;
}

@media screen and  (max-width:768px) {
.lp_contents a:hover {
  opacity: 1;
}
}

.lp_contents img {
  width: 100%;
}

.lp_contents figure {
  display: flex;
}

.lp_contents sup {
  font-size: 60%;
  vertical-align: 0.4rem;
}

.lp_contents a,
.lp_contents a:before,
.lp_contents a:after,
.lp_contents a img {
  transition: opacity .3s ease-in-out,
  color .3s ease-in-out,
  background-color .3s ease-in-out,
  background-image .3s ease-in-out,
  border-color .3s ease-in-out,
  text-shadow .3s ease-in-out,
  text-weight .3s ease-in-out;
}

.lp_contents h1 {
  padding: 0;
}


/* ============================================================================
      Button Setting
============================================================================ */
.lp_contents .btn {
  width: fit-content;
  display: block;
  background: transparent;
  border: none;
  max-width: 100%;
  margin: 0 auto;
}

.lp_contents .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  backface-visibility: hidden;
}

.lp_contents .btn a:hover {
  opacity: 0.6;
}

/* ============================================================================
      Fixed Btn (右側固定ボタン)
============================================================================ */
.lp_contents .btn_fixed_group {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: calc(10 * (var(--rate-sp)));
  top: 50%;
  right: 0;
  z-index: 15;
  visibility: hidden;
  transform: translateX(40px);
  transition: 
    transform 0.6s cubic-bezier(0, 0, 0.2, 1),
    visibility 0.6s;
}

.lp_contents .btn_fixed_group.active {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.lp_contents .btn_fixed {
  border-radius: calc(40 * (var(--rate-sp))) 0 0 calc(40 * (var(--rate-sp)));
}

.lp_contents .btn_fixed a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10 * (var(--rate-sp)));
  padding: calc(30 * (var(--rate-sp))) calc(20 * (var(--rate-sp)));
  flex-direction: column;
  width: calc(90 * (var(--rate-sp)));
  height: calc(320 * (var(--rate-sp)));
  background: url(../img/fixed_btn.png) no-repeat;
  background-size: contain;
}

.lp_contents .btn_fixed a .text {
  display: block;
  font-size: calc(34 * (var(--rate-sp)));
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--color-white);
}

.lp_contents .btn_fixed a .plus {
  position: relative;
  width: calc(32 * (var(--rate-sp)));
  height: calc(32 * (var(--rate-sp)));
  color: transparent;
}

.lp_contents .btn_fixed a .plus:before,
.lp_contents .btn_fixed a .plus:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: calc(32 * (var(--rate-sp)));
  height: calc(2 * (var(--rate-sp)));;
  z-index: 0;
  margin: auto;
  border-bottom: calc(3 * (var(--rate-sp))) solid;
  background-color: var(--color-white);
}

.lp_contents .btn_fixed a .plus:before {
  transform: rotate(90deg);
}

@media screen and  (min-width:768px) {
  .lp_contents .btn_fixed_group {
    gap: 0;
    visibility: visible;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(0) translateY(-50%);
  }

  .lp_contents .btn_fixed {
    border-radius: 2rem;
  }
  
  .lp_contents .btn_fixed a {
    gap: 1rem;
    padding: 12.5rem 2rem;
    flex-direction: column;
    width: 4.6rem;
    height: 38rem;
    background: url(../img/fixed_btn_pc.png) no-repeat;
    background-size: contain;
  }
  
  .lp_contents .btn_fixed a .text {
    font-size: 1.6rem;
  }
  
  .lp_contents .btn_fixed a .plus {
    position: relative;
    width: 1.4rem;
    height: 1.4rem;
    color: transparent;
  }
  
  .lp_contents .btn_fixed a .plus:before,
  .lp_contents .btn_fixed a .plus:after {
    width: 1.4rem;
    height: 0.1rem;
    border-bottom: 1px;
  }
}


/* ============================================================================
      BG
============================================================================ */

.lp_contents .lead_text_blk {
  position: relative;
  z-index: 5;
}

.lp_contents .lead_text_blk {
  background-image: url(../img/bg02.jpg); 
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.lp_contents .lead_text_blk::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/bg02-2.jpg); 
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0; 
  transition: opacity 0.4s ease-out; 
}

.lp_contents .lead_text_blk:has(.accordion.open)::after {
  opacity: 1; 
  transition: opacity 0.3s ease-in 0s; 
}

.lp_contents .sec01 {
  background: url(../img/bg03.jpg?260618) center center / cover no-repeat;
}
.lp_contents .sec02 {
  background: url(../img/bg04.jpg) center center / cover no-repeat;
}
.lp_contents .sec03 {
  background: url(../img/bg05.jpg) center center / cover no-repeat;
}
.lp_contents .sec04 {
  background: url(../img/bg06.jpg) center center / cover no-repeat;
}

.lp_contents .sec_novelty {
  background: url(../img/bg07.jpg) center center / cover no-repeat;
}

.lp_contents .sec_releaseday{
  background: url(../img/bg08.jpg) center center / cover no-repeat;
}

/* ============================================================================
      SECTION
============================================================================ */
.lp_contents .sec {
  position: relative;
  z-index: 10;
  height: auto;
  padding-bottom: calc(180 * (var(--rate-sp)));
}

.lp_contents .sec_releaseday {
  padding: calc(180 * (var(--rate-sp))) 0;
}

.lp_contents .sec_novelty {
  padding: calc(180 * (var(--rate-sp))) 0;
}
/* ============================================================================
      ACCORDION
============================================================================ */
.lp_contents .accordion {
  position: relative;
  z-index: 2;
}

.lp_contents .accordion_wrap {
  display: grid;
  position: relative;
  grid-template-rows: 0fr;
  justify-content: center;
  transition: grid-template-rows .8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.lp_contents .open > .accordion_wrap {
  grid-template-rows: 1fr;
}

.lp_contents .accordion_inner {
  position: relative;
  transition: opacity .8s;
  overflow: hidden; 
}


.lp_contents .accordion_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * (var(--rate-sp)));
  margin: calc(0 * (var(--rate-sp))) auto 0;
  width: fit-content;
  height: calc(35 * (var(--rate-sp)));;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: calc(0 * (var(--rate-sp)));
  z-index: 5;
}

.lp_contents .accordion.open .accordion_btn {
  bottom: calc(25 * (var(--rate-sp)));
}

.lp_contents .accordion_btn .accordion_btn_text {
  display: block;
  width: fit-content;
  height: 100%;
  margin: 0 auto;
  font-size: calc(34 * (var(--rate-sp)));
  color: var(--color-text);
}

.lp_contents .accordion_btn .accordion_btn_icon {
  position: relative;
  display: block;
  width: calc(33 * (var(--rate-sp)));
  height: calc(19 * (var(--rate-sp)));
}

.lp_contents .accordion_btn .accordion_btn_icon:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  background: url(../img/arrow05.svg) no-repeat;
  background-size: contain;
  content: "";
  z-index: 0;
}

.lp_contents .accordion.open .accordion_btn_icon:before {
  transform: rotate(180deg);
}

/* Lead accordion */
.lp_contents .lead .accordion_inner {
  min-height: calc(145 * (var(--rate-sp)));
  margin-bottom: calc(72 * (var(--rate-sp)));
}

.lp_contents .lead .accordion_btn_text {
  display: inline-block;
  width: calc(180 * (var(--rate-sp)));
  height: calc(30 * (var(--rate-sp)));
}

.lp_contents .lead .accordion.open .accordion_btn_text {
  width: calc(90 * (var(--rate-sp)));
}

.lp_contents .lead .accordion_btn .accordion_btn_icon:before {
  content: "";
  top: calc(10 * (var(--rate-sp)));
  background: url(../img/arrow02.svg) no-repeat;
  background-size: contain;
  content: "";
  z-index: 0;
}

.lp_contents .lead .accordion.open .accordion_btn {
  bottom: calc(50 * (var(--rate-sp)));
}

/* ============================================================================
      SECTION：MV
============================================================================ */
.sec_mv {
  position: sticky !important;
  top: calc(120 * (var(--rate-sp))); 
  padding: calc(165 * (var(--rate-sp))) 0 calc(300 * (var(--rate-sp)));
  background-image: url(../img/bg01.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .sec_mv {
    top: 0;
  }
}

.mv_inner {
  position: relative;
}

.mv_slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.mv_slider .slick-track {
  will-change: transform; 
}

.mv_slider img {
  display: inline-block;
  height: auto;
  width: calc(1890 * (var(--rate-sp)));
  mix-blend-mode: multiply;
}

.lp_contents .mv_slider.slider02 {
  transform: scaleX(-1);
}

.lp_contents .mv_slider.slider02 img {
  transform: scaleX(-1);
}

.lp_contents .mv_slider.slider03 .slick-track {
  margin-left: calc(-1890 / 2 * (var(--rate-sp)));
}

.lp_contents .scroll_down {
  position: sticky;
  top: 80svh;
  width: calc(12.7 * (var(--rate-sp)));
  height: calc(170 * (var(--rate-sp)));
  margin-inline: auto;
  left: auto;
  z-index: 1;
  animation: arrowmove 2s ease-in-out infinite;
  margin-top: calc(200 * (var(--rate-sp)));
}


.lp_contents .scroll_down span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(24* (var(--rate-sp)));
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(to bottom,
      rgba(136, 136, 136, 1) 0%,
      rgba(214, 215, 215, 1) 38.7778%,
      rgba(136, 136, 136, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-left: calc(-20 * (var(--rate-sp)));
}

.lp_contents .scroll_down:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: calc(13 * (var(--rate-sp)));
  height: calc(198 * (var(--rate-sp)));
  background: url(../img/scroll.png) no-repeat center top / auto 100%;
  z-index: 1;

  margin-left: calc(4 * (var(--rate-sp)));
}

@keyframes arrowmove {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(10px);
  }

  60% {
    transform: translateY(0);
  }

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

/* ============================================================================
      LEAD
============================================================================ */

.lp_contents .lead {
  padding: 0;
  position: relative;
  z-index: 10;
}

.lp_contents .lead_visual_blk {
  position: relative;
  display: flex;
}

.lp_contents .lead_logo { 
  position: absolute;
  bottom: calc(130 * (var(--rate-sp)));
  left: 50%;
  transform: translateX(-50%);
  width: calc(450 * (var(--rate-sp)));
  margin-left: calc(15 * (var(--rate-sp)));
}

.lp_contents .lead_copyright { 
  position: absolute;
  bottom: calc(30 * (var(--rate-sp)));
  right: calc(-35 * (var(--rate-sp)));
  transform: translateX(-50%);
  width: calc(130 * (var(--rate-sp)));
}

.lp_contents .lead_text_blk { 
  padding: calc(122 * (var(--rate-sp))) 0;
}

.lp_contents .lead_title {
  width: calc(431 * (var(--rate-sp)));
  margin: 0 auto;
  display: block;
}

.lp_contents .lead_decor {
  width: calc(2 * (var(--rate-sp)));
  margin: calc(41 * (var(--rate-sp))) auto;
  display: block;
}

.lp_contents .lead .accordion_inner .lead_text {
  display: block;
}

.lp_contents .lead .accordion_inner .lead_text:nth-of-type(1) {
  width: calc(595 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .lead .accordion_inner .lead_text:nth-of-type(2) {
  width: calc(640 * (var(--rate-sp)));
  margin: calc(71 * (var(--rate-sp))) auto;
}

.lp_contents .lead .accordion_inner:before {
  content: none;
}

/* ============================================================================
      NAVIGATION
============================================================================ */
.lp_contents .navigation_list {
  margin-top: calc(150 * (var(--rate-sp)));
}

.lp_contents .navigation_list ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lp_contents .navigation_list li {
  position: relative;
  width: calc(187.5 * (var(--rate-sp)));
}

.lp_contents .navigation_list li:nth-of-type(2) {
  margin-top: calc(40*(var(--rate-sp)));
}

.lp_contents .navigation_list li:nth-of-type(3) {
  margin-top: calc(-32*(var(--rate-sp)));
}

.lp_contents .navigation_list li:nth-of-type(4) {
  margin-top: calc(-32*(var(--rate-sp)));
}

.lp_contents .navigation_list li img {
  width:calc(187.5*(var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .navigation_list a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(0*(var(--rate-sp)));
}

.lp_contents .navigation_name_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: calc(15*(var(--rate-sp)));
  gap: calc(30 * (var(--rate-sp)));
}

.lp_contents .navigation_name {
  text-transform: uppercase;
  font-size: calc(24*(var(--rate-sp)));
  line-height: calc(26.4/24);
  text-align: center;
}

.lp_contents .navigation_arrow {
  margin-top: calc(-3 * (var(--rate-sp)));
  width: calc(29*(var(--rate-sp)));
  height: calc(15*(var(--rate-sp)));
  background: url(../img/arrow03.svg) no-repeat;
  background-size: 100%;
  content: "";
}

/* SP Fixed Nav */

.lp_contents .navigation_list.nav02 {
  position: fixed;
  bottom: 0;
  display: block;
  width: 100%;
  transform: translateY(100%);
  transition: all 0.6s 0.3s;
  z-index: 100;
  padding: 0;
  background-color: var(--color-white);
}

.lp_contents .navigation_list.nav02.active {
  transition: all 0.6s 0.3s;
  visibility: visible;
  transform: translateY(0);
  z-index: 100;
  background-color: var(--color-white);
}

.lp_contents .navigation_list.nav02 ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: calc(0 * (var(--rate-sp)));
  row-gap: calc(0 * (var(--rate-sp)));
  border-top: var(--color-text) solid calc(2 * (var(--rate-sp)));

}

.lp_contents .navigation_list.nav02 li {
  position: relative;
  width: 50%;
  padding: calc(11 * (var(--rate-sp))) calc(0 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:before,
.lp_contents .navigation_list.nav02 li:after {
  position: absolute;
  display: block;
  background-color: var(--color-text);
  content: "";
}

.lp_contents .navigation_list.nav02 li:before {
  width: 100%;
  height: calc(2 * (var(--rate-sp)));
  bottom: 0;
  left: 0;
  right: 0;
}

.lp_contents .navigation_list.nav02 li:after {
  width: calc(2 * (var(--rate-sp)));
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
}

.lp_contents .navigation_list.nav02 li:nth-of-type(5):before,
.lp_contents .navigation_list.nav02 li:nth-of-type(6):before{
  width: 0;
}

.lp_contents .navigation_list.nav02 li:nth-of-type(2):after,
.lp_contents .navigation_list.nav02 li:nth-of-type(4):after,
.lp_contents .navigation_list.nav02 li:nth-of-type(6):after {
  width: 0;
}

.lp_contents .navigation_list.nav02 li:nth-of-type(5) {
  width: 50%;
}

.lp_contents .navigation_list.nav02 li:last-of-type {
  width: 50%;
}

.lp_contents .navigation_list.nav02 li:last-of-type a {
  margin-top: calc(0 * (var(--rate-sp)));
  margin-left: calc(2 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li img {
  width: calc(110*(var(--rate-sp)));
  margin: 0;
}

.lp_contents .navigation_list.nav02 a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(0 * (var(--rate-sp)));
  width: 100%;
  margin-left: calc(9 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 .navigation_name_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: calc(0*(var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:first-of-type .navigation_name_group {
  margin-left: calc(39 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:nth-of-type(2) .navigation_name_group {
  margin-left: calc(9 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:nth-of-type(3) .navigation_name_group {
  margin-left: calc(33 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:nth-of-type(4) .navigation_name_group {
  margin-left: calc(24 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:nth-of-type(5) .navigation_name_group {
  margin-left: calc(41 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 li:nth-of-type(6) .navigation_name_group {
  margin-left: calc(79 * (var(--rate-sp)));
  margin-top: calc(39 * (var(--rate-sp)));
  flex-direction: row;
  gap: calc(15 * (var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 .name_lower {
  gap: calc(14*(var(--rate-sp)));
  margin-left: calc(0*(var(--rate-sp)));
}

.lp_contents .navigation_list.nav02 .navigation_arrow {
  display: block;
  margin-top: calc(-3 * (var(--rate-sp)));
  width: calc(15*(var(--rate-sp)));
  height: calc(15*(var(--rate-sp)));
  background: url(../img/icon_nav_arrow.svg) no-repeat;
  background-size: 100%;
  content: "";
}

/* ============================================================================
      SECTION：COMMON
============================================================================ */
.lp_contents .visual_slider img {
  width: calc(750 * (var(--rate-sp)));  
}

/* visual_slider の dots */
.lp_contents .visual_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: calc(0 * (var(--rate-sp)));
  bottom: calc(20 * (var(--rate-sp)));
  width: fit-content;
  right: calc(15 * (var(--rate-sp)));
}

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

.lp_contents .visual_slider .slick-dots li {
  width: calc(12 * (var(--rate-sp)));
  height: calc(12 * (var(--rate-sp)));
  position: relative;
  /* overflow: hidden; */
  margin: 0 calc(6 * (var(--rate-sp)));
}

.lp_contents .visual_slider .slick-dots li button {
  width: calc(12 * (var(--rate-sp)));
  height: calc(12 * (var(--rate-sp)));
  padding: 0;
  border-radius: 50%;
}

.lp_contents .visual_slider .slick-dots li button:before {
  display: block;
  font-size: 7px;
  width: calc(12 * (var(--rate-sp)));
  height: calc(12 * (var(--rate-sp)));
  border-radius: 50%;
  color: var(--color-white);
  line-height: 1;
  opacity: 0.3;
}

.lp_contents .visual_slider .slick-dots li.slick-active button:before {
  color: var(--color-white);
  opacity: 1;
}

.lp_contents .item_blk {
  margin-top: calc(110 * (var(--rate-sp)));
}

.lp_contents .sec_title {
  width: calc(750 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .item_img_blk {
  position: relative;
}

.lp_contents .item_slider {
  position: relative;
  margin-top: calc(-70 * (var(--rate-sp)));
}

.lp_contents .item_slide {
  width: calc(527.027 * (var(--rate-sp))); 
}

.lp_contents .item_slider .slick-prev, 
.lp_contents .item_slider .slick-next {
  position: absolute;
  top: calc(395 * (var(--rate-sp))); 
  z-index: 9999;
  width: calc(19 * (var(--rate-sp))); 
  height: calc(650 * (var(--rate-sp))); 
  z-index: 5;
}

.lp_contents .item_slider .slick-prev {
  left: calc(50 * (var(--rate-sp))); 
}

.lp_contents .item_slider .slick-next {
  right:calc(50 * (var(--rate-sp))); 
}

.lp_contents .item_slider .slick-prev:before, 
.lp_contents .item_slider .slick-next:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: calc(19 * (var(--rate-sp))); 
  height: calc(40 * (var(--rate-sp))); 
  background-size: 100%;
  content: "";
}

.lp_contents .item_slider .slick-prev:before {
  background: url(../img/prev.svg) no-repeat;
}

.lp_contents .item_slider .slick-next:before {
  background: url(../img/next.svg) no-repeat;
}

.lp_contents .item_thumbnail {
  cursor: pointer;
  margin-top: calc(60 * (var(--rate-sp)));
}

.lp_contents .item_thumbnail .slick-track {
  width: calc(750 * (var(--rate-sp))) !important;
  transform: unset !important;
  display: flex;
  justify-content: center;
  gap: calc(20 * (var(--rate-sp)));
}

.lp_contents .item_thumbnail li {
  width: calc(148 * (var(--rate-sp))) !important;
}

.lp_contents .item_thumbnail .slick-current{
  outline: calc(2 * (var(--rate-sp))) solid #dddddd;
  border: none;
  outline-offset: calc(-4 * (var(--rate-sp)));
}

.lp_contents .item_slide a {
display: block;
height: calc(550 * (var(--rate-sp)));
}


.lp_contents .item_img {
  width: calc(527.027 * (var(--rate-sp)));
  margin: calc(130 * (var(--rate-sp))) auto 0;
}

.lp_contents .item_name {
  margin-top: calc(50 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: calc(49 / 28);
}

.lp_contents .item_credit {
  display: flex;
  margin-top: calc(21 * (var(--rate-sp)));
  margin-left: calc(0 * (var(--rate-sp)));
  justify-content: center;
}

.lp_contents .item_label {
  display: block;
  padding: calc(17 * (var(--rate-sp))) calc(15 * (var(--rate-sp))) calc(5 * (var(--rate-sp)));
  margin-right: calc(20 * (var(--rate-sp)));
  height: calc(38 * (var(--rate-sp)));
  font-size: calc(24 * (var(--rate-sp)));
  line-height: 0;
  color: var(--color-white);
  background: url(../img/label.png);
  background-size: cover;
}

.lp_contents .item_price {
  margin-top: calc(-3 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
}

.lp_contents .btn_price a {
  display: flex;
  justify-content: space-between;
  width: calc(330 * (var(--rate-sp)));
  padding: 0 0 calc(15 * (var(--rate-sp))) 0;
  font-size: calc(34 * (var(--rate-sp)));
  border-bottom: var(--color-text) solid calc(2 * (var(--rate-sp)));
  text-transform: uppercase;
}

.lp_contents .btn_price a .icon {
  width: calc(36 * (var(--rate-sp)));
}

.lp_contents .btn_price.btn_buy {
  margin: calc(75 * (var(--rate-sp))) auto 0;
}

.lp_contents .btn_price.btn_modal {
  margin: calc(37 * (var(--rate-sp))) auto 0;
}

.lp_contents .sec_eyes .accordion {
  margin-top: calc(120 * (var(--rate-sp)));
}

.lp_contents .sec_eyes .color_img {
  display: block;
  width: calc(410 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .sec_eyes .color_img img {
  width: calc(410 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .btn_more a {
  position: relative;
  margin-top: calc(65 * (var(--rate-sp)));
  font-size: calc(30 * (var(--rate-sp)));
}

.lp_contents .btn_more a span {
  margin-left: calc(-40 * (var(--rate-sp)));
}

.lp_contents .btn_more a:before {
  position: absolute;
  top: 50%;
  margin-top: calc(3 * (var(--rate-sp)));
  transform: translateY(-50%) rotate(274deg);
  right: calc(-46 * (var(--rate-sp)));
  display: block;
  width: calc(25 * (var(--rate-sp)));
  height: calc(25 * (var(--rate-sp)));
  background: url(../img/icon_nav_arrow.svg) no-repeat;
  background-size: contain;
  content: "";
}

.lp_contents .modal_plus {
  position: absolute;
  display: block;
  bottom: calc(0 * (var(--rate-sp)));
  right: calc(90 * (var(--rate-sp)));
  width: calc(40 * (var(--rate-sp)));
  height: calc(40 * (var(--rate-sp)));
  background: url(../img/icon_zoomin.svg) no-repeat;
  background-size: contain;
  content: "";
}

.lp_contents .item_var_list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(50 * (var(--rate-sp)));
  justify-content: center;
  margin-top: calc(60 * (var(--rate-sp)));
}


.lp_contents .item_var_list li {
  position: relative;
}

.lp_contents .item_var_img {
  width: calc(300 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .item_var_name {
  margin-top: calc(7 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: calc(49/28);
}
/* ============================================================================
      SECTION01：Eyes
============================================================================ */
.lp_contents .sec01 .accordion {
  margin-top:calc(120 * (var(--rate-sp)));
}

.lp_contents .sec01 .accordion_inner {
  min-height: calc(720 * (var(--rate-sp)));
  margin-bottom: calc(67 * (var(--rate-sp)));
}

.lp_contents .sec01 .accordion.open .accordion_inner {
  margin-bottom: calc(0 * (var(--rate-sp)));
}

.lp_contents .sec01 .accordion_inner::after, 
.lp_contents .sec01 .accordion_inner::before 
{
  position: absolute;
  bottom: calc(-1 * 60rem / 750);
  height: calc(100 * 60rem / 750);
  width: 50%;
  z-index: 3;
  content: "";
}

.lp_contents .sec01 .accordion_inner::before {
  right: 0;
  background: linear-gradient(transparent, #F2F2F2);
}
.lp_contents .sec01 .accordion_inner::after {
  left: 0;
  height: calc(100 * 60rem / 750);
  background: linear-gradient(transparent, #F2F5F6);
}

.lp_contents .sec01 .accordion.open .accordion_inner::before,
.lp_contents .sec01 .accordion.open .accordion_inner::after {
  display: none;
}

.lp_contents .sec01 .color_img {
  display: block;
  width: calc(410 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .sec01 .color_img img {
  width: calc(410 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .sec01 .color_list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(48 * (var(--rate-sp))) calc(40 * (var(--rate-sp)));
  padding: calc(58 * (var(--rate-sp))) calc(50 * (var(--rate-sp))) calc(105 * (var(--rate-sp)));
  justify-content: space-between;
}


.lp_contents .sec01 .color_list_title {
  margin-top: calc(45 * (var(--rate-sp)));
  font-size: calc(40 * (var(--rate-sp)));
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.lp_contents .sec01 .color_name {
  font-size: calc(28 * (var(--rate-sp)));
  line-height: 1;
  text-align: left;
}

.lp_contents .sec01 .color_text {
  margin-top: calc(15 * (var(--rate-sp)));
  width: calc(300 * (var(--rate-sp)));
  font-size: calc(24 * (var(--rate-sp)));
  line-height: calc(42/24);
  text-align: justify;
}

/* ============================================================================
      SECTION03：Lips
============================================================================ */
.lp_contents .sec03 .modal_plus {
  bottom: calc(115 * (var(--rate-sp)));
  right: 0;
}

/* ============================================================================
      SECTION04：Frangrance
============================================================================ */

.lp_contents .sec04 .item_slide {
  width: calc(650 * (var(--rate-sp))); 
}

.lp_contents .sec04 .item_img {
  width: calc(650 * (var(--rate-sp))); 
  margin: calc(70 * (var(--rate-sp))) auto 0;
}

.lp_contents .sec04 .btn_price a {
  width: calc(232 * (var(--rate-sp)));
}

.lp_contents .sec04 .item_detail {
  margin-top: calc(115 * (var(--rate-sp)));
}

.lp_contents .sec04 .item_detail .text {
  font-size: calc(34 * (var(--rate-sp)));
  line-height: calc(46.7/34);
  text-align: center;
}

.lp_contents .sec04 .graph_title {
  display: block;
  width: calc(650 * (var(--rate-sp)));
  margin: calc(60 * (var(--rate-sp))) auto;
  padding: calc(10 * (var(--rate-sp)));
  border-radius: calc(35 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: 1;
  background-color: var(--color-white);
}

.lp_contents .sec04 .graph {
  width: calc(650 * (var(--rate-sp)));
  margin: calc(70 * (var(--rate-sp))) auto 0;
  display: block;
}

.lp_contents .sec04 .btn_all {
  margin-top: calc(185 * (var(--rate-sp)));
}
/* ============================================================================
            MAKEUP
============================================================================ */
.lp_contents .mkup_visual_blk {
  position: relative;
}

.lp_contents .mkup_title {
  font-size: calc(52 * (var(--rate-sp)));
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.lp_contents .mkup_blk {
  margin-top: calc(80 * (var(--rate-sp)));
}

.lp_contents .mkup_blk:not(:first-of-type) {
  margin-top: calc(110 * (var(--rate-sp)));
}

.lp_contents .mkup_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(10 * (var(--rate-sp)));
  margin-top: calc(50 * (var(--rate-sp)));
}

.lp_contents .mkup_list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(35 * (var(--rate-sp)));
}

.lp_contents .mkup_item {
  display: flex;
  align-items: center;
  gap: calc(20 * (var(--rate-sp)));
}

.lp_contents .mkup_item_img {
  width: calc(148 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .mkup_item_name {
  width: calc(155 * (var(--rate-sp)));
  font-size: calc(20 * (var(--rate-sp)));
  line-height: calc(35/20);
  text-align: center;
}

.lp_contents .mkup_step {
  margin: calc(40 * (var(--rate-sp))) 0 0 0;
  padding: 0 calc(105 * (var(--rate-sp)));
}

.lp_contents .mkup_step li {
  font-size: calc(24 * (var(--rate-sp)));
  line-height: calc(42/24);
  text-align: justify;
  text-indent: calc(-30 * (var(--rate-sp)));
}

.lp_contents .mkup_step li span {
  display: inline-block;
  margin-right: calc(24 * (var(--rate-sp)));
}

.lp_contents .plus_blk {
  position: relative;
  margin-top: calc(108 * (var(--rate-sp)));
  padding: calc(58 * (var(--rate-sp))) 0 calc(28 * (var(--rate-sp))) 0; 
  background-color: var(--color-gray01);
}

.lp_contents .plus_title {
  position: absolute;
  top: calc(-30 * (var(--rate-sp)));
  left: calc(40 * (var(--rate-sp)));
  padding: calc(1 * (var(--rate-sp))) calc(7 * (var(--rate-sp))) 0 0;
  font-size: calc(50 * (var(--rate-sp)));
  line-height: 1;
  font-family: var(--font-english);
  text-transform: uppercase;
  border: var(--color-red) solid calc(4 * (var(--rate-sp)));
  color: var(--color-red);
  letter-spacing: -0.16em;
}

.lp_contents .plus_inner_blk {
  display: flex;
  justify-content: center;
  gap: calc(70 * (var(--rate-sp)));
}

.lp_contents .mkup_blk:nth-of-type(even) .plus_inner_blk {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-left: calc(40 * (var(--rate-sp)));
  gap: calc(40 * (var(--rate-sp)));
}

.lp_contents .mkup_blk:nth-of-type(even) .plus_title {
  left: auto;
  right: calc(40 * (var(--rate-sp)));
}

.lp_contents .plus_inner_left {
  position: relative;
}

.lp_contents .plus_text {
  font-family: var(--font-english);
  font-size: calc(30 * (var(--rate-sp)));
  line-height: calc(45 / 30);
  text-align: left;
  letter-spacing: -0.16em;
}

.lp_contents .plus_text a {
  font-size: calc(30 * (var(--rate-sp)));
  text-transform: uppercase;
}

.lp_contents .plus_img_blk {
  width: 100%;
  margin-top: calc(72 * (var(--rate-sp)));
  display: flex;
}

.lp_contents .plus_item_img {
  position: absolute;
  right: calc(-70 * (var(--rate-sp)));
  bottom: calc(-10 * (var(--rate-sp)));
  width: calc(220 * (var(--rate-sp)));
}

.lp_contents .plus_img {
  width: calc(330 * (var(--rate-sp)));
  margin-top: calc(10 * (var(--rate-sp)));
}


/* ============================================================================
      NOVELTY
============================================================================ */
.lp_contents .sec_novelty .sec_title {
  font-size: calc(52 * (var(--rate-sp)));
  line-height: calc(90/52);
  text-transform: uppercase;
}

.lp_contents .novelty_img {
  width: calc(410*(var(--rate-sp)));
  margin: calc(40 * (var(--rate-sp))) auto 0;
}

.lp_contents .novelty_subtitle {
  margin-top: calc(0 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: calc(70 / 28);
}

.lp_contents .novelty_time {
  margin-top: calc(20 * (var(--rate-sp)));
  font-size: calc(24*(var(--rate-sp)));
  line-height: 1;
}

.lp_contents .novelty_info {
  margin-top: calc(45 * (var(--rate-sp)));
  font-size: calc(24*(var(--rate-sp)));
  line-height: 1;
}

.lp_contents .novelty_name {
  margin-top: calc(32 * (var(--rate-sp)));
  font-size: calc(34*(var(--rate-sp)));
  line-height: 1;
}

.lp_contents .note {
  margin-top: calc(50*(var(--rate-sp)));
  font-size: calc(20*(var(--rate-sp)));
  line-height: calc(35/20);
}

/* ============================================================================
      RELEASE DAY
============================================================================ */
.lp_contents .sec_releaseday .sec_title {
  width: calc(510 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .release_day {
  position: relative;
  width: calc(650 * (var(--rate-sp)));
  padding: calc(172 * (var(--rate-sp))) 0;
  margin: 0 auto;
}

.lp_contents .release_day:before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: calc(750 * (var(--rate-sp)));
  height: calc(778 * (var(--rate-sp)));
  background: url(../img/bg08-1.png) no-repeat;
  background-size: contain;
  content: "";
  z-index: -1;
}

.lp_contents .btn_all {
  padding-left: calc(15 * (var(--rate-sp)));
  padding-right: 0;
}

.lp_contents .btn_all a {
  width: calc(324 * (var(--rate-sp)));
  margin: 0 auto;
}


/* ============================================================================
        MODAL
============================================================================ */

/* Modal共通 */
.lp_contents .modal{
  display: none;
  visibility: visible;
  height: 100dvh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  z-index: 105;
}

.lp_contents .modal__bg{
  background: var(--color-white);
  height: 100dvh;
  position: absolute;
  width: 100%;
}

.lp_contents .modal__content{
  background: var(--color-white);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: calc(750*(var(--rate-sp)));
  padding:calc(210*(var(--rate-sp))) 0 calc(60*(var(--rate-sp)));
  height: 100dvh;
  overflow-y: scroll;
  /* overflow: hidden; */
  scrollbar-width: none;
  overscroll-behavior: contain;
}

@media screen and  (min-width:768px) {
  .lp_contents .modal__bg{
    background: rgba(0, 0, 0, 0.8);
  }
  .lp_contents .modal__content{
    height: 90dvh;
  }
}

.lp_contents .js-modal-close{
  position: fixed;
  width: calc(80 * (var(--rate-sp)));
  height: calc(80 * (var(--rate-sp)));
  top: calc(50 * (var(--rate-sp)));
  right: calc(50 * (var(--rate-sp)));
  /* float: right; */
  cursor: pointer;
  /* overflow: hidden; */
  z-index: 999;
}

@media screen and  (min-width:768px) {
  .lp_contents .js-modal-close{
    top: 0;
    right: 50%;
    transform: translateX(50%);
    margin-right: -20rem;
    margin-top: 7rem;
  }
}

.lp_contents .js-modal-close:before,
.lp_contents .js-modal-close:after{
  content: '';
  display: block;
  width: calc(97 * (var(--rate-sp)));
  height: calc(2 * (var(--rate-sp)));
  transform: rotate(45deg);
  background-color: var(--color-text);
  position: absolute;
  top: 50%;
}

.lp_contents .js-modal-close:after{
  transform: rotate(-45deg);
}

.lp_contents .modal_inner{
  /* display: flex;
  align-items: center; */
  /* overflow-y: scroll;
  height: 100dvh; */
} 
.lp_contents .modal_inner::-webkit-scrollbar {
  display: none;
}


.lp_contents .modal .copyright {
  width: calc(130 * (var(--rate-sp)));
  margin: calc(165 * (var(--rate-sp))) auto 0;
}

.lp_contents .modal03 .copyright,
.lp_contents .modal04 .copyright,
.lp_contents .modal05 .copyright,
.lp_contents .modal06 .copyright {
  margin: calc(140 * (var(--rate-sp))) auto 0;
}

.lp_contents .modal_zoom_area {
  position: relative;
  margin: 0 auto;
  width: calc(650 * (var(--rate-sp)));
  overflow: hidden;
}

.lp_contents .modal_zoom_area:before {
  position: absolute;
  width: calc(1 * (var(--rate-sp)));
  height: 100%;
  background: var(--color-white);
  top: 0;
  right: 0;
  z-index: 2;
  content: "";
}

.lp_contents .modal_zoom_area img {
  margin: 0 auto;
  width: calc(650 * (var(--rate-sp)));
}

.lp_contents .zoom-btn {
  position: absolute;
  bottom: calc(35 * (var(--rate-sp)));
  right: calc(40 * (var(--rate-sp)));
  width: calc(40 * (var(--rate-sp)));
  height: calc(35 * (var(--rate-sp)));
  border: none;
  background-color: transparent;
  background-image: url('../img/icon_zoomin.svg');
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 100;
}

.lp_contents .zoom-btn.change {
  background-image: url('../img/icon_zoomout.svg');
}

.lp_contents .modal_item_name {
  display: block;
  margin-top: calc(20 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: calc(49/28); 
  text-align: center;
}

.lp_contents .modal .btn_price.btn_buy {
  margin: calc(65 * (var(--rate-sp))) auto 0;
}

.lp_contents .modal .btn_price a {
  width: calc(232 * (var(--rate-sp)));
  padding: 0 0 calc(20 * (var(--rate-sp))) 0;
}

.lp_contents .modal_text {
  margin-top: calc(40 * (var(--rate-sp)));
  font-size: calc(28 * (var(--rate-sp)));
  line-height: calc(49/28);
}

/* Modal Slider */
.lp_contents .modal_slider_inner {
  position: relative;
  width: calc(750 * (var(--rate-sp)));
  margin: 0 auto;
}

.lp_contents .modal-prev,
.lp_contents .modal-next {
  position: fixed;
  top: 50%;
  margin-top: calc(90 * var(--rate-sp));
  transform: translateY(-50%);
  width: calc(50 * var(--rate-sp));
  height: calc(50 * var(--rate-sp));
  cursor: pointer;
  z-index: 100;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.lp_contents .modal-prev {
  left: calc(-3 * var(--rate-sp));
  background-image: url(../img/prev.svg);
}

.lp_contents .modal-next {
  right: calc(-3 * var(--rate-sp));
  background-image: url(../img/next.svg);
}

.lp_contents .modal-prev.slick-hidden,
.lp_contents .modal-next.slick-hidden {
  display: none !important;
}

@media screen and  (min-width:768px) {
  .lp_contents .modal-prev,
  .lp_contents .modal-next {
    margin-top:calc(-20 * var(--rate-sp));
  }
  .lp_contents .modal-prev {
    left: calc(-5 * var(--rate-sp));
  }
  .lp_contents .modal-next {
    right: calc(-5 * var(--rate-sp));
  }
}

/* Modal Menu */
.lp_contents #modal02 .sec_title {
  font-size: calc(52 * (var(--rate-sp)));
  line-height: calc(90/52);
  text-transform: uppercase;
}

.lp_contents #modal01 .modal__content {
  padding: calc(125 * (var(--rate-sp))) 0 calc(60 * (var(--rate-sp)));
  background: url(../img/bg_modal01.jpg) center center / cover no-repeat;
}

.lp_contents #modal01 .navigation_list {
  padding: 0 calc(105*(var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list ul {
  row-gap: calc(48 * (var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list li {
  position: relative;
  width: calc(230 * (var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list li img {
  width: calc(230 * (var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list li:nth-of-type(2) {
  margin-top: calc(0*(var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list li:nth-of-type(3) {
  margin-top: calc(50*(var(--rate-sp)));
}

.lp_contents #modal01 .navigation_list li:nth-of-type(4) {
  margin-top: calc(-0*(var(--rate-sp)));
}

.lp_contents #modal01 .navigation_name {
  font-size: calc(34*(var(--rate-sp)));
  line-height: calc(37.4/34);
  white-space: nowrap;
}

.lp_contents #modal01 .navigation_arrow {
  margin-top: calc(5 * (var(--rate-sp)));
}

/* Modal Novelty */
.lp_contents #modal02 .sec_title {
  font-size: calc(52 * (var(--rate-sp)));
  line-height: calc(90/52);
  text-transform: uppercase;
}

.lp_contents #modal02 .modal__content {
  padding: calc(290 * (var(--rate-sp))) 0 calc(60 * (var(--rate-sp)));
  background: url(../img/bg_modal01.jpg) center center / cover no-repeat;
}
/* ============================================================================
      PC SETTING
============================================================================ */
@media screen and  (min-width:768px) {
  .pc_only {
    display: block;
  }

  .sp_only {
    display: none;
  }

  .lp_contents:before {
    content: "";
    position: fixed;
    pointer-events: none;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: url(../img/bg_pc.jpg) repeat-y center / 100%;
  }

  .lp_contents .grid_area{
    display: grid;
    grid-template-columns: 1fr 50.4rem 1fr;
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }

  .lp_contents .grid_area .full_area {
    position: -webkit-sticky;
    position: sticky;
    display: grid;
    pointer-events: all;
    height: 100vh;
  }

  .lp_contents .left_area {
    top: 0;
    grid-column: 1;
    -webkit-clip-path: border-box;
    clip-path: border-box;
    align-items: center;
    place-items: flex-start;
  }

  .lp_contents .left_area a .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 26.85rem;
    transform: translateX(-50%) translateY(-50%);
  }

  .lp_contents .lp_inner {
    grid-column: 2;
    width: 50.4rem;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    overflow: clip;
    background-color: var(--color-white);
  }

  .lp_contents .right_area {
    top: 0;
    grid-column: 3;
    -webkit-clip-path: border-box;
    clip-path: border-box;
    place-items: flex-end;
  }

  .lp_contents .navigation_list.nav03 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-left: -2.3rem;
    margin-top: 0;
  }
  
  .lp_contents .navigation_list.nav03 ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 5rem;
    width: 24.6rem;
  }
  
  .lp_contents .navigation_list.nav03 li {
    position: relative;
    display: flex;
    width: 10.8rem;
  }
  
  .lp_contents .navigation_list.nav03 li img {
    width: 10.8rem;
    margin: 0;
  }
  
  .lp_contents .navigation_list.nav03 a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .lp_contents .navigation_list.nav03 a span {
    font-family: var(--font-english);
    letter-spacing: -0.16em;
  }
  
  .lp_contents .navigation_list.nav03 .navigation_name_group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    gap: 1.8rem;
  }
  
  .lp_contents .navigation_list.nav03 .navigation_name {
    margin-top: 1.7rem;
    font-size: 1.6rem;
    line-height: calc(17.6/16);
    text-align: center;
    color: var(--color-white);
    white-space: nowrap;
}
  
  .lp_contents .navigation_list.nav03 .navigation_arrow {
    display: block;
    margin-top: 0rem;
    width: 2rem;
    height: 1rem;
    background: url(../img/arrow01.svg) no-repeat;
    background-size: 100%;
    content: "";
  }

  .lp_contents .navigation_list.nav03 li:nth-of-type(2) {
    margin-top: 0;
  }

  .lp_contents .navigation_list.nav03 li:nth-of-type(3) {
    margin-top: 0;
  }

}

/* ============================================================================
      Responsive
============================================================================ */
@media screen and (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 504));
  }
}


/* ============================================================================
      ANIMATION
============================================================================ */
.js-fade.ef1 {
  opacity: 0;
}

.js-fade.ef1.active {
  opacity: 1;
  transform-origin: top 2% center;
  animation: zoomUp 2s ease-in-out 0s normal both;
}

@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.lp_contents .visual_slider .slick-slide {
  width: 100%;
  transition: opacity 0.8s ease;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.lp_contents .visual_slider .slick-current {
  animation: zoomOut 2s ease-out forwards
}

.js-fade.ef2 {
  opacity: 0;
}

.js-fade.ef2.active {
-webkit-animation: opa1 1.4s cubic-bezier(0.51, 0.21, 0.41, 1) 0.3s 1 forwards;
    animation: opa 1.4s cubic-bezier(0.51, 0.21, 0.41, 1) 0.3s 1 forwards;
}

@-webkit-keyframes opa {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
