@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* 初期設定 */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-feature-settings: "palt";
  color: #686868;
  position: relative;
  overflow-x: clip;
}

.en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}

a {
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
a:hover {
  opacity: 0.5;
}

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

/* ----rem設定---- */
:root {
  --liquid-lgDesignRatio: calc(390 / 10);
}

html {
  font-size: 83.33%;
}

@media screen and (max-width: 520px) {
  :root {
    --liquid-htmlroot: calc(100vw / var(--liquid-lgDesignRatio));
  }
  html {
    font-size: var(--liquid-htmlroot);
  }
}
/* --------- */
/* ----レスポンシブの表示非表示---- */
.sp1440,
.sp1024,
.sp840,
.sp520,
.sp375 {
  display: none;
}

@media (max-width: 1440px) {
  .pc1440 {
    display: none !important;
  }
  .sp1440 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 1024px) {
  .pc1024 {
    display: none !important;
  }
  .sp1024 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 1024px) and (max-width: 840px) {
  .pc840 {
    display: none !important;
  }
  .sp840 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 1024px) and (max-width: 840px) and (max-width: 520px) {
  .pc520 {
    display: none !important;
  }
  .sp520 {
    display: block;
  }
}
@media (max-width: 1440px) and (max-width: 1024px) and (max-width: 840px) and (max-width: 520px) and (max-width: 375px) {
  .pc375 {
    display: none !important;
  }
  .sp375 {
    display: block;
  }
}
/* --------- */
/* ----------------------------------------------------------------------
クラス名設定
---------------------------------------------------------------------- */
.innerM {
  width: 88.5%;
  margin: 0 auto;
}

.innerS {
  width: 71.5%;
  margin: 0 auto;
}

.pnk {
  color: #FF5CE8;
}

.lt {
  color: #ff8fe5;
}

.udl {
  background: linear-gradient(#ffffc0 0 0) 0 1em/0% 0.45em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 0.5s ease;
  display: inline;
  padding-bottom: 0.1em;
}

.udl.is-active {
  background-size: 100% 0.45em;
}

.udlp {
  background: linear-gradient(#fee3ff 0 0) 0 1em/0% 0.45em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 0.5s ease;
  display: inline;
  padding-bottom: 0.1em;
}

.udlp.is-active {
  background-size: 100% 0.45em;
}

/* 初期状態（見えない & 移動させておく） */
.lmove,
.rmove {
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 左から中央へ */
.lmove {
  transform: translateX(-40px);
}

/* 右から中央へ */
.rmove {
  transform: translateX(40px);
}

/* 表示されたらアニメーション実行 */
.lmove.is-active,
.rmove.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* ふわふわ */
.fuwa {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fuwa.is-visible {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻す */
}

/* ----------------------------------------------------------------------
レイアウト設定
---------------------------------------------------------------------- */
body {
  background-image: url(../img/top/pcbg01@2x.webp);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 520px) {
  body {
    background-image: none;
  }
}
body:before {
  content: "";
  position: fixed;
  left: 0;
  bottom: -0.8%;
  aspect-ratio: 300/25;
  width: 100%;
  background-image: url(../img/common/pcslide01.svg);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: contain;
  opacity: 0.7;
  animation: slideLoop 14s linear infinite;
  z-index: -1;
}
@media screen and (max-width: 520px) {
  body:before {
    display: none;
  }
}
@keyframes slideLoop {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000% 0;
  }
}
body #header {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6rem;
  background-color: #fff;
  display: grid;
  place-items: center;
  z-index: 999;
}
body #header .headbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  margin: 0 auto;
  max-height: 6rem;
  width: 100%;
  color: #FF5CE8;
  font-size: 1.4rem;
  line-height: 0.0714285714;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0 1.4em;
}
@media screen and (max-width: 520px) {
  body #header .headbox {
    padding: 0 0.7em;
  }
}
body #header .headbox .btnbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  gap: 1em;
}
@media screen and (max-width: 520px) {
  body #header .headbox .btnbox {
    gap: 0.5em;
  }
}
body #header .headbox .btnbox .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  gap: 1em;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  body #header .headbox .btnbox .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    z-index: -1;
  }
}
@media screen and (max-width: 1024px) {
  body #header .headbox .btnbox .menu {
    gap: 3em;
  }
}
body #header .headbox .btnbox .menu.show {
  right: 0;
}
body #header .headbox .btnbox .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  gap: 1em;
  font-size: 90%;
}
@media screen and (max-width: 520px) {
  body #header .headbox .btnbox .btn {
    gap: 0.5em;
    font-size: 80%;
  }
}
body #header .headbox .btnbox .btn > a {
  border: 2px solid #FF5CE8;
  border-radius: 50px;
  padding: 1rem 1.4rem;
  text-decoration: none;
}
body #header .headbox .btnbox .navbtn {
  width: 2.5em;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #FF5CE8;
  position: relative;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease;
  /* --- 開いた状態 --- */
}
@media screen and (max-width: 1024px) {
  body #header .headbox .btnbox .navbtn {
    display: flex;
  }
}
body #header .headbox .btnbox .navbtn span {
  position: absolute;
  display: block;
  width: 1.6em;
  height: 0.15em;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.4s ease;
}
body #header .headbox .btnbox .navbtn span:nth-child(1) {
  top: 30%;
}
body #header .headbox .btnbox .navbtn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
body #header .headbox .btnbox .navbtn span:nth-child(3) {
  bottom: 30%;
}
body #header .headbox .btnbox .navbtn.open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
body #header .headbox .btnbox .navbtn.open span:nth-child(2) {
  opacity: 0;
}
body #header .headbox .btnbox .navbtn.open span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
body #header .headbox .logo {
  width: 30%;
  max-width: 8rem;
}
body article {
  width: 100%;
  max-width: 39rem;
  margin: 8rem auto 0;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 520px) {
  body article {
    border-radius: 0;
    margin-top: 0;
  }
}
body article .fv {
  height: 34rem;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  font-weight: 600;
}
body article .fv h2 {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.9), 0 0 6px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 200, 240, 0.4);
}
body article .fv h2 .big {
  font-size: 250%;
}
@media screen and (max-width: 520px) {
  body article .fv {
    margin-top: 6rem;
  }
}
body article .footer {
  background-image: url(../img/common/footbg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
}
body article .footer .footlogo {
  margin: 0 auto;
  padding: 4em 0;
  width: 16rem;
  max-width: 60%;
  display: block;
}
body article .footer .footinfo {
  border-bottom: 2px solid #fff;
  padding-bottom: 3em;
}
body article .footer .footmenu {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 3em 0;
}
body article .footer .footmenu a::before {
  content: "- ";
}
body article .footer .cpy {
  color: #FF5CE8;
  font-size: 1rem;
  line-height: 0.1;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  z-index: 1;
  position: relative;
  padding: 1.4em;
  width: 100%;
}

.grecaptcha-badge{
	z-index: 1000;
}