/* ==============================================================
*  base
* ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght,CRSV@100..900,0&family=Noto+Sans+JP:wght@100..900&display=swap");
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html,
body {
  min-height: 100dvh;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

html {
  background: #fff;
  scroll-behavior: smooth;
}

body.page--feature {
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #14002E;
  position: relative;
  background: rgba(199, 158, 255, 0.7);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 961px) {
  body.page--feature {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  body.page--feature {
    font-size: 1.4rem;
  }
}
body.page--feature::before {
  content: "";
  background: radial-gradient(circle at 100% 100%, #EADAFF 0%, #FFE9FA 5%, #F7F2FE 15%, #FFF8E1 30%, #FFE9FA 45%, #E0C9FF 80%);
  width: 100%;
  height: 100%;
  position: fixed;
}

body.page--feature .wrap .header .langBar,
body.page--feature .wrap .header .langBar * {
  font-family: "IBM Plex Sans JP", sans-serif;
}

.page--feature .wrap .header img {
  width: auto;
}
.page--feature .bg {
  position: fixed;
  height: 100dvh;
  min-height: 100dvh;
  z-index: 1;
}
.page--feature .bg::before {
  content: "";
  background: url(../img/bg_sp.png) top center/cover no-repeat;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
}
.page--feature .bg .bubble::before, .page--feature .bg .bubble::after {
  content: "";
  width: 100%;
  height: 130vh;
  position: fixed;
}
.page--feature .bg .bubble::before {
  background: url(../img/bg_bubble_sp_left.png) top left/cover no-repeat;
  animation: bubble 4s linear infinite alternate-reverse;
  top: 0;
}
@keyframes bubble {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(-15%);
  }
}
.page--feature .bg .bubble::after {
  background: url(../img/bg_bubble_sp_right.png) bottom right/cover no-repeat;
  animation: bubble2 3s ease-in-out infinite alternate-reverse;
  bottom: 0;
}
@keyframes bubble2 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(5%);
  }
}
.page--feature a {
  color: #14002E;
  text-decoration: none;
  cursor: pointer;
  display: block;
  scroll-margin-top: 8rem;
}
.page--feature img {
  width: 100%;
  max-width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
  pointer-events: none;
  vertical-align: bottom;
}
.page--feature .loaded#page--introduction__bubble #section--mv h1 img, .page--feature .loaded#page--introduction__bubble #section--mv .block--entry, .page--feature .loaded#page--introduction__bubble #section--mv p:not(.txt), .page--feature .loaded#page--introduction__bubble #section--mv .thumb img {
  opacity: 1;
  transition: 0.8s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb, .page--feature .loaded#page--introduction__bubble #section--mv .thumb img {
  top: -2%;
}
.page--feature .loaded#page--introduction__bubble #section--mv h1 img {
  transition-delay: 0.3s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .block--entry {
  transition-delay: 0.5s;
}
.page--feature .loaded#page--introduction__bubble #section--mv p:not(.txt) {
  transition-delay: 0.8s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb {
  transition: opacity 0.8s 0.8s, transform 0.8s 0.8s;
  opacity: 1;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img {
  transition-delay: 0.8s;
  top: 0;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item01 {
  transition-delay: 1.2s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item02 {
  transition-delay: 1.5s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item03 {
  transition-delay: 1.8s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item04 {
  transition-delay: 2.1s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item05 {
  transition-delay: 2.4s;
}
.page--feature .loaded#page--introduction__bubble #section--mv .thumb img.item06 {
  transition-delay: 2.7s;
}
.page--feature .loaded#page--introduction__bubble #section--about .sec-inner:has(.delighter.started) {
  opacity: 1;
}
.page--feature #page--introduction__bubble #section--mv {
  position: relative;
  z-index: 0;
}
.page--feature #page--introduction__bubble #section--mv h1 img, .page--feature #page--introduction__bubble #section--mv .block--entry, .page--feature #page--introduction__bubble #section--mv p:not(.txt), .page--feature #page--introduction__bubble #section--mv .thumb, .page--feature #page--introduction__bubble #section--mv .thumb img {
  opacity: 0;
}
.page--feature #page--introduction__bubble #section--mv .thumb, .page--feature #page--introduction__bubble #section--mv .thumb img {
  top: 2vw;
}
.page--feature #page--introduction__bubble #section--about .sec-inner {
  opacity: 0;
}
.page--feature .thumb {
  position: relative;
  overflow: visible;
  z-index: -1;
}
.page--feature .thumb__base {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 6.5vw 6.5vw 0 0;
}
.page--feature .item00 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page--feature .thumb--animation {
  position: relative;
}
.page--feature .thumb--animation img:not(.item00) {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(-50%) scale(1.5);
  transform-origin: center top;
  transition: 0.6s cubic-bezier(0.4, 0.1, 0.17, 1);
}
.page--feature .border--white {
  border: 2.5vw solid #FAFAFA;
}
.page--feature .mv_inner {
  position: relative;
}
.page--feature .btn--main {
  font-size: 16px;
  font-weight: 600;
  max-width: 340px;
  width: 100%;
  background: linear-gradient(90deg, #974ef8 0%, #974ef8 48%, #7529f1 100%);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0.8em;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
  min-width: auto !important;
  line-height: normal !important;
}
.page--feature #page--introduction__bubble {
  position: relative;
  z-index: 1;
}
.page--feature #page--introduction__bubble section {
  position: relative;
}
.page--feature #page--introduction__bubble #section--mv {
  gap: 0;
  margin: 0 auto;
  padding: 100px clamp(10%, 50% - 47vh, 33vw) 100px clamp(10%, 50% - 47vh, 33vw);
}
.page--feature #page--introduction__bubble #section--mv h1 {
  width: 90%;
  margin: 0 auto 1vh auto;
  align-content: end;
}
.page--feature #page--introduction__bubble #section--mv .block--entry .txt {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 2.6rem);
  color: #37007F;
}
.page--feature #page--introduction__bubble #section--mv figure {
  width: 90%;
  height: calc(100% + 7vh);
  max-height: 74vw;
  margin-left: 10%;
}
.page--feature .list--table {
  font-size: 16px;
  border: 1px solid rgba(151, 78, 248, 0.4);
}
.page--feature .list--table div:first-child dt {
  border-top: none;
}
.page--feature .list--table dt {
  background: #ECDEFF;
  line-height: 1;
  font-weight: 600;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(151, 78, 248, 0.4);
  margin-bottom: 0;
  text-align: left;
}
.page--feature .list--table dd {
  padding: 16px 24px;
}
.page--feature .list--table dd .list--style__disc {
  text-align: left;
}
.page--feature .list--table dd .list--style__disc .txt--sub {
  text-align: left !important;
}
.page--feature .list--style__disc li {
  line-height: 1.7;
  list-style: disc;
  margin-left: 1em;
  margin-bottom: 8px;
}
.page--feature .list--style__disc li.txt--bold, .page--feature .list--style__disc li.txt--sub {
  margin-bottom: 0;
}
.page--feature .list--style__disc li:nth-of-type(3).txt--bold {
  margin-top: 6px;
}
.page--feature #page--introduction__bubble .delighter {
  transition: 1.2s;
  opacity: 0;
  position: relative;
  top: 2vw;
}
.page--feature #page--introduction__bubble .delighter.started {
  opacity: 1;
  top: 0;
}
.page--feature #page--introduction__bubble .block--artist li {
  opacity: 0;
  translate: 0 40px 0;
  transition: opacity 1s, translate 1.4s;
}
.page--feature #page--introduction__bubble .block--artist li.started {
  opacity: 1;
  translate: 0 0 0;
}
.page--feature #page--introduction__bubble #section--service .thumb {
  top: 2vw;
}
.page--feature #page--introduction__bubble #section--service .thumb.started {
  opacity: 1;
  transition: 0.8s;
  top: 0;
}
.page--feature #page--introduction__bubble #section--service img:not(.item00) {
  position: absolute;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03) {
  top: 2vw;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03).started {
  opacity: 1;
  transition: 0.8s;
  top: 0;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03).started.item01 {
  transition-delay: 0.8s;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03).started.item02 {
  transition-delay: 1.1s;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03).started.item03 {
  transition-delay: 1.4s;
}
.page--feature #page--introduction__bubble #section--service img:not(.block--service:nth-of-type(2) .item01,
.block--service:nth-of-type(2) .item03,
.block--service:nth-of-type(2) .item04,
.block--service:nth-of-type(3) .item02,
.block--service:nth-of-type(3) .item03).started.item04 {
  transition-delay: 1.7s;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img:not(.item02) {
  top: 2vw;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img:not(.item02).started {
  opacity: 1;
  transition: 0.8s;
  top: 0;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img.item02 {
  transform: translateX(-50%) scale(0.8);
  transform-origin: 86% 40%;
  left: 61%;
  transition-delay: 0.5s !important;
  top: 10% !important;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img.item02.started {
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.2, 2.2), opacity 0.2s ease;
  transform: translateX(-50%) scale(1.3);
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img.item02-2 {
  transform-origin: center;
  transition-delay: 0.9s !important;
  top: 12% !important;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) img.item02-2.started {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(3) img.item01 {
  z-index: 2;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(3) img.item02 {
  opacity: 0;
  top: -2vw;
  z-index: 0;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(3) img.item02.started {
  opacity: 1;
  transition: 0.8s;
  top: 0;
  transition-delay: 1.2s;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(3) img.item03 {
  opacity: 0;
  top: -10%;
  z-index: 1;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(3) img.item03.started {
  opacity: 1;
  transition: 1s;
  top: 0;
  transition-delay: 1.6s;
}
.page--feature #page--introduction__bubble section#section--entry .block--thumb .thumb {
  opacity: 0;
}
.page--feature #page--introduction__bubble section#section--entry .block--thumb .thumb:first-of-type {
  top: 6em;
}
.page--feature #page--introduction__bubble section#section--entry .block--thumb .thumb:last-of-type {
  top: 10em;
}
.page--feature #page--introduction__bubble section#section--entry.started .block--thumb .thumb {
  opacity: 1;
}
.page--feature #page--introduction__bubble section#section--entry.started .block--thumb .thumb:first-of-type {
  top: 2em;
  transition: 0.6s 0.2s;
}
.page--feature #page--introduction__bubble section#section--entry.started .block--thumb .thumb:last-of-type {
  top: 6em;
  transition: 0.6s 0.4s;
}
.page--feature #page--introduction__bubble {
  text-align: center;
}
.page--feature #page--introduction__bubble .section-tit, .page--feature #page--introduction__bubble #section--lineup .name, .page--feature #page--introduction__bubble .point, .page--feature #page--introduction__bubble .new {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}
.page--feature #page--introduction__bubble .sec-inner {
  padding: 6rem 5%;
}
.page--feature #page--introduction__bubble .section-tit {
  font-size: clamp(3rem, 4vw, 4rem);
  color: #37007F;
  margin-bottom: clamp(2rem, 2vw, 3.2rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.page--feature #page--introduction__bubble .txt--basic {
  margin-bottom: 8px;
}
.page--feature #page--introduction__bubble .txt--sub {
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  display: flex;
  text-align: left;
  letter-spacing: 0.07em;
}
.page--feature #page--introduction__bubble .txt--explanation {
  font-size: clamp(16px, 2vw, 26px);
  color: #37007F;
  margin-top: clamp(3rem, 4vw, 4rem);
  font-weight: 500;
}
.page--feature #page--introduction__bubble .point {
  font-size: clamp(20px, 2vw, 22px);
  color: #37007F;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.page--feature #page--introduction__bubble .point span {
  font-size: clamp(12px, 1.4vw, 16px);
  padding-right: 4px;
}
.page--feature #page--introduction__bubble .block--top, .page--feature #page--introduction__bubble .block--bottom {
  background: #fff;
}
.page--feature #page--introduction__bubble .block--top {
  border-radius: 2rem 2rem 0 0;
  margin-bottom: clamp(4px, 0.6vw, 8px);
  padding: clamp(24px, 3vw, 32px) 5%;
}
.page--feature #page--introduction__bubble .block--bottom {
  border-radius: 0 0 2rem 2rem;
  padding: clamp(24px, 3vw, 32px) 5% 0 5%;
}
.page--feature #page--introduction__bubble .block--bottom .txt--basic {
  font-weight: 600;
}
.page--feature #page--introduction__bubble .block--tit {
  color: #37007F;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  line-height: 1.4;
}
.page--feature #page--introduction__bubble .border--gray {
  border: 10px solid #E8E8E8;
}
.page--feature #page--introduction__bubble section:not(#section--mv) .btn--main {
  font-size: 17px;
  max-width: 30rem;
  padding: 1em;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner, .page--feature #page--introduction__bubble #section--service .sec-inner, .page--feature #page--introduction__bubble #section--detail .sec-inner {
  max-width: 85rem;
  margin: 0 auto;
}
.page--feature #page--introduction__bubble #section--lineup .btn--main, .page--feature #page--introduction__bubble #section--detail .btn--main {
  margin: clamp(3rem, 4vw, 4rem) auto 0 auto;
}
.page--feature #page--introduction__bubble #section--about, .page--feature #page--introduction__bubble #section--service, .page--feature #page--introduction__bubble #section--detail {
  background: rgba(199, 158, 255, 0.7);
}
.page--feature #page--introduction__bubble #section--about {
  position: relative;
  z-index: 1;
}
.page--feature #page--introduction__bubble #section--about .txt--sub {
  text-align: center;
  justify-content: center;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .block--artist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px) clamp(10px, 3vw, 32px);
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .block--artist li {
  position: relative;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .block--artist li a {
  line-height: inherit !important;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .block--artist .box-img {
  display: inline-block;
  overflow: hidden;
  border-radius: 0px 14px 14px 14px;
  z-index: 1;
  position: relative;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .block--artist .name {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 0.1;
  margin-top: clamp(12px, 1.2vw, 14px);
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .new {
  position: relative;
}
.page--feature #page--introduction__bubble #section--lineup .sec-inner .new::before {
  content: "NEW";
  color: #fff;
  background: #974EF8;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  inset: auto auto 0 50%;
  font-size: clamp(10px, 1vw, 12px);
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
}
.page--feature #page--introduction__bubble #section--service .block--service:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--service .block--sign-up:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--service .block--list:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--sign-up .block--service:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--sign-up .block--sign-up:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--sign-up .block--list:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--detail .block--service:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--detail .block--sign-up:not(:nth-of-type(3)), .page--feature #page--introduction__bubble #section--detail .block--list:not(:nth-of-type(3)) {
  margin-bottom: 2rem;
}
.page--feature #page--introduction__bubble #section--sign-up .section-tit, .page--feature #page--introduction__bubble #section--detail .section-tit {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
}
.page--feature #page--introduction__bubble #section--service .section-tit {
  margin-bottom: 0;
}
.page--feature #page--introduction__bubble #section--service .txt--explanation:nth-of-type(1) {
  margin-bottom: clamp(2rem, 2vw, 3.2rem);
  margin-top: 0;
}
.page--feature #page--introduction__bubble #section--service .block--service {
  position: relative;
}
.page--feature #page--introduction__bubble #section--service .block--service .block--txt {
  max-width: 46rem;
  margin: 0 auto;
}
.page--feature #page--introduction__bubble #section--service .block--service:not(:nth-of-type(3)) {
  margin-bottom: 4rem;
}
.page--feature #page--introduction__bubble #section--service .block--service .thumb {
  width: 40%;
  position: relative;
  z-index: 1;
  height: 45vw;
  max-height: 500px;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
}
.page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) {
  flex-direction: row-reverse;
}
.page--feature #page--introduction__bubble #section--service .image {
  font-size: 10px;
  color: #A9A9A9;
  position: absolute;
  bottom: 10px;
  right: 4px;
}
.page--feature #page--introduction__bubble #section--service .item00 {
  -o-object-fit: cover;
     object-fit: cover;
}
.page--feature #page--introduction__bubble #section--service .thumb--animation img:not(.item00) {
  transform: translateX(-50%) scale(1.3);
}
.page--feature #page--introduction__bubble #section--service .thumb__base {
  border-radius: 7.5vw 7.5vw 0 0;
}
.page--feature #page--introduction__bubble #section--service .block--bottom {
  overflow: hidden;
}
.page--feature #page--introduction__bubble #section--sign-up .sec-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page--feature #page--introduction__bubble #section--sign-up .section-tit span {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
}
.page--feature #page--introduction__bubble #section--sign-up .txt--sub {
  text-align: center;
  justify-content: center;
}
.page--feature #page--introduction__bubble #section--sign-up .block--top {
  background: #974EF8;
  color: #fff;
  margin-bottom: 0;
}
.page--feature #page--introduction__bubble #section--sign-up .block--top .point {
  color: #fff;
}
.page--feature #page--introduction__bubble #section--sign-up .block--top .block--tit {
  color: #fff;
}
.page--feature #page--introduction__bubble #section--sign-up .btn--main {
  margin-top: clamp(24px, 3vw, 32px);
}
.page--feature #page--introduction__bubble #section--sign-up .block--bottom {
  padding: 24px 5%;
  text-align: center;
}
.page--feature #page--introduction__bubble #section--sign-up .block--bottom .block--txt:nth-of-type(2) .btn--main {
  background: linear-gradient(90deg, #ECDEFF 0%, #ECDEFF 48%, #D4B4FF 100%);
  color: #37007F;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up {
  margin: 0 auto;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up .block--top {
  padding: 20px 5%;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .txt--basic, .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .txt--basic {
  font-weight: 400;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .block--price {
  color: #974EF8;
  margin: 6px auto 16px auto;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .block--price .price {
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 600;
  line-height: 1.4;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .block--price .price span {
  font-size: clamp(32px, 3.5vw, 36px);
  letter-spacing: 0em;
  padding: 0 4px;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .block--price .detail {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.05em;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step02 .list--table .txt--sub {
  justify-content: left;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .block--link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 280px;
  margin: 0 auto;
  gap: 3%;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .block--link .item--large {
  width: 100%;
  line-height: 1;
  margin-bottom: 24px;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .block--link .item--large img {
  display: block;
  width: 120px;
  border-radius: 24px;
  margin: 0 auto;
  border: 1px solid #14002E;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .block--link .item a {
  display: block;
  line-height: 0;
}
.page--feature #page--introduction__bubble #section--sign-up .block--sign-up, .page--feature #page--introduction__bubble #section--sign-up .block--list, .page--feature #page--introduction__bubble #section--detail .block--sign-up, .page--feature #page--introduction__bubble #section--detail .block--list {
  border: 1px solid #974EF8;
  border-radius: 2rem;
  overflow: hidden;
}
.page--feature #page--introduction__bubble #section--sign-up .block--top, .page--feature #page--introduction__bubble #section--sign-up .block--bottom, .page--feature #page--introduction__bubble #section--detail .block--top, .page--feature #page--introduction__bubble #section--detail .block--bottom {
  border-radius: 0;
}
.page--feature #page--introduction__bubble #section--detail .list--table {
  border: none;
}
.page--feature #page--introduction__bubble #section--detail .list--table .block--list:first-of-type dd .txt--indent {
  margin-top: 1.5em;
}
.page--feature #page--introduction__bubble #section--detail .list--table .block--list dt {
  background: #974EF8;
  color: #fff;
}
.page--feature #page--introduction__bubble #section--detail .list--table .block--list dd {
  background: #fff;
  text-align: left;
}
.page--feature #page--introduction__bubble #section--detail .btn--main {
  margin: 6rem auto 7vh auto;
  border: 1px solid #974EF8;
  color: #974EF8;
  background: #fff;
}

.wrap {
  padding: 0 !important;
}

footer .copyright {
  color: #37007F;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .page--feature #page--introduction__bubble.loaded #section--mv h1 img {
    transition-delay: 0.3s;
  }
  .page--feature #page--introduction__bubble.loaded #section--mv .block--entry {
    top: 0;
    transition-delay: 0.5s;
  }
  .page--feature #page--introduction__bubble.loaded #section--mv p:not(.txt) {
    transition-delay: 0.7s;
  }
  .page--feature #page--introduction__bubble.loaded #section--mv .mv_inner .thumb img:not(.item00) {
    top: 5%;
  }
  .page--feature #page--introduction__bubble.loaded #section--mv .mv_inner .thumb img {
    top: 0;
  }
  .page--feature #page--introduction__bubble .btn--main:not(#section--detail .btn--main) {
    transition: 0.4s ease;
    transform: scale(1);
    background: linear-gradient(120deg, #974EF8 0%, #974EF8 30%, #853aff 60%, #4e06c3 100%);
    background-position: left;
    background-size: 200%;
  }
  .page--feature #page--introduction__bubble .btn--main:not(#section--detail .btn--main):hover {
    transform: scale(1.04);
    background-position: right;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--bottom .block--txt:nth-of-type(2) .btn--main {
    transition: 0.4s ease;
    transform: scale(1);
    border: 1px solid rgba(151, 78, 248, 0.4);
    background: linear-gradient(120deg, #f8f2ff 0%, #f8f2ff 30%, #e6d3ff 60%, #e1caff 100%);
    background-position: left;
    background-size: 200%;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--bottom .block--txt:nth-of-type(2) .btn--main:hover {
    transform: scale(1.04);
    background-position: right;
  }
  .page--feature #page--introduction__bubble #section--mv {
    padding: 0 clamp(10%, 50% - 47vh, 33vw);
    box-sizing: border-box;
    display: block;
  }
  .page--feature #page--introduction__bubble #section--mv .mv_inner {
    display: grid;
    grid-template-columns: 45% 50%;
    justify-content: space-between;
    height: 100%;
  }
  .page--feature #page--introduction__bubble #section--mv .mv_inner .thumb img:not(.item00) {
    top: 7%;
    -o-object-fit: contain;
       object-fit: contain;
    transform: translateX(-50%) scale(1.3);
  }
  .page--feature #page--introduction__bubble #section--mv .mv_inner .thumb, .page--feature #page--introduction__bubble #section--mv .mv_inner .thumb img {
    top: 0;
  }
  .page--feature #page--introduction__bubble #section--mv .block--txt h1 {
    margin: 0 auto 16px auto;
    width: 100%;
  }
  .page--feature #page--introduction__bubble #section--mv .block--txt .txt {
    font-size: min(2.2vh, 2vw);
  }
  .page--feature #page--introduction__bubble #section--mv .block--txt .btn--main {
    width: 70%;
    max-width: 16em;
    font-size: clamp(1.3rem, 2vmin, 5rem);
    padding: 1em 16px;
  }
  .page--feature #page--introduction__bubble #section--mv figure.thumb {
    width: 80%;
    max-width: none;
    height: auto;
    max-height: 74vw;
    aspect-ratio: 1/1.715;
    position: relative;
    justify-self: end;
    align-self: end;
    flex-shrink: 0;
    margin: 10rem clamp(2rem, 4vmin, 12rem) 0 0;
  }
  .page--feature #page--introduction__bubble #section--mv figure.thumb.border--white {
    border: none;
  }
  .page--feature #page--introduction__bubble #section--mv .thumb__base {
    display: block;
    border-radius: clamp(4rem, 4vh, 8rem) clamp(4rem, 4vh, 8rem) 0 0;
    border-left: clamp(1rem, 1vh, 2rem) solid #FAFAFA;
    border-top: clamp(1rem, 1vh, 2rem) solid #FAFAFA;
    border-right: clamp(1rem, 1vh, 2rem) solid #FAFAFA;
    border-bottom: none;
  }
  .page--feature #page--introduction__bubble #section--mv .thumb__base img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .page--feature #page--introduction__bubble #section--mv p:not(.txt) {
    margin: 2.4rem auto 0 auto;
  }
  .page--feature #page--introduction__bubble .block--txt {
    align-self: center;
    justify-self: center;
    width: 100%;
  }
  .page--feature #page--introduction__bubble .thumb {
    align-self: end;
    justify-self: center;
    width: 100%;
  }
  .page--feature #page--introduction__bubble .sec-inner {
    padding: 8rem 0%;
  }
  .page--feature #page--introduction__bubble .block--bottom {
    display: flex;
    text-align: left;
    padding: 0 4rem;
    gap: 2rem;
  }
  .page--feature #page--introduction__bubble .block--artist li {
    translate: 0 70px 0;
  }
  .page--feature #page--introduction__bubble #section--lineup li img {
    transition: 0.5s ease;
  }
  .page--feature #page--introduction__bubble #section--lineup li:hover img {
    transform: scale(1.1);
  }
  .page--feature #page--introduction__bubble #section--service .block--service .thumb {
    height: 41rem;
    width: 68%;
    margin: 4rem 20px 0 30px;
  }
  .page--feature #page--introduction__bubble #section--service .block--service:nth-of-type(2) .block--bottom {
    flex-direction: row-reverse;
  }
  .page--feature #page--introduction__bubble #section--service .block--service .txt--basic {
    font-size: 20px;
  }
  .page--feature #page--introduction__bubble #section--service .thumb__base {
    border-radius: 2.5vw 2.5vw 0 0;
  }
  .page--feature #page--introduction__bubble #section--sign-up {
    padding: 0 5%;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom {
    padding: 40px 5%;
    gap: 0;
    justify-content: center;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom .block--txt {
    align-self: auto;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom .block--txt:nth-of-type(1) {
    border-right: 1px solid #E8E8E8;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom .block--txt:nth-of-type(1) .btn--main {
    margin-top: clamp(55px, 5vw, 58px);
  }
  .page--feature #page--introduction__bubble #section--sign-up .step02 .block--bottom, .page--feature #page--introduction__bubble #section--sign-up .step03 .block--bottom {
    flex-direction: column;
    gap: 1rem;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step02 .block--price, .page--feature #page--introduction__bubble #section--sign-up .step03 .block--price {
    margin: 16px auto 0px auto;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step02 .list--table, .page--feature #page--introduction__bubble #section--sign-up .step03 .list--table {
    max-width: 70rem;
    margin: 0 auto;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step03 .block--link .item {
    width: 51%;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step03 .block--link .item.item--apple {
    width: 43.5%;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  .page--feature #page--introduction__bubble #section--mv figure {
    width: 56vw;
    aspect-ratio: 1/1.83;
    height: auto;
    max-height: none;
    margin: 3vh auto 0 auto;
    max-width: 30rem;
  }
  .page--feature #page--introduction__bubble #section--mv .block--entry {
    padding-top: 0;
    z-index: 10;
  }
  .page--feature #page--introduction__bubble #section--mv .block--entry > div {
    width: 100%;
  }
  .page--feature #page--introduction__bubble #section--mv .block--entry .btn--main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 80%;
  }
  .page--feature #page--introduction__bubble #section--service .block--service {
    width: 100%;
    overflow: hidden;
  }
  .page--feature #page--introduction__bubble #section--service .block--service .thumb {
    width: 80%;
    height: 90vw;
    max-width: 36rem;
    margin: 24px auto 0px auto;
    position: relative;
    top: 60px;
    transition: 0.6s;
    opacity: 0;
  }
  .page--feature #page--introduction__bubble #section--service .block--service .thumb figure {
    border-radius: 40px;
    overflow: hidden;
  }
  .page--feature #page--introduction__bubble #section--service .block--service.started .thumb {
    top: 0;
    opacity: 1;
    transition-delay: 0.4s;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom {
    gap: 0;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom .block--txt:nth-of-type(1) {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 32px;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step01 .block--bottom .block--txt:nth-of-type(2) {
    padding-top: 32px;
  }
  .page--feature #page--introduction__bubble #section--sign-up .step02 .block--bottom .block--txt:nth-of-type(1) {
    padding-bottom: 16px;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .block--link {
    max-width: 15rem;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03 .item--apple {
    margin-bottom: 1rem;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--ios .item--google {
    display: none;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--ios .item--apple {
    width: 100%;
    margin-bottom: 0;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--ios .item--apple a {
    margin: 0 auto;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--android .item--apple {
    display: none;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--android .item--google {
    width: 100%;
    margin-right: 0;
  }
  .page--feature #page--introduction__bubble #section--sign-up .block--sign-up.step03.device--android .item--google a {
    margin: 0 auto;
  }
  .page--feature #page--introduction__bubble #section--detail .list--table div dd .txt--indent {
    margin-top: 1em;
  }
  .page--feature .langBar {
    background: rgba(255, 255, 255, 0.8);
  }
  .page--feature .langBar .langSelector {
    color: #974ef8;
  }
  .page--feature .langBar .langSelector > span svg {
    fill: #974ef8;
  }
  .page--feature .thumb {
    border-radius: 9vw;
  }
  .page--feature .list--table div dt, .page--feature .list--table div dd {
    font-size: 14px;
  }
  .page--feature #section--sign-up .block--sign-up .txt--link:hover a {
    text-decoration: none;
  }
}
@media screen and (min-width: 500px) and (max-width: 960px) {
  .page--feature #page--introduction__bubble #section--mv .border--white {
    border-width: 1.5vw;
  }
  .page--feature #page--introduction__bubble #section--mv h1 {
    width: 70%;
  }
  .page--feature #page--introduction__bubble .thumb {
    border-radius: 6vw;
  }
  .page--feature #page--introduction__bubble .thumb__base {
    border-radius: 4.5vw 4.5vw 0 0;
  }
}
@media screen and (min-width: 768px) {
  .page--feature .bg::before {
    background: url(../img/bg_pc_left.png) top left/cover no-repeat;
  }
  .page--feature .bg::after {
    content: "";
    background: url(../img/bg_pc_right.png) top right/cover no-repeat;
    width: 100%;
    height: 100vh;
    height: 100svh;
    position: fixed;
    top: 0;
    right: 0;
  }
  .page--feature .bg .bubble::before {
    background: url(../img/bg_bubble_pc_left.png) top left/cover no-repeat;
  }
  .page--feature .bg .bubble::after {
    background: url(../img/bg_bubble_pc_right.png) bottom right/cover no-repeat;
  }
  .page--feature #page--introduction__bubble #section--mv .block--entry .btn--main {
    padding: 1.2em 0.8em;
  }
}