@charset "UTF-8";
body {
  font-family: YuGothic, "ヒラギノ角ゴ ProN W3", "Lucida Grande",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, "ＭＳ Ｐゴシック",
    sans-serif;
  font-weight: 400;
  background-color: #fff;
  color: #231d27;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1185px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.9;
  }
}

html.fixed,
html.fixed body {
  height: 100%;
  overflow: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

main {
  padding-top: 85.28px;
  padding-top: 5.33rem;
  overflow-x: hidden;
  padding-bottom: 238px;
  padding-bottom: 14.875rem;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 4.625rem;
    padding-bottom: 17.9375rem;
  }
}

body::before {
  content: "";
  background-image: url(../images/bg-noise_sp.png);
  background-size: 100%;
  background-repeat: repeat-y;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -100;
}
@media screen and (min-width: 768px) {
  body::before {
    background-image: url(../images/bg-noise.png);
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* btn */
.btn {
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn a,
.btn button {
  background-color: #231d27;
  color: #fff;
  max-width: 250px;
  max-width: 15.625rem;
  width: 100%;
  display: inline-block;
  border-radius: 2.5rem;
  padding: 18px 0;
  padding: 1.125rem 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.btn a::before,
.btn button::before {
  content: "";
  background-color: #cbff36;
  display: inline-block;
  width: 10.67px;
  width: 0.666875rem;
  height: 10.67px;
  height: 0.666875rem;
  border-radius: 50%;
  margin-right: 22.67px;
  margin-right: 1.416875rem;
}

/* common-btn */
.common-btn a,
.common-btn button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.common-btn a::before,
.common-btn button::before {
  -webkit-animation: pulsate 1.5s ease infinite;
  animation: pulsate 1.5s ease infinite;
}

.common-btn a:hover::before,
.common-btn a:focus::before,
.common-btn button:hover::before,
.common-btn button:focus::before {
  -webkit-animation: none;
  animation: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.common-btn a span.text,
.common-btn button span.text,
.header-nav__item.header-nav__item-consultation a span.text {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  transform: scale(1);
  display: inline-block;
}

.common-btn a:hover span.text,
.common-btn button:hover span.text,
.header-nav__item.header-nav__item-consultation a:hover span.text {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-box-shadow: 0 0 0 0vmin rgba(203, 255, 54, 0.2);
    box-shadow: 0 0 0 0vmin rgba(203, 255, 54, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 5vmin rgba(203, 255, 54, 0);
    box-shadow: 0 0 0 5vmin rgba(203, 255, 54, 0);
  }
}

@keyframes pulsate {
  0% {
    -webkit-box-shadow: 0 0 0 0vmin rgba(203, 255, 54, 0.2);
    box-shadow: 0 0 0 0vmin rgba(203, 255, 54, 0.2);
  }
  100% {
    -webkit-box-shadow: 0 0 0 5vmin rgba(203, 255, 54, 0);
    box-shadow: 0 0 0 5vmin rgba(203, 255, 54, 0);
  }
}
/* title */
.sec-subtitle {
  text-align: center;
  font-family: "Rajdhani", sans-serif;
  text-transform: capitalize;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .sec-subtitle {
    font-size: 1.5rem;
    line-height: 1.2916666667;
  }
}

.sec-title {
  text-align: center;
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .sec-title {
    margin-top: 0.625rem;
    font-size: 2.625rem;
    line-height: 1.5;
  }
}

/* fade-in */
.feature__img01,
.feature__img02,
.feature__img03,
.feature__img04,
.price__item01,
.price__item02,
.price__item03 {
  opacity: 0; /* 初期状態で透明にする */
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
}

.fade-in {
  opacity: 1; /* フェードインの最終状態 */
}

/* ページトップボタン */
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.page-top {
  padding-right: 0;
  padding-left: 0;
  position: absolute;
  bottom: 0;
  right: 15px;
  right: 0.9375rem;
  z-index: -1;
  display: inline-block;
  width: 69px;
  width: 4.3125rem;
  height: 119px;
  height: 7.4375rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .page-top {
    right: 4.375rem;
    width: 6.3125rem;
    height: 12.875rem;
  }
}

.page-top.fadeUp {
  -webkit-animation: fadeUpAnime 0.5s forwards;
  animation: fadeUpAnime 0.5s forwards;
  bottom: 321px;
  bottom: 20.0625rem;
}
@media screen and (min-width: 768px) {
  .page-top.fadeUp {
    bottom: 11.25rem;
  }
}

.page-top img {
  max-width: 69px;
  max-width: 4.3125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-top img {
    max-width: 6.3125rem;
  }
}

.footer {
  position: relative;
  z-index: 1000;
  border-top: 1px solid #d9d9d9;
}

.footer__bg {
  background-color: #fff;
  background-image: url(../images/bg-noise_sp.png);
  background-size: 100%;
  background-repeat: repeat-y;
  display: inline-block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer__bg {
    background-image: url(../images/bg-noise.png);
  }
}

.footer__inner {
  padding-top: 35px;
  padding-top: 2.1875rem;
  padding-left: 35px;
  padding-left: 2.1875rem;
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 74.0625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer__logo {
  max-width: 146px;
  max-width: 9.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    max-width: 14.325625rem;
  }
}

.footer__link-area {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .footer__link-area {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 4.5625rem;
    -moz-column-gap: 4.5625rem;
    column-gap: 4.5625rem;
  }
}

.footer__link:nth-child(n + 2) {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .footer__link:nth-child(n + 2) {
    margin-top: 0;
  }
}

.footer__link a {
  display: inline-block;
  border-bottom: 1px solid #d9d9d9;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 2.1538461538;
  letter-spacing: 0.05em;
  color: #7f7286;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .footer__link a {
    border-bottom: none;
  }
}

.footer__link a::before {
  content: "";
  background-image: url(../images/footer-polygon.png);
  background-size: 100%;
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 12px;
  height: 0.75rem;
  margin-right: 6px;
  margin-right: 0.375rem;
}
@media screen and (min-width: 768px) {
  .footer__link a::before {
    display: none;
  }
}

.footer__link a:hover {
  opacity: 1;
  color: #a501c2;
}

.footer__copyright {
  margin-top: 73px;
  margin-top: 4.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 4.75rem;
  }
}

.footer__copyright small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.25;
  color: rgba(35, 29, 39, 0.5);
}

.fixed-download-banner {
  position: fixed;
  font-weight: bold;
  font-size: 20px;
  right: 15px;
  bottom: 15px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s, color 0.4s;
  z-index: 1050;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .fixed-download-banner {
    width: 182px;
    height: 182px;
  }
}

.fixed-download-banner .download-link {
  z-index: 55;
}

.fixed-download-banner .download-link:hover {
  opacity: 0.7;
}

.fixed-download-banner .close-button {
  position: absolute;
  top: -30px;
  right: 0px;
  width: 25px;
  height: 25px;
}

.drawer_hidden {
  display: none;
}

.hamburger span {
  background-image: url(../images/hamburger.png);
  background-size: 100%;
  display: inline-block;
  width: 24.34px;
  width: 1.52125rem;
  height: 12.58px;
  height: 0.78625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  z-index: 1000;
}

#drawer_input:checked + .drawer_open span {
  background-image: url(../images/close.png);
  background-size: 100%;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
  right: 10px;
  right: 0.625rem;
}

#drawer_input:checked ~ .header__nav {
  left: 0;
}

/* スクロールを無効にするクラス */
.no-scroll {
  overflow: hidden;
}

.header-nav {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-image: url(../images/bg-noise_sp.png);
  background-size: 100%;
  background-repeat: repeat-y;
  padding-top: 140.5px;
  padding-top: 8.78125rem;
}
@media screen and (min-width: 768px) {
  .header-nav {
    width: auto;
    width: initial;
    height: inherit;
    background-color: transparent;
    background-color: initial;
    background-image: none;
    padding-top: 0;
  }
}

.header-nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .header-nav__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.header-nav__item {
  text-align: center;
}

.header-nav__item a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 600;
  display: inline-block;
  padding: 17.5px 0;
  padding: 1.09375rem 0;
  color: #231d27;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .header-nav__item a {
    font-size: 0.8125rem;
    line-height: 1.2307692308;
    color: #564d5c;
    padding: 0 2.5rem;
  }
}

.header-nav__item-consultation {
  margin-top: 26.5px;
  margin-top: 1.65625rem;
}
@media screen and (min-width: 768px) {
  .header-nav__item-consultation {
    margin-top: 0;
    margin-left: 3.75rem;
  }
}

.header-nav__item-consultation a {
  border: 1px solid #231d27;
  border-radius: 7.5rem;
  color: #231d27;
  padding: 18px 0;
  padding: 1.125rem 0;
  width: 260px;
  width: 16.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7775;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header-nav__item-consultation a {
    padding: 0.71875rem 0;
    width: 11.4375rem;
    font-size: 0.8125rem;
    line-height: 1.2307692308;
  }
}

.header-nav__item-consultation a::before {
  content: "";
  background-image: url(../images/icon-nav.svg);
  background-size: 100%;
  display: inline-block;
  width: 22.76px;
  width: 1.4225rem;
  height: 22.76px;
  height: 1.4225rem;
  position: absolute;
  top: 50%;
  left: 45px;
  left: 2.8125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .header-nav__item-consultation a::before {
    width: 1rem;
    height: 1rem;
    left: 2.125rem;
  }
}

.header-nav__item.header-nav__item-consultation a:hover {
  color: #231d27;
}

.header-nav__item.header-nav__item-consultation a span.text {
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.header-nav__item a:hover {
  opacity: 1;
  color: #a501c2;
}

.header {
  height: 85.28px;
  height: 5.33rem;
  width: 100%;
  padding-top: 19.68px;
  padding-top: 1.23rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 11;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.625rem;
    padding-top: 1.8125rem;
  }
}

/* 上に上がる動き */
.header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
/* 下に下がる動き */
.header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 65.6px;
  height: 4.1rem;
  max-width: 360px;
  max-width: 22.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .header__inner {
    height: 2.8125rem;
    max-width: 90.625rem;
    padding-left: 25px;
    padding-right: 25px;
  }
}

.header__logo img {
  height: inherit;
  width: 171.91px;
  width: 10.744375rem;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 14.325625rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__hamburger {
  position: relative;
  z-index: 100;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__nav {
  position: fixed;
  top: 0;
  left: 100%;
  right: 0;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    position: static;
  }
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1235px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.contact {
  margin-top: 48px;
  margin-top: 3rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 6.625rem;
  }
}

@media screen and (min-width: 768px) {
  .contact::before {
    content: "";
    background-image: url(../images/contact-bg_pc02.png);
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-block;
    width: 53.565rem;
    height: 43.32rem;
    position: absolute;
    top: 11.875rem;
    right: -6.7525rem;
    z-index: -1;
  }
}

.contact::after {
  content: "";
  background-image: url(../images/contact-bg_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 297px;
  width: 18.5625rem;
  height: 782.64px;
  height: 48.915rem;
  position: absolute;
  bottom: 36.36px;
  bottom: 2.2725rem;
  left: -49px;
  left: -3.0625rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact::after {
    background-image: url(../images/contact-bg_pc01.png);
    width: 42.27rem;
    height: 48.915rem;
    bottom: 1.6025rem;
    left: -10.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 90.625rem;
  }
}

.contact__body {
  background-color: #eae7ee;
  padding: 68px 25px 0;
  padding: 4.25rem 1.5625rem 0;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact__body {
    border-radius: 3rem;
    padding: 8.375rem 6.5625rem 8.5rem 3.1875rem;
  }
}

.contact__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 2.625rem;
    line-height: 2.3571428571;
  }
}

@media screen and (min-width: 768px) {
  .contact__form-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.contact__form-container {
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .contact__form-container {
    margin-top: 2.875rem;
    max-width: 35rem;
    width: 100%;
  }
}

.contact__form-wrap:nth-child(n + 2) {
  margin-top: 1px;
  margin-top: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap:nth-child(n + 2) {
    margin-top: 1.1875rem;
  }
}

.contact__form-label {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 3.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contact__form-label {
    font-size: 1rem;
    line-height: 2.75;
  }
}

.contact__form-label span {
  color: #ba39c5;
  margin-left: 10px;
  margin-left: 0.625rem;
}

.contact__form-input,
.contact__form-textarea {
  margin-top: -9px;
  margin-top: -0.5625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-input,
  .contact__form-textarea {
    margin-top: -0.3125rem;
  }
}

.contact__form-input input,
.contact__form-textarea textarea {
  padding: 0 10.5px;
  padding: 0 0.65625rem;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 3.1428571429;
  letter-spacing: 0.05em;
  font-weight: 600;
  background-color: #f5f5f5;
  border-radius: 0.375rem;
  border: 1.5px solid #d5cbdb;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}
@media screen and (min-width: 768px) {
  .contact__form-input input,
  .contact__form-textarea textarea {
    padding: 0.3125rem 0.9375rem;
    font-size: 1rem;
    line-height: 2.75;
    border-radius: 0.625rem;
  }
}

.contact__form-input input:focus,
.contact__form-textarea textarea:focus {
  outline: none;
  border-color: #e81cff;
}

.contact__form-input input::-webkit-input-placeholder,
.contact__form-textarea textarea::-webkit-input-placeholder {
  color: #d5cbdb;
}

.contact__form-input input::-moz-placeholder,
.contact__form-textarea textarea::-moz-placeholder {
  color: #d5cbdb;
}

.contact__form-input input::-ms-input-placeholder,
.contact__form-textarea textarea::-ms-input-placeholder {
  color: #d5cbdb;
}

.contact__form-input input::placeholder,
.contact__form-textarea textarea::placeholder {
  color: #d5cbdb;
}

.contact__form-textarea textarea {
  line-height: 1.2857142857;
  padding: 10px;
  padding: 0.625rem;
  height: 80px;
  height: 5rem;
  overflow-y: scroll;
  resize: none;
}
@media screen and (min-width: 768px) {
  .contact__form-textarea textarea {
    height: 13.125rem;
    padding: 0.3125rem 0.46875rem;
    font-size: 1rem;
    line-height: 2.75;
  }
}

.contact__form-privacy {
  margin-top: 36px;
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__form-privacy {
    margin-top: 7rem;
  }
}

.contact__form-privacy input {
  display: none;
}

.contact__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 23px;
  padding: 0 0 0 1.4375rem;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contact__form-privacy input + span {
    font-size: 1rem;
  }
}

.contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #000;
  border-radius: 0.1875rem;
  display: block;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}

.contact__form-privacy input + span::after {
  content: "";
  position: absolute;
  top: 4px;
  top: 0.25rem;
  left: 3px;
  left: 0.1875rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  width: 10px;
  width: 0.625rem;
  height: 6px;
  height: 0.375rem;
  border-bottom: 2px solid #000;
  border-bottom: 0.125rem solid #000;
  border-left: 2px solid #000;
  border-left: 0.125rem solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.contact__form-privacy input + span a {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact__form-privacy input + span a:hover {
  color: #a501c2;
}

.contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.contact__form-btn.btn {
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .contact__form-btn.btn {
    margin-top: 1.3125rem;
  }
}

.contact__form-btn.btn.common-btn button {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact__form-privacy input:checked .contact__form-btn.btn.common-btn button {
  opacity: 1;
}

.contact__img {
  margin-top: 72px;
  margin-top: 4.5rem;
  margin-bottom: -10px;
  margin-bottom: -0.625rem;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .contact__img {
    margin-top: 9.375rem;
    margin-bottom: 0;
    max-width: 41.0625rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.faq {
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-top: 10.125rem;
  }
}

.faq__subtitle.sec-subtitle {
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq__items {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .faq__items {
    margin-top: 5.9375rem;
  }
}

.faq__item {
  border-bottom: 2px solid #ebe7e7;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding-bottom: 2rem;
  }
}

.faq__item:nth-child(n + 2) {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .faq__item:nth-child(n + 2) {
    margin-top: 2.5rem;
  }
}

.faq__item-input {
  display: none;
}

.faq__item-question {
  padding: 0 32.34px 0 0;
  padding: 0 2.02125rem 0 0;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq__item-question {
    padding: 0.375rem 6.3125rem 0 0;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.faq__item-question::before,
.faq__item-question::after {
  content: "";
  position: absolute;
  top: 16.66px;
  top: 1.04125rem;
  right: 0;
  width: 22.7px;
  width: 1.41875rem;
  height: 3px;
  height: 0.1875rem;
  border-radius: 0.1875rem;
  background: #b9b0b0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq__item-question::before,
  .faq__item-question::after {
    top: 0.78375rem;
    right: 1.894375rem;
  }
}

.faq__item-question::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faq__item-input:checked + .faq__item-question::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq__item-question span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 8px;
  margin-right: 0.5rem;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .faq__item-question span {
    width: 4.3125rem;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

.faq__item-answer {
  padding: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .faq__item-answer {
    font-size: 1.125rem;
  }
}

.faq__item-answer span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 10px;
  margin-right: 0.625rem;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
}

.faq__item-input:checked + .faq__item-question + .faq__item-answer {
  height: auto;
  padding: 15px;
  padding: 0.9375rem;
}

.feature {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .feature {
    margin-top: 10.9375rem;
  }
}

.feature__bg {
  padding: 70px 0 44px;
  padding: 4.375rem 0 2.75rem;
  position: relative;
  --scaleX: 0.95;
  --borderRadius: 24px;
}
@media screen and (min-width: 768px) {
  .feature__bg {
    padding: 9.3125rem 0 13.235rem;
    --borderRadius: 48px;
  }
}

.feature__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  padding: 70px 0 44px;
  padding: 4.375rem 0 2.75rem;
  -webkit-transform: scaleX(var(--scaleX));
  transform: scaleX(var(--scaleX));
  border-radius: var(--borderRadius);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .feature__bg::before {
    padding: 9.3125rem 0 13.235rem;
  }
}

.feature__subtitle {
  color: #fff;
}

.feature__title {
  color: #fff;
}

.feature__img-area {
  margin-top: 34px;
  margin-top: 2.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__img-area {
    margin-top: 7rem;
  }
}

.feature__img-area::before {
  content: "";
  background-image: url(../images/feature-bg_sp.png);
  background-size: 100%;
  display: inline-block;
  width: 1431px;
  width: 89.4375rem;
  height: 479px;
  height: 29.9375rem;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .feature__img-area::before {
    width: 157.375rem;
    height: 52.625rem;
  }
}

.feature__img01 {
  max-width: 265px;
  max-width: 16.5625rem;
  width: 100%;
  position: absolute;
  top: 47px;
  top: 2.9375rem;
  left: 68px;
  left: 4.25rem;
}
@media screen and (min-width: 768px) {
  .feature__img01 {
    max-width: 33.75rem;
    top: 7.125rem;
    left: 25.9375rem;
  }
}

.feature__img02 {
  max-width: 265px;
  max-width: 16.5625rem;
  width: 100%;
  position: absolute;
  top: 58px;
  top: 3.625rem;
  left: 48px;
  left: 3rem;
}
@media screen and (min-width: 768px) {
  .feature__img02 {
    max-width: 33.75rem;
    top: 8.625rem;
    left: 23.25rem;
  }
}

.feature__img03 {
  max-width: 265px;
  max-width: 16.5625rem;
  width: 100%;
  position: absolute;
  top: 69px;
  top: 4.3125rem;
  left: 28px;
  left: 1.75rem;
}
@media screen and (min-width: 768px) {
  .feature__img03 {
    max-width: 33.75rem;
    top: 10.1875rem;
    left: 20.8125rem;
  }
}

.feature__text-area {
  margin-top: 395px;
  margin-top: 24.6875rem;
}
@media screen and (min-width: 768px) {
  .feature__text-area {
    margin-top: 0;
    position: relative;
    height: 52.625rem;
  }
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 367px;
  width: 22.9375rem;
}
@media screen and (min-width: 768px) {
  .feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.9375rem;
    text-align: center;
    position: absolute;
    width: 18.125rem;
  }
}

.feature__item:nth-child(n + 2) {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(n + 2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(1) {
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(1)::before {
    content: "";
    background-image: url(../images/feature-line01.png);
    background-size: 100%;
    display: inline-block;
    width: 7.8125rem;
    height: 7.75rem;
    position: absolute;
    right: -7.875rem;
    top: 5.125rem;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(2) {
    top: 1.875rem;
    right: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(2)::before {
    content: "";
    background-image: url(../images/feature-line02.png);
    background-size: 100%;
    display: inline-block;
    width: 7.8125rem;
    height: 13.375rem;
    position: absolute;
    left: -7.875rem;
    top: 8.1875rem;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(3) {
    bottom: 4.625rem;
    left: 3.625rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(3)::before {
    content: "";
    background-image: url(../images/feature-line03.png);
    background-size: 100%;
    display: inline-block;
    width: 7.8125rem;
    height: 9rem;
    position: absolute;
    right: -9.8125rem;
    top: 1.625rem;
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(4) {
    bottom: 0;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .feature__item:nth-child(4)::before {
    content: "";
    background-image: url(../images/feature-line04.png);
    background-size: 100%;
    display: inline-block;
    width: 4.8125rem;
    height: 8.03125rem;
    position: absolute;
    left: -5.75rem;
    top: -2.75rem;
    z-index: 10;
  }
}

.feature__item:nth-child(5) {
  display: none;
}
@media screen and (min-width: 768px) {
  .feature__item:nth-child(5) {
    display: block;
    bottom: -1.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.feature__item-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 2.3333333333;
  letter-spacing: 0.05em;
}

.feature__item-img {
  max-width: 55px;
  max-width: 3.4375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature__item-img {
    max-width: 4rem;
  }
}

.feature__item-textarea {
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .feature__item-textarea {
    padding-bottom: 0;
  }
}

.feature__item-title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__item-title {
    font-size: 1.5rem;
    line-height: 1.8333333333;
  }
}

.feature__item-text {
  margin-top: 8px;
  margin-top: 0.5rem;
  width: 290px;
  width: 18.125rem;
}
@media screen and (min-width: 768px) {
  .feature__item-text {
    margin-top: 0.625rem;
  }
}

.feature__item-text p {
  color: #d5cbdb;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.feature__table-area {
  margin-top: 39px;
  margin-top: 2.4375rem;
  overflow-x: scroll;
  width: 100%;
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}
@media screen and (min-width: 768px) {
  .feature__table-area {
    margin-top: 8.5rem;
    overflow-x: visible;
    overflow-x: initial;
    padding-bottom: 0;
  }
}

.feature__table {
  width: 695px;
  width: 43.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__table {
    max-width: 64.765625rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.feature__table::after {
  content: "";
  background-image: url(../images/table-bg_sp.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 178px;
  width: 11.125rem;
  height: 462px;
  height: 28.875rem;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -2px;
  right: -0.125rem;
}
@media screen and (min-width: 768px) {
  .feature__table::after {
    background-image: url(../images/table-bg_pc.png);
    width: 18.25rem;
    height: 39.5625rem;
    top: 0.0625rem;
    right: -0.1875rem;
  }
}

.feature__table thead th:nth-child(n + 2) {
  background-color: #82018b;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  width: 172px;
  width: 10.75rem;
  height: 66.18px;
  height: 4.13625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .feature__table thead th:nth-child(n + 2) {
    width: 17.5625rem;
    height: 5.708125rem;
  }
}

.feature__table thead th:last-child {
  opacity: 1;
}

.feature__table tbody th {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 1rem 0 0 1rem;
  color: #fff;
  width: 180px;
  width: 11.25rem;
  height: 73.2px;
  height: 4.575rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__table tbody th {
    height: 6.53125rem;
  }
}

.feature__table tbody td {
  background-color: #d5cbdb;
  opacity: 0.8;
  text-align: center;
}

.feature__table tbody td.feature__table-white {
  background-color: #fff;
  opacity: 1;
}

.feature__table tbody tr:last-child td.feature__table-white {
  border-radius: 0 0 1rem 1rem;
}

.feature__table tbody td.feature__table-white span.purple {
  background: linear-gradient(-80deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td.feature__table-white span.purple {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__table tbody tr:first-child td.feature__table-white span.purple {
    font-size: 1.75rem;
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .feature__table
    tbody
    tr:first-child
    td.feature__table-white
    span.purple
    span {
    font-size: 3rem;
    line-height: 1.2916666667;
  }
}

.feature__table tbody td .feature__table-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-column-gap: 0.50875rem;
  -moz-column-gap: 0.50875rem;
  column-gap: 0.50875rem;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-price {
    -webkit-column-gap: 0.49375rem;
    -moz-column-gap: 0.49375rem;
    column-gap: 0.49375rem;
  }
}

.feature__table tbody td .feature__table-price p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-price p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.feature__table tbody td .feature__table-price p:first-child {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-price p:first-child {
    font-size: 1.5rem;
  }
}

.feature__table tbody td .feature__table-price p:first-child span {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.8666666667;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-price p:first-child span {
    font-size: 2.25rem;
    line-height: 0.7777777778;
  }
}

.feature__table tbody tr:nth-child(n + 2) td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.15625;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .feature__table tbody tr:nth-child(n + 2) td {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.feature__table tbody td .feature__table-scope span {
  font-family: "Rajdhani", sans-serif;
}

.feature__table tbody td .feature__table-scope span.big {
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-scope span.big {
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-support p:nth-child(1) {
    font-size: 1rem;
    line-height: 1.9375;
  }
}

.feature__table tbody td .feature__table-support p:nth-child(2) {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-support p:nth-child(2) {
    font-size: 1.5rem;
    line-height: 1.2916666667;
  }
}

.feature__table tbody td .feature__table-support p:nth-child(2) span {
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .feature__table tbody td .feature__table-support p:nth-child(2) span {
    font-size: 2.25rem;
  }
}

/* カスタムスクロールバーのスタイル */
.feature__table-area::-webkit-scrollbar {
  width: 12px;
  height: 3px;
  border-radius: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .feature__table-area::-webkit-scrollbar {
    height: 1px;
  }
}

.feature__table-area::-webkit-scrollbar-track {
  background: rgba(213, 203, 219, 0.64);
  border-radius: 0.1875rem;
}

.feature__table-area::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 0.1875rem;
}

.fv {
  position: relative;
  padding-top: 44.72px;
  padding-top: 2.795rem;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 12.4375rem;
    max-width: 77.1875rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv__parallax01 {
  position: absolute;
  left: -11px;
  left: -0.6875rem;
  top: 11.72px;
  top: 0.7325rem;
}
@media screen and (min-width: 768px) {
  .fv__parallax01 {
    left: -2rem;
    top: 6.25rem;
  }
}

.fv__swaing01 {
  background-image: url(../images/fv-icon01.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 66px;
  width: 4.125rem;
  height: 66px;
  height: 4.125rem;
  -webkit-animation: swaying1 2s ease-in-out infinite alternate;
  animation: swaying1 2s ease-in-out infinite alternate;
}
@media screen and (min-width: 768px) {
  .fv__swaing01 {
    width: 8.1875rem;
    height: 8.1875rem;
  }
}

.fv__parallax02 {
  position: absolute;
  right: -38.02px;
  right: -2.37625rem;
  top: 357.72px;
  top: 22.3575rem;
}
@media screen and (min-width: 768px) {
  .fv__parallax02 {
    right: -7.40625rem;
    top: 22.0625rem;
  }
}

.fv__swaing02 {
  background-image: url(../images/fv-icon02.png);
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  width: 182.02px;
  width: 11.37625rem;
  height: 141.35px;
  height: 8.834375rem;
  -webkit-animation: swaying2 2s ease-in-out infinite alternate;
  animation: swaying2 2s ease-in-out infinite alternate;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
@media screen and (min-width: 768px) {
  .fv__swaing02 {
    width: 22.65625rem;
    height: 17.59375rem;
  }
}

@-webkit-keyframes swaying1 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes swaying1 {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@-webkit-keyframes swaying2 {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes swaying2 {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fv__text {
  text-align: center;
}

.fv__text p {
  color: #564d5c;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .fv__text p {
    font-size: 1.5rem;
    line-height: 1.8333333333;
  }
}

.fv__title {
  text-align: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 3.25rem;
    line-height: 1.6923076923;
  }
}

.fv__title span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__btn {
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .fv__btn {
    margin-top: 3.5625rem;
  }
}

.fv__bottom {
  margin-top: 112px;
  margin-top: 7rem;
}
@media screen and (min-width: 768px) {
  .fv__bottom {
    margin-top: 6.5625rem;
  }
}

.fv__bottom-img {
  max-width: 330px;
  max-width: 20.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .fv__bottom-img {
    max-width: 58.75rem;
  }
}

.fv__bottom-img video {
  aspect-ratio: 938/544;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .fv__bottom-img video {
    border-radius: 1rem;
  }
}

.fv__bottom-text {
  background-color: #f0eff1;
  border-radius: 1.5rem;
  padding: 169px 13px 37px 17px;
  padding: 10.5625rem 0.8125rem 2.3125rem 1.0625rem;
  margin-top: -135.5px;
  margin-top: -8.46875rem;
}
@media screen and (min-width: 768px) {
  .fv__bottom-text {
    border-radius: 2rem;
    padding: 29.375rem 4.6875rem 4.4375rem 4.375rem;
    margin-top: -25.296875rem;
    text-align: center;
  }
}

.fv__bottom-text p {
  color: #564d5c;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .fv__bottom-text p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 768px) {
  .fv__bg {
    max-width: 53.565rem;
    width: 100%;
    position: absolute;
    right: -26.75rem;
    z-index: -1;
  }
}

.initiative {
  margin-top: -25px;
  margin-top: -1.5625rem;
}
@media screen and (min-width: 768px) {
  .initiative {
    margin-top: 14.8125rem;
  }
}

.initiative__bg {
  position: relative;
  z-index: 1;
  padding: 60.5px 0 92px;
  padding: 3.78125rem 0 5.75rem;
  --scaleX: 0.95;
  --borderRadius: 24px;
}
@media screen and (min-width: 768px) {
  .initiative__bg {
    padding: 7.625rem 0 12.0625rem;
    --borderRadius: 48px;
  }
}

.initiative__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7f7286;
  border-radius: var(--borderRadius);
  z-index: -1;
  padding: 60.5px 0 92px;
  padding: 3.78125rem 0 5.75rem;
  -webkit-transform: scaleX(var(--scaleX));
  transform: scaleX(var(--scaleX));
}
@media screen and (min-width: 768px) {
  .initiative__bg::before {
    padding: 7.625rem 0 12.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .initiative__inner.inner {
    padding-right: 0;
    margin-right: 0;
    max-width: none;
    max-width: initial;
  }
}

.initiative__subtitle,
.initiative__title {
  color: #fff;
}

.initiative__container {
  margin-top: 42.2px;
  margin-top: 2.6375rem;
}
@media screen and (min-width: 768px) {
  .initiative__container {
    margin-top: 7.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 4.5rem;
    -moz-column-gap: 4.5rem;
    column-gap: 4.5rem;
    max-width: 120rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.initiative__img-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .initiative__img-wrapper {
    max-width: 29.375rem;
    width: 100%;
  }
}

.initiative__img {
  max-width: 360px;
  max-width: 22.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .initiative__img {
    max-width: 29.375rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.initiative__img-text {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 62.48px;
  bottom: 3.905rem;
  color: #fff;
  max-width: 320px;
  max-width: 20rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .initiative__img-text {
    max-width: 21.875rem;
    bottom: 8.625rem;
  }
}

.initiative__img-text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.initiative__items {
  margin-top: 71.77px;
  margin-top: 4.485625rem;
}
@media screen and (min-width: 768px) {
  .initiative__items {
    margin-top: 0;
    max-width: 63.1875rem;
    width: 100%;
  }
}

.initiative__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .initiative__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: 2.25rem;
    -moz-column-gap: 2.25rem;
    column-gap: 2.25rem;
    max-width: 63.1875rem;
    width: 100%;
    height: 10.5rem;
    border-bottom: 1px solid #d5cbdb;
  }
}

.initiative__item:nth-child(n + 2) {
  margin-top: 41px;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .initiative__item:nth-child(n + 2) {
    margin-top: 3rem;
  }
}

.initiative__item-img {
  max-width: 80px;
  max-width: 5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .initiative__item-img {
    max-width: 10.625rem;
  }
}

@media screen and (min-width: 768px) {
  .initiative__item-text--wrapper {
    max-width: 27.5rem;
    width: 100%;
  }
}

.initiative__item-title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.initiative__item-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .initiative__item-text {
    margin-top: 1.3125rem;
  }
}

.initiative__item-text p {
  color: #d5cbdb;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.merit {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .merit {
    margin-top: 9.6875rem;
  }
}

.merit__subtitle {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.merit__items {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .merit__items {
    margin-top: 4rem;
  }
}

.merit__item {
  background-color: #f0eff1;
  border-radius: 1.5rem;
  padding: 23px 15px 0;
  padding: 1.4375rem 0.9375rem 0;
  max-width: 360px;
  max-width: 22.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 604px;
  height: 37.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .merit__item {
    max-width: 74.0625rem;
    height: 21.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.merit__item:nth-child(n + 2) {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .merit__item:nth-child(n + 2) {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(1) {
    padding: 0 0 0 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(2) {
    padding: 0 0 0 4.8125rem;
  }
}

.merit__item:nth-child(3) {
  height: 573px;
  height: 35.8125rem;
}
@media screen and (min-width: 768px) {
  .merit__item:nth-child(3) {
    padding: 0 0 0 5.625rem;
    height: 21.25rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(odd) .merit__item-num {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(odd) .merit__item-text--wrapper {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.merit__item-num {
  font-family: "Rajdhani", sans-serif;
  font-size: 64px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.296875;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .merit__item-num {
    font-size: 6rem;
    line-height: 0.8645833333;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(1) .merit__item-num {
    margin-left: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(3) .merit__item-num {
    margin-left: 0.625rem;
  }
}

.merit__item-text--wrapper {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .merit__item-text--wrapper {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(1) .merit__item-text--wrapper {
    margin-left: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(2) .merit__item-text--wrapper {
    margin-left: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .merit__item:nth-child(3) .merit__item-text--wrapper {
    margin-left: 2.375rem;
  }
}

.merit__item-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .merit__item-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.merit__item-text {
  margin-top: 28px;
  margin-top: 1.75rem;
  max-width: 320px;
  max-width: 20rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .merit__item-text {
    margin-top: 1rem;
    max-width: 35.25rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.merit__item-text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.merit__item-img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .merit__item-img {
    position: static;
    position: initial;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

.merit__item:nth-child(1) .merit__item-img {
  max-width: 289px;
  max-width: 18.0625rem;
  bottom: 0;
  left: 48px;
  left: 3rem;
}
@media screen and (min-width: 768px) {
  .merit__item:nth-child(1) .merit__item-img {
    max-width: 20.3125rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0.5625rem;
    margin-top: 1.3125rem;
  }
}

.merit__item:nth-child(2) .merit__item-img {
  max-width: 252px;
  max-width: 15.75rem;
  bottom: 44.68px;
  bottom: 2.7925rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .merit__item:nth-child(2) .merit__item-img {
    max-width: 20.5rem;
    -webkit-transform: none;
    transform: none;
    -webkit-transform: initial;
    transform: initial;
  }
}

.merit__item:nth-child(3) .merit__item-img {
  max-width: 234px;
  max-width: 14.625rem;
  bottom: 20px;
  bottom: 1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .merit__item:nth-child(3) .merit__item-img {
    max-width: 15.9375rem;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transform: initial;
    transform: initial;
    margin-right: 3.6875rem;
  }
}

.pallete {
  margin-top: 93px;
  margin-top: 5.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .pallete {
    margin-top: 11.625rem;
  }
}

.pallete__bg {
  display: inline-block;
  width: 184px;
  width: 11.5rem;
  position: absolute;
  bottom: 0;
  right: -18px;
  right: -1.125rem;
  z-index: -3;
}
@media screen and (min-width: 768px) {
  .pallete__bg {
    bottom: auto;
    bottom: initial;
    width: 24rem;
    top: -11.625rem;
  }
}

.pallete__container {
  background-color: #efefef;
  border-radius: 1.5rem;
  padding: 0 0 51.88px;
  padding: 0 0 3.2425rem;
}
@media screen and (min-width: 768px) {
  .pallete__container {
    border-radius: 3rem;
    background-color: transparent;
    background-color: initial;
    background-image: url(../images/pallete-bg_pc.png);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 34.375rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2.375rem;
    -moz-column-gap: 2.375rem;
    column-gap: 2.375rem;
    overflow: hidden;
  }
}

.pallete__img {
  max-width: 346.77px;
  max-width: 21.673125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pallete__img {
    max-width: 30.9375rem;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

@media screen and (min-width: 768px) {
  .pallete__img img {
    border-radius: 3rem 0 0 3rem;
  }
}

.pallete__text-area {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-top: 27.26px;
  margin-top: 1.70375rem;
}
@media screen and (min-width: 768px) {
  .pallete__text-area {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
}

.pallete__logo {
  max-width: 226.32px;
  max-width: 14.145rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pallete__logo {
    max-width: 15.956875rem;
  }
}

.pallete__text {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .pallete__text {
    margin-top: 2.195rem;
  }
}

.pallete__text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .pallete__text p {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.pallete__btn {
  margin-top: 19.33px;
  margin-top: 1.208125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pallete__btn {
    margin-top: 2.1875rem;
    text-align: left;
  }
}

.pallete__btn a {
  background-color: #231d27;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.28875;
  letter-spacing: 0.05em;
  border-radius: 2.5rem;
  display: inline-block;
  max-width: 250px;
  max-width: 15.625rem;
  width: 100%;
  padding: 14.24px 0;
  padding: 0.89rem 0;
}
@media screen and (min-width: 768px) {
  .pallete__btn a {
    max-width: 13.225625rem;
    text-align: center;
  }
}

.price {
  margin-top: 113px;
  margin-top: 7.0625rem;
}
@media screen and (min-width: 768px) {
  .price {
    margin-top: 14.375rem;
  }
}

.price__bg {
  padding: 70px 0 157px;
  padding: 4.375rem 0 9.8125rem;
  position: relative;
  --scaleX: 0.95;
  --borderRadius: 24px;
  -webkit-transform: scaleX(var(--scaleX));
  transform: scaleX(var(--scaleX));
  border-radius: var(--borderRadius);
  -webkit-transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.3s ease,
    -webkit-transform 0.3s ease;
  will-change: transform, border-radius;
}
@media screen and (min-width: 768px) {
  .price__bg {
    padding: 8.1875rem 0 12.8125rem;
    --borderRadius: 48px;
  }
}

.price__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, #262626),
    color-stop(80%, #000)
  );
  background: linear-gradient(#262626 30%, #000 80%);
  padding: 70px 0 157px;
  padding: 4.375rem 0 9.8125rem;
  -webkit-transform: scaleX(var(--scaleX));
  transform: scaleX(var(--scaleX));
  border-radius: var(--borderRadius);
  z-index: -2;
  -webkit-transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-radius 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.3s ease;
  transition: transform 0.3s ease, border-radius 0.3s ease,
    -webkit-transform 0.3s ease;
  will-change: transform, border-radius;
}
@media screen and (min-width: 768px) {
  .price__bg::before {
    height: 130%;
    padding: 8.1875rem 0 12.8125rem;
  }
}

.price__marquee-wrapper {
  position: absolute;
  z-index: 1;
  display: inline-block;
  width: 100%;
  height: 366px;
  height: 22.875rem;
  top: 1550px;
  top: 96.875rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .price__marquee-wrapper {
    top: 56rem;
  }
}

.price__marquee div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 16px;
  gap: 1rem;
}

.price__marquee span {
  -webkit-animation: marquee 10s linear infinite;
  animation: marquee 10s linear infinite;
  font-family: "Rajdhani", sans-serif;
  font-size: 220px;
  font-size: 13.75rem;
  font-weight: 600;
  line-height: 1.6636363636;
  letter-spacing: 0.05em;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 768px) {
  .price__marquee span {
    -webkit-animation: marquee 5s linear infinite;
    animation: marquee 5s linear infinite;
  }
}

@-webkit-keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}

@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
.price__subtitle,
.price__title {
  color: #fff;
}

.price__items {
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .price__items {
    margin-top: 2.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
  }
}

.price__item {
  max-width: 317px;
  max-width: 19.8125rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  background-color: #f0eff1;
}
@media screen and (min-width: 768px) {
  .price__item {
    max-width: 23.4375rem;
    height: 41.375rem;
  }
}

.price__item a {
  position: relative;
  padding: 23.3px 26px 23.5px;
  padding: 1.45625rem 1.625rem 1.46875rem;
  width: 100%;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .price__item a {
    padding: 2.1875rem 1.875rem 0;
    height: inherit;
  }
}

.price__item a::before {
  content: "";
  background-image: url(../images/bg-noise.png);
  background-size: 100%;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .price__item a::before {
    background-image: none;
  }
}

@media screen and (min-width: 768px) {
  .price__item a::after {
    content: "";
    background-image: url(../images/price-icon.png);
    background-size: 100%;
    display: inline-block;
    width: 1.09375rem;
    height: 1.09375rem;
    position: absolute;
    bottom: 0.96875rem;
    right: 1.15625rem;
  }
}

.price__item:nth-child(n + 2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .price__item:nth-child(n + 2) {
    margin-top: 0;
  }
}

.price__item-title {
  max-width: 266px;
  max-width: 16.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #d5cbdb;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .price__item-title {
    max-width: 19.6875rem;
    padding-bottom: 0.75rem;
  }
}

.price__item-price {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__item-price {
    text-align: left;
    margin-top: 1.875rem;
  }
}

.price__item-price p.num {
  display: inline-block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
}
@media screen and (min-width: 768px) {
  .price__item-price p.num {
    line-height: 1;
  }
}

.price__item-price p.num span {
  font-size: 56px;
  font-size: 3.5rem;
}

.price__item-price p.ja {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
}

.price__item-price p.consultation {
  text-align: left;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .price__item-price p.consultation {
    font-size: 2rem;
    line-height: 1.75;
  }
}

.price__item-container {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.46875rem;
  -moz-column-gap: 0.46875rem;
  column-gap: 0.46875rem;
}
@media screen and (min-width: 768px) {
  .price__item-container {
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    margin-top: 1.875rem;
  }
}

.price__item-scope {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  border-radius: 0.90625rem;
  position: relative;
  width: 72px;
  width: 4.5rem;
  height: 23px;
  height: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .price__item-scope {
    width: 5.5rem;
    height: 1.8125rem;
  }
}

.price__item-scope::before {
  content: "";
  background-color: #f0eff1;
  border-radius: 0.90625rem;
  position: absolute;
  top: 1px;
  top: 0.0625rem;
  left: 1px;
  left: 0.0625rem;
  display: inline-block;
  width: 70px;
  width: 4.375rem;
  height: 21px;
  height: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .price__item-scope::before {
    width: 5.375rem;
    height: 1.6875rem;
  }
}

.price__item-scope p {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__item-scope p {
    line-height: 2.0714285714;
  }
}

.price__item-scope-gray {
  border: 1px solid #d9d9d9;
  border-radius: 0.90625rem;
  color: #d9d9d9;
  width: 72px;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .price__item-scope-gray {
    width: 5.5rem;
  }
}

.price__item-scope-gray p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__item-scope-gray p {
    line-height: 2.0714285714;
  }
}

.price__item-text--wrapper {
  margin-top: 24.8px;
  margin-top: 1.55rem;
  color: #7f7286;
}
@media screen and (min-width: 768px) {
  .price__item-text--wrapper {
    margin-top: 1.75rem;
  }
}

.price__item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.price__item-text:nth-child(n + 2) {
  margin-top: 7.5px;
  margin-top: 0.46875rem;
}
@media screen and (min-width: 768px) {
  .price__item-text:nth-child(n + 2) {
    margin-top: 0.5rem;
  }
}

.price__item-text::before {
  content: "";
  background-image: url(../images/check.png);
  background-size: 100%;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  display: inline-block;
  margin-right: 10px;
  margin-right: 0.625rem;
}

.price__item-text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
  display: inline-block;
}

.price__item-plus {
  max-width: 20px;
  max-width: 1.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .price__item-plus {
    max-width: 1.41875rem;
    margin-top: 2.1875rem;
  }
}

.price__item-text--bottom {
  margin-top: 10.7px;
  margin-top: 0.66875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__item-text--bottom {
    margin-top: 1.625rem;
  }
}

.price__item-text--bottom p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.price__benefit {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .price__benefit {
    margin-top: 11.875rem;
  }
}

.price__benefit-title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .price__benefit-title {
    font-size: 2.625rem;
    line-height: 1.2380952381;
  }
}

@media screen and (min-width: 768px) {
  .price__benefit-title span {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.7916666667;
    letter-spacing: 0.05em;
    margin-bottom: 1.1875rem;
  }
}

.price__benefit-items {
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .price__benefit-items {
    margin-top: 7.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 3.5625rem;
    -moz-column-gap: 3.5625rem;
    column-gap: 3.5625rem;
    row-gap: 3.75rem;
  }
}

.price__benefit-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 1.75rem;
  -moz-column-gap: 1.75rem;
  column-gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .price__benefit-item {
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

.price__benefit-item:nth-child(n + 2) {
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(n + 2) {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

.price__benefit-img {
  max-width: 72px;
  max-width: 4.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price__benefit-img {
    max-width: 6.25rem;
  }
}

.price__benefit-text--wrapper {
  max-width: 260px;
  max-width: 16.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price__benefit-text--wrapper {
    max-width: 26.5rem;
  }
}

.price__benefit-text--title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .price__benefit-text--title {
    font-size: 1.5rem;
    line-height: 1.8333333333;
  }
}

.price__benefit-item:nth-child(4) .price__benefit-text--title {
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .price__benefit-item:nth-child(4) .price__benefit-text--title {
    line-height: 1.8333333333;
  }
}

.price__benefit-text {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .price__benefit-text {
    margin-top: 0.9375rem;
  }
}

.price__benefit-text p {
  color: #d5cbdb;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.price__benefit-text--bottom {
  margin-top: 65px;
  margin-top: 4.0625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price__benefit-text--bottom {
    margin-top: 3.75rem;
  }
}

.price__benefit-text--bottom p {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 2.3333333333;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (min-width: 768px) {
  .price__benefit-text--bottom p {
    line-height: 3.9166666667;
  }
}

.price__benefit-btn--text {
  margin-top: 54px;
  margin-top: 3.375rem;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .price__benefit-btn--text {
    margin-top: 4.125rem;
    font-size: 1.25rem;
    line-height: 2.15;
  }
}

.price__benefit-btn.btn {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .price__benefit-btn.btn {
    margin-top: 1.0625rem;
  }
}

.price__benefit-btn.btn a {
  background-color: transparent;
  background-color: initial;
  border: 1px solid #efefef;
  padding: 13px 0;
  padding: 0.8125rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .price__benefit-btn.btn a {
    padding: 1.125rem 0;
  }
}

.step {
  margin-top: 111px;
  margin-top: 6.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step {
    margin-top: 12.375rem;
  }
}

.step__bg {
  display: inline-block;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: -62px;
  left: -3.875rem;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .step__bg {
    max-width: 42.27rem;
    top: -21.375rem;
  }
}

.step__subtitle {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step__swiper {
  margin-top: 75px;
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .step__swiper {
    margin-top: 4.1875rem;
  }
}

.step__container {
  position: relative;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .step__container {
    padding-bottom: 3.625rem;
  }
}

.step__container::after {
  content: "";
  background-color: #f0eff1;
  border-radius: 1.5rem;
  width: 100%;
  height: 340px;
  height: 21.25rem;
  display: inline-block;
  position: absolute;
  top: 135px;
  top: 8.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step__container::after {
    border-radius: 2rem;
    height: 32.0625rem;
    top: 21.5625rem;
  }
}

.step__swiper-img {
  max-width: 340px;
  max-width: 21.25rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .step__swiper-img {
    max-width: 61.875rem;
  }
}

.step__text-container {
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
  width: 100%;
  height: 142px;
  height: 8.875rem;
}
@media screen and (min-width: 768px) {
  .step__text-container {
    margin-top: 1.125rem;
    height: 6.625rem;
  }
}

.step__swiper-textarea {
  text-align: center;
}

.step__swiper-textarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.step__swiper-textarea.active {
  opacity: 1;
}

.step__swiper-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7916666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .step__swiper-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.step__swiper-text {
  margin-top: 15px;
  margin-top: 0.9375rem;
  max-width: 289px;
  max-width: 18.0625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .step__swiper-text {
    margin-top: 1.875rem;
    max-width: 58.3125rem;
  }
}

.step__swiper-text p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.swiper-pagination__wrapper {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination__wrapper {
    margin-top: 3.8125rem;
  }
}

.swiper-pagination.swiper-step-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  max-width: 81px;
  max-width: 5.0625rem;
  left: 186px;
  left: 11.625rem;
  bottom: 48px;
  bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination.swiper-step-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 3.625rem;
    left: 37.25rem;
  }
}

.step__container
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet {
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  margin: 0 8px;
  margin: 0 0.5rem;
}

.step__container
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
}

/* カスタムページネーションのスタイル */
.swiper-pagination-custom {
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 600;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#bf00a6),
    to(#9400d3)
  );
  background: linear-gradient(90deg, #bf00a6, #9400d3);
  background: -webkit-linear-gradient(0deg, #bf00a6, #9400d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  display: none; /* 初期状態は非表示 */
}

.swiper-pagination-custom-active {
  display: block;
}

.swiper-pagination-custom.swiper-step-pagination-custom.swiper-pagination-custom-active {
  position: relative;
  left: 108px;
  left: 6.75rem;
  bottom: 0;
  max-width: 60px;
  max-width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-custom.swiper-step-pagination-custom.swiper-pagination-custom-active {
    left: 32.375rem;
  }
}
/*# sourceMappingURL=styles.css.map */
