@charset "UTF-8";

:root {
  --rate: 60rem / 430;
  --font-lp_base: "Lato","Noto Sans JP","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN,HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  --font-lp_eng: "futura-pt", 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',serif;
  --color-lp_bg: #F7F5F4;
  --color-lp_font: #383330;
  --color-lp_blue: #327AAE;
  --color-lp_yellow: #FFE94D;
  --color-lp_gray: #F7F5F4;
}

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

/* zoom
==================================*/
#lp_contents .zoom {
  opacity: 0;
  transform: scale(1.5);
  transition: all 2s;
}

#lp_contents .zoom.is-show {
  opacity: 1;
  transform: scale(1.0);
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}

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

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

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}

#lp_contents .flower_1 img ,
#lp_contents .flower_3 img ,
#lp_contents .flower_5 img {
  animation: opa1 0.4s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_jump 1.2s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_fuwafuwa 4s cubic-bezier(0.51, 0.21, 0.41, 1) 2.8s infinite;
}
#lp_contents .flower_2 img ,
#lp_contents .flower_4 img ,
#lp_contents .flower_6 img {
  animation: opa1 0.6s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_jump 1.2s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_fuwafuwa 4s cubic-bezier(0.51, 0.21, 0.41, 1) 2.2s infinite;
}

#lp_contents .charm_1 img ,
#lp_contents .charm_2 img ,
#lp_contents .charm_8 img {
  animation: opa1 0.4s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_jump 1.2s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_fuwafuwa 4s cubic-bezier(0.51, 0.21, 0.41, 1) 2.8s infinite;
}
#lp_contents .charm_3 img ,
#lp_contents .charm_4 img ,
#lp_contents .charm_5 img {
  animation: opa1 0.6s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_jump 1.2s cubic-bezier(0.51, 0.21, 0.41, 1) 1s 1 forwards,move_fuwafuwa 4s cubic-bezier(0.51, 0.21, 0.41, 1) 2.2s infinite;
}

@keyframes move_fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}

/* star
==================================*/
.star {
	animation: flashing 4s infinite;
}
@keyframes flashing {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.star_2 {
	animation: flashing_2 4s infinite;
}
@keyframes flashing_2 {
	0% {
		opacity: 1;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.star_3 {
	animation: flashing_3 4s infinite;
}
@keyframes flashing_3 {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* parallax
==================================*/
/* .parallax {
  position: absolute;
  aspect-ratio: 1 / 1;
}

@keyframes parallax-large-anim {
  from {
    transform: translateY(calc(280 * (60rem / 430)));
  }
  to {
    transform: translateY(0px);
  }
}

.large {
  animation: parallax-large-anim linear;
  animation-timeline: scroll();
}

@keyframes parallax-small-anim {
  from {
    transform: translateY(calc(200 * (60rem / 430)));
  }
  to {
    transform: translateY(0px);
  }
}

.small {
  animation: parallax-small-anim linear;
  animation-timeline: scroll();
} */

/* loop
==================================*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity__wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: calc(430 * (60rem / 430));
    height: calc(60 * (60rem / 430));
    background: #383330;
  }
  .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
  }
  .scroll-infinity__item {
    width: calc(650 * (var(--rate)));
    margin-right: calc(10 * (var(--rate)));
  }

  @keyframes infinity-scroll-right {
    from {
      transform: translateX(-100%);
    }
      to {
      transform: translateX(0);
    }
  }
  .scroll-infinity__list--right {
    animation: infinity-scroll-right 80s infinite linear 0.5s both;
  }

/* slider
==================================*/

/*------------ slick ------------*/
#lp_contents .slick-track {
  display: flex;
}

#lp_contents .slick-slider{
  width: calc(430 * (60rem / 430)) !important;
  position: static !important;
  margin: calc(30 * (var(--rate))) auto 0;
}

/* #lp_contents .slick-list.draggable{
  height: auto !important;
} */

/* #lp_contents .slick-slide {
  height: auto !important;
} */

#lp_contents .slick-prev, 
#lp_contents .slick-next{
  width: calc(0 * (60rem / 430));
  height: calc(10 * (60rem / 430));
  z-index: 2;
  top: calc(400 * (60rem / 430));
  bottom: 0;
  transform: initial;
}

#lp_contents .slick-prev::after, 
#lp_contents .slick-next::after {
  position: absolute;
  content: "";
  background: url(../img/arrow.png) no-repeat;
  background-size: 100%;
  width: calc(12 * (60rem / 430));
  height: calc(18 * (60rem / 430));
  z-index: 2;
  top: calc(-3 * (60rem / 430));
  left: calc(16 * (60rem / 430));
}

#lp_contents .slick-next::after {
  transform: rotate(180deg);
  left: calc(20 * (60rem / 430));
}

#lp_contents .slick-prev{
  left: calc(10 * (60rem / 430));
}

#lp_contents .slick-next{
  right: calc(60 * (60rem / 430));
}

#lp_contents .slick-prev:before{
  content: '';
  display: block;
  width: calc(50 * (60rem / 430));
  height: calc(50 * (60rem / 430));
  border-radius: calc(50 * (60rem / 430));
  position: absolute;
  background: rgba(255, 255, 255, 1);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 5px 5px 10px #bbbaba42;
}

#lp_contents .slick-next:before{
  content: '';
  display: block;
  width: calc(50 * (60rem / 430));
  height: calc(50 * (60rem / 430));
  border-radius: calc(50 * (60rem / 430));
  position: absolute;
  background: rgba(255, 255, 255, 1);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 5px 5px 10px #bbbaba42;
}

#lp_contents .slick-next:before{
  transform: rotate(135deg);
}


#lp_contents .slick-dots li.slick-active button:before {
  color: var(--color-lp_blue) !important;
}

#lp_contents .slick-dots li {
  margin: 0 0 !important;
}

#lp_contents .slick-dots li button:before {
  opacity: 1 !important;
  color: #ffffff !important;
}

#lp_contents .slick-dots {
  bottom: 30px !important;
}

#lp_contents .slide-arrow {
  position: absolute;
  width: calc(12 * (60rem / 430));
  height: calc(20 * (60rem / 430));
  z-index: 2;
  top: calc(220 * (60rem / 430));
  left: calc(15 * (60rem / 430));
}

#lp_contents .slide-arrow::before {
  position: absolute;
  content: "";
  width: calc(50 * (60rem / 430));
  height: calc(50 * (60rem / 430));
  background: rgba(255, 255, 255, 0.6);
  top: calc(-10 * (60rem / 430));
  left: calc(10 * (60rem / 430));
  z-index: 1;
}


/*--------------------------------
                共 通
 --------------------------------*/

main,#Wrap,.wrapBottom,.wrapTop{
  width: 100%;
  max-width: 100%;
}

#FooterWrap{
  position: relative;
  z-index: 100;
  background-color: #fff;
}

#header_txt_slider,
#header_img_slider {
  position: relative;
  z-index: 100;
}

#lp_contents *{
  box-sizing: border-box;
}

#lp_contents .LP_after{
  display: flex;
  justify-content: center;
}



#lp_contents{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(12 * (var(--rate)));
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: center;

  color: var(--color-lp_font);
  background-color: var(--color-lp_bg);
  background: radial-gradient(rgb(157, 198, 227), rgb(47, 124, 180));
  position: relative;
  /*overflow: hidden;*/
}
#lp_contents .sp_only{display: none;}
#lp_contents img{width: 100%;display: block;height: auto; image-rendering: -webkit-optimize-contrast; -webkit-backface-visibility: hidden;}
#lp_contents a{display: block;width: 100%;cursor: pointer;transition: all 0.5s;color: inherit;}
#lp_contents a:hover{opacity: .8}
#lp_contents ul li,#lp_contents ol li{list-style: none;}

/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  display: block;
  margin: 0;
  font-size: calc(12 * (var(--rate)));
  line-height: 1.75;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: 1rem;
  font-size: calc(10 * (var(--rate)));
  line-height: 1.5;
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: 1rem;
  font-size: calc(10 * (var(--rate)));
}

/*------------ link ------------*/
#lp_contents .link_btn{
  width: calc(350 * (var(--rate)));
  height: calc(70 * (var(--rate)));
  background-color: var(--color-lp_primary);
  color: #fff;
  font-size: calc(13 * (var(--rate)));
  font-weight: bold;
  letter-spacing: 0.15em;
  display: grid;
  align-content: center;
  gap: calc(5 * (var(--rate)));
  margin: auto;
}

#lp_contents .link_btn .eng{
  font-size: calc(17 * (var(--rate)));
  letter-spacing: 0.2em;
}


/* nav
==================================*/
#lp_contents .nav_list {
  padding: calc(35 * (var(--rate)));
  background: var(--color-lp_gray);
}

#lp_contents .nav_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .nav_list li a{
  width: calc(175 * (var(--rate)));
  padding: calc(15 * (var(--rate))) calc(10 * (var(--rate)));
  background-color: var(--color-lp_blue);
  font-size: calc(17 * (var(--rate)));
  color: #ffffff;
  font-weight: bold;
  border-radius: calc(5 * (var(--rate)));
  line-height: 1;
  display: grid;
  gap: calc(8 * (var(--rate)));
}

#lp_contents .nav_list li:nth-of-type(3) a{
  width: calc(360 * (var(--rate)));
}

#lp_contents .nav_list .eng{
  font-family: var(--font-lp_eng);
  font-size: calc(14 * (var(--rate)));
  font-weight: 500;
  letter-spacing: 0.025em;
}

#lp_contents .nav_list .arrow{
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * calc(6 * (var(--rate))) / 2);
  width: calc(12 * (var(--rate)));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: auto;
}


/* section
==================================*/
#lp_contents section{
  position: relative;
}

#lp_contents section{
  position: relative;
}

#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 60rem;
  background-color: var(--color-lp_blue);
  order: 2;
  padding-bottom: calc(80 * (var(--rate)));
  display: grid;
  box-shadow: 2px 5px 10px #4c4c4c42;
}

#lp_contents .full_area{
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc(calc(100% - 60rem) / 2);

  padding: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .left_area{
  left: 0;
  order: 1;
}

#lp_contents .right_area{
  right: 0;
  order: 3;
}

#lp_contents .right_area .nav_list{
  width: 28rem;
  background: unset;
  padding: unset;
}

#lp_contents .right_area .nav_list ul{
  gap: 1.5rem;
}

#lp_contents .right_area .nav_list li{
  width: 100%;
}

#lp_contents .right_area .nav_list li a{
  position: relative;
  width: 100%;
  padding: 2rem;
  font-size: 2rem;
  gap: 0.8rem;
  box-shadow: 2px 5px 10px #4c4c4c42;
}

#lp_contents .right_area .nav_list .eng{
  font-size: 1.6rem;
  font-weight: 500;
}

#lp_contents .right_area .nav_list .arrow{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3rem;
  width: 0.6rem;
  height: calc(tan(60deg) * 1.2rem / 2);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0;
  transition: all 0.5s;
}

#lp_contents .right_area .nav_list .link_btn{
  width: 100%;
  height: 6rem;
}

#lp_contents .right_area .nav_list .link_btn .eng{
  color: #fff;
  font-size: 1.7rem;
}

#lp_contents #follow[data-color=anker_1] ul li:nth-child(1) .arrow,
#lp_contents #follow[data-color=anker_2] ul li:nth-child(2) .arrow,
#lp_contents #follow[data-color=anker_3] ul li:nth-child(3) .arrow{
  opacity: 1;
}


/* charm_flower
==================================*/
#lp_contents .left_area .charm_flower ,
#lp_contents .left_area .charm_flower {
  position: relative;
  z-index: 0;
}

#lp_contents .left_area .charm_flower span ,
#lp_contents .left_area .charm_flower span {
  position: absolute;
  z-index: 1;
}

#lp_contents .left_area .charm_flower .logo_img ,
#lp_contents .left_area .charm_flower .logo_img {
  width: calc(280 * (var(--rate)));
}

#lp_contents .left_area .charm_flower .flower_1 {
  width: calc(55 * (var(--rate)));
  top: calc(0 * (var(--rate)));
  left: calc(-10 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .flower_2 {
  width: calc(46 * (var(--rate)));
  top: calc(184 * (var(--rate)));
  left: calc(220 * (var(--rate)));
  transform: rotate(145deg);
}

#lp_contents .left_area .charm_flower .light_1 {
  width: calc(60 * (var(--rate)));
  top: calc(-8 * (var(--rate)));
  left: calc(50 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .light_2 {
  width: calc(100 * (var(--rate)));
  top: calc(-15 * (var(--rate)));
  left: calc(200 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .light_3 {
  width: calc(60 * (var(--rate)));
  top: calc(160 * (var(--rate)));
  left: calc(-10 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .light_4 {
  width: calc(70 * (var(--rate)));
  top: calc(157 * (var(--rate)));
  left: calc(216 * (var(--rate)));
}

/* charm_flower
==================================*/
#lp_contents .left_area .charm_flower .charm_1 {
  width: calc(105 * (var(--rate)));
  top: calc(0 * (var(--rate)));
  left: calc(-20 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .charm_2 {
  width: calc(56 * (var(--rate)));
  top: calc(15 * (var(--rate)));
  left: calc(220 * (var(--rate)));
}
#lp_contents .left_area .charm_flower .charm_3 {
  width: calc(55 * (var(--rate)));
  top: calc(130 * (var(--rate)));
  left: calc(250 * (var(--rate)));
  transform: rotate(75deg);
}
#lp_contents .left_area .charm_flower .charm_4 {
  width: calc(50 * (var(--rate)));
  top: calc(164 * (var(--rate)));
  left: calc(-15 * (var(--rate)));
  transform: rotate(15deg);
}

#lp_contents .left_area .charm_flower .light_1 {
  width: calc(60 * (var(--rate)));
  top: calc(-38 * (var(--rate)));
  left: calc(130 * (var(--rate)));
  z-index: 3;
}
#lp_contents .left_area .charm_flower .light_2 {
  width: calc(100 * (var(--rate)));
  top: calc(-19 * (var(--rate)));
  left: calc(200 * (var(--rate)));
  z-index: 3;
}
#lp_contents .left_area .charm_flower .light_3 {
  width: calc(60 * (var(--rate)));
  top: calc(125 * (var(--rate)));
  left: calc(-35 * (var(--rate)));
  z-index: 3;
}
#lp_contents .left_area .charm_flower .light_4 {
  width: calc(70 * (var(--rate)));
  top: calc(157 * (var(--rate)));
  left: calc(216 * (var(--rate)));
  z-index: 3;
}
#lp_contents .left_area .charm_flower .light_5 {
  width: calc(70 * (var(--rate)));
  top: calc(-14 * (var(--rate)));
  left: calc(-25 * (var(--rate)));
  z-index: 3;
}
#lp_contents .left_area .charm_flower .light_6 {
  width: calc(50 * (var(--rate)));
  top: calc(182 * (var(--rate)));
  left: calc(60 * (var(--rate)));
  z-index: 3;
}



/* sec_mv
==================================*/
#lp_contents .sec_mv.before{
  background-color: #ff4dff;
  padding: 6rem 0;
  display: grid;
  gap: 4rem;
}

#lp_contents .sec_mv.before .logo{
  width: 42rem;
  margin: auto;
}

#lp_contents .sec_mv.before .shop{
  width: fit-content;
  background-color: #fff;
  color: #000000;
  padding: 0.5rem 2rem;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 0.5rem;
  margin: auto;
}

#lp_contents .sec_mv.before .lead{
  margin: 0;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  color: #000000;
}

#lp_contents .rotate{
  opacity: 0;
  transform: rotate(0);
  transition: 2s;
}

#lp_contents .rotate.is-show{
  opacity: 1;
  transform: rotate(-5deg);
}



#lp_contents .sec_mv{
  position: relative;
  padding: calc(30 * (var(--rate))) 0 calc(40 * (var(--rate)));
  z-index: 0;
}

#lp_contents .sec_mv.flower_ver {
  background: url(../img/mv_bg_flower.jpg) no-repeat;
  background-size: cover;
}

#lp_contents .sec_mv.charm_ver {
  background: url(../img/mv_bg_charm.jpg) no-repeat;
  background-size: cover;
}

#lp_contents .sec_mv .mv_ttl{
  width: calc(320 * (var(--rate)));
  margin: auto;
}

#lp_contents .sec_mv .mv_storelogo{
  width: calc(225 * (var(--rate)));
  margin: calc(10 * (var(--rate))) auto 0;
}

#lp_contents .sec_mv .lead{
  font-size: calc(20 * (var(--rate)));
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--color-lp_yellow);
  margin: calc(30 * (var(--rate))) auto 0;
}

#lp_contents .sec_mv .mv_date{
  position: relative;
  width: calc(360 * (var(--rate)));
  margin: calc(60 * (var(--rate))) auto 0;
  z-index: 0;
}

#lp_contents .sec_mv .mv_store{
  width: calc(360 * (var(--rate)));
  margin: calc(20 * (var(--rate))) auto 0;
}

#lp_contents .flower_ver span {
  position: absolute;
  z-index: 1;
}
#lp_contents .flower_ver .light_1 {
  top: calc(0 * (var(--rate)));
  left: calc(91 * (var(--rate)));
  width: calc(110 * (var(--rate)));
}
#lp_contents .flower_ver .light_2 {
  top: calc(270 * (var(--rate)));
  left: calc(310 * (var(--rate)));
  width: calc(120 * (var(--rate)));
}
#lp_contents .flower_ver .light_3 {
  top: calc(394 * (var(--rate)));
  left: calc(140 * (var(--rate)));
  width: calc(90 * (var(--rate)));
}
#lp_contents .flower_ver .light_4 {
  top: calc(564 * (var(--rate)));
  left: calc(246 * (var(--rate)));
  width: calc(70 * (var(--rate)));
}
#lp_contents .flower_ver .light_5 {
  top: calc(184 * (var(--rate)));
  left: calc(50 * (var(--rate)));
  width: calc(80 * (var(--rate)));
}
#lp_contents .flower_ver .light_6 {
  top: calc(705 * (var(--rate)));
  left: calc(-4 * (var(--rate)));
  width: calc(100 * (var(--rate)));
}
#lp_contents .flower_ver .flower_1 {
  top: calc(210 * (var(--rate)));
  left: calc(335 * (var(--rate)));
  width: calc(70 * (var(--rate)));
}
#lp_contents .flower_ver .flower_2 {
  top: calc(27 * (var(--rate)));
  left: calc(350 * (var(--rate)));
  width: calc(60 * (var(--rate)));
}
#lp_contents .flower_ver .flower_3 {
  top: calc(445 * (var(--rate)));
  left: calc(25 * (var(--rate)));
  width: calc(75 * (var(--rate)));
}
#lp_contents .flower_ver .flower_4 {
  top: calc(520 * (var(--rate)));
  left: calc(332 * (var(--rate)));
  width: calc(90 * (var(--rate)));
  z-index: 0;
}
#lp_contents .flower_ver .flower_5 {
  top: calc(720 * (var(--rate)));
  left: calc(363 * (var(--rate)));
  width: calc(50 * (var(--rate)));
}
#lp_contents .flower_ver .flower_6 {
  top: calc(655 * (var(--rate)));
  left: calc(5 * (var(--rate)));
  width: calc(100 * (var(--rate)));
  z-index: -1;
}

/* charm
==================================*/
#lp_contents .charm_ver span {
  position: absolute;
  z-index: 1;
}
#lp_contents .charm_ver .light_1 {
  top: calc(0 * (var(--rate)));
  left: calc(91 * (var(--rate)));
  width: calc(110 * (var(--rate)));
}
#lp_contents .charm_ver .light_2 {
  top: calc(310 * (var(--rate)));
  left: calc(340 * (var(--rate)));
  width: calc(80 * (var(--rate)));
}
#lp_contents .charm_ver .light_3 {
  top: calc(383 * (var(--rate)));
  left: calc(83 * (var(--rate)));
  width: calc(110 * (var(--rate)));
}
#lp_contents .charm_ver .light_4 {
  top: calc(564 * (var(--rate)));
  left: calc(246 * (var(--rate)));
  width: calc(70 * (var(--rate)));
}
#lp_contents .charm_ver .light_5 {
  top: calc(285 * (var(--rate)));
  left: calc(-4 * (var(--rate)));
  width: calc(70 * (var(--rate)));
}
#lp_contents .charm_ver .light_6 {
  top: calc(148 * (var(--rate)));
  left: calc(252 * (var(--rate)));
  width: calc(90 * (var(--rate)));
}
#lp_contents .charm_ver .light_7 {
  top: calc(200 * (var(--rate)));
  left: calc(60 * (var(--rate)));
  width: calc(60 * (var(--rate)));
}
#lp_contents .charm_ver .light_8 {
  top: calc(-10 * (var(--rate)));
  left: calc(310 * (var(--rate)));
  width: calc(100 * (var(--rate)));
  z-index: 3;
}
#lp_contents .charm_ver .charm_1 {
  top: calc(30 * (var(--rate)));
  left: calc(10 * (var(--rate)));
  width: calc(140 * (var(--rate)));
}
#lp_contents .charm_ver .charm_2 {
  top: calc(20 * (var(--rate)));
  left: calc(310 * (var(--rate)));
  width: calc(90 * (var(--rate)));
}
#lp_contents .charm_ver .charm_3 {
  top: calc(190 * (var(--rate)));
  left: calc(333 * (var(--rate)));
  width: calc(80 * (var(--rate)));
}
#lp_contents .charm_ver .charm_4 {
  top: calc(240 * (var(--rate)));
  left: calc(8 * (var(--rate)));
  width: calc(75 * (var(--rate)));
  z-index: 0;
}
#lp_contents .charm_ver .charm_5 {
  top: calc(415 * (var(--rate)));
  left: calc(227 * (var(--rate)));
  width: calc(70 * (var(--rate)));
}
#lp_contents .charm_ver .charm_6 {
  top: calc(455 * (var(--rate)));
  left: calc(2 * (var(--rate)));
  width: calc(80 * (var(--rate)));
  z-index: 1;
}
#lp_contents .charm_ver .charm_7 {
  top: calc(340 * (var(--rate)));
  left: calc(285 * (var(--rate)));
  width: calc(40 * (var(--rate)));
  z-index: 1;
}
#lp_contents .charm_ver .charm_8 {
  top: calc(445 * (var(--rate)));
  left: calc(330 * (var(--rate)));
  width: calc(100 * (var(--rate)));
  z-index: 1;
}


/* section
==================================*/
#lp_contents .section {
  padding: calc(35 * (var(--rate))) 0 calc(40 * (var(--rate)));
  background: var(--color-lp_gray);
}

/* campaign
==================================*/
#lp_contents .lp_ttlArea p {
  font-family: var(--font-lp_eng);
  font-size: calc(19 * (var(--rate)));
  color: var(--color-lp_blue);
  letter-spacing: 0.05em;
}

#lp_contents .lp_ttlArea h2 {
  font-size: calc(25 * (var(--rate)));
  font-weight: 700;
  margin-top: calc(0 * (var(--rate)));
  letter-spacing: 0.05em;
}

#lp_contents .lp_ttlArea .border {
  display: block;
  width: calc(400 * (var(--rate)));
  border-top: #AFAFAF solid calc(1 * (var(--rate)));
  margin: calc(25 * (var(--rate))) auto 0;
}

#lp_contents .campaign_wrap {
  width: calc(360 * (var(--rate)));
  border-radius: calc(5 * (var(--rate)));
  margin: calc(30 * (var(--rate))) auto 0;
}

#lp_contents .campaign_blk {
  border-radius: calc(5 * (var(--rate)));
  padding: 0 0 calc(20 * (var(--rate)));
  background: #ffffff;
  box-shadow: 5px 5px 10px #bbbaba42;
}

#lp_contents .campaign_blk:nth-of-type(n+2) {
  margin-top: calc(10 * (var(--rate)));
}

#lp_contents .campaign_blk:nth-of-type(3) .campaign_ttl_wrap {
  margin-top: calc(20 * (var(--rate)));
}

#lp_contents .campaign_blk .ttl {
  text-align: center;
  border-radius: calc(5 * (var(--rate))) calc(5 * (var(--rate))) 0 0;
  background: var(--color-lp_blue);
  color: #ffffff;
  font-size: calc(17 * (var(--rate)));
  font-weight: 700;
  padding: calc(15 * (var(--rate))) 0;
}

#lp_contents .campaign_ttl_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(10 * (var(--rate)));
  margin-top: calc(15 * (var(--rate)));
  gap: calc(10 * (var(--rate)));
}

#lp_contents .campaign_ttl_wrap .img {
  width: calc(50 * (var(--rate)));
}

#lp_contents .campaign_ttl_wrap .text {
  width: calc(177 * (var(--rate)));
}

#lp_contents .campaign_info {
  position: relative;
  margin: calc(10 * (var(--rate))) auto 0;
  width: calc(320 * (var(--rate)));
  height: calc(56 * (var(--rate)));
  background: #F7F5F4;
  padding: calc(15 * (var(--rate)));
  font-size: calc(10 * (var(--rate)));
  overflow: hidden;
  z-index: 0;
  transition: all 1s;
}

#lp_contents .campaign_info::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  z-index: 1;
}

#lp_contents .campaign_info::after {
  position: absolute;
  content: "";
  background: url(../img/accordion_btn.png) no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(25 * (var(--rate)));
  height: calc(25 * (var(--rate)));
  z-index: 1;
}

#lp_contents .campaign_text {
  margin: calc(10 * (var(--rate))) auto 0;
  font-size: calc(11 * (var(--rate)));
  width: calc(320 * (var(--rate)));
}

#lp_contents .campaign_info.accordion_btn.active {
  height: auto;
  overflow: unset;
}

#lp_contents .campaign_info.accordion_btn.active::before {
  display: none;
}

#lp_contents .campaign_info.accordion_btn.active::after {
  display: none;
}

#lp_contents .page_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: calc(30 * (var(--rate))) auto 0;
  width: calc(220 * (var(--rate)));
  height: calc(50 * (var(--rate)));
  border-radius: calc(100 * (var(--rate)));
  background: var(--color-lp_font);
  color: #ffffff;
  font-size: calc(13 * (var(--rate)));
  font-weight: 700;
}

/* item_Area
==================================*/
#lp_contents .item_Area {
  padding: calc(40 * (var(--rate))) 0 calc(30 * (var(--rate)));
  background: var(--color-lp_gray);
}

#lp_contents .item_Area .item_blk {
  position: relative;
  width: calc(360 * (var(--rate)));
  margin: 0 calc(20 * (var(--rate))) calc(20 * (var(--rate)));
  border-radius: calc(10 * (var(--rate)));
  background: #ffffff;
  z-index: 0;
  box-shadow: 5px 5px 10px #bbbaba42;
}

#lp_contents .item_Area .item_blk .cat {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(65 * (var(--rate)));
  height: calc(65 * (var(--rate)));
  font-size: calc(15 * (var(--rate)));
  border-radius: calc(120 * (var(--rate)));
  background: var(--color-lp_blue);
  color: #ffffff;
  top: calc(10 * (var(--rate)));
  left: calc(10 * (var(--rate)));
  z-index: 1;
}

#lp_contents .item_Area .img img {
  width: 100%;
  border-radius: calc(10 * (var(--rate))) calc(10 * (var(--rate))) 0 0;
}

#lp_contents .item_Area .item_inner {
  padding: calc(20 * (var(--rate))) calc(15 * (var(--rate))) calc(30 * (var(--rate)));
}

#lp_contents .item_Area .item_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp_contents .item_Area .item_wrap .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(13 * (var(--rate)));
  font-family: var(--font-lp_eng);
  width: calc(105 * (var(--rate)));
  height: calc(35 * (var(--rate)));
  background: var(--color-lp_font);
  color: #ffffff;
  border-radius: calc(35 * (var(--rate)));
}

#lp_contents .item_Area .item_wrap p {
  width: calc(240 * (var(--rate)));
  font-size: calc(14 * (var(--rate)));
  text-align: left;
}

#lp_contents .item_Area .item_wrap p .price {
  font-size: calc(14 * (var(--rate)));
  font-family: var(--font-lp_eng);
}

#lp_contents .item_Area .item_wrap p .price .tax {
  font-size: calc(11 * (var(--rate)));
}

#lp_contents .item_text {
  text-align: justify;
  position: relative;
  margin: calc(10 * (var(--rate))) auto 0;
  width: 100%;
  /* height: calc(75 * (var(--rate))); */
  font-size: calc(14 * (var(--rate)));
  overflow: hidden;
  line-height: 1.5;
  z-index: 0;
  transition: all 1s;
}

/* #lp_contents .item_text::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.7) 10%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

#lp_contents .item_text::after {
  position: absolute;
  content: "";
  background: url(../img/accordion_btn.png) no-repeat;
  background-size: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(25 * (var(--rate)));
  height: calc(25 * (var(--rate)));
  z-index: 1;
}

#lp_contents .item_text.accordion_btn.active {
  height: auto;
  overflow: unset;
}

#lp_contents .item_text.accordion_btn.active::before {
  display: none;
}

#lp_contents .item_text.accordion_btn.active::after {
  display: none;
} */

/* event_Area
==================================*/
#lp_contents .event_Area {
  padding: calc(40 * (var(--rate))) 0 calc(30 * (var(--rate)));
  background: var(--color-lp_gray);
}

#lp_contents .event_blk {
  background: #ffffff;
}

#lp_contents .event_inner {
  padding: calc(20 * (var(--rate))) calc(15 * (var(--rate))) calc(15 * (var(--rate)));
}

#lp_contents .event_Area .event_wrap .ttl {
  text-align: left;
  font-size: calc(14 * (var(--rate)));
  font-weight: 700;
  line-height: 1.7;
}

#lp_contents .event_Area .event_wrap .text {
  text-align: justify;
  margin-top: calc(8 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  font-weight: 500;
  line-height: 1.7;
}

#lp_contents .event_text {
  margin-top: calc(10 * (var(--rate)));
  background: var(--color-lp_gray);
  border-radius: calc(5 * (var(--rate)));
  padding: calc(15 * (var(--rate)));
}

#lp_contents .event_text h4 {
  text-align: center;
  font-size: calc(14 * (var(--rate)));
  font-weight: 700;
}

#lp_contents .event_text ul {
  margin-top: calc(8 * (var(--rate)));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: calc(5 * (var(--rate)));
}

#lp_contents .event_text li {
  text-align: left;
  font-size: calc(12 * (var(--rate)));
}

#lp_contents .event_Area .event_blk {
  position: relative;
  width: calc(360 * (var(--rate)));
  margin: 0 calc(20 * (var(--rate))) calc(20 * (var(--rate)));
  border-radius: calc(10 * (var(--rate)));
  background: #ffffff;
  z-index: 0;
  box-shadow: 5px 5px 10px #bbbaba42;
}

#lp_contents .event_Area .img img {
  width: 100%;
  border-radius: calc(10 * (var(--rate))) calc(10 * (var(--rate))) 0 0;
}

/* green_member
==================================*/
#lp_contents .bottom_ttlArea {
  margin-top: calc(60 * (var(--rate)));
}

#lp_contents .bottom_ttlArea .en {
  font-size: calc(22 * (var(--rate)));
  font-weight: 700;
  font-family: var(--font-lp_eng);
  color: #ffffff;
}

#lp_contents .bottom_ttlArea .ja {
  margin-top: calc(0 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ffffff;
}

#lp_contents .bottom_Areea .banner {
  margin: calc(15 * (var(--rate))) auto 0;
  width: calc(400 * (var(--rate)));
}

#lp_contents .dl_ttl {
  margin-top: calc(15 * (var(--rate)));
  font-size: calc(13 * (var(--rate)));
  color: #ffffff;
}

#lp_contents .dl_wrap {
  margin-top: calc(10 * (var(--rate)));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10 * (var(--rate)));
}

#lp_contents .dl_wrap .apple {
  width: calc(120 * (var(--rate)));
}
#lp_contents .dl_wrap .google {
  width: calc(150 * (var(--rate)));
}


/* Contents
==================================*/

/*------------ Contents ------------*/


/*--------------------------------
            Responsive
 --------------------------------*/

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

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

  #lp_contents .lp_inner{
    box-shadow: none;
    overflow: hidden;
  }

  #lp_contents .left_area,
  #lp_contents .right_area{
    display: none;
  }
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 767px) {

  html {
    font-size: calc(10 * (100vw / 600));
  }

  .page-share-btn{
    height: 0;
  }

  #share{
    z-index: 100 !important;
  }

  #FooterWrap {
    margin-top: -3rem;
  }

  #lp_contents{
  }
  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}
  #lp_contents p {
  }

  #lp_contents .lp_inner{
    box-shadow: none;
  }

}