@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  cursor: default;
  line-height: 1.5;
  -moz-tab-size: 4;
  tab-size: 4;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
}

body {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
  background: linear-gradient(90deg, rgba(232, 130, 255, 0.20) 0%, rgba(84, 129, 246, 0.20) 100%);
  box-shadow: 2px 6px 8px 0 rgba(255, 255, 255, 0.20);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

svg:not([fill]) {
  fill: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

fieldset {
  padding: 0;
  border: 0;
  min-width: 0;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

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

[type=search] {
  -webkit-appearance: textfield;
  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;
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.l-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.l-background__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.l-background__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 58%, rgb(255, 239, 251) 0%, rgb(237, 217, 255) 100%);
  opacity: 0.3;
}

.l-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.l-main {
  flex: 1;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}

.l-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding: 0 16px;
  }
}

.l-content {
  max-width: 1360px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-sm {
  margin-top: 16px !important;
}

.u-mt-md {
  margin-top: 24px !important;
}

.u-mt-lg {
  margin-top: 30px !important;
}

.u-mt-xl {
  margin-top: 40px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-sm {
  margin-bottom: 16px !important;
}

.u-mb-md {
  margin-bottom: 24px !important;
}

.u-mb-lg {
  margin-bottom: 30px !important;
}

.u-mb-xl {
  margin-bottom: 40px !important;
}

/* wp:header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    padding: 10px 16px;
  }
}
.header__logo {
  display: block;
}
.header__logo img {
  width: 209px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    width: 150px;
  }
}
.header__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__cta:hover {
  opacity: 0.8;
}
.header__cta {
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  color: #FFFFFF;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  box-shadow: 2px 6px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.header__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #C282FB 0%, #527FF5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.header__cta:hover {
  opacity: 1;
}
.header__cta:hover::before {
  opacity: 1;
}
.header__cta {
  font-family: "Shippori Mincho B1", serif;
  gap: 10px;
  padding: 15px 20px 15px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 80px;
  border: none;
}
@media screen and (max-width: 767px) {
  .header__cta {
    padding: 10px 15px 10px 20px;
    font-size: 12px;
  }
}
.header__cta .header__cta-arrow {
  width: 5px;
  height: 9px;
}
@media screen and (max-width: 767px) {
  .header__cta .header__cta-arrow {
    width: 4px;
    height: 7px;
  }
}

/* /wp:header */
/* wp:footer */
.footer {
  margin-top: 30px;
  background: linear-gradient(90deg, #EDDEFA 0%, #D6DFFE 100%);
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 20px;
  }
}
.footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    height: auto;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
  }
}
.footer__copyright {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    order: 2;
  }
}
.footer__links {
  position: absolute;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__links {
    position: static;
    order: 1;
    gap: 64px;
  }
}
.footer__link {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #333333;
}
.footer__link:hover {
  text-decoration: underline;
}

/* /wp:footer */
/* wp:cta */
.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.cta-button:hover {
  opacity: 0.8;
}
.cta-button {
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  color: #FFFFFF;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  box-shadow: 2px 6px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #C282FB 0%, #527FF5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.cta-button:hover {
  opacity: 1;
}
.cta-button:hover::before {
  opacity: 1;
}
.cta-button {
  gap: 25px;
  padding: 24px 30px 24px 50px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .cta-button {
    width: 100%;
    padding: 20px 20px 20px 30px;
    font-size: 14px;
  }
}
.cta-button__arrow {
  width: 8px;
  height: 13px;
}
.cta-button--large {
  padding: 24px 30px 28px 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  max-height: 75px;
}
@media screen and (max-width: 767px) {
  .cta-button--large {
    max-height: none;
  }
}
.cta-button--small {
  padding: 15px 20px 15px 30px;
  font-size: 16px;
}

/* /wp:cta */
.main-copy {
  text-align: center;
}
.main-copy__sub {
  font-family: "Shippori Mincho B1", serif;
  font-size: 26px;
  font-weight: 700;
  color: #514F4F;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-shadow: 1px 1px 6px rgb(255, 255, 255), -1px -1px 6px rgb(255, 255, 255), 1px 1px 4px rgb(255, 255, 255), -1px -1px 4px rgb(255, 255, 255), 1px 1px 18px rgb(255, 255, 255), -1px -1px 18px rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .main-copy__sub {
    font-size: 16px;
  }
}
.main-copy__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -8px;
}
.main-copy__text {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-size: 60px;
  font-weight: 600;
  color: #514F4F;
  letter-spacing: 0.07em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .main-copy__text {
    font-size: 32px;
  }
}
.main-copy__text--bold {
  font-weight: 800;
}
.main-copy__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
}
.main-copy__badge img {
  max-width: 283px;
}
.main-copy__badge-text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.45;
  background: linear-gradient(181deg, rgb(190, 131, 255) 17%, rgb(229, 143, 222) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .main-copy__badge-text {
    font-size: 24px;
  }
}

.fortune-teller-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
  justify-items: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .fortune-teller-list {
    gap: 3.125vw;
  }
}
@media screen and (max-width: 767px) {
  .fortune-teller-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13.3333333333vw;
  }
}
.fortune-teller-list--blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fortune-teller-list--blur {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
  }
}

.fortune-teller-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .fortune-teller-card {
    padding: 0;
    width: 100%;
  }
}
.fortune-teller-card--blur .fortune-teller-card__image-wrapper,
.fortune-teller-card--blur .fortune-teller-card__name,
.fortune-teller-card--blur .fortune-teller-card__cta {
  filter: blur(6px);
  pointer-events: none;
}
.fortune-teller-card__image-wrapper {
  width: 100%;
  aspect-ratio: 280/359;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #FFF;
  position: relative;
}
.fortune-teller-card__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 32px;
  padding: 3px;
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fortune-teller-card__image-wrapper {
    margin-bottom: 3.2vw;
    max-width: 58.1333333333vw;
  }
}
.fortune-teller-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fortune-teller-card__name {
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-size: 20px;
  font-weight: 600;
  color: #514F4F;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .fortune-teller-card__name {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.fortune-teller-card__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fortune-teller-card__cta:hover {
  opacity: 0.8;
}
.fortune-teller-card__cta {
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  color: #FFFFFF;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  box-shadow: 2px 6px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fortune-teller-card__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #C282FB 0%, #527FF5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.fortune-teller-card__cta:hover {
  opacity: 1;
}
.fortune-teller-card__cta:hover::before {
  opacity: 1;
}
.fortune-teller-card__cta {
  display: flex;
  padding: 18px 15px 18px 30px;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-size: 18px;
  letter-spacing: 1.8px;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  .fortune-teller-card__cta {
    padding: 1.40625vw 1.171875vw 1.40625vw 2.34375vw;
    gap: 1.953125vw;
    font-size: max(10px, 1.40625vw);
    letter-spacing: 0.140625vw;
  }
}
@media screen and (max-width: 767px) {
  .fortune-teller-card__cta {
    padding: 4.8vw 4vw 4.8vw 8vw;
    font-size: 4.2666666667vw;
    gap: 5.3333333333vw;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    white-space: normal;
    max-width: 80vw;
  }
}

.page-top .l-background {
  display: none;
}

.l-wrapper--top {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.l-main--top {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0 40px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-main--top {
    margin: 0 2.78vw;
  }
}
@media screen and (max-width: 767px) {
  .l-main--top {
    margin: 0 4vw;
    flex: none;
    margin-bottom: 20px;
  }
}

.header--top {
  position: relative;
  background: transparent;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
}
@media screen and (max-width: 767px) {
  .header--top {
    padding: 2.6666666667vw 4vw;
  }
}
@media screen and (max-width: 767px) {
  .header--top .header__cta {
    padding: 8px 12px 10px 20px;
    font-size: 13px;
    gap: 10px;
    line-height: 1.2;
    letter-spacing: 1.82px;
  }
}
@media screen and (max-width: 767px) {
  .header--top .header__cta .header__cta-arrow {
    width: 4.756px;
    height: 8.647px;
  }
}

.fv {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  min-height: 642px;
  flex: 1;
  width: 100%;
  display: flex;
  background-image: url("../images/top/fv-bg.webp");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .fv {
    max-width: 94.44vw;
    border-radius: 2.0833333333vw;
    min-height: 44.5833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    border-radius: 5.3333333333vw;
    min-height: auto;
    flex: none;
    flex-direction: column;
    background-image: url("../images/top/fv-bg-sp.webp");
  }
}
.fv__illust {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48.5%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .fv__illust {
    display: none;
  }
}
.fv__illust-character {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.fv__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 59%;
}
@media screen and (max-width: 767px) {
  .fv__content {
    padding: 6.4vw 0 0 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
}
.fv__copy-image {
  width: 100%;
  margin-left: -7px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .fv__copy-image {
    margin-left: -0.4861111111vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__copy-image {
    margin-left: 0;
  }
}
.fv__cta {
  margin-top: -80px;
  margin-left: 160px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .fv__cta {
    margin-top: -5.5555555556vw;
    margin-left: 11.1111111111vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__cta {
    display: none;
  }
}
.fv__cta-label {
  font-family: "Shippori Mincho B1", serif;
  font-size: 14px;
  font-weight: 700;
  color: #514F4F;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 12px;
}
.fv__cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fv__cta-button:hover {
  opacity: 0.8;
}
.fv__cta-button {
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  color: #FFFFFF;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  box-shadow: 2px 6px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fv__cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #C282FB 0%, #527FF5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.fv__cta-button:hover {
  opacity: 1;
}
.fv__cta-button:hover::before {
  opacity: 1;
}
.fv__cta-button {
  font-family: "Shippori Mincho B1", serif;
  gap: 25px;
  padding: 24px 24px 24px 50px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 50px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .fv__cta-button {
    gap: 1.7361111111vw;
    padding: 1.6666666667vw 1.6666666667vw 1.6666666667vw 3.4722222222vw;
    font-size: 1.5277777778vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (max-width: 767px) {
  .fv__cta-button {
    width: 100%;
    max-width: 100%;
    padding: 18px 20px 20px 30px;
    font-size: 16px;
    gap: 15px;
    justify-content: center;
  }
}
.fv__cta-button-arrow {
  width: 5.5px;
  height: 11px;
  flex-shrink: 0;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .fv__cta-button-arrow {
    width: 0.3819444444vw;
    height: 0.7638888889vw;
  }
}

.fv__illust-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv__illust-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.fv__illust-sp-character {
  max-width: 98%;
  margin-left: auto;
  margin-top: -36.8vw;
  height: auto;
}

.fv-cta-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv-cta-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.6666666667vw 0 5.3333333333vw;
  }
}
.fv-cta-sp__label {
  display: flex;
  align-items: flex-end;
  gap: 2.6666666667vw;
  font-family: "Shippori Mincho B1", serif;
  font-size: 3.7333333333vw;
  font-weight: 600;
  color: #514F4F;
  letter-spacing: 0.7466666667vw;
  text-align: center;
  margin-bottom: 0.8vw;
}
.fv-cta-sp__line {
  width: 1.6vw;
  height: 3.7333333333vw;
  flex-shrink: 0;
  margin-bottom: 0.5333333333vw;
}
.fv-cta-sp__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.fv-cta-sp__button:hover {
  opacity: 0.8;
}
.fv-cta-sp__button {
  background: linear-gradient(90deg, rgb(211, 161, 254) 0%, rgb(111, 146, 241) 100%);
  color: #FFFFFF;
  font-family: "YuMincho", "Yu Mincho", "游明朝", serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  box-shadow: 2px 6px 8px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.fv-cta-sp__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #C282FB 0%, #527FF5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}
.fv-cta-sp__button:hover {
  opacity: 1;
}
.fv-cta-sp__button:hover::before {
  opacity: 1;
}
.fv-cta-sp__button {
  font-family: "Shippori Mincho B1", serif;
  width: 100%;
  max-width: 100%;
  height: 21.3333333333vw;
  padding: 2.6666666667vw 6.4vw 3.7333333333vw 9.0666666667vw;
  font-size: 4.8vw;
  font-weight: 600;
  letter-spacing: 0.576vw;
  gap: 6.4vw;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
  border-radius: 21.3333333333vw;
  border: 1px solid #FFFFFF;
  box-shadow: 0.5333333333vw 1.6vw 2.1333333333vw 0 rgba(255, 255, 255, 0.2);
}
.fv-cta-sp__arrow {
  width: 1.3333333333vw;
  height: 2.4vw;
  flex-shrink: 0;
}

/*# sourceMappingURL=top.css.map */
