@charset "UTF-8";

:root {
  --rate: 50rem / 390;
  --font-lp_base: "futura-pt", "Noto Sans JP", sans-serif;
  --font-lp_eng: "ivymode", sans-serif;
  --color-lp_bg: #00D875;
  --color-font_green: #009A41;
  --color-font_orange: #FF8200;
  --color-lp_secondary: #F4F4F4;
  --color-inner_bg: #00C169;
  --color-sub_bg: #F0DBD6;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

@keyframes bounce {
  0% , 100%{
      transform: scale(1.0);
  }
  50%{
      transform: scale(1.15);
  }
}

/* zoom
==================================*/
@keyframes zoom {
   0% {
      transform: scale(1.2);
   }
   100% {
      transform: scale(1);
   }
}

#lp_contents .zoom{
  overflow: hidden;
}

#lp_contents .zoom img{
  transform: scale(1.2);
  transition: all 1.5s;
  opacity: 0;
}

#lp_contents .zoom.is-show img{
  transform: scale(1.0);
  opacity: 1;
}


/* Fade In
==================================*/
#lp_contents .fadeIn {
  opacity: 0;
  transition: 1.5s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 1s;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .fadeInLeft {
  opacity: 0;
  transform: translate(5rem, 0);
  transition: 1s;
}
#lp_contents .fadeInLeft.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .fadeInLeft:nth-of-type(1){
  transition-delay: 0.25s;
}

#lp_contents .fadeInLeft:nth-of-type(2){
  transition-delay: 0.5s;
}

#lp_contents .fadeInLeft:nth-of-type(3){
  transition-delay: 0.75s;
}

#lp_contents .fadeInLeft:nth-of-type(4){
  transition-delay: 1s;
}

#lp_contents .js-textAnime span {
  transition: all 0.5s;
  display: inline-block;
  opacity: 0;
  transform: translateY(calc(10 * (var(--rate))));
}

#lp_contents .js-textAnime span.is-show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bounce-Y {
  0% {
      transform: translateY(0);
  }
  10% {
      transform: translateY(-5px);
  }
  20% {
      transform: translateY(0);
  }
  30% {
      transform: translateY(-5px);
  }
  40% {
      transform: translateY(0);
  }
}
/* simplebar
==================================*/
#lp_contents .simple-bar_wrap *{
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

#lp_contents .simple-bar_wrap{
  overflow-x: scroll;
  padding-bottom: calc(25 * (var(--rate)));
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  padding-left: calc(25 * (var(--rate)));
}

#lp_contents .simple-bar_wrap *::-webkit-scrollbar,
#lp_contents .simple-bar_wrap::-webkit-scrollbar{
  display:none;
}

#lp_contents .simple-bar_wrap ul{
  display: flex;
  width: fit-content;
  padding-right: calc(25 * (var(--rate)));
  gap: calc(10 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: calc(3 * (var(--rate)));
  width: calc(340 * (var(--rate)));
  background: rgb(236 37 18 / 10%);
  /* margin: auto; */
  border-radius: 100rem;
  margin-left: calc(25 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: calc(3 * (var(--rate)));
  border-radius: 100rem;
  background-color: var(--color-lp_font);
}

#lp_contents .simplebar-scrollbar:before{
  background: var(--color-main);
}

/* slider
==================================*/
#lp_contents .lp_slider{
  max-width: calc(365 * (var(--rate)));
  /* margin-right: calc(-25 * (var(--rate))) !important; */
}

#lp_contents .lp_slider .slick-list {
}

#lp_contents .slick-track {
  display: flex;
}

#lp_contents .slick-slide {
  height: auto !important;
}

#lp_contents .slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin: auto;
  line-height: 0;
  margin-top: calc(10 * (var(--rate)));
}

#lp_contents .slick-dots li{
  margin: 0;
  width: calc(20 * (var(--rate)));
  height: calc(20 * (var(--rate)));
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#lp_contents .slick-dots li:first-child:last-child{
  display: none;
}


#lp_contents .slick-dots li button{
  background-color: var(--color-lp_font);
  opacity: .2;
  width: calc(6 * (var(--rate)));
  height: calc(6 * (var(--rate)));
  border-radius: 100%;
  padding: 0;
}

#lp_contents .slick-dots li button:before{
  display: none;
}

#lp_contents .slick-dotted.slick-slider{
  margin: 0;
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
.lp_hamburger {
  position: fixed;
  right: 0;
  bottom: calc(10 * (var(--rate)));
  width: calc(90 * (var(--rate)));
  height: calc(40 * (var(--rate)));
  cursor: pointer;
  z-index: 300;
  background: var(--color-font_green);
  color: #fff;
  border: 3px solid #FFE400;
  border-right: none;
  border-radius: calc(10 * (var(--rate))) 0 0 calc(10 * (var(--rate)));
}

.hamburger__line {
  position: absolute;
  width: calc(14 * (var(--rate)));
  height: 2px;
  left: calc(10 * (var(--rate)));
  background-color: #fff;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: calc(10 * (var(--rate)));
}

.hamburger__line--2 {
  top: 50%;
  transform: translate(0, -50%);
}

.hamburger__line--3 {
  bottom: calc(10 * (var(--rate)));
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  width: calc(30 * (var(--rate)));
  top: calc(18 * (var(--rate)));
  background-color: #FFE400;
  left: calc(5 * (var(--rate)));
}

.open .hamburger__line--2, .open .menu_txt {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  width: calc(30 * (var(--rate)));
  bottom: auto;
  top: calc(18 * (var(--rate)));
  background-color: #FFE400;
  left: calc(5 * (var(--rate)));
}
.lp_hamburger .menu_txt {
    position: absolute;
    right: calc(8 * (var(--rate)));
    font-weight: 500;
    top: 50%;
    transform: translate(0, -50%);
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  bottom: -120%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-inner_bg);
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  /* メニューが多くなったらスクロールできるように */
  padding: calc(80 * (var(--rate))) calc(50 * (var(--rate)));
}

.open .sp-nav {
  bottom: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  /* position: fixed; */
  /* left: 0; */
  /* top: 0; */
  /* width: 100vw; */
  /* height: 100vh; */
  /* z-index: 5; */
  /* background-color: #000; */
  /* opacity: 0; */
  /* visibility: hidden; */
  /* transition: all 0.5s; */
  /* cursor: pointer; */
  /* z-index: 100; */
}

/*ハンバーガーメニューが開いたら表示*/
/*.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}*/

/*--------------------------------
                共 通
 --------------------------------*/

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{
  font-family: var(--font-lp_base);
  font-feature-settings: "palt";
  font-size: calc(14 * (var(--rate)));
  letter-spacing: 0.15em;
  /* line-height: 2; */
  font-weight: 500;
  display: flex;
  justify-content: center;
  /* color: var(--color-lp_font); */
  background-color: var(--color-lp_bg);
  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;}
#lp_contents section{
  position: relative;
  /* padding: calc(60 * (var(--rate))) calc(25 * (var(--rate))); */
  /* padding-right: calc(25 * (var(--rate))); */
  /* padding-left: calc(25 * (var(--rate))); */
}
#lp_contents .lp_inner{
  position: relative;
  z-index: 3;
  width: 100%;
  /* background-color: var(--color-inner_bg); */
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.16);
  order: 2;
  /* padding-bottom: calc(60 * (var(--rate))); */
  /* display: grid; */
  /* gap: calc(60 * (var(--rate))); */
}
#share {
    bottom: 10% !important;
    left: auto !important;
    right: 2% !important;
}

/*------------ Text ------------*/
#lp_contents h1,#lp_contents h2,#lp_contents h3{padding: 0;float: none;font-weight: normal;}
#lp_contents p {
  /* display: block; */
  letter-spacing: 0.08em;
  font-size: calc(14 * (var(--rate)));
  line-height: 2;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  display: inline-block;
  font-size: calc(11 * (var(--rate)));
  line-height: 1.5;
}
#lp_contents p .note{
  margin-top: 0;
}
#lp_contents .bold{
  font-weight: bold;
}
#lp_contents .small{
  font-size: calc(10 * (var(--rate)));
}

/* 追従メニュー */
.fixed-nav {
	display: none;
}
.fixed-nav.m_fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	border-top: 1px solid var(--color-lp_font);
	border-bottom: 1px solid var(--color-lp_font);
	width: 100%;
	animation: fadein 1s ease-out forwards;
	display: block;
	z-index: 20;
	background: var(--color-inner_bg);
}

.fixed-nav.m_fixed .nav-list {
    display: flex;
    align-items: center;
    height: 5rem;
    background: #fff;
    color: #6CC4BE;
    /* font-family: "Marcellus", "Noto Sans JP", sans-serif; */
    justify-content: center;
    box-shadow: 0 0 6px #dddddd;
    /* padding: 0 6rem; */
}

.fixed-nav.m_fixed .nav-list li a {
    padding: 0 1.6rem;
    font-weight: 500;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.4;
    /* display: flex; */
    /* justify-content: center; */
    width: auto;
}

.fixed-nav a.active {
    opacity: 1 !important;
    font-weight: 600;
}

.fixed-nav.m_fixed .nav-menu {
    display: flex;
    /* width: 60rem; */
    align-items: center;
    /* flex-wrap: wrap; */
}

.fixed-nav.m_fixed .nav-menu li {
    width: calc(100% / 4);
    font-size: calc(12 * (var(--rate)));
    text-align: center;
    padding: calc(10 * (var(--rate))) 0 !important;
}

.fixed-nav.m_fixed .nav-menu li a {
    border-right: 1px solid;
}

.fixed-nav.m_fixed .nav-menu li:last-child a {
    border-right: none;
}
#lp_contents .nav-menu .right-nav {
    position: relative;
}

#lp_contents .nav-menu .right-nav::before {
    content: '';
    width: 0;
    height: 0;
    border-left: var(--color-font_orange) .6rem solid;
    border-top: .6rem solid transparent;
    border-bottom: .6rem solid transparent;
    position: absolute;
    left: calc(-15 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
}

#lp_contents .nav-menu .right-nav.is-active::before {
    opacity: 1;
}

#lp_contents .nav-menu .right-nav:hover::before {
    opacity: 1;
}
/*
#lp_contents .nav-wrapper {
    display: none;
}

#lp_contents .nav-wrapper.m_fixed {
    display: block;
}
*/

/* Contents エリア調整
==================================*/
#lp_contents .sec_mv{
  display: grid;
  gap: calc(50 * (var(--rate)));
}

#lp_contents .sec_mv .mv_wrap{
  position: relative;
  overflow: hidden;
}

#lp_contents .sec_mv .mv_wrap .mv_img{
  -webkit-animation: zoom 10s 1;
  animation: zoom 3s 1;
  animation-fill-mode: forwards;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#lp_contents .sec_mv .mv_wrap .mv_ttl{
  width: calc(170 * (var(--rate)));
  position: absolute;
  top: calc(196 * (var(--rate)));
  right: calc(28 * (var(--rate)));
  z-index: 3;
}

#intro-section .lead_txt p {
    font-size: calc(15 * (var(--rate)));
    text-align: center;
    margin-top: calc(15 * (var(--rate)));
    letter-spacing: 0.1em;
}

#intro-section .lead_txt {
    /* margin: calc(25 * (var(--rate))) auto; */
}

#intro-section .menu_wrap {
    width: calc(340 * (var(--rate)));
    border: 1px solid;
    margin: 0 auto calc(10 * (var(--rate)));
    padding: calc(20 * (var(--rate))) calc(15 * (var(--rate))) calc(40 * (var(--rate)));
    position: relative;
    background: #FFEFE8;
}

#intro-section .menu_wrap .ttl {
    text-align: center;
    font-family: var(--font-lp_eng);
    font-weight: 600;
    font-size: calc(20 * (var(--rate)));
    letter-spacing: .1em;
    position: relative;
    margin-bottom: calc(10 * (var(--rate)));
}

#intro-section .menu_wrap .ttl::before, #intro-section .menu_wrap .ttl::after, #intro-section .menu_wrap::before, #intro-section .menu_wrap::after {
    content: '';
    position: absolute;
    border-right: calc(10 * (var(--rate))) solid transparent;
    border-bottom: calc(10 * (var(--rate))) solid var(--color-lp_font);
}

#intro-section .menu_wrap .ttl::before {
    left: calc(-13 * (var(--rate)));
    top: calc(-18 * (var(--rate)));
    transform: rotate(90deg);
}

#intro-section .menu_wrap .ttl::after {
    transform: rotate(-180deg);
    right: calc(-13 * (var(--rate)));
    top: calc(-18 * (var(--rate)));
}

#lp_contents .nav-menu a span {
    font-size: calc(20 * (var(--rate)));
    font-weight: 700;
    padding-right: calc(10 * (var(--rate)));
}

#lp_contents .nav-menu li a {
    font-size: calc(12 * (var(--rate)));
    margin: calc(20 * (var(--rate))) 0;
    color: #fff;
}

#lp_contents .menu_wrap .nav-menu li::after {
    content: '';
    background: url(../img/arrow_btm.svg) no-repeat;
    background-size: 100%;
    width: calc(12 * (var(--rate)));
    height: calc(8 * (var(--rate)));
    position: absolute;
    right: calc(5 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
}

#lp_contents .menu_wrap .nav-menu li:last-child {
    border-bottom: 1px dotted;
}

#intro-section .menu_wrap::before {
    left: calc(2 * (var(--rate)));
    bottom: calc(3 * (var(--rate)));
}

#intro-section .menu_wrap::after {
    right: calc(2 * (var(--rate)));
    bottom: calc(3 * (var(--rate)));
    transform: rotate(-90deg);
}

#lp_contents .sec_info {
    background-color: var(--color-sub_bg);
    /* padding-top: calc(60 * (var(--rate))); */
    padding-bottom: calc(60 * (var(--rate)));
}

#lp_contents .lp_inner .sec-ttl {
    font-size: calc(24 * (var(--rate)));
    font-weight: 700;
    margin-bottom: calc(12 * (var(--rate)));
    letter-spacing: .1em;
}

#lp_contents .lp_inner .sec-ttl span {
    font-size: calc(16 * (var(--rate)));
    font-weight: 500;
    display: block;
}

#section01 .lead_txt {
    margin-bottom: calc(30 * (var(--rate)));
}

#lp_contents .sec_item .ttl_wrap{
  position: relative;
  padding-top: calc(70 * (var(--rate)));
}

#lp_contents .sec_item .ttl_wrap .sub_ttl{
  width: calc(153 * (var(--rate)));
  height: calc(38 * (var(--rate)));
  background-image: url(../img/ttl_tag.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: calc(17 * (var(--rate)));
  font-size: calc(12 * (var(--rate)));
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  left: calc(15 * (var(--rate)));
  transform: rotate(0);
  transition: all 2s;
  opacity: 0;
}

#lp_contents .sec_item .ttl_wrap .sub_ttl.is-show{
  transform: rotate(-10deg);
  transform-origin: top right;
  opacity: 1;
}

#lp_contents .sec_item .ttl_wrap .sub_ttl span{
  display: block;
  width: calc(135 * (var(--rate)));
}

#lp_contents .sec_item .ttl_wrap .main_ttl{
  font-size: calc(24 * (var(--rate)));
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

#lp_contents .sec_item .item_wrap{
  margin-right: calc(-25 * (var(--rate)));
  margin-top: calc(25 * (var(--rate)));
  margin-left: calc(-25 * (var(--rate)));
}

#lp_contents .sec_item .item_wrap .item{
  position: relative;
  width: calc(280 * (var(--rate)));
  background-color: #FFEFE8;
  border: 1px solid;
  padding: calc(10 * (var(--rate))) calc(20 * (var(--rate))) calc(20 * (var(--rate)));
  /* margin: 0 calc(5 * (var(--rate))); */
}


#lp_contents .sec_item .item_wrap .item_lead{
  font-size: calc(12 * (var(--rate)));
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: calc(14 * (var(--rate)));
}


#lp_contents .sec_item .item_wrap .item_name{
  font-size: calc(14 * (var(--rate)));
  line-height: 1.4;
  font-weight: 600;
  margin: calc(8 * (var(--rate))) 0;
}

#lp_contents .sec_item .item_wrap .item_price{
  font-size: calc(20 * (var(--rate)));
  line-height: 1;
  font-weight: 700;
}

#intro-section .mv_wrap {
    margin: 0 calc(-25 * (var(--rate)));
}

#lp_contents .menu_wrap .nav-menu li {
    position: relative;
    border-top: 1px dotted;
}

#lp_contents .sec_info .cont-wrap {
    background: var(--color-inner_bg);
    padding: calc(20 * (var(--rate))) calc(20 * (var(--rate))) calc(30 * (var(--rate)));
    margin-top: calc(20 * (var(--rate)));
}

#lp_contents .sec_info .cont-wrap h3 {
    font-size: calc(20 * (var(--rate)));
    font-weight: 700;
    margin-bottom: calc(15 * (var(--rate)));
}

#lp_contents .sec_info .cont-wrap h3 span {
    opacity: .2;
    font-family: var(--font-lp_eng);
    font-size: calc(13 * (var(--rate)));
    display: block;
}

#lp_contents .sec_info .cont-wrap h3 .big-txt {
    opacity: 1;
    font-size: calc(18 * (var(--rate)));
    display: inline;
}

#section01 .cont-wrap h3 {
    font-size: calc(18 * (var(--rate))) !important;
    margin-bottom: calc(10 * (var(--rate))) !important;
}

#section01 .cont-wrap p {
    font-size: calc(13 * (var(--rate)));
}

#section01 .cont-wrap p span {
    border-bottom: 1px solid;
    font-weight: 700;
}

#lp_contents .sec_item .item_wrap h3 {
    font-size: calc(20 * (var(--rate)));
    font-weight: 700;
    margin-bottom: calc(20 * (var(--rate)));
    margin-left: calc(25 * (var(--rate)));
}

#lp_contents .sec_item .item_wrap h3 span {
    opacity: .2;
    font-family: var(--font-lp_eng);
    font-size: calc(13 * (var(--rate)));
    display: block;
}

#lp_contents .sec_item .item_wrap .item_img {
    width: calc(200 * (var(--rate)));
    margin: 0 auto;
}

#lp_contents .sec_item .item_wrap .item_name span {
    font-family: var(--font-lp_eng);
    display: block;
    padding-bottom: calc(4 * (var(--rate)));
}

#lp_contents .sec_item .fl-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#lp_contents .sec_item .item_wrap .tax {
    font-size: calc(11 * (var(--rate)));
    font-weight: 500;
}

#lp_contents .btn-detail a {
    background: var(--color-font_green);
    color: #fff;
    position: relative;
    width: calc(90 * (var(--rate)));
    padding: calc(5 * (var(--rate))) 0 calc(4 * (var(--rate))) calc(38 * (var(--rate)));
    border-radius: 100px;
    font-size: calc(15 * (var(--rate)));
    box-shadow: 0px 5px 0px #007631;
    transition: .3s;
    font-weight: 600;
    margin-top: calc(-5 * (var(--rate)));
}

#lp_contents .btn-detail a::before {
    content: '';
    background: url(../img/cart.svg) no-repeat;
    background-size: 100%;
    width: calc(14 * (var(--rate)));
    height: calc(16 * (var(--rate)));
    position: absolute;
    left: calc(18 * (var(--rate)));
    top: 55%;
    transform: translate(0, -50%);
}

#lp_contents .slick-dots li.slick-active button {
    opacity: 1;
}

#lp_contents .sec_item .item_wrap .item .item_img:hover{
  opacity: 1;
}

#lp_contents .sec_item .item_wrap .item .item_img:hover img{
  transform: scale(1.2);
}

#section04 {
    margin-bottom: 0 !important;
}

#section04 .item-wrap h4 {
    font-family: var(--font-lp_eng);
    font-size: calc(18 * (var(--rate)));
    font-weight: 600;
    letter-spacing: .1em;
}

#section04 .cont-wrap .lead_txt {
    font-size: calc(13 * (var(--rate)));
    line-height: 1.75;
    margin: calc(5 * (var(--rate))) 0 calc(12 * (var(--rate)));
}

#section04 .item-wrap .item-list {
    display: flex;
    gap: 1rem;
}

#section04 .item-wrap .item-name {
    font-size: calc(12 * (var(--rate)));
}

#section04 .item-wrap .item-name span {
    font-size: calc(15 * (var(--rate)));
}

#section04 .item-wrap .item-price {
    font-size: calc(15 * (var(--rate)));
    font-weight: 600;
    line-height: 1;
}

#section04 .item-wrap .tax {
    font-size: calc(10 * (var(--rate)));
    font-weight: 500;
}

#section04 .item-wrap {
    margin-bottom: calc(30 * (var(--rate)));
}

#lp_contents .btn-list a {
    text-align: center;
    background: rgb(255 255 255 / 50%);
    border: 1px solid;
    border-radius: 100px;
    padding: calc(7 * (var(--rate))) 0;
    font-size: calc(12 * (var(--rate)));
    position: relative;
}

#lp_contents .btn-list a::after {
    content: '';
    background: url(../img/arrow_red.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    width: calc(14 * (var(--rate)));
    height: calc(10 * (var(--rate)));
    right: calc(15 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
}

#section04 .step-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin: calc(25 * (var(--rate))) 0 calc(30 * (var(--rate)));
}

#section04 .step-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(15 * (var(--rate)));
    position: relative;
}

#section04 .step-list .item_img {
    width: calc(100 * (var(--rate)));
}

#section04 .step-list .step-txt {
    width: calc(170 * (var(--rate)));
}

#section04 .step-list .step-txt dd {
    font-size: calc(13 * (var(--rate)));
    line-height: 1.75;
}

#section04 .step-list .step-txt dt {
    font-family: var(--font-lp_eng);
    font-size: calc(11 * (var(--rate)));
    margin-bottom: calc(10 * (var(--rate)));
    font-weight: 600;
}

#section04 .step-list .step-txt dt span {
    font-size: calc(14 * (var(--rate)));
}

#section04 .step-list li::after {
    content: '';
    background: url(../img/arrow_btm.svg)no-repeat;
    background-size: 100%;
    position: absolute;
    width: calc(16 * (var(--rate)));
    height: calc(9 * (var(--rate)));
    bottom: calc(-21 * (var(--rate)));
    left: calc(48 * (var(--rate)));
}

#section04 .step-list li:last-child::after {
    content: none;
}

#allbtn-section .main-ttl {
    font-family: var(--font-lp_eng);
    font-size: calc(45 * (var(--rate)));
    padding-top: calc(50 * (var(--rate)));
    font-family: var(--font-lp_eng);
    text-align: center;
}

#lp_contents .btn-list.all a {
    width: calc(310 * (var(--rate)));
    margin: calc(10 * (var(--rate))) auto 0;
    font-size: calc(14 * (var(--rate)));
    padding: calc(10 * (var(--rate))) 0;
}

#allbtn-section {
    margin: 0 !important;
    padding: 0 !important;
}

#allbtn-section .bg-blk {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    /* clip: rect(0, auto, auto, 0); */
    z-index: -1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

#allbtn-section .bg-blk::before {
    background: url(../img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    content: '';
    position: fixed;
    top: 0;
    display: block;
    width: 60rem;
    height: 100vh;
}

#allbtn-section .btn-list.all {
    padding-bottom: calc(70 * (var(--rate)));
}
section#section02 {
    padding-bottom: 0;
}

#lp_contents .left_area dt {
    font-family: var(--font-lp_eng);
    font-size: 4.5rem;
    letter-spacing: .1em;
	line-height: 1.2;
}

#lp_contents .left_area dd {
	text-align: center;
	font-size: 2rem;
	line-height: 1.75;
	padding-top: 2rem;
	font-weight: 600;
	letter-spacing: .1em;
}

#intro-section {
    background: var(--color-inner_bg);
    text-align: center;
    color: #fff;
}

#lp_contents .lp_bg {
    position: fixed;
    top: 0;
    left: 0;
    /* transform: translate(-50%, 0); */
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background: url(../img/bg.jpg) center center / cover no-repeat;
}

#intro-section h1 {
    color: #FFE400;
    font-weight: 700;
    letter-spacing: .1em;
    font-size: calc(40 * (var(--rate)));
    line-height: 1.2;
    margin: calc(50 * (var(--rate))) auto calc(35 * (var(--rate)));
}

#intro-section h1 span {
    display: block;
    font-size: calc(20 * (var(--rate)));
}

#intro-section h2 {
    font-size: calc(18 * (var(--rate)));
    letter-spacing: .15em;
    line-height: 1.8;
    font-weight: 600;
}

#intro-section .release-day {
    margin: calc(60 * (var(--rate))) auto;
    width: calc(340 * (var(--rate)));
    background: url(../img/release_bg.png) center center / cover no-repeat;
    border: calc(5 * (var(--rate))) solid #FFE400;
    border-radius: calc(20 * (var(--rate)));
    color: var(--color-font_green);
    padding: calc(10 * (var(--rate))) 0 calc(30 * (var(--rate)));
}
#intro-section .release-day dt {
    background: var(--color-font_green);
    color: #fff;
    display: inline-block;
    border-radius: calc(5 * (var(--rate)));
    padding: calc(3 * (var(--rate))) calc(10 * (var(--rate))) calc(1 * (var(--rate)));
    margin: calc(20 * (var(--rate))) auto calc(10 * (var(--rate)));
}

#intro-section .release-day dd {
    font-size: calc(16 * (var(--rate)));
    font-weight: 700;
    letter-spacing: .05em;
}

#intro-section .release-day dd span {
    font-size: calc(24 * (var(--rate)));
}

#intro-section .release-day .note {
    margin-top: calc(10 * (var(--rate)));
}

#lp_contents .loop-txt {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-font_green);
    font-size: calc(20 * (var(--rate)));
    color: #FFE400;
}

#lp_contents .loop-txt ul {
    display: flex;
    animation: loop-slide 20s linear infinite;
    list-style: none;
    margin: 0;
    padding: 0;
}

#lp_contents .loop-txt li {
    width: max-content;
    line-height: 1;
    padding: calc(10 * (var(--rate))) calc(12 * (var(--rate)));
    position: relative;
    font-weight: 500;
    letter-spacing: .1em;
}

#lp_contents .loop-txt li::after {
    content: '';
    position: absolute;
    background: var(--color-font_orange);
    width: calc(6 * (var(--rate)));
    height: calc(6 * (var(--rate)));
    border-radius: 10rem;
    right: calc(-3 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
}
@keyframes loop-slide {
  0% { transform:translateX(0); }
100% { transform:translateX(-100%); }
}

#lineup-section {
    padding: calc(50 * (var(--rate))) calc(20 * (var(--rate))) calc(40 * (var(--rate)));
}

#lineup-section h2 {
    text-align: center;
    color: #fff;
    font-size: calc(26 * (var(--rate)));
    margin-bottom: calc(25 * (var(--rate)));
    font-weight: 600;
    letter-spacing: .15em;
}

#lineup-section .item-wrap {
    background: #FFFCE2;
    border-radius: calc(20 * (var(--rate)));
    border: calc(5 * (var(--rate))) solid var(--color-font_green);
    padding: calc(25 * (var(--rate))) 0;
    color: var(--color-font_orange);
    margin-bottom: calc(20 * (var(--rate)));
}

#lineup-section .item-wrap h3 {
    font-size: calc(12 * (var(--rate)));
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

#lineup-section .item-wrap h3 span {
    font-size: calc(35 * (var(--rate)));
    font-weight: 700;
    letter-spacing: .1em;
}

#lineup-section .item-wrap .item_detail dt {
    text-align: center;
    font-size: calc(15 * (var(--rate)));
    font-weight: 700;
    line-height: 1.6;
}

#lineup-section .item-wrap .item_detail dd {
    font-size: calc(13 * (var(--rate)));
    padding: calc(10 * (var(--rate))) calc(24 * (var(--rate))) calc(20 * (var(--rate)));
    line-height: 1.8;
    /* font-weight: 400; */
}

#lineup-section .item-wrap .name-wrap {
    background: #FCF7D3;
    padding: calc(15 * (var(--rate))) calc(15 * (var(--rate))) calc(20 * (var(--rate)));
    margin: 0 calc(24 * (var(--rate)));
    border-radius: calc(10 * (var(--rate)));
}

#lineup-section .item-wrap .item_name {
    font-size: calc(13 * (var(--rate)));
    line-height: 1.6;
    margin-bottom: calc(8 * (var(--rate)));
}

#lineup-section .item-wrap .item_name span {
    font-size: calc(14 * (var(--rate)));
    display: block;
    font-weight: 600;
    padding-bottom: calc(5 * (var(--rate)));
}

#lp_contents .fl-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#lineup-section .item-wrap .item_price {
    font-size: calc(18 * (var(--rate)));
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.5;
    width: calc(170 * (var(--rate)));
}

#lineup-section .item-wrap .tax {
    font-size: calc(12 * (var(--rate)));
}

#lineup-section .item-wrap .item_price .jp-font {
    font-size: calc(12 * (var(--rate)));
    line-height: 1.5;
    display: inline-block;
    font-weight: 500;
    /* margin-top: calc(10 * (var(--rate))); */
}

#lp_contents .btn-detail a:hover {
    box-shadow: unset;
    transform: translateY(4px);
    opacity: 1;
}


#lp_contents .all-btn a {
    background: var(--color-font_orange);
    border-radius: 10rem;
    width: calc(310 * (var(--rate)));
    text-align: center;
    position: relative;
    font-weight: 600;
    letter-spacing: .2em;
    font-size: calc(20 * (var(--rate)));
    padding: calc(16 * (var(--rate))) 0 calc(13 * (var(--rate)));
    margin: 0 auto;
    box-shadow: 0px 5px 0px #D16B00;
    transition: .3s;
    color: #fff;
}

#lp_contents .all-btn a :hover {
    box-shadow: unset;
    transform: translateY(4px);
}

#lp_contents .all-btn a:hover {
    box-shadow: unset;
    transform: translateY(4px);
    opacity: 1;
}

#lp_contents .all-btn a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: calc(7 * (var(--rate))) solid;
    border-top: calc(7 * (var(--rate)))  solid transparent;
    border-bottom: calc(7 * (var(--rate)))  solid transparent;
    right: calc(25 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
}

#lp_contents .all-btn img {
    width: calc(160 * (var(--rate)));
    margin: 0 auto calc(-8 * (var(--rate)));
  animation: bounce-Y 2s linear 0.3s infinite;
}
#footer-section {
    background: var(--color-inner_bg);
}

#footer-section .all-btn {
    margin-top: calc(-15 * (var(--rate)));
}

#footer-section .copyright {
    color: #fff;
    text-align: center;
    font-size: calc(11 * (var(--rate)));
    line-height: 1.5;
    padding: calc(50 * (var(--rate))) 0 calc(30 * (var(--rate)));
}

body.is-fixed #HeaderWrap, body.is-fixed .page-share-btn, body.is-fixed #FooterWrap {
    display: none;
}

.lp_hamburger.is-active {
    bottom: auto;
    background: none;
    border: none;
    width: calc(40 * (var(--rate)));
    top: calc(20 * (var(--rate)));
    right: calc(20 * (var(--rate)));
}

body.is-fixed {
    overflow: hidden;
}

#lp_contents .sp-nav .nav-menu .right-nav::before {
    content: none;
}

#lp_contents .sp-nav .all-btn a {
    width: calc(260 * (var(--rate)));
    font-size: calc(16 * (var(--rate)));
}
#lineup-section .item-wrap .item_price .small-txt {
    letter-spacing: .05em;
}

#lineup-section #item08 .item_price .jp-font {
    margin-top: calc(10 * (var(--rate)));
}


/*--------------------------------
            Layout  PC
 --------------------------------*/
@media screen and (min-width: 769px){
  #lp_contents .full_area{
    position: sticky;
    top: 6.8rem;
    height: 100vh;
    width: calc(calc(100% - 50rem) / 2);
    height: calc(100vh - 6.8rem);
    max-width: 60rem;
    padding: 3rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }

  #lp_contents .left_area{
    left: 0;
    order: 1;
    /* display: block; */
  }

  #lp_contents .right_area{
    right: 0;
    order: 3;
  }
	
.fixed-nav.m_fixed {
    display: none;
}
#lp_contents .right_area .nav-menu a {
    font-size: 1.2rem;
    line-height: 1;
}

#lp_contents .right_area .nav-menu a span {
    font-size: 2rem;
    padding-right: 1rem;
}
	
#lp_contents .left_area .logo {
    width: 15rem;
    margin: 0 auto;
}

#lp_contents .left_area .page-ttl {
    font-size: 4.2rem;
    color: #FFE400;
    font-weight: 700;
    text-align: center;
    margin: 2rem 6rem;
    line-height: 1.3;
}

#lp_contents .left_area .page-ttl span {
    display: block;
    font-size: 2.4rem;
}

#lp_contents .nav-menu .right-nav.is-active {
    color: var(--color-font_orange);
}

#lp_contents .right_area .nav-menu a:hover {
    color: var(--color-font_orange);
}
#lp_contents .lp_bg {
    left: 50%;
    width: 50rem;
    transform: translate(-50%, 0);
}
	
#lp_contents .left_area .all-btn a {
    width: 28rem;
    font-size: 1.8rem;
    padding: 1.2rem 0;
}

#lp_contents .left_area .all-btn a::after {
    border-left: .6rem solid;
    border-top: .6rem solid transparent;
    border-bottom: .6rem solid transparent;
    right: 2.5rem;
}

#lp_contents .left_area .all-btn img {
    width: 16rem;
}	
#lp_contents .lp_inner{
	width: 50rem;
}
#lp_contents .nav-wrapper {
    display: none;
}
	
}


/*--------------------------------
            Responsive
 --------------------------------*/

@media screen and (max-width: 1600px){
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}

@media (min-width: 769px) and (max-width: 1400px) {
  html {
    font-size: calc(10 * (100vw / 1400));
  }

  #lp_contents .lp_inner{
    /* box-shadow: none; */
    /* width: 100%; */
  }

  #lp_contents .sec_mv .mv_wrap {
    max-width: 60rem;
    margin: auto;
  }

  #lp_contents .lp_slider{
    max-width: 120rem;
  }

  #lp_contents .video_wrap{
    width: 100%;
  }

  #lp_contents .video_wrap .video_blk{
    height: 57rem;
  }
/*
  #lp_contents .left_area,
  #lp_contents .right_area{
    display: none;
  }
*/
}

/*--------------------------------
            Layout  SP
 --------------------------------*/
@media (max-width: 768px) {

  html {
    font-size: calc(10 * (100vw / 500));
  }

  .page-share-btn{
    height: 0;
  }

  #share{
    z-index: 100 !important;
  }

  #FooterWrap {
    margin-top: -3rem;
  }

  #lp_contents .sp_only{display: block;}
  #lp_contents .pc_only{display: none;}

  #lp_contents a:hover{opacity: 1}

  #lp_contents .lp_inner{
    box-shadow: none;
  }
#lp_contents{
  overflow: hidden;
}
}