@charset "UTF-8";

:root {
  --rate: 50rem / 390;
  --font-lp_base: "futura-pt", "dnp-shuei-gothic-kin-std", sans-serif;
  --color-lp_font: #222;
  --color-lp_bg: #e12f37;
  --color-font_red: #cf1a21;
  --color-font_blue: #2c47ae;
  --color-font_yellow: #c08c47;
  --color-lp_secondary: #F4F4F4;
  --color-inner_bg: #fff;
  --color-sub_bg: #FFF;
}

/*--------------------------------
            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;
}

 
@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(14 * (var(--rate)));
  letter-spacing: 0.1em;
  /* color: #222; */
  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(45 * (var(--rate))) 0;
  /* 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.1em;
  font-size: calc(14 * (var(--rate)));
  line-height: 1.8;
}
#lp_contents sup{
  font-size: 50%;
  margin-top: -0.6rem;
}
#lp_contents .note{
  /* display: inline-block; */
  font-size: calc(10 * (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: #fff .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; */
    line-height: 2;
}

#intro-section .lead_txt {
    /* margin: calc(30 * (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: 600;
    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(22 * (var(--rate)));
    font-weight: 600;
    margin-bottom: calc(20 * (var(--rate)));
    letter-spacing: .1em;
    text-align: center;
}

#lp_contents .lp_inner .sec-ttl span {
    font-size: calc(13 * (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)));
}

#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: 600;
    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: 600;
}

#lp_contents .sec_item .item_wrap h3 {
    font-size: calc(20 * (var(--rate)));
    font-weight: 600;
    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);
}


#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: #faf7f1;
    padding-top: 0 !important;
    /* 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-bottom: calc(30 * (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(35 * (var(--rate))) auto calc(-40 * (var(--rate)));
    text-align: center;
    background: #f7f2e7;
    width: calc(350 * (var(--rate)));
    position: relative;
    border: 5px solid #fff;
    padding: calc(25 * (var(--rate))) 0 calc(30 * (var(--rate)));
    /* z-index: 1; */
}
#intro-section .release-day dt {
    border: 1px solid;
    font-size: calc(12 * (var(--rate)));
    /* display: inline-block; */
    letter-spacing: .1em;
    padding: calc(2 * (var(--rate))) calc(8 * (var(--rate))) calc(1 * (var(--rate)));
    margin: calc(15 * (var(--rate))) auto calc(8 * (var(--rate)));
    line-height: 1.4;
    width: fit-content;
    /* text-align: center; */
}

#intro-section .release-day dd {
    font-size: calc(16 * (var(--rate)));
    font-weight: 600;
    letter-spacing: .1em;
}

#intro-section .release-day dd span {
    font-size: calc(22 * (var(--rate)));
}

#intro-section .release-day .note {
    margin: calc(18 * (var(--rate))) calc(25 * (var(--rate))) 0;
    text-align: left;
}

#lp_contents .loop-txt {
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-font_red);
    font-size: calc(15 * (var(--rate)));
    color: #FFF;
    width: 105%;
    position: absolute;
    left: -2%;
    top: calc(30 * (var(--rate)));
}

#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(7 * (var(--rate))) calc(12 * (var(--rate))) calc(5 * (var(--rate)));
    position: relative;
    font-weight: 500;
    letter-spacing: .05em;
}

#lp_contents .loop-txt li::after {
    content: '';
    position: absolute;
    background: #fff;
    width: calc(5 * (var(--rate)));
    height: calc(5 * (var(--rate)));
    transform: rotate(45deg);
    right: calc(-2 * (var(--rate)));
    top: calc(11 * (var(--rate)));
    /* transform: translate(0, -50%); */
}
@keyframes loop-slide {
  0% { transform:translateX(0); }
100% { transform:translateX(-100%); }
}

#lineup-section {
    background: var(--color-sub_bg);
    padding-bottom: 0 !important;
}

#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; */
    margin-bottom: calc(45 * (var(--rate)));
    padding: 0 calc(20 * (var(--rate))) calc(50 * (var(--rate)));
    background: linear-gradient(180deg, var(--color-sub_bg) 0%, var(--color-sub_bg) 32%, #ffe8e8 32%, #ffe8e8 100%);
}

#lineup-section .item-wrap h3 {
    font-size: calc(16 * (var(--rate)));
    text-align: center;
    color: var(--color-font_red);
    font-weight: 500;
}

#lineup-section .item-wrap h3 span.big-font {
    font-size: calc(35 * (var(--rate)));
    padding: calc(5 * (var(--rate))) 0 calc(8 * (var(--rate)));
    /* letter-spacing: .1em; */
    display: block;
}

#lineup-section .item-wrap .item_detail dt {
    text-align: center;
    font-size: calc(15 * (var(--rate)));
    font-weight: 600;
    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: 600;
    letter-spacing: .05em;
    line-height: 1.5;
    width: calc(170 * (var(--rate)));
}

#lineup-section .item-wrap .tax {
    font-size: calc(13 * (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);
    padding-top: 0 !important;
}

#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)));
}
#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)));
}

#point-section {
    background: #faf7f1;
    width: calc(390 * (var(--rate)));
    overflow: hidden;
    padding: 0 0 calc(70 * (var(--rate)))!important;
    /* position: relative; */
    /* margin-top: 10px; */
}

#point-section .img-list {
    display: flex;
    margin: calc(-15 * (var(--rate))) calc(40 * (var(--rate))) calc(10 * (var(--rate)));
}

#point-section .img-list li:nth-child(1) {
    width: calc(230 * (var(--rate)));
    transform-origin: center top;
    animation: rotate 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

#point-section .img-list li:nth-child(2) {
    width: calc(103 * (var(--rate)));
    margin-left: calc(-63 * (var(--rate)));
    transform-origin: center top;
    animation: rotate 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
	animation-delay: 0.5s;
}

#point-section .lead_txt p {
    text-align: center;
    font-size: calc(13 * (var(--rate)));
    line-height: 1.8;
    margin-top: calc(10 * (var(--rate)));
}

#point-section .lead_txt p span {
    color: var(--color-font_red);
    font-weight: 600;
}

#point-section .lead_txt p span.big-font {
    font-size: calc(20 * (var(--rate)));
    line-height: 1.4;
}
#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;
}
#lp_contents .loop-txt.txt02 {
    transform: rotate(5deg);
    top: calc(22 * (var(--rate)));
}

#lp_contents .loop-txt.txt01 {
    background: #3553c6;
    transform: rotate(-5deg);
}
#point-section .point-wrap {
    width: calc(350 * (var(--rate)));
    background: #fff;
    margin: calc(60 * (var(--rate))) auto 0;
    padding: calc(25 * (var(--rate))) 0 calc(30 * (var(--rate)));
    position: relative;
}
#lineup-section .menu-wrap li:nth-child(2) {
    color: var(--color-font_blue);
}

#lineup-section .menu-wrap li:nth-child(3) {
    color: var(--color-font_yellow);
}

#lineup-section #item02 h3 {
    color: var(--color-font_blue);
}

#lineup-section #item02 .cart-btn {
    background: var(--color-font_blue);
}

#lineup-section #item02 .btn-area a {
    color: var(--color-font_blue);
    border: 1px solid var(--color-font_blue);
    box-shadow: 0px 4px 0px #152973;
    /* transition: .3s; */
}

#lineup-section #item02 .set-list li::before {
    background-color: var(--color-font_blue);
}

#lineup-section #item03 .set-list li::before {
    background-color: var(--color-font_yellow);
}

#lineup-section #item03 .cart-btn {
    background: var(--color-font_yellow);
}

#lineup-section #item03 .btn-area a {
    color: var(--color-font_yellow);
    border: 1px solid var(--color-font_yellow);
    box-shadow: 0px 4px 0px #92652b;
}

#lineup-section #item03 h3 {
    color: var(--color-font_yellow);
}

#lineup-section #item03 {
    background: linear-gradient(180deg, var(--color-sub_bg) 0%, var(--color-sub_bg) 32%, #fff1e1 32%, #fff1e1 100%);
}

#lineup-section #item02 {
    background: linear-gradient(180deg, var(--color-sub_bg) 0%, var(--color-sub_bg) 32%, #e6ecff 32%, #e6ecff 100%);
}

#lineup-section .item-wrap .detail-btn:hover {
    /* color: #fff; */
    /* background: var(--color-font_red); */
    /* opacity: 1; */
}

#lineup-section .item-wrap .cart-btn:hover {
    /* background: #fff; */
    /* color: var(--color-font_red) !important; */
    /* opacity: 1; */
}

#footer-section .link-btn a {
    text-align: center;
    background: #fff;
    color: #fff;
    border-radius: calc(10 * (var(--rate)));
    width: calc(350 * (var(--rate)));
    margin: 0 auto;
    padding: calc(15 * (var(--rate))) 0;
    font-size: calc(18 * (var(--rate)));
    border: 1px solid #222;
    box-shadow: 5px 5px 0px #3579d0;
    transition: .3s;
    font-weight: 600;
    line-height: 1.3;
}

#footer-section .link-btn p {
    font-size: calc(24 * (var(--rate)));
    text-align: center;
    line-height: 1;
    color: #e35221;
	letter-spacing: 0.05em;
}
#lp_contents .video_wrap .video_blk iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

#lp_contents .loop-txt.txt03 {
    bottom: 0;
    top: auto;
    background: var(--color-font_yellow);
}
#lp_contents .img-uma {
    width: calc(120 * (var(--rate)));
    position: absolute;
    top: calc(-40 * (var(--rate)));
    right: calc(-40 * (var(--rate)));
}
#lp_contents .img-uma img, #lp_contents .bag_img img {
	animation: rotate2 2s steps(2, end) infinite;
}

#lp_contents .nav-wrapper {
    position: fixed;
    z-index: 3;
    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: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px #ddd;
}

#lp_contents .nav-wrapper .nav_list li {
    width: calc(100% / 3);
    text-align: center;
    font-size: calc(11 * (var(--rate)));
    color: var(--color-font_red);
    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 {
    padding: calc(10 * (var(--rate)));
}

#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(36 * (var(--rate)));
    width: calc(1 * (var(--rate)));
    background: #ddd;
    background-size: 100%;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
}

#lp_contents .nav-wrapper .nav_list li:last-child::after {
    content: none;
}

#footer-section .link-btn a:hover {
    box-shadow: unset;
    transform: translateY(4px);
    opacity: 1;
}

#lineup-section .item-wrap .btn-area a:hover {
    box-shadow: unset;
    transform: translateY(3px);
    opacity: 1;
}


#lineup-section #item02 .btn-area a:hover, #lineup-section #item03 .btn-area a:hover {
    box-shadow: unset;
    transform: translateY(3px);
}
#footer-section .link-btn img {
    width: calc(150 * (var(--rate)));
    margin: 0 auto calc(10 * (var(--rate)));
}

#footer-section .note {
    text-align: center;
    padding-top: calc(15 * (var(--rate)));
    font-size: calc(11 * (var(--rate))) !important;
}
/*--------------------------------
            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;
    display: -webkit-box;
}

#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 {
    font-size: 4.2rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 3rem 6rem;
    line-height: 1.3;
    letter-spacing: .05em;
}

#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;
}
}