@charset "UTF-8";

:root {
  --rate: 50rem / 390;
  --color-lp_font: #333333;
  --color-lp_bg: #FFFEF8;
  --color-font_orange: #E89E10;
  --color-font_green: #6DB44C;
  --color-inner_bg: #fff;
  --color-sub_bg: #FFF;
}

/*--------------------------------
            CSS Animation
 --------------------------------*/

@keyframes bounce {
  0% , 100%{
      transform: scale(1.0);
  }
  50%{
      transform: scale(1.15);
  }
}

/* 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(15 * (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(20 * (var(--rate)));
  gap: calc(10 * (var(--rate)));
}

#lp_contents .simplebar-track.simplebar-horizontal {
  height: calc(3 * (var(--rate)));
  width: calc(300 * (var(--rate)));
  background: rgb(190 184 171 / 40%);
  /* margin: auto; */
  border-radius: 100rem;
  margin: 0 auto;
}

#lp_contents .simplebar-track.simplebar-horizontal .simplebar-scrollbar{
  top: 0;
  height: calc(3 * (var(--rate)));
  border-radius: 100rem;
  background-color: #BEB8AB;
}

#lp_contents .simplebar-scrollbar:before{
  background: var(--color-main);
}



/* 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;
}

 
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#lp_contents .zoomIn {
	opacity: 0;
}
#lp_contents .zoomIn.is-show {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}


/* 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.Right {
  transform: translate(10rem, 0);
}

#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);
  }
}

/* flip
==================================*/
@keyframes flip {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg)
  }
}
#lp_contents .flip {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0
}
#lp_contents .flip.is-show {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-name: flip;
  animation-name: flip;
}

/* ornament img
==================================*/
@keyframes rotate {
   0%,100% {
    transform: rotate(2deg);
   }
   50% {
    transform: rotate(-2deg);
   }
}

@keyframes rotate2 {
  0% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(-10deg);
  }
}

/*--------------------------------
                共 通
 --------------------------------*/

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(13 * (var(--rate)));
  letter-spacing: 0.1em;
  /* color: #222; */
  font-weight: 400;
  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(50 * (var(--rate))) calc(15 * (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 .5rem hsl(0deg 0% 67% / 25%);
  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 {
  /* margin: calc(30 * (var(--rate))) auto; */
  letter-spacing: 0.1em;
  /* font-size: calc(15 * (var(--rate))); */
  /* line-height: 2; */
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  /* margin-top: calc(10 * (var(--rate))); */
  font-size: calc(11 * (var(--rate))) !important;
  /* line-height: 1.5; */
  /* font-weight: 400; */
}
#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: .5rem solid;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    position: absolute;
    left: 1.6rem;
    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; */
    line-height: 2;
}

#intro-section .lead_txt {
    text-align: center;
    margin: calc(30 * (var(--rate))) auto;
    font-size: calc(15 * (var(--rate)));
    line-height: 2;
}

#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: 600;
    padding-right: calc(10 * (var(--rate)));
}

#lp_contents .nav-menu li a {
    display: block;
    /* margin: calc(20 * (var(--rate))) 0; */
    color: var(--color-font_orange);
    text-align: center;
    background: #fff;
    border: 1px solid;
    border-radius: .4rem;
    box-shadow: 0px 4px 0px #D99004;
    position: relative;
    font-weight: 500;
}
#lp_contents .nav-menu li a:hover {
    box-shadow: unset;
    transform: translateY(3px);
    opacity: 1;
}

#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: 600;
    margin-bottom: calc(20 * (var(--rate)));
    letter-spacing: .15em;
    text-align: center;
    color: var(--color-font_orange);
    line-height: 1.5;
}

#lp_contents .lp_inner .sec-ttl span {
    font-size: calc(16 * (var(--rate)));
    width: fit-content;
    display: block;
    color: var(--color-font_red);
    position: relative;
    margin: 0 auto;
}

#section01 .lead_txt {
    margin-bottom: calc(30 * (var(--rate)));
}

#intro-section .mv_wrap {
    margin: 0 calc(-15 * (var(--rate)));
}

#lp_contents .menu_wrap .nav-menu li {
    position: relative;
    border-top: 1px dotted;
}


#lp_contents .btn-detail a {
    display: block;
    color: var(--color-font_green);
    position: relative;
    text-align: center;
    padding-right: calc(10 * (var(--rate)));
    border-bottom: 1px solid;
    font-size: calc(11 * (var(--rate)));
    width: calc(110 * (var(--rate)));
    line-height: 1.5;
    font-weight: 500;
    margin: calc(10 * (var(--rate))) auto 0;
}

#lp_contents .btn-detail a::after {
    content: '';
    position: absolute;
    right: calc(3 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
    width: 0;
    height: 0;
    border-left: calc(4 * (var(--rate))) solid;
    border-top: calc(4 * (var(--rate))) solid transparent;
    border-bottom: calc(4 * (var(--rate))) solid transparent;
}


#lp_contents #section02 {
    padding: calc(50 * (var(--rate))) 0 calc(20 * (var(--rate)));
    background: #FCFAF5;
}

#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;
}

#lp_contents  #intro-section {
    padding-bottom: calc(60 * (var(--rate)));
    padding-top: 0 !important;
    /* color: #fff; */
}

#lp_contents .btn-detail a:hover {
    /* box-shadow: unset;
    transform: translateY(4px);
    opacity: 1; */
}


body.is-fixed #HeaderWrap, body.is-fixed .page-share-btn, body.is-fixed #FooterWrap {
    display: none;
}


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;
}

#lp_contents .lp_inner .sec-ttl span::before, #lp_contents .lp_inner .sec-ttl span::after {
    content: '';
    position: absolute;
    width: calc(8 * (var(--rate)));
    height: calc(1 * (var(--rate)));
    background-size: 100%;
    background-color: var(--color-font_red);
    top: 50%;
    transform: translate(0, -50%);
}

#lp_contents .lp_inner .sec-ttl span::before {
    left: calc(-15 * (var(--rate)));
}

#lp_contents .lp_inner .sec-ttl span::after {
    right: calc(-12 * (var(--rate)));
}

#lineup-section .menu-wrap {
    display: flex;
    justify-content: center;
    gap: calc(5 * (var(--rate)));
    letter-spacing: .05em;
    text-align: center;
    font-size: calc(11 * (var(--rate)));
    margin: 0 auto calc(50 * (var(--rate)));
    width: calc(350 * (var(--rate)));
}

#lineup-section .menu-wrap span {
    font-size: calc(16 * (var(--rate)));
    display: block;
    font-weight: 600;
    padding: calc(10 * (var(--rate))) 0 calc(2 * (var(--rate)));
}

#lineup-section .menu-wrap li {
    color: var(--color-font_red);
    position: relative;
}

#lineup-section .menu-wrap li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: calc(5 * (var(--rate))) solid transparent;
    border-right: calc(5 * (var(--rate))) solid transparent;
    border-top: calc(5 * (var(--rate)))  solid;
    bottom: calc(-10 * (var(--rate)));
    left: 50%;
    transform: translate(-50%, 0);
}

#lineup-section .item-wrap h3 span {
    font-weight: 600;
    font-size: calc(25 * (var(--rate)));
}

#lineup-section .item-wrap .price-wrap {
    display: flex;
    justify-content: center;
    gap: calc(10 * (var(--rate)));
    font-weight: 600;
    align-items: center;
    margin: calc(5 * (var(--rate))) auto calc(10 * (var(--rate)));
}

#lineup-section .item-wrap .price-wrap .off-txt {
    font-size: calc(13 * (var(--rate)));
    border: 1px solid;
    line-height: 1;
    padding: calc(2 * (var(--rate))) calc(8 * (var(--rate)));
}

#lineup-section .item-wrap .price-wrap .off-txt span {
    font-size: calc(18 * (var(--rate)));
}

#lineup-section .item-wrap .price-wrap .price-txt {
    font-size: calc(24 * (var(--rate)));
    letter-spacing: .05em;
}

#lineup-section .item-wrap .item_detail {
    margin: calc(15 * (var(--rate))) 0 calc(20 * (var(--rate)));
}

#lineup-section .item-wrap .btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(10 * (var(--rate)));
}

#lineup-section .item-wrap .btn-area a {
    border: 1px solid var(--color-font_red);
    border-radius: 10rem;
    text-align: center;
    padding: calc(7 * (var(--rate))) 0 calc(6 * (var(--rate)));
    font-size: calc(13 * (var(--rate)));
    letter-spacing: 0.05em;
    color: var(--color-font_red);
    position: relative;
    box-shadow: 0px 4px 0px #9f0006;
    transition: .3s;
	width: calc(170 * (var(--rate)));
}

#lineup-section .item-wrap .detail-btn {
    color: var(--color-font_red);
    background: #fff;
    /* border: 1px solid; */
    /* box-shadow: 0px 4px 0px #9f0006; */
    /* transition: .3s; */
}

#lineup-section .item-wrap .cart-btn {
    color: #fff !important;
    background: var(--color-font_red);
    padding-left: calc(18 * (var(--rate))) !important;
    /* border: 1px solid var(--color-font_red); */
    /* box-shadow: 0px 4px 0px #9f0006; */
    /* transition: .3s; */
}

#lineup-section .item-wrap .cart-btn::before {
    content: '';
    position: absolute;
    background: url(../img/ico_cart.svg) no-repeat;
    width: calc(13 * (var(--rate)));
    height: calc(13 * (var(--rate)));
    background-size: 100%;
    left: calc(32 * (var(--rate)));
    top: 50%;
    transform: translate(0, -50%);
}

#lineup-section .item-wrap .set-list {
    background: #fff;
    padding: calc(16 * (var(--rate)));
    position: relative;
    margin-top: calc(30 * (var(--rate)));
}

#lineup-section .item-wrap .set-list h4 {
    font-size: calc(13 * (var(--rate)));
    font-weight: 600;
}

#lineup-section .item-wrap .set-list li {
    font-size: calc(12 * (var(--rate)));
    font-weight: 400;
    letter-spacing: .1em;
    padding: calc(3 * (var(--rate))) 0 calc(3 * (var(--rate))) calc(12 * (var(--rate)));
    line-height: 1.5;
    position: relative;
}

#lineup-section .item-wrap .set-list li::before {
    position: absolute;
    content: '';
    width: calc(4 * (var(--rate)));
    height: calc(4 * (var(--rate)));
    background-color: var(--color-font_red);
    border-radius: 10rem;
    left: calc(2 * (var(--rate)));
    top: calc(10 * (var(--rate)));
}

#lineup-section .item-wrap .set-list .bag_img {
    width: calc(110 * (var(--rate)));
    position: absolute;
    top: calc(-10 * (var(--rate)));
    right: calc(-10 * (var(--rate)));
}
#lineup-section .sec-ttl {
    font-size: calc(22 * (var(--rate))) !important;
}

#lineup-section .sec-ttl span {
    font-size: calc(13 * (var(--rate))) !important;
}
#lineup-section .menu-wrap li:nth-child(2) {
    color: var(--color-font_blue);
}


#lp_contents .nav-wrapper {
    position: fixed;
    z-index: 20;
    bottom: 0;
    width: 100%;
    translate: 0 100%;
    transition: translate .3s;
}

#lp_contents .nav-wrapper.m_fixed {
    translate: 0 0;
}

#lp_contents .nav-wrapper .nav_list {
    background: #FABA43;
    display: flex;
    align-items: center;
    /* box-shadow: 0 0 5px #ddd; */
    color: #fff;
    height: calc(50 * (var(--rate)));
}

#lp_contents .nav-wrapper .nav_list li {
    width: calc(100% / 3);
    text-align: center;
    /* font-size: calc(12 * (var(--rate))); */
    /* line-height: 1.4; */
    position: relative;
    /* letter-spacing: 0.08em; */
}

#lp_contents .nav-wrapper .nav_list span {
    display: block;
    font-size: calc(15 * (var(--rate)));
    font-weight: 600;
}

#lp_contents .nav-wrapper .nav_list a {
    display: block;
    font-size: calc(12 * (var(--rate)));
    line-height: 1.4;
	font-weight: 500;
}

#lp_contents .nav-wrapper .nav_list li:nth-child(2) {
    color: var(--color-font_blue);
}

#lp_contents .nav-wrapper .nav_list li:nth-child(3) {
    color: var(--color-font_yellow);
}

#lp_contents .nav-wrapper .nav_list li::after {
    content: '';
    position: absolute;
    height: calc(30 * (var(--rate)));
    width: calc(1 * (var(--rate)));
    background: #fff;
    background-size: 100%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#lp_contents .nav-wrapper .nav_list li:last-child::after {
    content: none;
}

#lp_contents .lp_inner .nav-menu {
    display: flex;
    justify-content: space-between;
    /* padding: 0 calc(15 * (var(--rate))); */
}

#lp_contents .lp_inner .nav-menu a {
    width: calc(116 * (var(--rate)));
    padding: calc(10 * (var(--rate))) 0 calc(16 * (var(--rate)));
    line-height: 1.4;
    font-size: calc(13 * (var(--rate)));
}

#lp_contents .lp_inner .nav-menu a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: calc(5 * (var(--rate))) solid transparent;
    border-right: calc(5 * (var(--rate))) solid transparent;
    border-top: calc(5 * (var(--rate))) solid;
    position: absolute;
    bottom: calc(6 * (var(--rate)));
    left: 50%;
    transform: translate(-50%, 0);
}

#lp_contents #section01 {
    background: #FAF8EC;
}
#lp_contents #section01 .point-list li {
    background: #fff;
    border-radius: calc(4 * (var(--rate)));
    padding: calc(28 * (var(--rate))) 0;
    text-align: center;
    margin-bottom: calc(13 * (var(--rate)));
}

#lp_contents #section01 .point-list h3 {
    color: var(--color-font_green);
    font-size: calc(18 * (var(--rate)));
    font-weight: 600;
    letter-spacing: .1em;
}

#lp_contents #section01 .point-list h3 .num {
    display: block;
    font-size: calc(12 * (var(--rate)));
    border: 1px solid;
    border-radius: 10rem;
    width: calc(80 * (var(--rate)));
    padding: calc(3 * (var(--rate))) 0;
    line-height: 1;
    margin: 0 auto calc(5 * (var(--rate)));
}

#lp_contents #section01 .point-list h3 .num span {
    font-size: calc(13 * (var(--rate)));
}

#lp_contents #section01 .point-list .ico-img {
    width: calc(140 * (var(--rate)));
    margin: calc(5 * (var(--rate))) auto;
}
#lp_contents .item-wrap .item {
    width: calc(160 * (var(--rate)));
    background: #fff;
    box-shadow: 0 0 10px hsl(0deg 0% 0% / 5%);
}
#lp_contents #section02 .cate-menu {
    display: flex;
    flex-wrap: wrap;
    padding: 0 calc(15 * (var(--rate))) calc(30 * (var(--rate)));
    gap: calc(6 * (var(--rate)));
}

#lp_contents #section02 .cate-menu a {
    background: #F7F3E9;
    border: 1px solid #EBE5D0;
    border-radius: calc(4 * (var(--rate)));
    position: relative;
    padding: calc(8 * (var(--rate))) calc(10 * (var(--rate)));
    display: -webkit-box;
    width: calc(116 * (var(--rate)));
    font-size: calc(12 * (var(--rate)));
}

#lp_contents #section02 .cate-menu li:nth-child(n+4) a {
    width: calc(177 * (var(--rate)));
}

#lp_contents #section02 .cate-menu a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: calc(5 * (var(--rate))) solid transparent;
    border-right: calc(5 * (var(--rate))) solid transparent;
    border-top: calc(5 * (var(--rate))) solid;
    position: absolute;
    top: 50%;
    right: calc(8 * (var(--rate)));
    transform: translate(0, -50%);
}

#lp_contents #section02 h3 {
    padding: 0 0 calc(15 * (var(--rate))) calc(15 * (var(--rate)));
    font-size: calc(18 * (var(--rate)));
    font-weight: 600;
    letter-spacing: .1em;
}

#lp_contents .item-wrap .item_img {
    position: relative;
    border-bottom: 1px solid #EEEEEE;
}

#lp_contents .item-wrap .ico-sell {
    color: #F05858;
    font-size: calc(10 * (var(--rate)));
    letter-spacing: 0.05em;
    font-weight: 500;
    border: 1px solid;
    padding: calc(3 * (var(--rate))) calc(5 * (var(--rate)));
    position: absolute;
    top: calc(8 * (var(--rate)));
    left: calc(8 * (var(--rate)));
    background: #fff;
    line-height: 1;
}

#lp_contents .item-wrap .ico-sell span {
    font-size: calc(11 * (var(--rate)));
    font-weight: 600;
}

#lp_contents .item-wrap .item_detail {
    padding: calc(10 * (var(--rate))) calc(12 * (var(--rate))) calc(20 * (var(--rate)));
}

#lp_contents .item-wrap .item_name {
    letter-spacing: .05em;
    font-size: calc(12 * (var(--rate)));
    margin-bottom: calc(7 * (var(--rate)));
}

#lp_contents .item-wrap .item_name span {
    font-weight: 600;
    display: block;
    padding-bottom: calc(2 * (var(--rate)));
}

#lp_contents .item-wrap .item_price {
    color: #F05858;
    font-size: calc(16 * (var(--rate)));
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

#lp_contents .item-wrap .tax {
    font-size: calc(10 * (var(--rate)));
    font-weight: 400;
}

#lp_contents .item-wrap .regular {
    text-decoration: line-through;
    font-size: calc(11 * (var(--rate)));
    letter-spacing: 0.05em;
}

#lp_contents .item-wrap .regular .price {
    font-size: calc(13 * (var(--rate)));
}

#lp_contents #section02 .item-wrap {
    margin-bottom: calc(40 * (var(--rate)));
}
#lp_contents .step_list {
    background: #FCFBF4;
    border-radius: calc(4 * (var(--rate)));
    padding: calc(16 * (var(--rate))) calc(20 * (var(--rate))) calc(25 * (var(--rate))) calc(40 * (var(--rate)));
    margin-bottom: calc(12 * (var(--rate)));
    position: relative;
}

#lp_contents #section03 .timeline {
    position: relative;
}

#lp_contents #section03 .border_line {
    position: absolute;
    left: calc(19 * (var(--rate)));
    top: calc(20 * (var(--rate)));
    width: 1px;
    height: 0;
    background: var(--color-font_green);
    z-index: 10;
}

#lp_contents #section03 .step_list::after {
    content: '';
    position: absolute;
    top: calc(20 * (var(--rate)));
    left: calc(16 * (var(--rate)));
    width: calc(8 * (var(--rate)));
    height: calc(8 * (var(--rate)));
    background: var(--color-font_green);
    border-radius: 10rem;
}
#lp_contents .step_num {
    color: var(--color-font_green);
    font-weight: 600;
    font-size: calc(12 * (var(--rate)));
    margin-left: calc(-5 * (var(--rate)));
}

#lp_contents .step_num span {
    font-size: calc(16 * (var(--rate)));
}

#lp_contents .step_cont {
    margin: calc(8 * (var(--rate))) 0 calc(15 * (var(--rate)));
    line-height: 1.7;
}
#lp_contents #section04 {
    padding: 0 calc(15 * (var(--rate)));
}

#lp_contents .change-wrap .step_list {
    padding: calc(25 * (var(--rate))) calc(20 * (var(--rate)));
}

#lp_contents .change-wrap .step_list {
    margin-bottom: calc(20 * (var(--rate)));
}

#lp_contents .change-wrap .step_list:nth-child(1) .step_cont {
    text-align: center;
}

#lp_contents .change-wrap .step_list h3 {
    color: var(--color-font_green);
    text-align: center;
    font-size: calc(16 * (var(--rate)));
    font-weight: 500;
    margin-bottom: calc(15 * (var(--rate)));
}

#lp_contents .change-wrap .step_pic {
    margin: 0 calc(10 * (var(--rate)));
}

#lp_contents .change-wrap .step_num {
    margin: calc(15 * (var(--rate))) 0 calc(5 * (var(--rate))) 0;
}

#lp_contents .change-wrap .step_cont {
    margin-top: 0;
}

#lp_contents .change-wrap .step_list .inner {
    border-bottom: 1px solid #E2E6D2;
    margin-bottom: calc(24 * (var(--rate)));
    padding-bottom: calc(10 * (var(--rate)));
}

#lp_contents .change-wrap .change-info {
    line-height: 1.8;
}
#lp_contents #section01 .point-list .note {
    margin-top: calc(10 * (var(--rate)));
}
#lp_contents .step_list:last-child {
    margin-bottom: 0;
}

#lp_contents #section06 {
    padding: calc(30 * (var(--rate))) calc(20 * (var(--rate)));
    margin: 0 calc(15 * (var(--rate)));
    background: #FAF9F5;
    border: 1px solid #F5F4EA;
    border-radius: calc(4 * (var(--rate)));
}
#lp_contents #section06 .sec-ttl {
    font-size: calc(20 * (var(--rate)));
    position: relative;
    padding-left: calc(25 * (var(--rate)));
    width: calc(130 * (var(--rate)));
    margin: 0 auto;
    /* display: block; */
}

#lp_contents #section06 .sec-ttl::before {
    content: '';
    position: absolute;
    background: url(../img/ico_info.svg) no-repeat;
    width: calc(22 * (var(--rate)));
    height: calc(22 * (var(--rate)));
    background-size: 100%;
    left: 0;
    top: 45%;
    transform: translate(0, -50%);
}

#lp_contents #section06 .sub-ttl {
    font-size: calc(14 * (var(--rate)));
    font-weight: 600;
    color: var(--color-font_orange);
    text-align: center;
    margin-bottom: calc(20 * (var(--rate)));
}

#lp_contents #section06 .txt-blk {
    line-height: 1.8;
    margin-top: calc(20 * (var(--rate)));
}

#lp_contents #section06 .txt-ttl {
    font-weight: 600;
    display: block;
}

/* アコーディオン */
#lp_contents .faq-list dt{
    padding: calc(18 * (var(--rate))) calc(10 * (var(--rate)));
    border-top: 1px solid #E5E5E5;
    cursor: pointer;
    position: relative;
    border-bottom: none;
    font-weight: 500;
    font-size: calc(14 * (var(--rate)));
    overflow: hidden;
    display: flex;
    gap: calc(4 * (var(--rate)));
    align-items: center;
}
#lp_contents .faq-list dd{
    background: #FAFAFA;
    height: auto;
    display: none;
    border-bottom: none;
    /* font-size: 1.4rem; */
    padding: 1.6rem 2rem;
    margin: 0 2rem 2.8rem;
    border-radius: .5rem;
    overflow: hidden;
}
#lp_contents .faq-list {
    border-bottom: 1px solid #E5E5E5;
    /* width: 80rem; */
    /* margin: 0 auto; */
}
#lp_contents .faq-list dt:after {
    content: '+';
    font-size: calc(25 * (var(--rate)));
    font-weight: 300;
    line-height: 1;
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    right: calc(14 * (var(--rate)));
    color: var(--color-lp_font);
}
#lp_contents .faq-list dt.clicked:after {
    content: '';
    background: var(--color-lp_font);
    height: calc(1.5 * (var(--rate)));
    width: calc(12 * (var(--rate)));
    right: calc(16 * (var(--rate)));
}
#lp_contents .faq-list .ico {
    color: var(--color-font_green);
    font-size: calc(16 * (var(--rate)));
}

#lp_contents .faq-list dd .ico {
    float: left;
    width: 8%;
    color: var(--color-font_orange);
}

#lp_contents .faq-list dd .txt {
    float: right;
    width: 92%;
    margin-top: calc(2 * (var(--rate)));
	line-height: 1.7;
}
#lp_contents #section01 .point-list a {
    text-decoration: underline;
}

#lp_contents #section06 a {
    text-decoration: underline;
}
/*--------------------------------
            Layout  PC
 --------------------------------*/
@media screen and (min-width: 769px){
  #lp_contents .full_area{
    position: sticky;
    top: 0;
    height: 100vh;
    width: calc(calc(100% - 50rem) / 2);
    height: calc(100vh - 15rem);
    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.6rem;
    line-height: 1;
    display: -webkit-box;
    padding: 1.8rem  3rem;
    margin: 1.5rem 0;
    width: 25rem;
}

#lp_contents .right_area .nav-menu a span {
    font-size: 2.4rem;
    padding-right: 1rem;
}
	
#lp_contents .left_area .logo {
    width: 20rem;
    margin: 0 auto;
}

#lp_contents .left_area .page-ttl {
    width: 24rem;
}

#lp_contents .left_area .page-ttl span {
    display: block;
    font-size: 2.4rem;
}

#lp_contents .nav-menu .right-nav.is-active {
    /* color: #fff; */
}

#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  {
  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%;
    background: #e12f37;
    margin-bottom: calc(30 * (var(--rate)));
  }

  #lp_contents .video_wrap .video_blk{
    /* height: 57rem; */
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(480 * (var(--rate)));
  }
/*
  #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;
}
}