@charset "UTF-8";

/* @font-face {
  font-family: "Vogue";
  src: url("../font/Vogue.ttf") format("opentype");
} */

:root {
    --key-green:#F0FFA2;
    --bg-yellow-color:#FFFBE8;
    --bg-pink-color:#FFF4F8;
    --bg-blue-color:#E4F1F7;
    --bg-orang-color:#FFF0E5;
    --white-color: #ffffff;
    --font-color:#3F3F3F;
    --font-ja: "noto-sans-cjk-jp", sans-serif;
    --font-en: "itc-avant-garde-gothic-pro", sans-serif;
}

@media screen and (max-width: 1400px){
html {
  font-size: calc(10 * (100vw / 1400));
}

}

@media only screen and (max-width: 768px) {
html {
	font-size: calc(10 * (100vw / 450));
}

#lp-page .sp_only {
  display: block;
}
#lp-page .pc_only {
  display: none;
}

}

#share {
    bottom: 10% !important;
    left: 3% !important;
}
#share img {
    margin: 0 auto;
}
#lp-page {
  margin: 0 auto;
  position: relative;
  color: var(--font-color);
  font-family: var(--font-ja);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  z-index: 0;
  width: 100%;
  overflow: hidden;
  /* background: #19325A; */
}
#lp-page img,
#lp-page svg {
  display: block;
  opacity: 1;
  width: 100%;
  height: auto;
}
#lp-page picture {
  display: block;
}
#lp-page a {
  display: block;
  color: inherit;
}
#lp-page *:focus {
  outline: none;
}
#lp-page a,
#lp-page label {
  /* -webkit-tap-highlight-color: rgba(240, 164, 149, 0.6); */
}
#lp-page input {
  display: none;
}
#lp-page li,
#lp-page ol {
  list-style-type: none;
}


  main {
    max-width: 100vw;
  }
  #Wrap {
    width: auto;
  }
  .wrapTop,
.wrapBottom {
    width: 100%;
  }

  #lp-page a {
    cursor: pointer;
  }

  #share {
    right: 85% !important;
  }


/* 追従メニュー */
.fixed-nav {
	display: none;
}
.fixed-nav.m_fixed {
	position: fixed;
	bottom: 0;
	left: 0;
	/* border-top: 1px solid #C3AE8E; */
	/* border-bottom: 1px solid #C3AE8E; */
	width: 100%;
	animation: fadein 1s ease-out forwards;
	display: block;
	z-index: 20;
}

.fixed-nav.m_fixed .nav-list {
    display: flex;
    align-items: center;
    /* height: 6rem; */
    background: #FAF5D8;
    /* color: #BC9A64; */
    /* font-family: "Marcellus", "Noto Sans JP", sans-serif; */
    box-shadow: 0 0 2px #ddd;
    /* padding: 0 6rem; */
    overflow-x: scroll;
    overflow-y: hidden;
    height: calc(56*(100vw / 390));
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1rem 0;
}

.fixed-nav.m_fixed .nav-list li a {
    border-right: 1px solid #E5E1CD;
    height: 3.6rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.fixed-nav a.active {
    opacity: 1 !important;
    font-weight: 600;
}

/* slick */
#lp-page .slick-img img {
  height: auto;
  opacity: .5;
  transform: scale(.9);
  transition: opacity .6s, transform .6s;
  width: 100%;
}

#lp-page .slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}
/*----------アニメーション----------*/

/* .zoomin.is-animated {
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
} */
.slidein.is-animated {
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%,100% {
    opacity: 1;
  }
}

.popup.is-animated {
  animation: popup 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

.fadein {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 2s 0s, transform 2s 0s;
  }

  .fadein.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 2s 0s, transform 2s 0s;
  }


  .fadeup {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .fadeup.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .fadeleft {
    opacity: 0;
    transform: translateX(4rem) rotate(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .fadeleft.fade-active {
    opacity: 1;
    transform: translateX(0) rotate(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .faderight {
    opacity: 0;
    transform: translateX(-2rem);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .faderight.fade-active {
    opacity: 1;
    transform: translateX(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .fadein-load {
    opacity: 0;
    transition: opacity 1s;
  }

  .fadein-load.fade-active {
    opacity: 1;
    transition: opacity 1s;
  }

  .fadeup-load {
    opacity: 0;
    transform: translateY(4rem) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  .fadeup-load.fade-active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    transition: opacity 1s 0s, transform 1s 0s;
  }

  #lp-page .zoomin {
    overflow: hidden;
  }

  #lp-page .zoomin img{
    opacity: 0;
    transition: all 2s;
    transform: scale(0.8);
    filter: blur(5px);
  }

  #lp-page .zoomin.is-animated img{
    opacity: 1;
    transform: scale(1.0);
    filter: blur(0);
  }

  #lp-page .SlideUp{
    overflow: hidden;
  }

  #lp-page .SlideUp .ani {
    display: block;
    opacity: 0;
    transform: translateY(5rem);
    transition: transform 1s ease-in-out, opacity 1.5s ease-in-out;
  }

  #lp-page .SlideUp span:nth-of-type(2) {
    transition-delay: 0.2s;
  }

  #lp-page .SlideUp.fade-active .ani {
    opacity: 1;
    transform: translateY(0);
  }

    /* #lp-page .line::before  {
    width: 0;
    height: 1px;
    left: 0;
    }

    #lp-page .line.fade-active::before {
    width: 100%;
    } */


  #lp-page .page-inner {
    /* background: #2C4E86; */
    padding-bottom: 3rem;
  }

  #lp-page .page_main_blk .page_character {
    position: absolute;
    width: 20.5rem;
    height: 7.8rem;
    top: 20rem;
    right: 4rem;
    z-index: 1;
    animation: FloatVertical 6s ease-in-out infinite alternate;
  }

  @keyframes FloatVertical {
    0% { transform:translate3d(0,2vw,0); }
    50% { transform:translate3d(0,-2vw,0); }
    100% { transform:translate3d(0,1.5vw,0); }
  }

  @keyframes FloatVertical_2 {
    0% { transform:translate3d(0,1vw,0); }
    50% { transform:translate3d(0,-1vw,0); }
    100% { transform:translate3d(0,0.5vw,0); }
  }

/* ＝＝＝＝＝＝＝＝ intro-area ＝＝＝＝＝＝＝＝ */
#lp-page .intro-area {
  position: relative;
  margin: 3.5rem auto 0;
  z-index: 0;
}

#lp-page .intro-area .ttl {
  position: absolute;
  width: 9.4rem;
  top: 0;
  left: 20rem;
  z-index: 1;
}

#lp-page .intro-area .img {
  position: absolute;
  width: 19.7rem;
  top: 2rem;
  left: 0;
  z-index: 1;
}

#lp-page .intro-area .intro-txt {
  position: relative;
  width: 33.5rem;
  height: 25.2rem;
  font-size: 1.4rem;
  padding: 5rem 0 0 2rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-left: 12rem;
  background: url(../img/lead_bg.png) no-repeat;
  background-size: 100%;
  z-index: 0;
}

#lp-page .campaign {
  margin: 2rem auto 0;
}
/* ＝＝＝＝＝＝＝＝ intro-area ＝＝＝＝＝＝＝＝ */


/* ＝＝＝＝＝＝＝＝ to_story ＝＝＝＝＝＝＝＝ */
#lp-page .to_story {
  margin: 3rem auto 0;
  padding: 3rem 0 3rem;
  background: #F8EDF3;
}

#lp-page .to_story .banner {
  width: 41rem;
  margin: auto;
  box-shadow: 5px 5px 10px #3c3c3c1f;
}

#lp-page .to_story .text {
  text-align: center;
  position: relative;
  margin: 3rem 0 0 0;
  font-size: 1.2rem;
  z-index: 0;
}

#lp-page .to_story .text::before {
  position: absolute;
  content: "";
  background: url(../img/CK_banner_arrow.svg) no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 0.7rem;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#lp-page .story_1 {
  width: 38.5rem;
  margin: 2.5rem auto 0;
}
/* ＝＝＝＝＝＝＝＝ to_story ＝＝＝＝＝＝＝＝ */



/* ＝＝＝＝＝＝＝＝ menu-area ＝＝＝＝＝＝＝＝ */
#lp-page .menu-area {
  margin-top: -3rem;
}

#lp-page .menu-area .nav_ttl {
  width: 100%;
}

#lp-page .menu-wrap {
  margin-top: 1rem;
}

#lp-page .menu-blk {
  position: relative;
  margin: 1rem auto 0;
  width: 41rem;
  height: 6.8rem;
  display: flex;
  align-items: center;
  z-index: 0;
  border: var(--font-color) 0.1rem solid;
}

#lp-page .menu-blk span {
  display: block;
}

#lp-page .menu-blk .ttl {
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-left: 1rem;
}

#lp-page .menu-blk .ttl_number {
  font-family: var(--font-en);
  font-size: 4.3rem;
  font-weight: 600;
}

#lp-page .menu-blk .text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 1rem;
}

#lp-page .menu-blk:nth-of-type(1) {
  background: var(--bg-yellow-color);
}
#lp-page .menu-blk:nth-of-type(2) {
  background: var(--bg-pink-color);
}
#lp-page .menu-blk:nth-of-type(3) {
  background: var(--bg-orang-color);
}
#lp-page .menu-blk:nth-of-type(4) {
  background: var(--bg-blue-color);
}

#lp-page .menu-blk::after {
  position: absolute;
  content: "";
  background: url(../img/nav_arrow.svg) no-repeat;
  background-size: 100%;
  width: 1.5rem;
  height: 1rem;
  bottom: 3rem;
  right: 2rem;
  z-index: 1;
  transition: all .2s;
}

#lp-page .menu-blk:hover::after {
  bottom: 2.5rem;
}

#lp-page .menu-blk::before {
  position: absolute;
  content: "";
  z-index: 1;
}

#lp-page .menu-blk:nth-of-type(1)::before {
  background: url(../img/nav_icon_1.png) no-repeat;
  background-size: 100%;
  width: 3.7rem;
  height: 3.7rem;
  top: 1.5rem;
  right: 6rem;
  transform: rotate(5deg);
}
#lp-page .menu-blk:nth-of-type(2)::before {
  background: url(../img/nav_icon_2.png) no-repeat;
  background-size: 100%;
  width: 2.5rem;
  height: 6rem;
  top: 0.4rem;
  right: 6.5rem;
  transform: rotate(-5deg);
}
#lp-page .menu-blk:nth-of-type(3)::before {
  background: url(../img/nav_icon_3.png) no-repeat;
  background-size: 100%;
  width: 2.4rem;
  height: 6rem;
  top: 0.6rem;
  right: 6.5rem;
}
#lp-page .menu-blk:nth-of-type(4)::before {
  background: url(../img/nav_icon_4.png) no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 6rem;
  top: 0.5rem;
  right: 7rem;
  transform: rotate(-8deg);
}


/* ＝＝＝＝＝＝＝＝ content ＝＝＝＝＝＝＝＝ */
#lp-page .content {
  position: relative;
  margin-top: 4rem;
  z-index: 0;
}

#lp-page .page_ttl {
  width: 100%;
}

#lp-page .leadText {
  margin-top: 1rem;
}

#lp-page .leadText p {
  text-align: center;
  font-size: 1.4rem;
}

#lp-page .leadText h3 {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
}

#lp-page .info_blk .name {
  font-size: 1.4rem;
  line-height: 1.5;
}

#lp-page .info_blk .price {
  margin-top: 1.5rem;
  font-family: var(--font-en);
  font-size: 1.7rem;
}

#lp-page .info_blk .price span {
  font-size: 1.2rem;
}

#lp-page .info_blk .btn {
  margin-top: 1.5rem;
  font-family: var(--font-en);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 11rem;
  height: 3rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

#lp-page .howTo {
  position: relative;
  border: var(--font-color) 0.1rem solid;
  padding: 2.5rem 1.5rem 2rem;
  margin: 8rem -2.5rem 0 2rem;
  z-index: 0;
  background: var(--white-color);
}

#lp-page .howTo .step {
  font-family: var(--font-en);
  font-size: 1.2rem;
}

#lp-page .howTo .text {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

#lp-page .howTo .text span {
  font-weight: 600;
}

#lp-page .howTo .step:nth-of-type(n+2) {
  margin-top: 1.5rem;
}

#lp-page .howTo::before {
  position: absolute;
  content: "HOW TO";
  font-size: 2.3rem;
  font-family: var(--font-en);
  background: var(--white-color);
  padding: 0.5rem;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

#lp-page .items_wrap {
  margin-top: 2rem;
}

#lp-page .items_wrap li {
  text-align: center;
  width: 18rem;
  margin-left: 2rem;
}

#lp-page .items_wrap li .lead {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.5;
  min-height: 5rem;
  z-index: 0;
}

#lp-page .items_wrap li .lead::before {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: var(--font-color);
  top: 1rem;
  left: -0.5rem;
  transform: rotate(-25deg);
  z-index: 1;
}

#lp-page .items_wrap li .lead::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 2rem;
  background: var(--font-color);
  top: 1rem;
  right: -0.5rem;
  transform: rotate(25deg);
  z-index: 1;
}

#lp-page .items_wrap li .img {
  margin-top: 1rem;
  width: 100%;
}

#lp-page .items_wrap li .name {
  text-align: left;
  position: relative;
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  z-index: 0;
}

#lp-page .items_wrap li .price_wrap {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp-page .items_wrap li .price_wrap .price {
  font-family: var(--font-en);
  font-size: 1.5rem;
}

#lp-page .items_wrap li .price_wrap .price span {
  font-size: 1rem;
}

#lp-page .items_wrap li .price_wrap .btn {
  font-family: var(--font-en);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 8rem;
  height: 2.5rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

.slick-num {
  display: none;
  font-family: var(--font-en);
}

.slick-list {
  padding-left: 1.5rem;
}


/* ＝＝＝＝＝＝＝＝ Section_1 ＝＝＝＝＝＝＝＝ */
#lp-page .Section_1 {
  position: relative;
  background: linear-gradient(to bottom, #fff 30%, #fffbe8 20%);
  z-index: 0;
}

#lp-page .Section_1 .com {
  position: absolute;
  width: 16.7rem;
  top: 14.5rem;
  left: 11rem;
}

#lp-page .Section_1 .com__2 {
  position: absolute;
  width: 14rem;
  top: 65rem;
  left: 31rem;
  z-index: 1;
}

#lp-page .Section_1 .item_wrap {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.4rem;
}

#lp-page .Section_1 .item_wrap .page_img {
  width: 22rem;
}

#lp-page .Section_1 .info_blk {
  margin-top: 2.5rem;
}

#lp-page .Section_1 .item_wrap.__2 {
  margin-top: -4rem;
  gap: 0;
}

#lp-page .Section_1 .item_wrap.__2 .comics_img {
  width: 24rem;
  position: relative;
  z-index: -1;
}

/* ------ campaign ------ */
#lp-page .campaign {
  background: var(--bg-yellow-color);
  padding: 3rem 0 3.5rem;
}

#lp-page .campaign .limited {
  width: 10rem;
  height: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  color: var(--white-color);
  background: var(--font-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-top: 0.2rem;
}

#lp-page .campaign .campaign_ttl {
  text-align: center;
  display: block;
  position: relative;
  font-size: 3rem;
  font-family: var(--font-en);
  padding: 0 2rem 0;
  z-index: 0;
}

#lp-page .campaign .campaign_ttl::before {
  position: absolute;
  content: "";
  width: 6.3rem;
  height: 0.1rem;
  background: var(--font-color);
  top: 2rem;
  left: 0;
  z-index: -1;
}
#lp-page .campaign .campaign_ttl::after {
  position: absolute;
  content: "";
  width: 6.3rem;
  height: 0.1rem;
  background: var(--font-color);
  top: 2rem;
  right: 0;
  z-index: -1;
}

#lp-page .campaign .ttl_blk {
  margin-top: 1rem;
  text-align: center;
}

#lp-page .campaign .campaign_innre:nth-of-type(n+2) {
  margin-top: 3rem;
}

#lp-page .campaign .ttl_blk p {
  font-size: 1.4rem;
}

#lp-page .campaign .ttl_blk h3 {
  display: inline-block;
  position: relative;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
  z-index: 0;
}

#lp-page .campaign .ttl_blk h3::before {
  position: absolute;
  content: "";
  background: url(../img/campaign_bg_left.svg) no-repeat;
  background-size: 100%;
  width: 3rem;
  height: 4.4rem;
  bottom: 0;
  left: -3.5rem;
  z-index: 0;
}
#lp-page .campaign .ttl_blk h3::after {
  margin-top: 2rem;
  position: absolute;
  content: "";
  background: url(../img/campaign_bg_right.svg) no-repeat;
  background-size: 100%;
  width: 3rem;
  height: 4.4rem;
  bottom: 0;
  right: -3.5rem;
  z-index: 0;
}

#lp-page .campaign .img {
  width: 41rem;
  margin: 1.5rem auto 0;
}

#lp-page .campaign .info {
  width: 41rem;
  margin: 1rem auto 0;
}

#lp-page .campaign .info p:nth-of-type(1) {
  font-size: 1rem;
}
#lp-page .campaign .info p:nth-of-type(2) {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}
#lp-page .campaign .info p:nth-of-type(3) {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.5;
}


/* ＝＝＝＝＝＝＝＝ Section_2 ＝＝＝＝＝＝＝＝ */
#lp-page .Section_2 {
  position: relative;
  background: linear-gradient(to bottom, #fff 15%, #fff4f8 0%);
  z-index: 0;
}

#lp-page .Section_2 .com {
  position: absolute;
  width: 18rem;
  top: 14rem;
  left: 26rem;
  z-index: 1;
}

#lp-page .Section_2 .com__2 {
  position: absolute;
  width: 19.5rem;
  top: 42.5rem;
  left: 0;
  z-index: 1;
}

#lp-page .Section_2 .bg {
  position: absolute;
  width: 13rem;
  top: 42rem;
  left: 30.5rem;
  z-index: 1;
}

#lp-page .Section_2 .bg__2 {
  position: absolute;
  width: 9.5rem;
  top: 69rem;
  left: 7rem;
  transform: rotate(-5deg);
  z-index: 1;
}

#lp-page .Section_2 .comics_img {
  margin-top: 2rem;
  width: 38rem;
}

#lp-page .Section_2 .items_blk {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}

#lp-page .Section_2 .price_blk .name {
  font-size: 1.4rem;
}

#lp-page .Section_2 .price_blk .price {
  margin-top: 1.5rem;
  font-size: 1.7rem;
}
#lp-page .Section_2 .price_blk .price span {
  font-size: 1.2rem;
}

#lp-page .Section_2 .items_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

#lp-page .Section_2 .items_inner li {
  width: 10rem;
  margin-left: 0;
}

#lp-page .Section_2 .items_inner li .ttl {
  text-align: center;
  font-size: 1rem;
  padding: 0.3rem 0.2rem;
  background: var(--white-color);
}

#lp-page .Section_2 .items_inner li .img {
  width: 6.4rem;
  margin: 1rem auto 0;
}

#lp-page .Section_2 .items_inner li .name {
  text-align: center;
  font-size: 1.2rem;
  margin: 1rem auto 0;
}

#lp-page .Section_2 .items_inner li .btn {
  margin: 1rem auto 0;
  font-family: var(--font-en);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 8.5rem;
  height: 3rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

#lp-page .Section_2 .items_area {
  margin-top: 3rem;
  padding: 3rem 0;
  background: var(--white-color);
}

#lp-page .Section_2 .items_area h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}

#lp-page .Section_2 .catch {
  text-align: left;
}

#lp-page .Section_2 .items_wrap li .name {
  text-align: left;
}

#lp-page .Section_2 .catch span {
  margin-right: 0.4rem;
  font-size: 1rem;
  padding: 0 0.2rem;
  line-height: 1;
  background: var(--white-color);
}


#lp-page .Section_2 .items_wrap .item_1 .catch span {
  border: #392F8E 0.1rem solid;
  color: #392F8E;
}
#lp-page .Section_2 .items_wrap .item_2 .catch span {
  border: #789D4B 0.1rem solid;
  color: #789D4B;
}
#lp-page .Section_2 .items_wrap .item_3 .catch span {
  border: #F19258 0.1rem solid;
  color: #F19258;
}
#lp-page .Section_2 .items_wrap .item_4 .catch span {
  border: #83595D 0.1rem solid;
  color: #83595D;
}
#lp-page .Section_2 .items_wrap .item_5 .catch span {
  border: #E09B9B 0.1rem solid;
  color: #E09B9B;
}
#lp-page .Section_2 .items_wrap .item_6 .catch span {
  border: #BC395D 0.1rem solid;
  color: #BC395D;
}

#lp-page .Section_2 .items_wrap li .lead {
  min-height: 0;
}

#lp-page .Section_2 .items_wrap li .price {
  text-align: left;
  margin-top: 1rem;
  font-size: 1.5rem;
}

#lp-page .Section_2 .items_wrap li .price span {
  font-size: 1rem;
}

#lp-page .Section_2 .items_wrap li .lead::before {
  top: 0;
}
#lp-page .Section_2 .items_wrap li .lead::after {
  top: 0;
}

#lp-page .Section_2 .items_wrap li .price_wrap {
  display: block;
}

#lp-page .Section_2 .items_wrap li .price_wrap__2 {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp-page .Section_2 .items_wrap li .price_wrap__2 p {
  font-size: 1.1rem;
}

#lp-page .Section_2 .items_inner li .price_wrap__2 .btn {
  font-family: var(--font-en);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 8rem;
  height: 2.5rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

#lp-page .Section_2 .campaign .ttl_blk h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

#lp-page .Section_2 .campaign .info p:nth-of-type(1) {
  width: 31rem;
  height: 2.8rem;
  font-size: 1.4rem;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  border-radius: 50rem;
}
#lp-page .Section_2 .campaign .info p:nth-of-type(1) span {
  font-size: 1rem;
  margin: 0 0.5rem;
}
#lp-page .Section_2 .campaign .info p:nth-of-type(2) {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem auto 0;
}
#lp-page .Section_2 .campaign .info p:nth-of-type(3) {
  text-align: center;
  font-size: 2rem;
}
#lp-page .Section_2 .campaign .info p:nth-of-type(3) .en {
  font-size: 3.3rem;
  font-family: var(--font-en);
  font-weight: 500;
}
#lp-page .Section_2 .campaign .info p:nth-of-type(3) .en.small {
  font-size: 2.3rem;
  font-family: var(--font-en);
  font-weight: 500;
  margin: 0 1rem 0 0.2rem;
}

#lp-page .Section_2 .campaign .info .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 18rem;
  height: 4rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
  margin: 2rem auto 0;
}

#lp-page .Section_2 .campaign .img {
  background: none;
  height: auto;
}

#lp-page .Section_2 .campaign .ttl_blk h3::before {
  width: 1.6rem;
  height: 2.2rem;
  bottom: -0.5rem;
  left: -2rem;
}
#lp-page .Section_2 .campaign .ttl_blk h3::after {
  width: 1.6rem;
  height: 2.2rem;
  bottom: -0.5rem;
  right: -2rem;
}

#lp-page .Section_2 .campaign {
  background: var(--bg-pink-color);
}


/* ＝＝＝＝＝＝＝＝ Section_3 ＝＝＝＝＝＝＝＝ */
#lp-page .Section_3 {
  position: relative;
  background: linear-gradient(to bottom, #fff 50%, #FFF0E5 50%);
  padding-bottom: 3rem;
  z-index: 0;
}

#lp-page .Section_3 .comics_img {
  position: relative;
  margin-top: 1.5rem;
  margin-left: auto;
  width: 29rem;
  z-index: 0;
}

#lp-page .Section_3 .items_blk {
  width: 25rem;
  margin: 1.5rem 0 0 13rem;
}

#lp-page .Section_3 .items_blk .name {
  font-size: 1.4rem;
}

#lp-page .Section_3 .items_blk .price {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp-page .Section_3 .items_blk .price p {
  font-size: 1.7rem;
  font-family: var(--font-en);
}

#lp-page .Section_3 .items_blk .price p span {
  font-size: 1.2rem;
}

#lp-page .Section_3 .items_blk .price .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 11rem;
  height: 3rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

#lp-page .Section_3 .com {
  position: absolute;
  width: 15rem;
  top: 15rem;
  left: 5rem;
}

#lp-page .Section_3 .item_img {
  position: absolute;
  width: 13.5rem;
  top: 28rem;
  left: 3rem;
}

#lp-page .Section_3 .point {
  position: absolute;
  width: 11rem;
  top: 48rem;
  left: 12rem;
  z-index: 1;
}


/* ＝＝＝＝＝＝＝＝ Section_4 ＝＝＝＝＝＝＝＝ */
#lp-page .Section_4 {
  position: relative;
  background: linear-gradient(to bottom, #fff 40%, #E4F1F7 10%);
  padding-bottom: 3rem;
  z-index: 0;
}

#lp-page .Section_4 .lead_blk {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}

#lp-page .Section_4 .lead_blk.second {
  margin-top: 0.5rem;
  flex-direction: row-reverse;
}

#lp-page .Section_4 .lead_blk .img {
  width: 4rem;
}

#lp-page .Section_4 .lead_blk .info {
  width: 23rem;
}

#lp-page .Section_4 .lead_blk .info .catch span {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  background: var(--white-color);
  margin: 0 0.4rem 0 0;
}

#lp-page .Section_4 .lead_blk .info .catch span:nth-of-type(n+3) {
  margin: 0.4rem 0.4rem 0 0;
}

#lp-page .Section_4 .lead_blk .info .name {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
}

#lp-page .Section_4 .info .price {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lp-page .Section_4 .info .price p {
  font-size: 1.7rem;
  font-family: var(--font-en);
}

#lp-page .Section_4 .info .price p span {
  font-size: 1.2rem;
}

#lp-page .Section_4 .info .price .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  width: 8.5rem;
  height: 3rem;
  border-radius: 10rem;
  border: var(--font-color) 0.1rem solid;
  background: var(--key-green);
}

#lp-page .Section_4 .comics_img {
  width: 27rem;
  margin: -1rem 0 0 0;
}

#lp-page .Section_4 .howTo {
  width: 36rem;
  margin: auto;
}

#lp-page .Section_4 .howTo::before {
  position: absolute;
  content: "HOW TO";
  font-size: 2.3rem;
  font-family: var(--font-en);
  padding: 0.5rem;
  background: unset;
  top: -1.5rem;
  left: 65%;
  transform: unset;
  z-index: 2;
}

#lp-page .Section_4 .howTo::after {
  position: absolute;
  content: "";
  width: 10.5rem;
  height: 1.2rem;
  background: var(--white-color);
  top: -0.1rem;
  left: 25rem;
  z-index: -1;
}

#lp-page .Section_4 .items_area h3 {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
}

#lp-page .Section_4 .items_wrap li .lead {
  min-height: unset;
}

#lp-page .Section_4 .catch span {
  margin-right: 0.4rem;
  font-size: 1rem;
  padding: 0.2rem;
  background: var(--white-color);
}

#lp-page .Section_4 .catch span:nth-of-type(n+3) {
  margin-top: 0.4rem;
}

#lp-page .Section_4 .items_wrap li .name {
  text-align: left;
}

#lp-page .Section_4 .price_wrap p {
  font-size: 1.5rem;
  font-family: var(--font-en);
}

#lp-page .Section_4 .price_wrap p span {
  font-size: 1rem;
}

#lp-page .Section_4 .catch {
  text-align: left;
  margin-top: 1rem;
}

#lp-page .Section_4 .items_wrap .item_1 .catch span {
  border: #392F8E 0.1rem solid;
  color: #392F8E;
}
#lp-page .Section_4 .items_wrap .item_2 .catch span {
  border: #789D4B 0.1rem solid;
  color: #789D4B;
}
#lp-page .Section_4 .items_wrap .item_3 .catch span {
  border: #E57793 0.1rem solid;
  color: #E57793;
}
#lp-page .Section_4 .items_wrap .item_4 .catch span {
  border: #6AA7C3 0.1rem solid;
  color: #6AA7C3;
}

#lp-page .Section_4 .items_wrap li .lead::before {
  left: -1rem;
}
#lp-page .Section_4 .items_wrap li .lead::after {
  right: -1rem;
}

#lp-page .Section_4 .com {
  position: absolute;
  width: 14.4rem;
  top: 15rem;
  left: 28rem;
  z-index: 1;
}

#lp-page .Section_4 .com__2 {
  position: absolute;
  width: 18.5rem;
  top: 58rem;
  left: 24rem;
  z-index: 1;
}

#lp-page .Section_4 .com__3 {
  position: absolute;
  width: 6rem;
  top: 40rem;
  left: 38rem;
  z-index: 1;
}

#lp-page .Section_4 .bg {
  position: absolute;
  width: 17rem;
  top: 15rem;
  left: 0.5rem;
  z-index: 1;
}


/* ＝＝＝＝＝＝＝＝ Section_5 ＝＝＝＝＝＝＝＝ */
#lp-page .Section_5 {
  position: relative;
  background: linear-gradient(to bottom, #fff 40%, #FAE4F3 10%);
  padding-bottom: 3rem;
  z-index: 0;
}

#lp-page .Section_5 .leadText {
  margin-top: 3rem;
  font-size: 1.4rem;
  line-height: 2;
}

#lp-page .Section_5 .comics_img {
  margin: 2.5rem auto 0;
  width: 41rem;
}

#lp-page .Section_5 .comics_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 0 3rem;
}

#lp-page .Section_5 .comics_wrap p:nth-of-type(1) {
  width: 13.5rem;
  margin-right: -4rem;
}
#lp-page .Section_5 .comics_wrap p:nth-of-type(2) {
  width: 34rem;
}

#lp-page .brand {
  margin: 6rem auto 0;
}

#lp-page .brand .text {
  text-align: center;
  position: relative;
  margin: 3rem 0 0 0;
  font-size: 1.2rem;
  z-index: 0;
}

#lp-page .brand .text::before {
  position: absolute;
  content: "";
  background: url(../img/brand_arrow.svg) no-repeat;
  background-size: 100%;
  width: 2rem;
  height: 0.7rem;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}


/* =============== follow-nav =============== */
#lp-page .follow_nav {
  position: fixed;
  visibility: hidden;
  box-sizing: border-box;
  transition: all 0.6s 0.2s ease;
  overflow-x: scroll;
  white-space: nowrap;
  border-top: var(--font-color) 0.1rem solid;
  bottom: -20rem;
  left: 0;
  width: 100%;
  display: block;
  z-index: 20;
}

#lp-page .follow_wrap {
  display: flex;
  align-items: center;
  box-shadow: 0 0 2px #ddd;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#lp-page .follow_nav a {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0;
  height: 5.8rem;
  z-index: 0;
}

#lp-page .follow_nav a span {
  display: block;
  font-size: 1rem;
}

#lp-page .follow_wrap li {
  position: relative;
  width: 25%;
}

#lp-page .follow_wrap li:nth-of-type(1) a {
  background: var(--bg-yellow-color);
}
#lp-page .follow_wrap li:nth-of-type(2) a  {
  background: var(--bg-pink-color);
}
#lp-page .follow_wrap li:nth-of-type(3) a  {
  background: var(--bg-orang-color);
}
#lp-page .follow_wrap li:nth-of-type(4) a  {
  background: var(--bg-blue-color);
}

#lp-page .follow_nav a:hover {
  opacity: 1;
}

#lp-page .follow_nav.up-active {
  visibility: visible;
  z-index: 10;
  bottom: 0;
}

#lp-page .follow_nav.down-active {
  visibility: visible;
  bottom: -20rem;
  z-index: 10;
}

#lp-page .follow_wrap .text {
  margin-top: 0.2rem;
  font-size: 1.2rem;
}

#footer {
  background: #fff;
}


#lp-page .follow_banner {
  position: fixed;
  visibility: hidden;
  box-sizing: border-box;
  transition: all 0.6s 0.2s ease;
  overflow-x: scroll;
  white-space: nowrap;
  bottom: 6rem;
  right: -10rem;
  width: 10rem;
  display: block;
  z-index: 20;
}

#lp-page .follow_banner.up-active {
  visibility: visible;
  z-index: 10;
  right: 0.5rem;
}

#lp-page .follow_banner.down-active {
  visibility: visible;
  z-index: 10;
  right: -10rem;
}



/* ===================
  　　  ▽ MODAL ▽
=================== */
/* modal */
body.no_scroll {
  height: 100vh;
  overflow: hidden;

}

header.hide {
  opacity: 0;
  pointer-events: none;
}

.modal_outside.hide {
  opacity: 0;
  pointer-events: none;
}

.modal_outside {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: opacity .3s;
}

.modal_outside::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100%;
  backdrop-filter: blur(2px);
  background-color: rgba(49, 49, 49, .6);
  margin: 0 calc(50% - 50vw);
}

.modal_inner {
  position: relative;
  z-index: 1;
  width: 41rem;
  height: 70rem;
  overflow: scroll;
}

.campaign_inner  {
  position: relative;
  margin-inline: auto;
  width: 41rem;
  z-index: 1;
}

.modal_outer {
  position: relative;
}

.modal_outer.__2 .modal_inner {
  width: 67.5rem;
}

.__2 .campaign_inner {
  width: 67.5rem;
}

.btn_close {
  position: absolute;
  top: -5rem;
  right: 2rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
}

.btn_close:hover {
  cursor: pointer;
}

.btn_close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 4rem;
  height: 1.5px;
  background: var(--white-color);
  content: "";
}

.btn_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.5px;
  height: 4rem;
  background: var(--white-color);
  content: "";
}

.review_area .modal_wrap {
  position: relative;
  background-color: var(--white-color);
  padding: 3.5rem 2rem;
}

.campaign_wrap {
  position: relative;
  background-color: var(--white-color);
  padding: 3.5rem 2rem;
}

.review_area .modal_wrap .modal_wrap_blk {
  width: 100%;
  text-align: center;
}

.campaign_wrap .campaign_wrap_blk {
  width: 100%;
  text-align: center;
}

.review_area .modal_wrap .modal_item_img {
  width: 100%;
  margin: 0 auto;
}

.campaign_wrap .modal_item_img {
  width: 100%;
  margin: 0 auto;
}

.review_area .modal_wrap .modal_item_img img {
  width: 100%;
}

.campaign_wrap .modal_item_img img {
  width: 100%;
}

.review_area .modal_wrap .modal_item_text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1.5rem;
}

.campaign_wrap .modal_item_text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1.5rem;
}

.review_area  .modal_wrap_blk h3 {
  display: inline-block;
  margin-top: 1rem;
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--font-color);
  background: linear-gradient(to bottom, #fff 40%, #E4F1F7 10%);
}

.campaign_wrap h3 {
  display: inline-block;
  margin-top: 1rem;
  padding-inline: .1rem;
  font-size: 2.6rem;
  line-height: 1.3;
  color: var(--font-color);
  background: linear-gradient(to bottom, #fff 60%, #E4F1F7 40%);
}

.review_area  .modal_content .number {
  position: relative;
  margin: 2.5rem auto 0;
  font-size: 4.3rem;
  font-family: var(--font-en);
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #EFFEA1;
  color: var(--font-color);
  z-index: 0;
}

.campaign_content .number {
  position: relative;
  margin: 1rem auto 0;
  font-size: 4.3rem;
  font-family: var(--font-en);
  width: 7rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #EFFEA1;
  color: var(--font-color);
  z-index: 0;
}

.review_area  .modal_content .number::before {
  position: absolute;
  content: "";
  width: 14.4rem;
  height: 0.1rem;
  background: var(--font-color);
  bottom: 1rem;
  left: -15rem;
  z-index: 1;
}

.campaign_content .number::before {
  position: absolute;
  content: "";
  width: 14.4rem;
  height: 0.1rem;
  background: var(--font-color);
  bottom: 1rem;
  left: -15rem;
  z-index: 1;
}

.review_area  .modal_content .number::after {
  position: absolute;
  content: "";
  width: 14.4rem;
  height: 0.1rem;
  background: var(--font-color);
  bottom: 1rem;
  right: -15rem;
  z-index: 1;
}

.campaign_content .number::after {
  position: absolute;
  content: "";
  width: 14.4rem;
  height: 0.1rem;
  background: var(--font-color);
  bottom: 1rem;
  right: -15rem;
  z-index: 1;
}

.review_area .point {
  width: 30rem;
  margin: 1rem auto 0;
}

.campaign_inner .point {
  width: 30rem;
  margin: 1rem auto 0;
}

.accordionBox {
  position: relative;
  z-index: 0;
}

.accordionBox__inner {
  overflow: hidden;
  transition: all .8s ease;
  max-height: 18rem;
}

.accordionBox__inner.text_blk {
  margin-bottom: -1rem;
}

.open .accordionBox__inner {
  max-height: 160rem;
}

.accordionBox__button {
  display: inline-grid;
  place-items: end center;;
  position: absolute;
  left: 0;
  bottom: -.2rem;
  background: linear-gradient(0deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 120%);
  transition: all .6s ease;
  width: 100%;
  height: 9rem;
  z-index: 1;
}

.open .accordionBox__button {
  position: static;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

.accordionBox__button--text {
  position: relative;
  padding: .5rem 3rem .4rem 1.8rem;
  background: var(--font-color);
  border-radius: 20px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: .025em;
  z-index: 0;
}

.accordionBox__button--text::after {
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 1.4rem;
  width: .7rem;
  height: .5rem;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.open .accordionBox__button--text {
  display: none;
}

.review_area .content_ttl {
  font-size: 2rem;
  font-weight: 600;color: var(--font-color);
  text-align: center;
  margin-top: 1rem;
}

.campaign_inner .content_ttl {
  font-size: 2rem;
  font-weight: 600;color: var(--font-color);
  text-align: center;
  margin-top: 1rem;
}

.review_area .date {
  width: 20rem;
  height: 2.8rem;
  background: #EFFEA1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  border-radius: 50rem;
  font-weight: 600;
  padding: 0.2rem 0 0 0;
}

.campaign_inner .date {
  width: 20rem;
  height: 2.8rem;
  background: #EFFEA1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0;
  border-radius: 50rem;
  font-weight: 600;
  padding: 0.2rem 0 0 0;
}

.review_area .date p {
  font-size: 1.4rem;
  color: var(--font-color);
}

.campaign_inner .date p {
  font-size: 1.4rem;
  color: var(--font-color);
}

.review_area .date span {
  font-size: 1rem;
  margin: 0 0.2rem;
}

.campaign_inner .date span {
  font-size: 1rem;
  margin: 0 0.2rem;
}

.review_area .subText {
  font-size: 1rem;
}

.campaign_inner .subText {
  font-size: 1rem;
}

.review_area img {
  width: 100%;
}

.campaign_inner img {
  width: 100%;
}

.review_area .limited {
  width: 7.5rem;
  height: 2.3rem;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EFFEA1;
}

.campaign_inner .limited {
  width: 7.5rem;
  height: 2.3rem;
  margin: 1rem auto 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EFFEA1;
}

.review_area .ttl {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--font-color);
}

.campaign_inner .ttl {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--font-color);
}

.review_area .text_blk {
  margin-top: 1.5rem;
}

.campaign_inner .text_blk {
  margin-top: 1.5rem;
}

.review_area .ttl span {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.campaign_inner .ttl span {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.review_area .img {
  margin: 0.5rem auto 0;
  width: 100%;
}

.campaign_inner .img {
  margin: 0.5rem auto 0;
  width: 100%;
}

.review_area .img img {
  width: 100%;
}


.campaign_inner .img img {
  width: 100%;
}

.review_area .info_inner {
  text-align: justify;
  margin: 1rem auto 0;
  color: var(--font-color);
}

.campaign_inner .info_inner {
  text-align: justify;
  margin: 1rem auto 0;
  color: var(--font-color);
}

.review_area .info_inner p:nth-of-type(1) {
  font-size: 1rem;
}

.campaign_inner .info_inner p:nth-of-type(1) {
  font-size: 1rem;
}

.review_area .info_inner p:nth-of-type(2) {
  text-align: left;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.campaign_inner .info_inner p:nth-of-type(2) {
  text-align: left;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.review_area .info_inner p:nth-of-type(3) {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.campaign_inner .info_inner p:nth-of-type(3) {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.review_area .text_blk.__2 .info_inner p:nth-of-type(1) {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.campaign_inner .text_blk.__2 .info_inner p:nth-of-type(1) {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

.review_area .bigbottle {
  margin: 2rem auto 0;
  width: 100%;
}


.campaign_inner .bigbottle {
  margin: 2rem auto 0;
  width: 100%;
}

.slick-prev:before, .slick-next:before {
  display: none;
}




@media only screen and (min-width: 769px) {
#lp-page .sp_only {
  display: none;
}
#lp-page .pc_only {
  display: block;
}

#lp-page .fixed_area {
    position: fixed;
    left: 50%;
    translate: -50% -45%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 160rem;
    height: 100%;
    margin: 0 auto;
    top: 50%;
}

#lp-page .lp_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: url(../img/pc_bg.png);
  background-size: 100%;
}

#lp-page .page-inner {
  width: 50rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: var(--white-color);
  padding-bottom: 8rem;
  box-shadow: 3px 3px 10px #56565638;
}

#lp-page .fixed_left {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((160rem - 45rem) / 2);
    height: 100%;
}

#lp-page .fixed_right {
    display: grid;
    place-items: center;
    width: calc((100% - 45rem) / 2);
    max-width: calc((168rem - 45rem) / 2);
    height: 100%;
}

#lp-page .fixed_left h2 {
    width: 22rem;
}

#lp-page .fixed_right .menu-area {
  background: unset;
}

#lp-page .fixed_right .menu-blk:nth-child(n+2) {
  margin-top: 2rem;
}

#lp-page .follow_banner {
  bottom: 2rem;
}

#FooterWrap {
    position: relative;
}

#footer {
  background: var(--white-color);
  margin-top: -4rem;
}

#lp-page .Section_1 .com__2 {
  top: 64rem;
  left: 35.5rem;
}

#lp-page .Section_2 .bg {
  width: 15rem;
  top: 42.5rem;
  left: 33.5rem;
}

#lp-page .Section_3 .com {
  width: 16rem;
  top: 16rem;
  left: 8rem;
}

#lp-page .Section_3 .point {
  width: 13rem;
}

#lp-page .Section_4 .com {
  width: 15.4rem;
  top: 15rem;
  left: 32rem;
}

#lp-page .Section_4 .bg {
  width: 17rem;
  top: 16rem;
  left: 2.5rem;
}

#lp-page .Section_4 .com__3 {
  width: 7rem;
  top: 40rem;
  left: 41rem;
}

#lp-page .Section_2 .com {
  width: 20rem;
  top: 14rem;
  left: 29rem;
}

#lp-page .Section_2 .com__2 {
  width: 20.5rem;
  top: 42.5rem;
  left: 1rem;
}

#lp-page .follow_banner.up-active {
  width: 12rem;
  visibility: visible;
  z-index: 10;
  right: 1.5rem;
  bottom: 1rem;
}


}
