html {
  scroll-behavior: smooth;
}
body {
  background: #000 !important;
}
#reward::before, #code::before, #contents::before, #faq::before {
  content: '';
  display: block;
  height: 50px;
  margin-top: -50px;
}
.nitalago-ruika h1, .nitalago-ruika h2, .nitalago-ruika h3, .nitalago-ruika p, .nitalago-ruika a {
  font-family: "nitalago-ruika", sans-serif;
  font-weight: bold;
  font-style: normal;
}
.nitalago-ruika {
  font-family: "nitalago-ruika", sans-serif;
  font-weight: bold;
  font-style: normal;
}
a {
  color: #fff;
}
.text-center {
  text-align: center;
}
.text-white {
  color: white;
}
.relative {
  position: relative;
}
.w-full {
  width: 100%;
}
/*追加_注釈*/
/*非表示*/
.common_footer_cta_second {
  display: none;
}
/* COMMON */
.lp_page_wrapper {
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", YuGothic, 游ゴシック, meiryo, メイリオ, "ms gothic", "ms pゴシック", osaka, sans-serif;
  font-size: 16px;
  /*
  margin-top: 60px;
*/
}
.lp_page_wrapper img {
  max-width: 100%;
}
@media screen and (max-width: 812px) {
  .lp_page_wrapper {
    font-size: 14px;
  }
}
/* //COMMON */
/* FV */
.fv {
  text-align: center;
}
.fv img {
  width: 100%;
}
p.center {
  text-align: center !important;
}
.bold {
  font-weight: bold;
}
/*----------------------------------------------------------------
MENU
----------------------------------------------------------------*/
.menu {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  background-color: rgb(0 0 0 / 51%);
  color: #000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 17px 0 12px 20px;
  z-index: 30;
  font-weight: bold;
}
.menu li {
  margin-right: 2%;
  letter-spacing: 3px;
  font-size: 13px;
}
.menu li:hover {
  transform: translateY(2px);
  transition: 0.2s all ease-in;
}
.menu_sp {
  background-color: rgb(0 0 0 / 51%);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 35px 0 12px 20px;
  z-index: 30;
  font-weight: bold;
}
/*---------------*/
/* btn */
/*---------------*/
.btn a {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.05em;
  align-items: center;
  border: solid 3px #ffffffd1;
  border-radius: 30em;
  line-height: 1.2em;
  padding: 0.1em 0 0.2em;
}
.lemino a {
  background: linear-gradient(90deg, rgba(255, 168, 49, 1) 0%, rgba(255, 40, 135, 1) 100%);
  padding: 16px;
  color: #fff;
  margin: 0;
}
.btn a:hover {
  background: #fff;
  color: #ff701e;
}
.lp_cta_fixed ul li a:hover {
  background: #fff;
  color: #ff701e;
}
.lp_cta_fixed ul li a.btn_01:hover {
  background: #fff;
  color: #ff701e;
}
/*---------------*/
/*btn_box*/
/*---------------*/
.btn_box .btn a {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 0.5em auto;
  text-align: center;
  font-size: 29px;
}
.btn_box p {
  text-align: center;
  margin: 0.4em 0;
  font-size: 30px;
  font-weight: 600;
}
.red {
  color: #FF005B !important;
}
.underline {
  text-decoration: underline;
}
.btn a {}
/* ボタン本体（このクラスが a 要素に付いている前提） */
.btn_pink {
  margin: 0.5em auto;
  color: #ffa0c2;
  margin: 0.4em 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  line-height: 50px;
  width: 347px;
  margin: auto;
  position: relative;
  display: block;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 100px;
  text-decoration: none;
  /* 調整用のCSS変数（ここで一括調整） */
  --arrow-shaft-height: 1.1rem; /* 棒の長さ */
  --arrow-shaft-width: 0.12rem; /* 棒の太さ */
  --arrow-head-size: 0.55rem; /* 三角のサイズ */
  --arrow-stroke: 0.12rem; /* 三角の線の太さ */
  /* ★ここを“コメント解除”して値を入れる */
  --arrow-inset: 2.0rem; /* 左右の矢印を端からどれだけ内側へ（任意） */
  --arrow-vertical-adjust: 0.10rem; /* 通常時に中央より“下へ”寄せる量 */
  --hover-drop: 0.20rem; /* ホバー時にさらに下げる量 */
}
/* アイコン共通：縦中央（＋微調整量） */
.btn_pink .icon {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% + var(--arrow-vertical-adjust)));
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
/* 左右位置：端から内側へ寄せる（お好みで） */
.btn_pink .icon.arrow-down.left {
  left: 23px;
}
.btn_pink .icon.arrow-down.right {
  right: 23px;
}
/* ▼ 三角（矢頭） */
.btn_pink .icon.arrow-down::before {
  content: "";
  position: absolute;
  left: 60%;
  bottom: 0; /* 接合点は棒の下端と一致 */
  transform: translateX(-50%) rotate(45deg);
  width: var(--arrow-head-size);
  height: var(--arrow-head-size);
  border-right: var(--arrow-stroke) solid #ffa0c2;
  border-bottom: var(--arrow-stroke) solid #ffa0c2;
}
/* ▼ 棒（縦軸） */
.btn_pink .icon.arrow-down::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: var(--arrow-shaft-width);
  height: var(--arrow-shaft-height);
  background: #ffa0c2;
  opacity: 0; /* 初期：棒なし */
  transform-origin: bottom center;
  scale: 1 0; /* 縦0で隠す */
  transition:
    opacity 0.35s ease, scale 0.35s cubic-bezier(0.3, 0, 0.2, 1);
}
/* ホバー時：棒を出す＋矢印全体を“下へ” */
.btn_pink:hover .icon.arrow-down::after {
  opacity: 1;
  scale: 1 1;
}
.btn_pink:hover .icon.arrow-down.left, .btn_pink:hover .icon.arrow-down.right {
  transform: translateY(calc(-50% + var(--arrow-vertical-adjust) + var(--hover-drop)));
}
body.page-provider {}
body.page-provider {}
/* 親要素 */
/* オーバーレイ */
/* 見出し */
/* スライダー */
/* 旧スライダー（使うならスコープ化） */
/* キーフレーム（固有名） */
/* メディアクエリ */
@media screen and (max-width: 812px) {
  .btn a {
    font-size: 1.2em;
    width: 90%;
    line-height: 1.2em;
    padding: 0.5em;
  }
}
/* ヘッダーの重なり優先度（任意：サイト構造に合わせて） */
header {
  position: relative; /* fixed なら fixed でOK */
  z-index: 1000;
}
/*---------------*/
/* introduction */
/*---------------*/
.introduction_1 {
  background: #fff;
  max-width: 1000px;
  margin: 6em auto 3em;
  width: 90%;
  border-radius: 30px;
  text-align: center;
  color: #000;
  padding: 26px 15px 40px;
}
h2.introduction_h2 {
  text-align: center;
  font-size: 70px;
  font-weight: lighter;
  background: linear-gradient(90deg, rgba(144, 0, 99, 1) 0%, rgba(230, 114, 10, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: auto;
}
h2.introduction_h2.small {
  font-size: 50px;
  padding-bottom: 15px;
}
.introduction_1 p {
  color: #000;
  text-align: left;
  font-size: 23px;
  padding: 0px 28px 0;
}
p.center.contents_p {
  font-size: 23px;
}
h3 {
  background: linear-gradient(90deg, rgba(255, 168, 49, 1) 0%, rgba(255, 40, 135, 1) 100%);
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  border-radius: 10px;
  margin: 9px 10px 10px;
  text-align: left;
  padding: 0 15px 0;
}
p.comments {
  font-size: 17px !important;
}
p.fukidashi {
  color: #fff;
}
/*---------------
スライダ―
---------------*/
.slider {
  touch-action: pan-y;
}
.sliderArea {
  padding: 0 33px;
  margin-bottom: 50px;
}
.regular_2 {
  text-align: left;
}
.slide-cap {
  position: absolute;
  display: inline-block;
  text-align: left;
  background: #ff6b5a;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
  padding: 3px;
  border-radius: 4px;
  bottom: -6px;
  z-index: 100;
  left: 3px;
}
body.page-provider {}
.regular_2 img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.slider img {
  width: 100%;
  height: auto;
  display: block;
}
.cap {
  text-align: center;
  font-size: 14px;
  margin-top: 4px;
}
.slider img, .slider .cap {
  pointer-events: none;
}
.regular_2 {
  touch-action: pan-y pinch-zoom;
}
.sliderArea {
  transform: scale(0.95);
  transform-origin: top center;
  margin-bottom: -62px;
}
.regular_2 .slick-slide > div > div {
  padding: 0 4px 43px;
  box-sizing: border-box;
  position: nitial;
  position: relative;
}
/*---------------*/
/* タブメニュー */
/*---------------*/
/*---------*/
.tab_contract_area {
  max-width: 1000px;
  margin: 6em auto;
  width: 90%;
  background: #fff;
  padding: 26px 15px 40px;
  border-radius: 30px;
}
.tab_box.tab_contract_area.ma_area {
  margin: 2em auto 0;
}
.tab_contract_area .tab {
  max-width: 1000px;
}
.tab_contract_area .tab-content {
  max-width: 1000px;
  background: #000;
  border-right: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: #000;
}
.tab_box.tab_contract_area p {
  color: #000;
  text-align: left;
  font-size: 23px;
  padding: 7px 20px 0px;
}
.code {
  padding-bottom: 30px;
}
p.code_line {
  text-decoration: underline;
  font-weight:inherit;
}
.code_line {
  text-decoration: underline;
  font-weight: 100;
}
.tab_contract_area .tab ul li {
  font-size: 25px;
}
.tab_contract_area .tab ul li:not(.active) div {
  position: relative;
  background-color: #666;
  height: 100%;
  color: #fff;
  font-weight: bold;
  border-bottom: solid 2px #fff;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.tab ul {
  display: flex;
  justify-content: space-between;
}
.tab ul li.active {
  width: 49.6%;
  border: 2px #FFF solid;
  border-bottom: none;
  background-color: #151515;
  color: #FFF;
}
.tab ul li.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px; /* ボーダーの太さと同じ */
  background: linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
}
.tab ul li {
  width: 50.4%;
  text-align: center;
  background-color: #FFF;
  color: #151515;
  background-color: #151515;
  height: 140px;
  box-sizing: border-box;
  position: relative;
  font-size: 30px;
}
.tab ul li:nth-child(1) {
  margin-right: 1em;
}
.tab ul li:not(.active) {
  cursor: pointer;
  background: #ededed;
  border-bottom: 5px solid #060606;
  transition: transform 0.5s;
}
.tab ul li:not(.active) :hover {
  opacity: 0.8;
}
/*.tab ul li:first-child:not(.active) {
   padding: 8px 8px 2px 0;
}*/
.tab ul li:not(.active)::after {
  content: '';
  position: absolute;
  bottom: 125px;
  left: 0px;
  width: 100%;
  height: 10px; /* ボーダーの太さと同じ */
  background: #000;
}
.tab ul li:not(.active) div {
  position: relative;
  background-color: #FFF;
  height: 100%;
}
.tab-content.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px; /* ボーダーの太さと同じ */
  background: #fff;
}
.tab ul li.active::after {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(41%);
  width: 0;
  height: 0;
  border-top: 26px solid #ffffff;
  border-left: 3vw solid transparent;
  border-right: 3vw solid transparent;
  z-index: 10;
}
.tab ul li.active div {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}
.tab-content {
  display: none;
  max-width: 1100px;
  border-top: none;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 5em 0 0;
}
.tab-content.active {
  display: block;
  position: relative;
}
.tab_box_inner {
  padding: 0 0 1.5em;
  width: 90%;
  margin: 0 auto;
}
/*.tab_box_inner h5 span{    text-shadow: 2px 2px 0px rgb(255 28 108);}*/
/* =========================
   FIXED CTA（安定版）
   ========================= */
/* 初期状態：非表示（ここがチラつき防止の肝） */
.lp_cta_fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  padding-bottom: env(safe-area-inset-bottom);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  will-change: transform, opacity;
}
.lp_cta_fixed.is-fixed{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* 表示状態 */
/* 退避（フッター付近で隠す等に利用） */
/* visited色 */
.lp_cta_fixed a:visited {
  color: #fff;
}
/* hover（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .lp_cta_fixed ul li a:hover {
    box-shadow: none;
  }
}
/* レイアウト */
.lp_cta_fixed ul {
  display: flex;
  margin: 0.5em auto;
  max-width: 1000px;
  width: 70%;
  gap: 12px;
}
.lp_cta_fixed ul li {
  width: 45%;
  margin: 0 auto;
  max-width: 400px;
}
.lp_cta_fixed ul li a {
  max-width: 450px;
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.05em;
  align-items: center;
  border: solid 3px #ffffffd1;
  border-radius: 30em;
  line-height: 1em;
  /* ★ボタンの高さ調整はここ */
  padding: 0.8em 0;
}
/* ボタン背景 */
.lp_cta_fixed ul li a.btn_01 {
  background: linear-gradient(90deg, #FC8E3C 0%, #FF0576 100%);
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
}
/* スマホ調整 */
@media (max-width: 768px) {
  .lp_cta_fixed ul {
    width: 92%;
    max-width: 600px;
  }
  .lp_cta_fixed ul li {
    width: 100%;
    max-width: none;
  }
  .lp_cta_fixed ul li a {
    font-size: 1.1em;
    padding: 0.9em 0;
  }
}
/* ==========================================================================
list
========================================================================== */
.list_box {
  position: relative;
  max-width: 1000px;
  margin: 0em auto 2em;
  width: 90%;
  background: #fff;
  padding: 26px 15px 40px;
  border-radius: 30px;
  text-align: center;
}
.list_area {
  margin-top: 15px;
}
.list_box img {
  max-width: 60%;
  padding: 10px 0;
}
.list_box.small img {
  max-width: 35% !important;
}
.list_box p {
  text-align: center !important;
}
.ic_img {
  width: 20%;
  margin: auto;
}
.introduction_1 .ic_img {
  padding: 20px;
}
/* HTML: <div class="triangle"></div> */
.triangle {
  left: 10;
  margin: 0 auto 20px;
  --r: 6px; /* border radius */
  height: 38px;
  aspect-ratio: 2;
  --_g: calc(var(--r)/tan(22.5deg)) top var(--r), #000 98%, #0000 101%;
  -webkit-mask:
    conic-gradient(from 157.5deg at 50% calc(var(--r)/(3*sqrt(2) - 4) - 100%/tan(22.5deg)), #000 45deg, #0000 0) 0 0/100% calc(100% - var(--r)/sqrt(2)) no-repeat, radial-gradient(var(--r) at 50% calc(100% - var(--r)*sqrt(2)), #000 98%, #0000 101%), radial-gradient(var(--r) at left var(--_g)), radial-gradient(var(--r) at right var(--_g));
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
}
.lemino_line {
  width: 90%;
  height: 2px;
  background: linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
  margin: -10px auto 0px;
}
/* //FIXED CTA */
.wrapper {
  padding-top: 0px !important;
}
/* COMMON */
.only_SP {
  display: none;
}
.pc_on {
  display: block;
}
.sp_on {
  display: none;
}
/* ----------------------------------------------
ハンバーガーメニュー
------------------------------------------------*/
#nav-drawer {
  font-weight: 800;
  font-style: normal;
}
.nav-unshown {
  display: none; /*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 16px;
  top: -2px;
  z-index: 99999;
  border-radius: 0 0 0 10px;
  /* background-color: rgba(255,255,255,0.9); */
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
  position: absolute;
  left: 15px;
  height: 3px; /*線の太さ*/
  width: 20px; /*長さ*/
  background: #ffffff;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
  border-radius: 20px;
}
#nav-open span.nav_line.first {
  top: 12px;
}
#nav-open span.nav_menu {
  position: absolute;
  font-size: 9px;
  bottom: 3px;
  color: #ffffff;
}
/* アイコンがクリックされたらMENUを消す */
#nav-input:checked ~ #nav-open span.nav_menu {
  opacity: 0;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span.nav_line.first {
  transform: rotate(225deg);
  top: 23px;
}
#nav-input:checked ~ #nav-open span.nav_line.second {
  transform: rotate(-225deg);
}
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 90%;
  max-width: 300px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* 0.5 は透明度(50%) */
  /* background: #000000; */
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #fff;
}
.nav_item {
  text-align: center;
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin: 0 0 15px;
}
.nav_item li:last-of-type {
  border-bottom: 0 dashed #791f97;
}
.nav_item li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
  color: #fff;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  height: 100vh;
}
.header_menu {
  display: flex;
  display: -moz-flex;
  display: -o-flex;
  display: -webkit-flex;
  display: -ms-flex;
  flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
}
.all_copy {
  /* margin-top: 40px; */
  font-size: 11px;
  font-weight: normal;
  text-align: left;
}
section.copy_box {
  max-width: 1000px;
  margin: auto;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", YuGothic, 游ゴシック, meiryo, メイリオ, "ms gothic", "ms pゴシック", osaka, sans-serif;
}
/*---------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px) {
  .fv h1 {
    width: 100% !important;
  }
  h3 {
    font-size: 15px;
    margin: 17px 0px 10px;
    padding: 5px 10px;
  }
  p.comments {
    font-size: 18px;
  }
  p {
    line-height: 1.5;
  }
  .tab_contract_area {
    margin: 1em auto;
  }
  .tab_box.tab_contract_area.ma_area {
    margin: 2em auto;
  }
  .tab_box.tab_contract_area p {
    font-size: 13px;
    padding: 0px 7px 0px;
  }
  .code {
    padding-bottom: 5px;
  }
  .tab_contract_area .tab ul li {
    font-size: 12px;
  }
  .tab_contract_area .tab ul li:not(.active) div {
    padding: 19px 6px 0 6px;
  }
  .tab ul {
    height: 80px;
  }
  .tab ul li.active {
    width: 49.6%;
  }
  .tab ul li {
    height: 80px;
  }
  .tab ul li:not(.active)::after {
    bottom: 65px;
  }
  .tab ul li.active::after {
    top: 108%;
    left: calc(41%);
    border-top: 13px solid #ffffff;
  }
  .tab ul li.active div {
    margin: 6px 6px 0 6px;
  }
  .tab-content {
    padding: 2em 0 0;
  }
  .tab_box_inner {
    padding: 0px 0 1em;
  }
  .list_box {
    margin: 0em auto 1em;
    padding: 15px 5px 11px;
    border-radius: 8px;
  }
  .triangle {
    left: 10;
    margin: 0 auto 20px;
    --r: 2px; /* border radius */
    height: 18px;
    aspect-ratio: 2;
    --_g: calc(var(--r)/tan(22.5deg)) top var(--r), #000 98%, #0000 101%;
    -webkit-mask:
      conic-gradient(from 157.5deg at 50% calc(var(--r)/(3*sqrt(2) - 4) - 100%/tan(22.5deg)), #000 45deg, #0000 0) 0 0/100% calc(100% - var(--r)/sqrt(2)) no-repeat, radial-gradient(var(--r) at 50% calc(100% - var(--r)*sqrt(2)), #000 98%, #0000 101%), radial-gradient(var(--r) at left var(--_g)), radial-gradient(var(--r) at right var(--_g));
    clip-path: polygon(50% 100%, 100% 0, 0 0);
    background: linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
  }
  .lemino_line {
    height: 1px;
    margin: -10px auto 8px;
  }
  .list_box img {
    max-width: 100%;
    padding: 10px;
  }
  .list_box.small img {
    max-width: 60% !important;
  }
  .tab_box_inner {
    width: 100%;
  }
  .ic_img {
    width: 35%;
    margin: auto;
  }

  .introduction_1 .ic_img {
    padding: 10px;
  }
  .lp_cta_fixed ul li {
    width: 100%;
    font-size: 11px;
  }
  .lp_cta_fixed ul li a {
    padding: 1em 0 0.8em;
  }
  p.center.contents_p {
    font-size: 14px;
  }
  .btn_pink {
    font-size: 18px;
    width: 310px;
    margin-top: -10px;
  }
  .copy {
    margin: 0rem 2rem 0 !important;
  }
  .all_copy {
    font-size: 9px !important;
  }
  .all_copy {
    margin-top: 0 !important;
  }
  .annotation {
    margin: 2rem 2rem !important;
  }
  .sliderArea {
    padding: 0 8px;
    margin-bottom: -20px;
  }
  .sliderArea {
    transform: scale(1.05);
    transform-origin: top center;
    margin-bottom: 20px;
  }
  .slide-cap {
  font-size: 8px;
  bottom: -8px;
}
.regular_2 .slick-slide > div > div {
  padding: 0 2px 21px;
}
}
/*---------------------------------------------------------------------------------------*/
@media screen and (min-width:813px) {
  .wrapper {
    background-attachment: fixed;
  }
}
@media screen and (max-width: 812px) {
  .pc_on {
    display: none;
  }
  .sp_on {
    display: block;
  }
  .pc {
    display: none;
  }
  .only_SP {
    display: inline;
  }
}
img.faq_img {
  padding-top: 10px;
  width: 30%;
  display: block;
  margin: 0 auto;
}
.common_footer_wrapper {
  position: relative;
  background: #fff;
  font-family: YakuHanJP, "Hiragino Kaku Gothic ProN", YuGothic, 游ゴシック, meiryo, メイリオ, "ms gothic", "ms pゴシック", osaka, sans-serif;
  font-size: 16px;
  color: #000;
}
.common_footer_wrapper img {
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 812px) {
  .common_footer_wrapper {
    font-size: 14px;
  }
  .btn_box {
    padding-top: 1%;
  }
}
/* //COMMON */
/* FEATURE */
/* //FEATURE */
/* MASTHEAD */
@media screen and (max-width: 812px) {
  img.faq_img {
    width: 70%;
  }
}
/* //MASTHEAD */
/* CTA */
.common_footer_cta {
  padding: 3.2% 2%;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.common_footer_cta_second {
  padding: 4.8% 2%;
}
@media screen and (max-width: 812px) {
  .common_footer_cta {
    padding: 8% 2%;
  }
  .common_footer_cta_second {
    padding: 10% 2%;
  }
}
/* //CTA */
/* DEVICES */
/* //DEVICES */
/* GENRE */
.wrapper {
  position: relative; /* 擬似要素を配置するため */
  z-index: 0;
}
.wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url(../images/bg.webp) no-repeat top center / 110% auto;
  opacity: 0.3;
  mix-blend-mode: multiply;
  z-index: -1;
}
@media screen and (max-width: 812px) {
  .wrapper::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../images/bg_sp.webp) no-repeat top center / 150% auto;
  }
}
/* //GENRE */
/* FAQ */
.common_footer_wrapper .faq_section {
  text-align: left;
  line-height: 1.5;
  max-width: 816px;
}
.common_footer_wrapper .faq_item {
  border-bottom: 1px solid #ced5d6;
}
.common_footer_wrapper .faq_question {
  padding: 2.3% 0 2.3% 6.4%;
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.common_footer_wrapper .faq_question::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/leminolp_icon_2_pc_off.png) no-repeat center center / cover;
}
@media screen and (max-width: 812px) {
  .common_footer_wrapper .faq_question {
    padding: 5% 2% 5% 12%;
  }
  .common_footer_wrapper .faq_question::after {
    top: min(4.66666vw, 35px);
    left: min(6.66666vw, 50px);
    transform: translateY(0);
  }
}
.common_footer_wrapper .faq_answer {
  padding: 0 0 2.3% 6.4%;
  position: relative;
}
.common_footer_wrapper .faq_answer::before {
  content: 'A.';
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 4%;
}
@media screen and (max-width: 812px) {
  .common_footer_wrapper .faq_answer {
    padding: 0 2% 5% 12%;
    position: relative;
  }
  .common_footer_wrapper .faq_answer::before {
    left: min(6.66666vw, 50px);
  }
  .common_footer_wrapper .faq_section {
    font-size: min(3.33333vw, 25px);
  }
}
/* //FAQ */
/* ANNOTATION */
.annotation {
  text-align: left;
  line-height: 1.5;
  font-size: min(0.93333vw, 14px);
  font-weight: bold;
  margin: 2rem 4rem;
  color: #fff;
  /* margin: 6rem; */
}
/* //ANNOTATION */
/* FOOTER */
.footer_note {
  font-size: min(0.86666vw, 13px);
  margin: 2em 1em 0;
}
.footer_note li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.6em;
}
.footer_note li.li_h {
  margin-top: 1em;
}
@media screen and (max-width: 812px) {
  .annotation {
    line-height: 1.4;
    font-size: min(2.4vw, 18px);
    padding-top: 2.5%;
  }
  .annotation p + p {
    margin-top: -1%;
  }
  .footer_note {
    font-size: min(2.9vw, 14px);
    margin: 4em 1em 0;
  }
  .footer_note li {
    line-height: 1.4em;
  }
}
/* //FOOTER */
img {
  max-width: 100%;
}
@media screen and (max-width: 812px) {
  .mb0_4 {
    margin-bottom: 0.4%;
  }
  .pb8 {
    padding-bottom: 8%;
  }
}
/*bakuage*/
.copy {
  margin: 4rem 4rem 0;
  padding: 1px;
  color: #fff;
  border-radius: 10px;
  background: #0000004d;
  font-size: 11px;
  font-weight: 100;
}
/* ==========================================================================
accordion
========================================================================== */
/*accordion*/
/* 矢印 */
.fv {
  position: relative;
  padding-top: 55px;
}
.fv h1 {
  margin: auto;
  width: 64%;
  max-width: 1500px;
}
header {
  width: 100%;
  max-width: 180px;
  position: fixed;
  top: 10px;
  left: 25px;
  z-index: 100;
}
.opacity:hover {
  opacity: .8;
}
#footer_lemino_ {
  background: #fc8e3d;
  background: -moz-linear-gradient(left, #fc8e3d 0%, #ff0576 100%);
  background: -webkit-linear-gradient(left, #fc8e3d 0%, #ff0576 100%);
  background: linear-gradient(to right, #fc8e3d 0%, #ff0576 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fc8e3d', endColorstr='#ff0576', GradientType=1);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .fv {
    /* background: url("../images/bg_top.webp"); */
  }
}
label {
  margin: 0 !important;
}
.lp_cta_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0; /* ← 初期は非表示 */
  transform: translateY(20px); /* ← 下にずらしておく */
  pointer-events: none; /* ← クリック不可に */
  transition: opacity .3s ease, transform .3s ease;
  z-index: 1000;
}
@media screen and (max-width: 812px) {
  @media screen and (min-width: 813px) {
    .pc {
      display: block;
    }
  }
  header {
    width: 160px;
    left: 3%;
    top: 11px;
  }
  #footer_lemino_ {
    height: 50px;
    font-size: 10px;
  }
  .fv img {
    width: 100%;
  }
  .btn_box .btn a {
    font-size: 23px;
    max-width: 350px;
  }
  .btn_box p {
    font-size: 20px;
  }
  .introduction_1 {
    margin: 2em auto 3em;
  }
  h2.introduction_h2 {
    font-size: 30px;
    margin-bottom: 18px;
  }
  h2.introduction_h2.small {
    font-size: 20px;
    padding-bottom: 0px;
  }
  .introduction_1 p {
    font-size: 14px;
    padding: 0px 10px 0;
  }
  p.comments {
    font-size: 11px !important;
  }
  .regular_2 .cap {
    display: inline-block;
    text-align: left;
    background: #ff6b5a;
    margin: 3px 0;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
    padding: 3px;
    border-radius: 4px;
  }
  .lp_cta_fixed ul li a {
    font-size: 1.5em;
    padding: 0.9em 0;
    margin: auto;
    width: 400px;
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  header {
    width: 120px;
    top: 15px;
  }
}
@media screen and (max-width: 321px) {
  .btn_box p {
    font-size: 16px;
  }
  .btn_box .btn a {
    font-size: 15px;
    width: 240px
  }
  .btn_pink {
    font-size: 12px;
    width: 226px;
    margin-top: -10px;
  }
}