@charset "UTF-8";
/* ===========================================
共通設定
=========================================== */
:root {
  /* ====== レイアウト ===== */
  --mainWidth: 375px;
  --menuWidthSp: 330px;
  --menuWidthPc: clamp(305px, 6.024vw + 243.253px, 330px);
  --header-height: 45px;
  /* ====== アニメーション ===== */
  --loading-fadein-time: 1s;
  --loading-big-squaman-time: 1s;
}

html,
body {
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #036eb8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

.body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.main-content {
  max-width: var(--mainWidth);
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  background: #ffffff;
}

.left-side-area,
.right-side-area {
  position: relative;
  z-index: 100;
}

.left-side-area {
  --leftSideImageRight: clamp(10px, 24.337vw - 239.458px, 111px);
  --leftSideLogoRight: clamp(167.5px, calc((100% - var(--leftSideImageRight)) / 2 + var(--leftSideImageRight)), calc(var(--leftSideImageRight) + 550px / 2));
}

.left-side-area__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: calc((100% - var(--mainWidth)) / 2);
  height: 100vh;
}

@media screen and (min-width: 1025px) {
  .left-side-area__wrapper {
    display: block;
  }
}
.left-side-area__logo {
  position: absolute;
  top: 26.5740740741%;
  z-index: 11;
  right: var(--leftSideLogoRight);
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}

.left-side-area__logo img {
  max-width: 181px;
  width: 100%;
}

.left-side-area__main-image {
  position: absolute;
  z-index: 10;
  top: 33.3333333333%;
  right: var(--leftSideImageRight);
  border-radius: 70px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  overflow: hidden;
}

.left-side-area__main-image img {
  max-width: clamp(445px, 25.301vw + 185.663px, 550px);
  width: 100%;
  -webkit-transform: translateX(clamp(0px, -23.7354085603vw + 402.7898832685px, 61px));
  transform: translateX(clamp(0px, -23.7354085603vw + 402.7898832685px, 61px));
}

.main {
  position: relative;
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 1025px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .hidden-pc {
    display: none;
  }
}
.button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 13px;
  border: 2px solid #61b7d9;
  background-color: #ffffff;
  border-radius: 23px;
  width: 280px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #61b7d9;
  line-height: 1;
  letter-spacing: 0.2em;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

@media screen and (min-width: 1025px) {
  .button:hover {
    color: #ffffff;
    background-color: #61b7d9;
  }
  .button:hover::after {
    border-color: currentColor;
  }
}
.button::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  right: 18px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #61b7d9;
  border-left: 1px solid #61b7d9;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.button.button--close::after {
  -webkit-transform: translateY(0) rotate(135deg);
  transform: translateY(0) rotate(135deg);
}

.button.is-open::after {
  -webkit-transform: translateY(0) rotate(135deg);
  transform: translateY(0) rotate(135deg);
}

.heading-num {
  text-align: center;
  position: relative;
}

.heading-circle {
  max-width: 102px;
  width: 100%;
  -webkit-animation: rotate-circle 12s linear infinite;
  animation: rotate-circle 12s linear infinite;
}

@-webkit-keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.heading-num-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 46px;
  width: 100%;
}

.heading {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.heading--small {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.heading--big {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.12em;
}

/* ===========================================
スクロールテキストアニメーション&全体背景
=========================================== */
.bg-wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle 637px at center, #fdfeff 0%, #61b7d9 100%);
}

.scroll-text-anime {
  position: absolute;
  bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

.scroll-text-anime span {
  padding-right: 1em;
  font-size: 145px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  top: 5.54px;
  color: #ffffff;
  opacity: 0.7;
  -webkit-animation: scroll-text 50s linear infinite both;
  animation: scroll-text 50s linear infinite both;
}

@-webkit-keyframes scroll-text {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scroll-text {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* ===========================================
ローディングアニメーション
=========================================== */
.animation-main,
.animation-nav-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-animation: display-content var(--loading-fadein-time) ease-out var(--loading-big-squaman-time) forwards;
  animation: display-content var(--loading-fadein-time) ease-out var(--loading-big-squaman-time) forwards;
}

@-webkit-keyframes display-content {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@keyframes display-content {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.load-animation {
  position: fixed;
  width: var(--mainWidth);
  height: calc(100vh - var(--header-height));
  top: var(--header-height);
  left: calc((100vw - var(--mainWidth)) / 2);
  background: #ffffff;
  z-index: 99;
  -webkit-animation: hidden-squaman var(--loading-fadein-time) ease-out calc(var(--loading-big-squaman-time) / 2) forwards;
  animation: hidden-squaman var(--loading-fadein-time) ease-out calc(var(--loading-big-squaman-time) / 2) forwards;
  overflow: hidden;
}

.load-animationsquaman__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 80vw;
  -webkit-animation: big-squaman var(--loading-big-squaman-time) ease-in forwards;
  animation: big-squaman var(--loading-big-squaman-time) ease-in forwards;
}

@-webkit-keyframes big-squaman {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}
@keyframes big-squaman {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}
@-webkit-keyframes hidden-squaman {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
@keyframes hidden-squaman {
  0% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
/* ===========================================
紙吹雪アニメーション
=========================================== */
.confetti {
  position: absolute;
  width: 100%;
  aspect-ratio: 375/500;
}

.confetti span {
  position: absolute;
  z-index: 100;
  top: -10px;
  width: 10px;
  height: 10px;
  background: #68c5e1;
}

.confetti span:nth-child(2n+1) {
  -webkit-animation: confetti-anim-1 10s 0s linear infinite;
  animation: confetti-anim-1 10s 0s linear infinite;
}

.confetti span:nth-child(2n+2) {
  -webkit-animation: confetti-anim-2 10s 0s linear infinite;
  animation: confetti-anim-2 10s 0s linear infinite;
}

.confetti span:nth-child(1) {
  left: 2%;
}

.confetti span:nth-child(2) {
  left: 4%;
}

.confetti span:nth-child(3) {
  left: 6%;
}

.confetti span:nth-child(4) {
  left: 8%;
}

.confetti span:nth-child(5) {
  left: 10%;
}

.confetti span:nth-child(6) {
  left: 12%;
}

.confetti span:nth-child(7) {
  left: 14%;
}

.confetti span:nth-child(8) {
  left: 16%;
}

.confetti span:nth-child(9) {
  left: 18%;
}

.confetti span:nth-child(10) {
  left: 20%;
}

.confetti span:nth-child(11) {
  left: 2%;
}

.confetti span:nth-child(12) {
  left: 4%;
}

.confetti span:nth-child(13) {
  left: 6%;
}

.confetti span:nth-child(14) {
  left: 8%;
}

.confetti span:nth-child(15) {
  left: 10%;
}

.confetti span:nth-child(16) {
  left: 12%;
}

.confetti span:nth-child(17) {
  left: 14%;
}

.confetti span:nth-child(18) {
  left: 16%;
}

.confetti span:nth-child(19) {
  left: 18%;
}

.confetti span:nth-child(20) {
  left: 20%;
}

.confetti span:nth-child(21) {
  left: 2%;
}

.confetti span:nth-child(22) {
  left: 4%;
}

.confetti span:nth-child(23) {
  left: 6%;
}

.confetti span:nth-child(24) {
  left: 8%;
}

.confetti span:nth-child(25) {
  left: 10%;
}

.confetti span:nth-child(26) {
  left: 12%;
}

.confetti span:nth-child(27) {
  left: 14%;
}

.confetti span:nth-child(28) {
  left: 16%;
}

.confetti span:nth-child(29) {
  left: 18%;
}

.confetti span:nth-child(30) {
  left: 20%;
}

.confetti span:nth-child(31) {
  right: 2%;
}

.confetti span:nth-child(32) {
  right: 4%;
}

.confetti span:nth-child(33) {
  right: 6%;
}

.confetti span:nth-child(34) {
  right: 8%;
}

.confetti span:nth-child(35) {
  right: 10%;
}

.confetti span:nth-child(36) {
  right: 12%;
}

.confetti span:nth-child(37) {
  right: 14%;
}

.confetti span:nth-child(38) {
  right: 16%;
}

.confetti span:nth-child(39) {
  right: 18%;
}

.confetti span:nth-child(40) {
  right: 20%;
}

.confetti span:nth-child(41) {
  right: 2%;
}

.confetti span:nth-child(42) {
  right: 4%;
}

.confetti span:nth-child(43) {
  right: 6%;
}

.confetti span:nth-child(44) {
  right: 8%;
}

.confetti span:nth-child(45) {
  right: 10%;
}

.confetti span:nth-child(46) {
  right: 12%;
}

.confetti span:nth-child(47) {
  right: 14%;
}

.confetti span:nth-child(48) {
  right: 16%;
}

.confetti span:nth-child(49) {
  right: 18%;
}

.confetti span:nth-child(50) {
  right: 20%;
}

.confetti span:nth-child(51) {
  right: 2%;
}

.confetti span:nth-child(52) {
  right: 4%;
}

.confetti span:nth-child(53) {
  right: 6%;
}

.confetti span:nth-child(54) {
  right: 8%;
}

.confetti span:nth-child(55) {
  right: 10%;
}

.confetti span:nth-child(56) {
  right: 12%;
}

.confetti span:nth-child(57) {
  right: 14%;
}

.confetti span:nth-child(58) {
  right: 16%;
}

.confetti span:nth-child(59) {
  right: 18%;
}

.confetti span:nth-child(60) {
  right: 20%;
}

.confetti span:nth-child(3n+1) {
  background: #68c5e1;
}

.confetti span:nth-child(3n+2) {
  background: #ffdd3c;
}

.confetti span:nth-child(3n+3) {
  background: #fff0ac;
}

.confetti span:nth-child(5n+1) {
  width: 10px;
  height: 10px;
}

.confetti span:nth-child(5n+2) {
  width: 9px;
  height: 9px;
}

.confetti span:nth-child(5n+3) {
  width: 8px;
  height: 8px;
}

.confetti span:nth-child(5n+4) {
  width: 7px;
  height: 7px;
}

.confetti span:nth-child(5n+5) {
  width: 6px;
  height: 6px;
}

.confetti span:nth-child(4n+1) {
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
}

.confetti span:nth-child(4n+2) {
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
}

.confetti span:nth-child(4n+3) {
  -webkit-animation-duration: 8s;
  animation-duration: 8s;
}

.confetti span:nth-child(4n+4) {
  -webkit-animation-duration: 14s;
  animation-duration: 14s;
}

.confetti span:nth-child(11n+1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.confetti span:nth-child(11n+2) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.confetti span:nth-child(11n+3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.confetti span:nth-child(11n+4) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.confetti span:nth-child(11n+5) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.confetti span:nth-child(11n+6) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.confetti span:nth-child(11n+7) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.confetti span:nth-child(11n+8) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.confetti span:nth-child(11n+9) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.confetti span:nth-child(11n+10) {
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}

.confetti span:nth-child(11n+11) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.confetti span:nth-child(7n+1) {
  -webkit-transform: rotateX(0) rotateY(0);
  transform: rotateX(0) rotateY(0);
}

.confetti span:nth-child(7n+2) {
  -webkit-transform: rotateX(0deg) rotateY(120deg);
  transform: rotateX(0deg) rotateY(120deg);
}

.confetti span:nth-child(7n+3) {
  -webkit-transform: rotateX(0deg) rotateY(240deg);
  transform: rotateX(0deg) rotateY(240deg);
}

.confetti span:nth-child(7n+4) {
  -webkit-transform: rotateX(120deg) rotateY(0deg);
  transform: rotateX(120deg) rotateY(0deg);
}

.confetti span:nth-child(7n+5) {
  -webkit-transform: rotateX(120deg) rotateY(120deg);
  transform: rotateX(120deg) rotateY(120deg);
}

.confetti span:nth-child(7n+6) {
  -webkit-transform: rotateX(120deg) rotateY(240deg);
  transform: rotateX(120deg) rotateY(240deg);
}

.confetti span:nth-child(7n+7) {
  -webkit-transform: rotateX(240deg) rotateY(0);
  transform: rotateX(240deg) rotateY(0);
}

@-webkit-keyframes confetti-anim-1 {
  0% {
    top: -10px;
    -webkit-transform: translateX(0) rotateX(0) rotateY(0);
    transform: translateX(0) rotateX(0) rotateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(50px) rotateX(360deg) rotateY(720deg);
    transform: translateX(50px) rotateX(360deg) rotateY(720deg);
  }
}
@keyframes confetti-anim-1 {
  0% {
    top: -10px;
    -webkit-transform: translateX(0) rotateX(0) rotateY(0);
    transform: translateX(0) rotateX(0) rotateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(50px) rotateX(360deg) rotateY(720deg);
    transform: translateX(50px) rotateX(360deg) rotateY(720deg);
  }
}
@-webkit-keyframes confetti-anim-2 {
  0% {
    top: -10%;
    -webkit-transform: translateX(0) rotateX(0) rotateY(0);
    transform: translateX(0) rotateX(0) rotateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(-50px) rotateX(360deg) rotateY(720deg);
    transform: translateX(-50px) rotateX(360deg) rotateY(720deg);
  }
}
@keyframes confetti-anim-2 {
  0% {
    top: -10%;
    -webkit-transform: translateX(0) rotateX(0) rotateY(0);
    transform: translateX(0) rotateX(0) rotateY(0);
  }
  100% {
    top: 100%;
    -webkit-transform: translateX(-50px) rotateX(360deg) rotateY(720deg);
    transform: translateX(-50px) rotateX(360deg) rotateY(720deg);
  }
}
/* ===========================================
スクワマン飛ぶアニメーション
=========================================== */
.jump-animation-left {
  position: absolute;
  z-index: 110;
  top: 920px;
  left: -40px;
  -webkit-transition: -webkit-transform 4s linear;
  transition: -webkit-transform 4s linear;
  transition: transform 4s linear;
  transition: transform 4s linear, -webkit-transform 4s linear;
}

.jump-animation-left.is-show {
  -webkit-transform: translate(204px, -1020px);
  transform: translate(204px, -1020px);
}

.jump-animation-left img {
  max-width: 32px;
  width: 100%;
}

.jump-animation-right-top {
  position: absolute;
  z-index: 110;
  top: 556px;
  right: -52px;
  -webkit-transition: 2.57s linear;
  transition: 2.57s linear;
}

.jump-animation-right-top.is-show {
  -webkit-transform: translate(-131px, -656px);
  transform: translate(-131px, -656px);
}

.jump-animation-right-top img {
  max-width: 42px;
  width: 100%;
}

.jump-animation-right-bottom {
  position: absolute;
  z-index: 110;
  top: 1148px;
  right: -50px;
  -webkit-transition: 4.9s linear;
  transition: 4.9s linear;
}

.jump-animation-right-bottom.is-show {
  -webkit-transform: translate(-292px, -1248px);
  transform: translate(-292px, -1248px);
}

.jump-animation-right-bottom img {
  max-width: 42px;
  width: 100%;
}

.jump-animation-left__trigger,
.jump-animation-right-top__trigger,
.jump-animation-right-bottom__trigger {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}

.jump-animation-left__trigger.is-show,
.jump-animation-right-top__trigger.is-show,
.jump-animation-right-bottom__trigger.is-show {
  display: block;
}

.jump-animation-left__trigger {
  top: 620px;
  left: 20px;
}

.jump-animation-right-top__trigger {
  top: 256px;
  right: 8px;
}

.jump-animation-right-bottom__trigger {
  top: 848px;
  right: 20px;
}

/* ===========================================
ナビゲーションメニュー
=========================================== */
.nav-button {
  position: fixed;
  z-index: 1000;
  top: 8px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #036eb8;
  cursor: pointer;
}

@media screen and (min-width: 1025px) {
  .nav-button {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
.nav-button__bars {
  margin-top: 20px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.nav-button__bar {
  width: 28px;
  height: 1px;
  background: #ffffff;
}

.nav-button__bar:nth-of-type(2) {
  margin-top: 6px;
}

.nav-button__bar:nth-of-type(3) {
  margin-top: 6px;
}

.nav-button__text {
  margin-top: 3px;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.34;
  letter-spacing: -0.2em;
}

.menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  overflow-y: scroll;
  top: 50vh;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 1200;
  background: #d3edfb;
  padding-top: 46px;
  padding-bottom: 24px;
  width: var(--menuWidthSp);
  max-height: 80vh;
  border-top-left-radius: 165px;
  border-top-right-radius: 165px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu::-webkit-scrollbar {
  display: none;
}

.menu.is-open {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .menu {
    visibility: visible;
    opacity: 1;
    top: 17%;
    left: min((100vw - var(--mainWidth)) / 2 + var(--mainWidth) + (100vw - var(--mainWidth)) / 4 - var(--menuWidthPc) / 2, (100vw - var(--mainWidth)) / 2 + var(--mainWidth) + 100px);
    -webkit-transform: translate(-5px, 0);
    transform: translate(-5px, 0);
    width: var(--menuWidthPc);
  }
}
.menu__heading {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0;
}

.menu__heading-en {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu__heading-ja {
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu__contents {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 132px);
  grid-template-rows: repeat(4, 105px);
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-content {
  position: relative;
  background: #ffffff;
}

.menu-content__link {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.menu-content__link::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13px;
  background: #61b7d9;
}

.menu-content__link::after {
  position: absolute;
  z-index: 10;
  content: "";
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 5px;
  background: url(../img/menu-arrow.webp) no-repeat center center/contain;
}

.menu-content1 .menu-content__link {
  padding-top: 6px;
}

.menu-content1 .menu-content__title-el1 {
  color: #61b7d9;
  padding-left: 27px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.18em;
}

.menu-content1 .menu-content__title-el2 {
  margin-top: 4px;
  padding-left: 7px;
}

.menu-content1 .menu-content__deco {
  position: absolute;
  bottom: 7px;
  right: 6px;
}

.menu-content1 .menu-content__deco img {
  max-width: 57px;
  width: 100%;
}

.menu-content2 .menu-content__link {
  padding-top: 12px;
  padding-left: 21px;
}

.menu-content2 .menu-content__title-el1 {
  letter-spacing: -0.2em;
}

.menu-content2 .menu-content__title-el1 .fz-large {
  font-size: 39px;
  font-weight: inherit;
}

.menu-content2 .menu-content__deco {
  position: absolute;
  top: 3px;
  right: 9px;
}

.menu-content2 .menu-content__deco img {
  max-width: 58px;
  width: 100%;
}

.menu-content3 .menu-content__link {
  padding-top: 14px;
  padding-left: 8px;
  padding-right: 7px;
}

.menu-content3 .menu-content__title-el1 {
  text-align: right;
  color: #61b7d9;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.09em;
}

.menu-content3 .menu-content__title-el-group {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-content3 .menu-content__title-el2 {
  letter-spacing: 0;
  font-size: 37px;
}

.menu-content3 .menu-content__title-el3 {
  font-size: 13px;
  font-weight: 900;
}

.menu-content4 .menu-content__link {
  padding-top: 8px;
  padding-left: 24px;
}

.menu-content4 .menu-content__title-el1 {
  font-size: 13px;
  font-weight: 500;
  color: #61b7d9;
}

.menu-content4 .menu-content__deco {
  position: absolute;
  top: 33px;
  right: 7px;
}

.menu-content4 .menu-content__deco img {
  max-width: 36px;
  width: 100%;
}

.menu-content5 .menu-content__link {
  padding-top: 8px;
}

.menu-content5 .menu-content__title-el1 {
  padding-left: 29px;
  color: #61b7d9;
  font-size: 14px;
  font-weight: 500;
}

.menu-content5 .menu-content__title-el2 {
  margin-top: 2px;
  padding-left: 7px;
  font-size: 29px;
}

.menu-content5 .menu-content__deco {
  position: absolute;
  top: 33px;
  right: 3px;
}

.menu-content5 .menu-content__deco img {
  max-width: 34px;
  width: 100%;
}

.menu-content6 .menu-content__link {
  padding-top: 4px;
}

.menu-content6 .menu-content__title-el1 {
  padding-left: 8px;
}

.menu-content6 .menu-content__title-el1 .fz-large {
  font-size: 44px;
  font-weight: inherit;
  letter-spacing: -0.4em;
}

.menu-content6 .menu-content__title-el1 .fz-medium {
  font-size: 31px;
  font-weight: inherit;
  margin-left: 12px;
}

.menu-content6 .menu-content__title-el2 {
  padding-left: 18px;
  color: #61b7d9;
  font-size: 29px;
  font-weight: 700;
}

.menu-content6 .menu-content__deco {
  position: absolute;
  top: 48px;
  right: 8px;
}

.menu-content6 .menu-content__deco img {
  max-width: 46px;
  width: 100%;
}

.menu-content7 .menu-content__link {
  padding-top: 16px;
  padding-left: 11px;
}

.menu-content7 .menu-content__title-el1 {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-content7 .menu-content__title-el2 {
  margin-top: 3px;
  color: #61b7d9;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.13em;
}

.menu-content7 .menu-content__deco {
  position: absolute;
  top: 5px;
  right: 7px;
}

.menu-content7 .menu-content__deco img {
  max-width: 45px;
  width: 100%;
}

.menu-content8 .menu-content__link {
  padding-top: 16px;
  padding-left: 10px;
}

.menu-content8 .menu-content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: last baseline;
  -ms-flex-align: last baseline;
  align-items: last baseline;
}

.menu-content8 .menu-content__title-el1 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.menu-content8 .menu-content__title-el2 {
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
}

.menu-content8 .menu-content__deco {
  position: absolute;
  top: 9px;
  right: 9px;
}

.menu-content8 .menu-content__deco img {
  max-width: 62px;
  width: 100%;
}

.menu-content__num {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 23px;
  height: 23px;
  background: url(../img/menu-num-bg.webp) no-repeat center center/contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  pointer-events: none;
}

.menu-content__title-el {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -0.1em;
}

.menu-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  backdrop-filter: blur(6px);
  background: rgba(211, 237, 251, 0.6);
  z-index: 1100;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

/* ===========================================
ヘッダー
=========================================== */
.header {
  position: relative;
  z-index: 100;
  background: #61b7d9;
  height: var(--header-height);
}

.header__inner {
  padding-left: 10px;
  padding-right: 10px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.header__logo {
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding-top: 13px;
  padding-bottom: 7px;
}

.header__logo img {
  max-width: 170px;
  width: 100%;
}

/* ===========================================
ファーストビュー
=========================================== */
.fv {
  position: relative;
  margin-top: -45px;
}

.fv__image img {
  width: 100%;
}

.fv__logo {
  position: absolute;
  top: 124px;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translateX(calc(-50% + 4px));
  transform: translateX(calc(-50% + 4px));
}

.fv__logo img {
  max-width: 209px;
  width: 100%;
}

.fv__text {
  position: absolute;
  top: 318px;
  left: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.fv__text-line {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.39;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.fv__text-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255, 255, 255);
  -webkit-filter: blur(6px);
  filter: blur(6px);
  z-index: -1;
  border-radius: 12px;
}

.fv__text-line:nth-of-type(2)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 6px;
  width: 62px;
  height: 5px;
  background: url(../img/fv-text-underline.webp) no-repeat center center/contain;
}

.fv__deco {
  position: absolute;
  bottom: -69px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 111px));
  transform: translateX(calc(-50% - 111px));
}

.fv__deco img {
  max-width: 58px;
  width: 100%;
}

/* ===========================================
メッセージ
=========================================== */
.message {
  position: relative;
  overflow-x: hidden;
  margin-top: 24px;
  padding-top: 21.0666666667%;
  padding-bottom: 17.3333333333%;
}

.message::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #dcf0fc;
}

.message__heading {
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.02em;
}

.message__container {
  margin-top: 17px;
}

.message__text-wrapper {
  text-align: center;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

.message__text {
  font-weight: inherit;
}

.message__text + .message__text {
  margin-top: 22px;
}

.message__lineups {
  margin-top: 24px;
}

.message__lineups-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
}

.message__lineups-list {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: infinity-scroll 10s infinite linear;
  animation: infinity-scroll 10s infinite linear;
}

.message__lineups__item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -40px;
}

.message__lineups__item img {
  width: 121px;
}

@-webkit-keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/* ===========================================
アバウト
=========================================== */
.about {
  position: relative;
  padding-top: 64px;
  padding-bottom: 48px;
}

.about__inner {
  padding-left: 16px;
  padding-right: 16px;
}

.about__answer {
  margin-top: 27px;
  position: relative;
  background: url(../img/about-answer-bg.webp) no-repeat center center/contain;
  -webkit-transform: translateY(40px) scale(0.8);
  transform: translateY(40px) scale(0.8);
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about__answer.is-show {
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
  opacity: 1;
}

.about__answer-title {
  position: absolute;
  top: 13px;
  left: 50%;
  -webkit-transform: translateX(-140px) rotate(-16deg);
  transform: translateX(-140px) rotate(-16deg);
  padding-left: 8px;
  padding-right: 8px;
  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;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #61b7d9;
  color: #ffffff;
  font-size: 17px;
}

.about__answer-text {
  padding-top: 50px;
  padding-bottom: 46px;
  text-align: center;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.48;
  letter-spacing: 0;
}

.about__details {
  margin-top: 28px;
  text-align: center;
}

.about__details-content {
  margin-top: 23px;
}

.js-accordion-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.about__text {
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  color: #231815;
  line-height: 2;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.composition__title {
  margin-top: 25px;
  font-family: "Noto Sans JP", sans-serif;
  color: #595757;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0.075em;
  font-weight: 700;
}

.composition__figure-wrapper {
  position: relative;
  margin-top: 40px;
}

.composition__figure img {
  max-width: 166px;
  width: 100%;
}

.composition__text {
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.18;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.composition__text:nth-of-type(1) {
  top: -22px;
  left: 50%;
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}

.composition__text:nth-of-type(2) {
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(57px);
  transform: translateX(57px);
}

.composition__text:nth-of-type(3) {
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(88px);
  transform: translateX(88px);
}

.composition__text:nth-of-type(4) {
  top: 167px;
  left: 50%;
  -webkit-transform: translateX(-29px);
  transform: translateX(-29px);
}

.composition__text:nth-of-type(5) {
  top: 58px;
  left: 50%;
  -webkit-transform: translateX(calc(-1 * clamp(140px, 18.182vw + 81.818px, 150px)));
  transform: translateX(calc(-1 * clamp(140px, 18.182vw + 81.818px, 150px)));
}

.composition__text.highlight {
  text-align: right;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #e9546b;
  font-weight: 700;
}

.about__notice {
  margin-top: 36px;
  text-align: right;
  font-size: 10px;
  color: #231815;
  font-family: "Zen Maru Gothic", sans-serif;
}

.about__button-wrapper {
  margin-top: 17px;
}

.merit {
  position: relative;
  margin-top: 43px;
  padding-top: 49px;
  padding-bottom: 28px;
  overflow-x: hidden;
  height: 500px;
}

.merit::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff2ad;
}

.merit__title {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.merit__title::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 222px;
  height: 60px;
  background: url(../img/merit-title-deco.webp) no-repeat center center/contain;
}

.merit__list {
  position: relative;
}

.merit__item {
  position: absolute;
  width: 150px;
  background: url(../img/merit-comment-bg.webp) no-repeat center center/contain;
}

.merit__item:nth-of-type(1) {
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 81px));
  transform: translateX(calc(-50% - 81px));
}

.merit__item:nth-of-type(1) .merit__item-box {
  padding-bottom: 52px;
}

.merit__item:nth-of-type(1) .merit__item-text:nth-of-type(2) {
  margin-top: 12px;
}

.merit__item:nth-of-type(1) .about__merit__image {
  top: 2px;
  right: -16px;
}

.merit__item:nth-of-type(1) .about__merit__image img {
  max-width: 62px;
  width: 100%;
}

.merit__item:nth-of-type(2) {
  top: 23px;
  right: 50%;
  -webkit-transform: translateX(calc(50% + 84px));
  transform: translateX(calc(50% + 84px));
}

.merit__item:nth-of-type(2) .about__merit__image {
  top: -6px;
  right: -13px;
}

.merit__item:nth-of-type(2) .about__merit__image img {
  max-width: 68px;
  width: 100%;
}

.merit__item:nth-of-type(3) {
  left: 50%;
  top: 181px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.merit__item:nth-of-type(3) .about__merit__image {
  top: 14px;
  right: -22px;
}

.merit__item:nth-of-type(3) .about__merit__image img {
  max-width: 62px;
  width: 100%;
}

.merit__item-box {
  position: relative;
  padding-top: 48px;
  padding-bottom: 28px;
}

.merit__item-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.merit__item-text:nth-of-type(1) {
  text-align: center;
  font-size: 15px;
  color: #61b7d9;
  font-weight: 700;
  line-height: 1.27;
  letter-spacing: 0.08em;
}

.merit__item-text:nth-of-type(2) {
  text-align: center;
  font-size: 28px;
  color: #036eb8;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.1em;
}

.about__merit__image {
  position: absolute;
}

.about__deco1 {
  position: absolute;
  top: 145px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 123px));
  transform: translateX(calc(-50% - 123px));
}

.about__deco1 img {
  max-width: 34px;
  width: 100%;
}

.about__deco2 {
  position: absolute;
  top: 285px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 193px));
  transform: translateX(calc(-50% + 193px));
}

.about__deco2 img {
  max-width: 61px;
  width: 100%;
}

/* ===========================================
プロセス
=========================================== */
.process {
  position: relative;
  padding-top: 87px;
  padding-bottom: 97px;
  background: url(../img/process-bg.webp) no-repeat center top/100% 100%;
}

.process__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.process__text {
  margin-top: 30px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.process__movie-wrapper {
  margin-top: 39px;
  background: url(../img/prosecc-movie-bg.webp) no-repeat center center/contain;
  width: 100%;
  padding-top: 0;
  padding-bottom: 48px;
}

.process__movie-title {
  background: url(../img/process-movie-title.webp) no-repeat center center/128px auto;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.31;
  letter-spacing: 0.18em;
}

.process__movie {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.process__movie iframe {
  width: 83.2835820896%;
  aspect-ratio: 16/9;
  outline: 4px solid #ffdd3c;
}

.process__deco1 {
  position: absolute;
  top: 180px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 118px));
  transform: translateX(calc(-50% - 118px));
}

.process__deco1 img {
  max-width: 89px;
  width: 100%;
}

.process__deco2 {
  position: absolute;
  top: 149px;
  right: 35px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 185px));
  transform: translateX(calc(-50% + 185px));
}

.process__deco2 img {
  max-width: 69px;
  width: 100%;
}

/* ===========================================
活動
=========================================== */
.activity {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
}

.activity__heading--big {
  letter-spacing: 0.1em;
}

.activity__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.activity__text {
  margin-top: 30px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.1em;
}

.activity__sdg-icons {
  margin-top: 29px;
  display: grid;
  grid-template-columns: repeat(3, 91px);
  gap: 14px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.activity__deco1 {
  position: absolute;
  top: 162px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 122px));
  transform: translateX(calc(-50% - 122px));
}

.activity__deco1 img {
  max-width: 50px;
  width: 100%;
}

.activity__deco2 {
  position: absolute;
  top: 102px;
  right: 47px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 158px));
  transform: translateX(calc(-50% + 158px));
}

.activity__deco2 img {
  max-width: 35px;
  width: 100%;
}

/* ===========================================
活用法
=========================================== */
.use {
  position: relative;
  padding-top: 86px;
  padding-bottom: 100px;
  background: url(../img/use-bg.webp) no-repeat center top/100% 100%;
}

.use__heading--small {
  letter-spacing: 0;
}

.use__heading--big {
  letter-spacing: 0;
}

.use__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.use__text {
  margin-top: 30px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.1em;
}

.use__main-image {
  margin-top: 24px;
  text-align: center;
  -webkit-transform: translateX(-4px);
  transform: translateX(-4px);
}

.use__main-image img {
  max-width: 295px;
  width: 100%;
}

.use__content {
  margin-top: 45px;
}

.use__content.is-open .use-hidden-items {
  margin-top: 71px;
}

.use__display-items {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 68px;
}

.use-item__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}

.use-item__title-wrapper::before,
.use-item__title-wrapper::after {
  content: "";
  width: 66px;
  height: 47px;
}

.use-item__title-wrapper::before {
  background: url(../img/use-item-title-left.webp) no-repeat center center/contain;
}

.use-item__title-wrapper::after {
  background: url(../img/use-item-title-right.webp) no-repeat center center/contain;
}

.use-item__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.use-item__title .is-big {
  font-size: 43px;
  font-weight: inherit;
}

.use-item__title .is-small {
  font-size: 20px;
  font-weight: inherit;
}

.use-item__cards {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 300px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 29px;
}

.use-item__card {
  position: relative;
  background: #ffffff;
  padding-top: 18px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 20px;
  border-radius: 15px;
}

.use-item__card.use-item-face1 .use-item__image {
  bottom: 0;
  right: 13px;
}

.use-item__card.use-item-face1 .use-item__image img {
  max-width: 116px;
  width: 100%;
}

.use-item__card.use-item-face2 {
  padding-left: 158px;
}

.use-item__card.use-item-face2 .use-item__image {
  bottom: 0;
  left: 22px;
}

.use-item__card.use-item-face2 .use-item__image img {
  max-width: 130px;
  width: 100%;
}

.use-item__card.use-item-hair1 {
  padding-bottom: 17px;
}

.use-item__card.use-item-hair1 .use-item__image {
  bottom: 0;
  right: 19px;
}

.use-item__card.use-item-hair1 .use-item__image img {
  max-width: 120px;
  width: 100%;
}

.use-item__card.use-item-hair2 {
  padding-left: 139px;
}

.use-item__card.use-item-hair2 .use-item__card-head {
  letter-spacing: -0.05em;
}

.use-item__card.use-item-hair2 .use-item__image {
  bottom: 0;
  left: 18px;
}

.use-item__card.use-item-hair2 .use-item__image img {
  max-width: 118px;
  width: 100%;
}

.use-item__card.use-item-body1 {
  padding-top: 21px;
}

.use-item__card.use-item-body1 .use-item__text {
  line-height: 1.6;
}

.use-item__card.use-item-body1 .use-item__image {
  bottom: 54px;
  right: 18px;
}

.use-item__card.use-item-body1 .use-item__image img {
  max-width: 112px;
  width: 100%;
}

.use-item__card.use-item-body2 {
  padding-top: 15px;
  padding-left: 146px;
}

.use-item__card.use-item-body2 .use-item__card-head {
  letter-spacing: -0.05em;
}

.use-item__card.use-item-body2 .use-item__image {
  bottom: 5px;
  left: 0px;
}

.use-item__card.use-item-body2 .use-item__image img {
  max-width: 131px;
  width: 100%;
}

.use-item__card.use-item-other1 {
  padding-bottom: 15px;
}

.use-item__card.use-item-other1 .use-item__card-head {
  letter-spacing: 0;
}

.use-item__card.use-item-other1 .use-item__text {
  margin-top: 11px;
  line-height: 1.6;
}

.use-item__card.use-item-other1 .use-item__image {
  bottom: 8px;
  right: 20px;
}

.use-item__card.use-item-other1 .use-item__image img {
  max-width: 80px;
  width: 100%;
}

.use-item__card-head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.39;
  letter-spacing: 0.03em;
}

.use-item__text {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 500;
  color: #231815;
  line-height: 1.24;
  letter-spacing: -0.1em;
}

.use-item__image {
  position: absolute;
}

.use-item__notice {
  position: absolute;
  bottom: -26px;
  right: 0;
  text-align: right;
  font-size: 10px;
  color: #231815;
  font-family: "Zen Maru Gothic", sans-serif;
}

.use__more-button-wrapper {
  margin-top: 49px;
  text-align: center;
}

.use-hidden-items {
  margin-top: 0px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 68px;
}

.use__close-button-wrapper {
  margin-top: -18px;
}

.use__deco1 {
  position: absolute;
  top: 153px;
  right: 38px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 180px));
  transform: translateX(calc(-50% + 180px));
}

.use__deco1 img {
  max-width: 58px;
  width: 100%;
}

/* ===========================================
インタビュー
=========================================== */
.interview {
  position: relative;
  padding-top: 55px;
  padding-bottom: 90px;
}

.interview__inner {
  padding-left: 12%;
  padding-right: 12%;
}

.interview__text {
  margin-top: 32px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.interview__movie-wrapper {
  margin-top: 48px;
}

.interview__movie-title {
  background: url(../img/process-movie-title.webp) no-repeat center center/125px auto;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.31;
  letter-spacing: 0.18em;
}

.interview__movie-boxes {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 47px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.interview__movie {
  text-align: center;
}

.interview__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
  outline: 4px solid #ffdd3c;
}

.movie__excerpt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.39;
  letter-spacing: -0.02em;
}

.interview__notice {
  margin-top: 20px;
  text-align: right;
  font-size: 10px;
  color: #231815;
  font-family: "Zen Maru Gothic", sans-serif;
}

.interview__deco1 {
  position: absolute;
  top: 159px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 98px));
  transform: translateX(calc(-50% - 98px));
}

.interview__deco1 img {
  max-width: 43px;
  width: 100%;
}

.interview__deco2 {
  position: absolute;
  top: 212px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 132px));
  transform: translateX(calc(-50% - 132px));
}

.interview__deco2 img {
  max-width: 43px;
  width: 100%;
}

.interview__deco3 {
  position: absolute;
  top: 158px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 145px));
  transform: translateX(calc(-50% + 145px));
}

.interview__deco3 img {
  max-width: 54px;
  width: 100%;
}

.interview__deco4 {
  position: absolute;
  top: 208px;
  right: 50%;
  -webkit-transform: translateX(calc(-50% + 183px));
  transform: translateX(calc(-50% + 183px));
}

.interview__deco4 img {
  max-width: 49px;
  width: 100%;
}

/* ===========================================
歴史
=========================================== */
.history {
  position: relative;
  padding-top: 94px;
  padding-bottom: 112px;
  background: url(../img/history-bg.webp) no-repeat center top/100% 100%;
}

.history__heading--big {
  letter-spacing: 0;
}

.history__inner {
  padding-left: clamp(2px, 50.909vw - 160.909px, 30px);
  padding-right: clamp(2px, 50.909vw - 160.909px, 30px);
}

.history__area {
  margin-top: 35px;
  background: -webkit-gradient(linear, left bottom, left top, from(#61b7d9), to(#036eb8));
  background: linear-gradient(to top, #61b7d9, #036eb8);
  display: grid;
  grid-template-columns: 1fr 45px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-radius: 10px;
  height: 530px;
}

.history__content {
  padding-top: 52px;
  padding-bottom: 35px;
  background: #ffffff;
  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;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.history__content::-webkit-scrollbar {
  display: none;
}

.history__content::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 1px));
  transform: translateX(calc(-50% + 1px));
  width: 3px;
  height: calc(0.85 * var(--bar-height));
  background-color: #61b7d9;
}

.history-block {
  position: relative;
  z-index: 10;
}

.history-block--1 {
  padding-top: 55px;
  padding-bottom: 48px;
  width: 251px;
  background: url(../img/history-block-bg1.webp) no-repeat center top/100% auto;
  -webkit-transform: translateX(7px);
  transform: translateX(7px);
}

.history-block--1 .history-block__title {
  position: relative;
  z-index: 10;
}

.history-block--1 .history-block__title::before {
  position: absolute;
  content: "";
  top: 35px;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background-color: #036eb8;
  -webkit-transform: translateX(-38px) rotate(56deg);
  transform: translateX(-38px) rotate(56deg);
}

.history-block--1 .history-block__title::after {
  position: absolute;
  content: "";
  top: 35px;
  right: 50%;
  width: 20px;
  height: 1.5px;
  background-color: #036eb8;
  -webkit-transform: translate(38px) rotate(-56deg);
  transform: translate(38px) rotate(-56deg);
}

.history-block--1 .history-block__text {
  margin-top: 8px;
  color: #231815;
  text-align: center;
  font-weight: 400;
}

.history-block--1 .history-block__year {
  top: -33px;
  left: 0;
}

.history-block--2 {
  margin-top: 64px;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 134px;
  background: url(../img/history-block-bg2.webp) no-repeat center top/contain;
}

.history-block--2 .history-block__year {
  top: -44px;
  left: -51px;
}

.history-block--3 {
  margin-top: 75px;
  padding-top: 26px;
  padding-bottom: 24px;
  width: 134px;
  background: url(../img/history-block-bg3.webp) no-repeat center top/contain;
}

.history-block--3 .history-block__year {
  top: -32px;
  left: -51px;
}

.history-block--4 {
  margin-top: 75px;
  padding-top: 20px;
  padding-bottom: 24px;
  width: 134px;
  background: url(../img/history-block-bg4.webp) no-repeat center top/contain;
}

.history-block--4 .history-block__year {
  top: -31px;
  left: -51px;
}

.history-block--5 {
  margin-top: 74px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 9px;
  padding-bottom: 7px;
  background: #ffffff;
  width: 160px;
}

.history-block--5 .history-block__title {
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.07em;
}

.history-block--5 .history-block__text {
  letter-spacing: 0.1em;
}

.history-block--5 .history-block__year {
  max-width: 80px;
  top: -20px;
  left: -38px;
}

.history-block--6 {
  margin-top: 53px;
  padding-left: 16px;
  padding-top: 10px;
  padding-bottom: 7px;
  background: #ffffff;
  width: 160px;
}

.history-block--6 .history-block__title {
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  letter-spacing: -0.05em;
}

.history-block--6 .history-block__text {
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.history-block--6 .history-block__year {
  max-width: 80px;
  top: -19px;
  left: -38px;
}

.history-block--7 {
  margin-top: 75px;
  padding-top: 29px;
  padding-bottom: 25px;
  width: 148px;
  background: url(../img/history-block-bg7.webp) no-repeat center top/contain;
}

.history-block--7 .history-block__year {
  top: -34px;
  left: -44px;
}

.history-block--8 {
  margin-top: 73px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: #ffffff;
  width: 160px;
  white-space: nowrap;
}

.history-block--8 .history-block__title {
  font-size: 16px;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.05em;
}

.history-block--8 .history-block__text {
  margin-top: 2px;
  letter-spacing: 0.1em;
}

.history-block--8 .history-block__year {
  max-width: 80px;
  top: -26px;
  left: -38px;
}

.history-block--9 {
  margin-top: 77px;
  padding-top: 24px;
  padding-bottom: 25px;
  width: 145px;
  background: url(../img/history-block-bg9.webp) no-repeat center top/contain;
}

.history-block--9 .history-block__year {
  top: -35px;
  left: -46px;
}

.history-block--10 {
  margin-top: 80px;
  padding-top: 25px;
  padding-bottom: 27px;
  width: 152px;
  background: url(../img/history-block-bg10.webp) no-repeat center top/contain;
}

.history-block--10 .history-block__year {
  top: -35px;
  left: -42px;
}

.history-block--11 {
  margin-top: 79px;
  padding-top: 20px;
  padding-bottom: 16px;
  width: 158px;
  background: url(../img/history-block-bg11.webp) no-repeat center top/contain;
}

.history-block--11 .history-block__year {
  top: -30px;
  left: -39px;
}

.history-block--12 {
  margin-top: 81px;
  padding-top: 24px;
  padding-bottom: 20px;
  width: 167px;
  background: url(../img/history-block-bg12.webp) no-repeat center top/contain;
}

.history-block--12 .history-block__year {
  top: -35px;
  left: -35px;
}

.history-block--13 {
  margin-top: 77px;
  padding-top: 56px;
  padding-bottom: 52px;
  width: 198px;
  background: url(../img/history-block-bg13.webp) no-repeat center top/contain;
}

.history-block--13 .history-block__title {
  color: #e95383;
  letter-spacing: -0.06em;
}

.history-block--13 .history-block__title .size-medium {
  font-weight: inherit;
  font-size: 23px;
  letter-spacing: -0.15em;
}

.history-block--13 .history-block__title .size-large {
  letter-spacing: 0;
}

.history-block--13 .history-block__title .size-xlarge {
  font-weight: inherit;
  font-size: 54px;
  line-height: 0.32;
}

.history-block--13 .history-block__title .size-xlarge span:first-child {
  font-weight: inherit;
  letter-spacing: -0.4em;
}

.history-block--13 .history-block__title .size-xlarge span:last-child {
  font-weight: inherit;
  letter-spacing: -0.2em;
}

.history-block--13 .history-block__title .size-large {
  font-weight: inherit;
  font-size: 35px;
}

.history-block--13 .history-block__year {
  top: -35px;
  left: -19px;
}

.history-block__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.history-block__text {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.69;
}

.history-block__year {
  position: absolute;
  max-width: 95px;
  width: 100%;
}

.history-block__crown {
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 36px;
  width: 100%;
}

.history-block__stars1 {
  position: absolute;
  top: -20px;
  right: 46px;
  max-width: 42px;
  width: 100%;
}

.history-block__item1 {
  position: absolute;
  top: -60px;
  right: -58px;
  max-width: 180px;
  width: 100%;
}

.history-block__yellow-cream {
  position: absolute;
  top: -76px;
  left: -94px;
  width: 207px;
}

.history-block__item2 {
  position: absolute;
  top: -8px;
  right: -50px;
  width: 99px;
}

.history-block__woman1 {
  position: absolute;
  top: 16px;
  left: -46px;
  width: 62px;
}

.history-block__water {
  position: absolute;
  top: 74px;
  left: 3px;
  width: 31px;
}

.history-block__item3 {
  position: absolute;
  top: -27px;
  right: -45px;
  width: 75px;
}

.history-block__sleep {
  position: absolute;
  top: 21px;
  left: -53px;
  width: 91px;
}

.history-block__item4 {
  position: absolute;
  top: -27px;
  right: -45px;
  width: 83px;
}

.history-block__comment {
  position: absolute;
  top: 25px;
  left: -33px;
  width: 50px;
}

.history-block__item5 {
  position: absolute;
  top: -9px;
  right: -43px;
  width: 80px;
}

.history-block__drop {
  position: absolute;
  top: 33px;
  right: 15px;
  width: 24px;
}

.history-block__squaman {
  position: absolute;
  top: 27px;
  left: -48px;
  width: 75px;
}

.history-block__item6 {
  position: absolute;
  top: -40px;
  right: -53px;
  width: 92px;
}

.history-block__woman2 {
  position: absolute;
  top: 9px;
  left: -35px;
  width: 78px;
}

.history-block__white-cream {
  position: absolute;
  top: 48px;
  right: -35px;
  width: 46px;
}

.history-block__item7 {
  position: absolute;
  top: -29px;
  right: -59px;
  width: 104px;
}

.history-block__woman3 {
  position: absolute;
  top: 17px;
  left: -27px;
  width: 61px;
}

.history-block__item8 {
  position: absolute;
  top: -19px;
  right: -47px;
  width: 81px;
}

.history-block__item9 {
  position: absolute;
  top: -40px;
  right: -83px;
  width: 153px;
}

.history-block__stars2 {
  position: absolute;
  top: 165px;
  left: 0px;
  width: 46px;
}

.history-block__stars3 {
  position: absolute;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  top: -16px;
  right: -5px;
  width: 46px;
}

.history-block__dolphin {
  position: absolute;
  top: 19px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 3px));
  transform: translateX(calc(-50% + 3px));
  width: 72px;
}

.history__thanks-message {
  margin-top: 11px;
  text-align: center;
  padding-left: 11px;
  line-height: 1.85;
  letter-spacing: -0.04em;
}

.history__scrollable {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.history__scrollable-text {
  color: #ffffff;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  line-height: 1.66;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.history__scrollable-image {
  max-width: 19px;
  width: 100%;
}

.history__deco1 {
  position: absolute;
  top: 65px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 109px));
  transform: translateX(calc(-50% - 109px));
}

.history__deco1 img {
  max-width: 47px;
  width: 100%;
}

.history__deco2 {
  position: absolute;
  top: 202px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 107px));
  transform: translateX(calc(-50% - 107px));
}

.history__deco2 img {
  max-width: 59px;
  width: 100%;
}

.history__deco3 {
  position: absolute;
  top: 117px;
  right: 50%;
  -webkit-transform: translateX(calc(50% + 106px));
  transform: translateX(calc(50% + 106px));
}

.history__deco3 img {
  max-width: 82px;
  width: 100%;
}

/* ===========================================
ランキング
=========================================== */
.ranking {
  position: relative;
  padding-top: 21.0666666667%;
  padding-bottom: 12.8%;
  background: url(../img/ranking-bg.webp) no-repeat center top/100% 100%;
}

.ranking__inner {
  padding-left: clamp(2px, 50.909vw - 160.909px, 30px);
  padding-right: clamp(2px, 50.909vw - 160.909px, 30px);
}

.ranking__heading--big {
  letter-spacing: 0;
}

.ranking__text {
  margin-top: 32px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.ranking__cards {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ranking-card {
  padding-top: 168px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  width: 100%;
  max-width: 315px;
}

.ranking-card:nth-of-type(1) {
  padding-top: 168px;
  background: url(../img/ranking-card-bg3.webp) no-repeat center top/100% 100%;
}

.ranking-card:nth-of-type(1) .ranking-card__image img {
  max-width: 122px;
}

.ranking-card:nth-of-type(1) .ranking-review-box:nth-of-type(1) .ranking-review-box__image {
  top: -6px;
  right: 11px;
  width: 56px;
}

.ranking-card:nth-of-type(1) .ranking-review-box:nth-of-type(1) .ranking-review-box__name {
  margin-top: 3px;
}

.ranking-card:nth-of-type(1) .ranking-review-box:nth-of-type(2) .ranking-review-box__image {
  top: 10px;
  right: 12px;
  width: 54px;
}

.ranking-card:nth-of-type(1) .ranking-review-box:nth-of-type(2) .ranking-review-box__name {
  margin-top: 8px;
}

.ranking-card:nth-of-type(2) {
  padding-top: 175px;
  background: url(../img/ranking-card-bg2.webp) no-repeat center top/100% 100%;
}

.ranking-card:nth-of-type(2) .ranking-card__image img {
  max-width: 168px;
  margin-top: 13px;
}

.ranking-card:nth-of-type(2) .ranking-card__amount-head {
  margin-top: -7px;
}

.ranking-card:nth-of-type(2) .ranking-review-box:nth-of-type(1) .ranking-review-box__image {
  top: -4px;
  right: 12px;
  width: 55px;
}

.ranking-card:nth-of-type(2) .ranking-review-box:nth-of-type(2) {
  margin-top: 15px;
}

.ranking-card:nth-of-type(2) .ranking-review-box:nth-of-type(2) .ranking-review-box__image {
  top: -4px;
  right: 4px;
  width: 63px;
}

.ranking-card:nth-of-type(3) {
  padding-top: 175px;
  background: url(../img/ranking-card-bg1.webp) no-repeat center top/100% 100%;
}

.ranking-card:nth-of-type(3) .ranking-card__image img {
  max-width: 170px;
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}

.ranking-card:nth-of-type(3) .ranking-card__amount-head {
  margin-top: -24px;
}

.ranking-card:nth-of-type(3) .ranking-review-box:nth-of-type(1) .ranking-review-box__image {
  top: -20px;
  right: 12px;
  width: 54px;
}

.ranking-card:nth-of-type(3) .ranking-review-box:nth-of-type(2) .ranking-review-box__image {
  top: 0;
  right: 12px;
  width: 54px;
}

.ranking-card__content {
  padding-top: 10px;
  padding-bottom: 7px;
  position: relative;
  background: #ffffff;
  width: 100%;
  border-radius: 9.4px;
}

.ranking-card__title {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 240px;
}

.ranking-card__item-name-sub {
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 17px;
  color: #61b7d9;
  font-weight: 700;
  letter-spacing: -0.1em;
}

.ranking-card__image {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 28px;
  background: url(../img/ranking-item-bg.webp) no-repeat center center/contain;
}

.ranking-card__image img {
  max-width: 122px;
  width: 100%;
}

.ranking-card__amount-head {
  margin-top: -20px;
  text-align: center;
}

.ranking-card__amount-head img {
  width: 142px;
}

.ranking-card__amount {
  margin-top: 4px;
  text-align: center;
}

.ranking-card__amount img {
  width: 248px;
}

.ranking-card__note {
  margin-top: 4px;
  padding-left: 16px;
}

.ranking-card__note img {
  width: 234px;
}

.ranking-card__review-head {
  padding-top: 8px;
  padding-bottom: 16px;
  padding-left: 8px;
  padding-right: 8px;
  width: 140px;
  width: 140px;
  color: #e95383;
  font-weight: 500;
  font-size: 15px;
  font-size: 15px;
  line-height: 1.28;
  letter-spacing: -0.06em;
  background: url(../img/ranking-review-head-bg.webp) no-repeat center center/contain;
  margin-top: 16px;
  margin-inline: auto;
  text-align: center;
}

.ranking-review-box {
  position: relative;
  margin-top: 8px;
  padding-left: 10px;
  padding-right: 12px;
}

.ranking-review-box:nth-of-type(1) .ranking-review-box__text::after {
  left: 112px;
}

.ranking-review-box:nth-of-type(2) {
  margin-top: 7px;
}

.ranking-review-box:nth-of-type(2) .ranking-review-box__text::after {
  left: 96px;
}

.ranking-review-box__text {
  position: relative;
  font-family: "RocknRoll One", sans-serif;
  font-size: 13px;
  line-height: 1.47;
  letter-spacing: -0.02em;
  color: #595757;
  background: #fad7d7;
  width: 227px;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-left: 32px;
  border-radius: 100px;
}

.ranking-review-box__text::after {
  content: "";
  position: absolute;
  bottom: 1px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  width: 24px;
  height: 15px;
  background: url(../img/ranking-review-text-bg.webp) no-repeat center center/contain;
}

.ranking-review-box__image {
  position: absolute;
}

.ranking-review-box__name {
  text-align: right;
  font-size: 13px;
  color: #231815;
}

.ranking-card__review-notice {
  text-align: right;
  font-size: 10px;
  color: #231815;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.ranking__message-wrapper {
  margin-top: 27px;
  text-align: center;
}

.ranking__message {
  max-width: 315px;
  width: 100%;
}

.ranking__deco1 {
  position: absolute;
  top: 183px;
  right: 33px;
  right: 50%;
  -webkit-transform: translateX(calc(50% + 119px));
  transform: translateX(calc(50% + 119px));
}

.ranking__deco1 img {
  max-width: 70px;
  width: 100%;
}

/* ===========================================
イベント
=========================================== */
.event {
  position: relative;
  padding-top: 22.9333333333%;
  padding-bottom: 16.8%;
  background: url(../img/event-bg.webp) no-repeat center top/cover;
  width: 100%;
}

.event::after {
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  content: "";
  height: 65px;
  width: 100%;
  background: url(../img/event-bottom-bg.webp) repeat-x center top/101% 100%;
}

.event__heading--big {
  letter-spacing: 0;
}

.event__heading--big .ls-small {
  letter-spacing: -0.3em;
  font-weight: inherit;
  margin-right: 5px;
}

.event__text {
  margin-top: 31px;
  text-align: center;
  color: #61b7d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.1em;
}

.event__items {
  margin-top: 33px;
}

.event-item--1 {
  width: 100%;
}

.event-item--2 {
  margin-top: 37px;
  text-align: center;
  -webkit-transform: translateX(24px);
  transform: translateX(24px);
}

.event-item--2 img {
  max-width: 361px;
  width: 100%;
}

.event-item--3 {
  margin-top: 49px;
  text-align: center;
  -webkit-transform: translateX(-18px);
  transform: translateX(-18px);
}

.event-item--3 img {
  max-width: 353px;
  width: 100%;
}

.event__deco1 {
  position: absolute;
  top: 0;
  left: 0;
}

.event__deco1 img {
  max-width: 160px;
  width: 100%;
}

.event__deco2 {
  position: absolute;
  top: 0;
  right: 0;
}

.event__deco2 img {
  max-width: 160px;
  width: 100%;
}

.event__deco3 {
  position: absolute;
  top: 145px;
  right: 50%;
  -webkit-transform: translateX(calc(50% + 126px));
  transform: translateX(calc(50% + 126px));
}

.event__deco3 img {
  max-width: 90px;
  width: 100%;
}

/* ===========================================
ラストメッセージ
=========================================== */
.last-message {
  background: #f8f9fa;
  padding-top: 26.4%;
  margin-bottom: -2px;
}

.last-message__inner {
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}

.last-message__heading {
  position: relative;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
  -webkit-text-decoration: underline 2px;
  text-decoration: underline 2px;
  text-decoration-color: #61b7d9;
  text-underline-offset: 6px;
}

.last-message__text {
  margin-top: 21px;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}

.last-message__squaman {
  margin-top: 35px;
  text-align: center;
}

.last-message__squaman img {
  max-width: 113px;
  width: 100%;
}

/* ===========================================
フッター
=========================================== */
.footer {
  background: #61b7d9;
  padding-top: 2px;
  padding-bottom: 11px;
}

.footer__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.footer__logo {
  text-align: center;
}

.footer__logo img {
  max-width: 180px;
  width: 100%;
}