@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(192.13deg, #FFA5FD -1.4%, #FFF5D9 99.14%);
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(91, 74, 122);
  height: 100%;
  margin: 0;
  width: 100%;
}

.container {
  width: 100%;
  display: flex;
  height: 100vh;
  justify-content: center;
}

.flex {
  display: flex;
}

section {
  padding-top: 120px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateY(50px); /* 下からスライドイン */
  transition: opacity 1s ease, transform 1s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  color: var(--Fill-Primary, #5B4A7A);
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Mochiy Pop One";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 48px */
  margin-bottom: 24px;
}

.ttl {
  padding: 0px 10%;
  display: flex;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center;
}
.ttl p {
  color: var(--Fill-Primary, #5B4A7A);
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
.ttl .attention {
  margin-top: 24px;
}
.ttl .attention p {
  color: #7284FF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
}

.logoBox {
  width: 350px;
  max-width: 350px;
  display: flex;
  width: auto;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center; /* 縦方向の中央揃え（必要なら） */
  padding-right: 10%;
}
.logoBox .PC-icon {
  width: 80px;
  margin-bottom: 20px;
}
.logoBox .PC-icon img {
  width: 80px;
}
.logoBox .logo {
  width: 190px;
  margin-bottom: 60px;
}
.logoBox .QR {
  display: flex;
  width: auto;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center; /* 縦方向の中央揃え（必要なら） */
}
.logoBox .QR p {
  margin-bottom: 20px;
  font-family: Mochiy Pop One;
  font-weight: bold;
  font-size: 14px;
  color: #5B4A7A;
  opacity: 0.5;
}
.logoBox .QR img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
}

.mainBox {
  background-color: #fff;
  max-width: 443px;
  flex: 1;
}

.menuBox {
  width: 350px;
  max-width: 350px;
  display: flex;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center; /* 縦方向の中央揃え（必要なら） */
  padding-left: 10%;
}
.menuBox header {
  width: 300px;
}
.menuBox header .nav {
  margin-bottom: 80px;
}
.menuBox header .nav ul li {
  margin-bottom: 16px;
}
.menuBox header .nav ul li a {
  font-family: Mochiy Pop One;
  font-weight: bold;
  font-style: Regular;
  font-size: 16px;
  line-height: 150%;
}
.menuBox header .snsBox .SNS img {
  width: 28px;
  margin-right: 20px;
}

.SNS {
  display: flex;
}

.legalBox li {
  font-size: 12px;
  margin-top: 16px;
  color: #5B4A7A;
  opacity: 0.7;
  color: var(--Fill-Secondary, rgba(91, 74, 122, 0.7));
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

.mainBox {
  width: 100%;
  max-width: 410px;
  min-width: 393px;
  overflow-y: auto;
  overflow-x: hidden;
  background: transparent;
  /* Firefox用 */
  scrollbar-width: none;
  /* WebKitブラウザ用 */
  /* IE・Edge用 */
  -ms-overflow-style: none;
}
.mainBox::-webkit-scrollbar {
  display: none;
}
.mainBox .content {
  display: flex;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center;
  padding: 70px 0px;
}
.mainBox .content #TOP {
  position: relative;
  width: 100%;
  height: auto;
  display: flex; /* Flexboxを有効化 */
  flex-direction: column; /* 上から下に並べる */
  justify-content: flex-start; /* 縦方向中央 */
  align-items: center; /* 横方向中央 */
  padding-top: 190px;
  padding-bottom: 0px;
  text-align: center; /* テキストも中央揃え */
  background-image: url("./images/topBg.png"); /* 奥の背景 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  border-radius: 24px 24px 0px 0px;
  overflow: hidden;
}
.mainBox .content #TOP::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./images/cards.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform: scale(1.3); /* 初期サイズを開始サイズに */
  animation: scaleUpDown 7s ease-in-out infinite alternate;
  z-index: -1;
  animation-fill-mode: forwards; /* 状態を保持 */
  will-change: transform;
}
.mainBox .content #TOP .title {
  margin-bottom: 32px;
}
.mainBox .content #TOP .title img {
  width: 210px;
}
.mainBox .content #TOP p {
  margin-bottom: 12px;
  color: var(--White-Primary, #FFF);
  text-align: center;
  font-family: "Mochiy Pop One";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 1px;
}
.mainBox .content #TOP .topUracchi {
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
.mainBox .content #TOP .topUracchi img {
  width: 100%;
}
.mainBox .content #TOP .topUracchi .more {
  position: absolute;
  left: 50%; /* 左端を画面中央に */
  transform: translateX(-50%); /* 中央寄せ */
  bottom: 5%;
}
.mainBox .content #TOP .topUracchi .more p {
  color: var(--Fill-Quaternary, rgba(91, 74, 122, 0.3));
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  z-index: 4;
  margin-bottom: 0px;
}
.mainBox .content #TOP .topUracchi .more img {
  width: 16px;
}
.mainBox .content #intro {
  padding-top: 60px;
  position: relative;
  z-index: 3;
  background-color: #FFF;
}
.mainBox .content #intro .ttl {
  margin-bottom: 0px;
}
.mainBox .content #intro .introImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mainBox .content #intro .introImage .comment {
  z-index: 2;
  margin-left: 65px;
}
.mainBox .content #intro .introImage .comment img {
  width: 203px;
  height: auto;
  opacity: 0;
  transform: translateY(20px);
}
.mainBox .content #intro .introImage .comment .animate {
  opacity: 1;
  animation: bounceOnce 1.5s ease forwards;
}
.mainBox .content #intro .introImage .front {
  margin-top: -45px;
  z-index: 1;
}
.mainBox .content #intro .introImage .front img {
  width: 220px;
  height: auto;
}
.mainBox .content #judgment {
  background-color: #FFF;
  width: 100%;
  padding-bottom: 120px;
}
.mainBox .content #judgment .ttl {
  margin-bottom: 48px;
}
.mainBox .content #judgment .carousel {
  position: relative;
  width: 100%;
  overflow-x: scroll; /* 横スクロール可能 */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  scrollbar-width: none; /* Firefox */
  padding: 0 5%;
}
.mainBox .content #judgment .carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.mainBox .content #judgment .carousel-item {
  flex: 0 0 80%; /* 1アイテム＝画面幅ぴったり */
  margin: 0 5px;
  scroll-snap-align: center; /* スナップでパチッと止まる */
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainBox .content #judgment .carousel-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.mainBox .content #support {
  background: linear-gradient(160deg, #7164FF 2.01%, #FFA6E7 58.45%, #FFEF95 94.44%);
  padding: 80px 0px;
  width: 100%;
}
.mainBox .content #support .ttl {
  width: 100%;
}
.mainBox .content #support .ttl h2 {
  color: #fff;
}
.mainBox .content #support .ttl p {
  width: 90%;
  color: #fff;
  margin-bottom: 48px;
}
.mainBox .content #support .scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: -3px;
}
.mainBox .content #support .scroll-container .scroll-inner {
  display: flex;
  width: 200%;
  animation: scroll-right 10s linear infinite;
}
.mainBox .content #support .scroll-container .scroll-inner img {
  width: 210px;
  margin-right: -3px;
}
.mainBox .content #support .scroll-container .scroll-inner.reverse {
  animation: scroll-left 10s linear infinite;
}
.mainBox .content #support .scroll-container .last {
  --start-x: 70px;
}
.mainBox .content #recommend {
  background-color: #FFF;
  width: 100%;
}
.mainBox .content #recommend .ttl {
  padding-bottom: 68px;
}
.mainBox .content #recommend .Box {
  width: 100%;
  position: relative;
  height: auto; /* 必要に応じて調整 */
  overflow: visible;
}
.mainBox .content #recommend .Box div {
  opacity: 0;
  transform: translateY(-100px);
}
.mainBox .content #recommend .Box div img {
  display: block;
  width: 100%;
}
.mainBox .content #recommend .Box div.animate {
  animation: drop 1s ease forwards;
}
.mainBox .content #recommend .Box .rec1 {
  position: relative;
  z-index: 2;
  width: 70%;
  transform: translateY(0);
  padding-left: 5px;
}
.mainBox .content #recommend .Box .rec1.animate {
  animation: drop 4.2s ease forwards;
  animation-delay: 4.2s;
}
.mainBox .content #recommend .Box .rec2 {
  width: 100%;
  position: relative;
  padding-left: 30%;
  padding-right: 5px;
  margin-top: -10px;
  z-index: 2;
}
.mainBox .content #recommend .Box .rec2.animate {
  animation: drop 4s ease forwards;
  animation-delay: 4s;
}
.mainBox .content #recommend .Box .rec3 {
  width: 100%;
  position: relative;
  padding-left: 40%;
  padding-right: 30px;
  z-index: 2;
}
.mainBox .content #recommend .Box .rec3.animate {
  animation: drop 2.8s ease forwards;
  animation-delay: 2.8s;
}
.mainBox .content #recommend .Box .rec4 {
  width: 80%;
  padding-left: 5px;
  position: relative;
  z-index: 2;
}
.mainBox .content #recommend .Box .rec4.animate {
  animation: drop 2.3s ease forwards;
  animation-delay: 2.3s;
}
.mainBox .content #recommend .Box .rec5 {
  width: 100%;
  padding-left: 25%;
  padding-right: 10px;
  position: relative;
  z-index: 2;
}
.mainBox .content #recommend .Box .rec5.animate {
  animation: drop 1.2s ease forwards;
  animation-delay: 1.5s;
}
.mainBox .content #recommend .Box .vec1 {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 0;
}
.mainBox .content #recommend .Box .vec1.animate {
  animation: drop 4s ease forwards;
  animation-delay: 4s;
}
.mainBox .content #recommend .Box .vec2 {
  position: absolute;
  width: 80px;
  top: 25%;
  left: 10px;
  z-index: 0;
}
.mainBox .content #recommend .Box .vec2.animate {
  animation: drop 3.3s ease forwards;
  animation-delay: 3.3s;
}
.mainBox .content #recommend .Box .vec3 {
  position: absolute;
  width: 60px;
  top: 60%;
  right: 0px;
  z-index: 0;
}
.mainBox .content #recommend .Box .vec3.animate {
  animation: drop 1.5s ease forwards;
  animation-delay: 1.5s;
}
.mainBox .content #recommend .Box .vec4 {
  position: absolute;
  width: 40px;
  bottom: 0px;
  left: 20px;
  z-index: 0;
}
.mainBox .content #recommend .Box .vec4.animate {
  animation: drop 0.5s ease forwards;
  animation-delay: 1s;
}
.mainBox .content #voice {
  background-color: #FFF;
  padding: 120px 10% 120px;
}
.mainBox .content #voice h2 {
  margin-bottom: 48px;
}
.mainBox .content #voice .box {
  border-radius: var(--24, 24px);
  background: var(--Fill-Septenary, rgba(91, 74, 122, 0.05));
  padding: 10% 7%;
  margin-bottom: 20px;
}
.mainBox .content #voice .box .user img {
  width: 54px;
  height: 54px;
}
.mainBox .content #voice .box p {
  color: var(--Fill-Primary, #5B4A7A);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin-top: 20px;
}
.mainBox .content #about {
  display: flex;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center;
  background: linear-gradient(192deg, #FFA5FD -1.4%, #FFF5D9 99.14%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
  margin-bottom: 0px;
}
.mainBox .content #about .slide {
  width: 123px;
  height: 123px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.mainBox .content #about .slide img {
  position: absolute;
  width: 123px;
  height: 123px;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover; /* 画像が枠にぴったり収まる */
}
.mainBox .content #about .slide .active {
  opacity: 1; /* 表示する画像だけ不透明 */
}
.mainBox .content #about .ttl p {
  text-align: left;
}
.mainBox .content #about .ttl span {
  margin-top: 24px;
}
.mainBox .content #about .ttl span p {
  font-size: 12px;
}
.mainBox .content #question {
  width: 100%;
  background-color: #FFF;
  padding: 120px 10% 0px;
}
.mainBox .content #question details {
  color: var(--Fill-Primary, #5B4A7A);
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  border-bottom: 1px solid var(--Fill-Quaternary, rgba(91, 74, 122, 0.3));
}
.mainBox .content #question details summary {
  padding: 30px 0px;
  list-style-type: none;
  display: grid; /* 初期値の display: list-item 以外を指定したので、デフォルトの三角形アイコンは非表示になる */
  grid-template-columns: 1fr 24px;
  gap: 6px;
  align-items: center;
}
.mainBox .content #question details summary::-webkit-details-marker {
  display: none;
}
.mainBox .content #question details summary::marker {
  content: "";
}
.mainBox .content #question details summary .icon {
  transition: transform 0.4s;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(45deg); /* ▶ の形 */
}
.mainBox .content #question details p {
  color: var(--Fill-Primary, #5B4A7A);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  padding-bottom: 32px;
}
.mainBox .content #question details[open] .icon {
  transform: rotate(-135deg);
}
.mainBox .content #question .first-detail {
  margin-top: 48px;
  border-top: 1px solid var(--Fill-Quaternary, rgba(91, 74, 122, 0.3));
}

footer {
  width: 100%;
  background-color: #FFF;
  display: flex;
  flex-direction: column; /* 子要素を縦並びにする */
  align-items: center; /* 横方向の中央揃え */
  justify-content: center;
  padding: 80px 10%;
  border-radius: 0px 0px 24px 24px;
}
footer p {
  color: var(--Fill-Primary, #5B4A7A);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  margin-bottom: 20px;
}
footer .SNS {
  display: flex;
  margin: 64px 0px;
}
footer .SNS img {
  width: 48px;
  height: 48px;
  margin: 0px 10px;
}
footer .legalBox ul {
  text-align: center;
}
footer .legalBox ul li {
  margin-bottom: 20px;
  color: var(--Fill-Secondary, rgba(91, 74, 122, 0.7));
  text-align: center;
  font-family: "SF Pro";
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}

/* スマホ基準（幅480px以下）では非表示 */
@media (max-width: 450px) {
  .logoBox {
    display: none;
    width: 0px;
    flex: 0 0 0;
  }
  .menuBox {
    display: none;
    width: 0px;
    flex: 0 0 0;
  }
  .mainBox {
    width: 100%;
  }
  .mainBox .content {
    padding: 0px;
  }
  .mainBox .content #TOP {
    border-radius: 0px;
  }
}
/* 24talkアニメーション定義 */
@keyframes bounceOnce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-15px); /* 上に跳ねる */
  }
  60% {
    transform: translateY(0); /* 元に戻る */
  }
  100% {
    transform: translateY(0); /* 完全に止まる */
  }
}
/* supportアニメーション定義 */
@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* TOPアニメーション定義 */
@keyframes scaleUpDown {
  0% {
    transform: scale(1.3); /* 開始サイズ */
  }
  50% {
    transform: scale(1.5); /* 最大サイズ */
  }
  100% {
    transform: scale(1.3); /* 元に戻る */
  }
}
/* おすすめ落下アニメーション定義*/
@keyframes drop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */