@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

/**
 * グラデーション流れアニメーション
 * 背景グラデーションを滑らかに左右に移動させる効果
 */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
* {
  color: #413d3c;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 2.6;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: inline-block;
}

br {
  font-size: unset;
  line-height: unset;
  letter-spacing: 0;
}

span {
  display: inline-block;
  color: inherit;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.colorTxt {
  background: linear-gradient(to right, #eecf5d, #e897a4, #98c9cd);
  background-size: 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(3rem, 30px);
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: max(8rem, 80px);
  padding: 0 max(3rem, 30px);
  z-index: 9999;
}
@media screen and (max-width: 550px) {
  #header {
    height: 65px;
    padding: 0 5%;
  }
}
#header .header__logo {
  width: max(14.3rem, 107px);
}
#header .header__cta {
  flex-shrink: 0;
}
#header .header__cta a {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: max(1.5rem, 10px);
       column-gap: max(1.5rem, 10px);
  padding: 5px 6px;
  border-radius: 40px;
  border: 2px solid #fff;
  background: linear-gradient(to bottom, #98c9cd, #5a9cba 45%, #5aadc1 70%, #8cd7dd 100%);
  box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
  z-index: 0;
}
#header .header__cta a::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid #cde8ed;
  mix-blend-mode: multiply;
  box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
  z-index: -1;
}
#header .header__cta a::after {
  content: "";
  position: absolute;
  top: 13%;
  left: 7.5%;
  right: 7.5%;
  width: auto;
  height: 30%;
  border-radius: inherit;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.3;
  z-index: -1;
}
#header .header__cta a .cta__icon {
  width: max(4rem, 28px);
  aspect-ratio: 1/1;
}
#header .header__cta a .cta__text {
  color: #fff;
  font-size: max(1.6rem, 11px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: max(3rem, 25px);
}

#footer {
  position: relative;
  width: 100%;
  z-index: 0;
}
#footer .footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#footer .footer__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#footer ul.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: max(1.5rem, 15px);
  padding: max(26rem, 110px) 5% max(4rem, 40px) 5%;
}
@media screen and (max-width: 768px) {
  #footer ul.footer__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  #footer ul.footer__list {
    padding: max(26rem, 110px) 0 max(4rem, 40px) 0;
  }
}
#footer ul.footer__list li.footer__item {
  line-height: 2;
}
#footer ul.footer__list li.footer__item a {
  color: #759aad;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
#footer ul.footer__list li.footer__item.accent {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #footer ul.footer__list li.footer__item.accent {
    width: 100%;
    margin-top: max(1rem, 10px);
  }
}
#footer ul.footer__list li.footer__item.accent a {
  padding: max(1rem, 10px) max(5rem, 40px);
  border: 2px solid #759aad;
}
@media screen and (max-width: 1000px) {
  #footer ul.footer__list li.footer__item.accent a {
    width: 100%;
    padding: max(1.5rem, 15px) max(2rem, 20px);
  }
}
#footer .footer__copyright {
  text-align: center;
  background: #759aad;
}
#footer .footer__copyright p {
  color: #fff;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: max(2rem, 15px) 0;
}

.fixed-banner-pc {
  position: fixed;
  bottom: 2.5%;
  right: 2.5%;
  width: max(18rem, 180px);
  height: max(18rem, 180px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, #eecf5d, #e897a4, #98c9cd);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc {
    display: none;
  }
}
.fixed-banner-pc::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
  transform: scale(0.9);
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc::before {
    transform: scale(0.98, 0.88);
  }
}
.fixed-banner-pc .fixed-banner__image {
  position: relative;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  top: -20px;
  width: max(6.4rem, 64px);
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc .fixed-banner__image {
    width: 27.8vw;
    top: -1.3vw;
    margin: 0;
    text-align: right;
  }
}
.fixed-banner-pc .fixed-banner__image img.fixed-banner__image--putio {
  filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc .fixed-banner__image img.fixed-banner__image--putio {
    width: 45%;
  }
}
.fixed-banner-pc .fixed-banner__image .fixed-banner__babble {
  position: absolute;
  right: 90%;
  top: 0;
  width: max(6.5rem, 65px);
  height: auto;
  filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc .fixed-banner__image .fixed-banner__babble {
    right: unset;
    top: -1.3vw;
    left: 0;
    width: 15.3vw;
    transform: scale(1.1) translateZ(0);
  }
}
.fixed-banner-pc .fixed-banner__text {
  position: relative;
  top: -10px;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fixed-banner-pc .fixed-banner__text {
    flex: 1;
    top: -0.55vw;
    margin: 0;
    margin-right: auto;
    max-width: 275px;
  }
}
.fixed-banner-pc:hover {
  transform: translateY(-5%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.fixed-banner-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .fixed-banner-sp {
    display: block;
    position: fixed;
    bottom: 2.5%;
    left: 0;
    right: 0;
    width: auto;
    z-index: 99999;
  }
  .fixed-banner-sp__wrapper {
    text-align: center;
  }
  .fixed-banner-sp__wrapper .cta__supplement {
    color: #759aad;
    font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
    font-size: max(2.8rem, 14px);
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.1em;
  }
  .fixed-banner-sp__wrapper .cta__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max(71rem, 400px);
    padding: max(3rem, 20px) 6px;
    margin: auto;
    border-radius: max(5rem, 50px);
    border: 2px solid #fff;
    background: linear-gradient(to bottom, #98c9cd, #5a9cba 45%, #5aadc1 70%, #8cd7dd 100%);
    box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
    z-index: 0;
    transition: all 0.5s ease-in-out;
  }
}
@media screen and (max-width: 768px) and (max-width: 550px) {
  .fixed-banner-sp__wrapper .cta__btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fixed-banner-sp__wrapper .cta__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 2px solid #cde8ed;
    mix-blend-mode: multiply;
    box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
    z-index: -1;
  }
  .fixed-banner-sp__wrapper .cta__btn::after {
    content: "";
    position: absolute;
    top: 13%;
    left: 7.5%;
    right: 7.5%;
    width: auto;
    height: 30%;
    border-radius: inherit;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
    mix-blend-mode: screen;
    opacity: 0.3;
    z-index: -1;
  }
  .fixed-banner-sp__wrapper .cta__btn--image {
    position: absolute;
    bottom: 2px;
    left: max(5%, 20px);
    aspect-ratio: 1/1;
  }
  .fixed-banner-sp__wrapper .cta__btn--image img {
    filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
    transform: translateZ(0);
  }
  .fixed-banner-sp__wrapper .cta__btn--image img:nth-of-type(1) {
    width: max(12rem, 85px);
  }
}
@media screen and (max-width: 768px) and (max-width: 550px) {
  .fixed-banner-sp__wrapper .cta__btn--image img:nth-of-type(1) {
    width: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .fixed-banner-sp__wrapper .cta__btn--image img:nth-of-type(2) {
    position: absolute;
    right: 82%;
    top: 0;
    height: 60%;
    width: auto;
    animation: 2s bounce linear infinite;
    transform-origin: right bottom;
  }
  @keyframes bounce {
    0%, 100% {
      transform: rotate(0);
    }
    12.5% {
      transform: rotate(4deg);
    }
    25% {
      transform: rotate(0deg);
    }
    37.5% {
      transform: rotate(4deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  .fixed-banner-sp__wrapper .cta__btn--text {
    margin-left: 50px;
  }
  .fixed-banner-sp__wrapper .cta__btn--text p {
    font-size: max(3.2rem, 16px);
    color: #fff;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    margin-right: max(3rem, 25px);
    text-shadow: 2px 2px 1px rgba(22, 102, 116, 0.35);
  }
  .fixed-banner-sp__wrapper .cta__btn--text p small {
    font-size: max(2.4rem, 13px);
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
  }
  .fixed-banner-sp__wrapper .cta__btn--arrow {
    position: absolute;
    top: 50%;
    right: 5%;
    width: max(5rem, 25px);
    filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
    transform: translateY(-50%) translateZ(0);
  }
  .fixed-banner-sp__wrapper .cta__btn:hover {
    transform: translateY(-5px) scale(1.01);
  }
  .fixed-banner-sp__wrapper .cta__attention {
    display: none;
    width: max(71rem, 400px);
    margin: 0 auto;
    margin-top: max(2rem, 15px);
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) and (max-width: 550px) {
  .fixed-banner-sp__wrapper .cta__attention {
    width: 100%;
    text-align: left;
  }
  .fixed-banner-sp__wrapper .cta__attention span {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .fixed-banner-sp__wrapper .cta__attention a {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: underline;
  }
  .fixed-banner-sp__wrapper.cta__wrapper--attention .cta__attention {
    display: block;
  }
}

.cta {
  position: relative;
  z-index: 1;
}
.cta__wrapper {
  text-align: center;
}
.cta__wrapper .cta__supplement {
  color: #759aad;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(2.8rem, 14px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.cta__wrapper .cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(71rem, 400px);
  padding: max(3rem, 20px) 6px;
  margin: auto;
  border-radius: max(5rem, 50px);
  border: 2px solid #fff;
  background: linear-gradient(to bottom, #98c9cd, #5a9cba 45%, #5aadc1 70%, #8cd7dd 100%);
  box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
  z-index: 0;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__btn {
    width: 100%;
  }
}
.cta__wrapper .cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid #cde8ed;
  mix-blend-mode: multiply;
  box-shadow: inset 0 -2px 8px rgba(237, 253, 255, 0.35), 3px 5px 5px rgba(66, 144, 144, 0.23);
  z-index: -1;
}
.cta__wrapper .cta__btn::after {
  content: "";
  position: absolute;
  top: 13%;
  left: 7.5%;
  right: 7.5%;
  width: auto;
  height: 30%;
  border-radius: inherit;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  opacity: 0.3;
  z-index: -1;
}
.cta__wrapper .cta__btn--image {
  position: absolute;
  bottom: 2px;
  left: max(5%, 20px);
  aspect-ratio: 1/1;
}
.cta__wrapper .cta__btn--image img {
  filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
  transform: translateZ(0);
}
.cta__wrapper .cta__btn--image img:nth-of-type(1) {
  width: max(12rem, 85px);
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__btn--image img:nth-of-type(1) {
    width: 16vw;
  }
}
.cta__wrapper .cta__btn--image img:nth-of-type(2) {
  position: absolute;
  right: 82%;
  top: 0;
  height: 60%;
  width: auto;
  animation: 2s bounce linear infinite;
  transform-origin: right bottom;
}
@keyframes bounce {
  0%, 100% {
    transform: rotate(0);
  }
  12.5% {
    transform: rotate(4deg);
  }
  25% {
    transform: rotate(0deg);
  }
  37.5% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.cta__wrapper .cta__btn--text {
  margin-left: 50px;
}
.cta__wrapper .cta__btn--text p {
  font-size: max(3.2rem, 16px);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-right: max(3rem, 25px);
  text-shadow: 2px 2px 1px rgba(22, 102, 116, 0.35);
}
.cta__wrapper .cta__btn--text p small {
  font-size: max(2.4rem, 13px);
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.cta__wrapper .cta__btn--arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  width: max(5rem, 25px);
  filter: drop-shadow(2px 2px 1px rgba(22, 102, 116, 0.35));
  transform: translateY(-50%) translateZ(0);
}
.cta__wrapper .cta__btn:hover {
  transform: translateY(-5px) scale(1.01);
}
.cta__wrapper .cta__attention {
  display: none;
  width: max(71rem, 400px);
  margin: 0 auto;
  margin-top: max(2rem, 15px);
  line-height: 1.5;
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__attention {
    width: 100%;
    text-align: left;
  }
  .cta__wrapper .cta__attention span {
    display: inline;
  }
}
.cta__wrapper .cta__attention a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
}
.cta__wrapper.cta__wrapper--attention .cta__attention {
  display: block;
}

.attention {
  width: 100%;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.section-between {
  position: relative;
  text-align: center;
  margin-top: max(7rem, 40px);
  margin-bottom: max(5rem, 40px);
  z-index: 10;
}
.section-between img {
  width: max(30rem, 200px);
}

#hero {
  position: relative;
  opacity: 0;
  z-index: 10;
  transition: opacity 1s ease-in-out;
}
#hero .hero__bg {
  position: relative;
  width: 100%;
  aspect-ratio: 80/43;
}
#hero .hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -34%;
  width: 150%;
  background: linear-gradient(to right, #eecf5d 0%, #e897a4 50%, #98c9cd 60%);
  background-size: 100%;
  border-radius: 0 0 50% 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #hero .hero__bg::before {
    width: 230%;
    left: -60%;
  }
}
#hero .hero__bg .hero__bg--img {
  position: relative;
  z-index: 1;
}
#hero .hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
}
#hero .hero__content .hero__title {
  position: absolute;
  top: 4%;
  left: 45%;
  width: 31.875vw;
  filter: drop-shadow(20px 60px 6px rgba(89, 171, 180, 0.3));
  transform: translateZ(0);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__title {
    width: 90vw;
    top: 10%;
    left: 5%;
  }
}
#hero .hero__content .hero__title--bubble {
  position: absolute;
  top: max(2%, 30px);
  right: -15%;
  width: 11.25vw;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__title--bubble {
    width: 27vw;
    right: -2%;
  }
}
#hero .hero__content .hero__girl {
  position: relative;
  z-index: 2;
}
#hero .hero__content .hero__putio {
  position: absolute;
  bottom: 0;
  right: 23%;
  width: 13.5vw;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__putio {
    width: 35vw;
    right: 5%;
  }
}
#hero .hero__content .hero__putio--main {
  filter: drop-shadow(50px 0 9px rgba(89, 171, 180, 0.25));
  transform: translateZ(0);
}
#hero .hero__content .hero__putio--reflect {
  position: absolute;
  transform: translateY(-1.5%);
  z-index: -1;
}
#hero .hero__content .hero__treat {
  position: absolute;
  inset: 0;
  z-index: 2;
}
#hero .hero__content .hero__treat .mark {
  position: absolute;
  opacity: 0;
  transform: scale(0) rotate(0deg);
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .mark {
    display: none;
  }
}
#hero .hero__content .hero__treat .mark.mark1 {
  width: max(4.7rem, 30px);
  left: 17.5%;
  top: 30%;
}
#hero .hero__content .hero__treat .mark.mark2 {
  width: max(2.5rem, 15px);
  left: 15%;
  top: 37.5%;
}
#hero .hero__content .hero__treat .mark.mark3 {
  width: max(2.5rem, 15px);
  left: 80%;
  top: 50%;
}
#hero .hero__content .hero__treat .mark.mark4 {
  width: max(4.7rem, 30px);
  left: 81%;
  top: 57.5%;
}
#hero .hero__content .hero__treat .mark.mark5 {
  width: max(1.5rem, 10px);
  left: 85%;
  top: 52.5%;
}
#hero .hero__content .hero__treat .bubble {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
}
#hero .hero__content .hero__treat .bubble.bubble1 {
  width: max(18.5rem, 100px);
  left: -2%;
  bottom: 30%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble1 {
    width: max(20%, 85px);
    left: -10%;
    bottom: 5%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble2 {
  width: max(2.5rem, 20px);
  left: 10%;
  bottom: 25%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble2 {
    width: max(10%, 40px);
    left: 10%;
    bottom: 0;
  }
}
#hero .hero__content .hero__treat .bubble.bubble3 {
  width: max(8rem, 40px);
  left: 4%;
  bottom: 15%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble3 {
    width: 17.5%;
    bottom: unset;
    top: 12.5%;
    left: 15%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble4 {
  width: max(14.5rem, 70px);
  right: 2%;
  top: 20%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble4 {
    width: max(10%, 40px);
    right: unset;
    left: -1%;
    top: 22.5%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble5 {
  width: max(7rem, 35px);
  right: 10%;
  top: 35%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble5 {
    width: max(12.5%, 55px);
    top: 50%;
    right: 20%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble6 {
  width: max(2.5rem, 20px);
  right: 7.5%;
  top: 15%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble6 {
    width: max(10%, 35px);
    top: 55%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble7 {
  width: max(3rem, 25px);
  right: 7.5%;
  top: 45%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble7 {
    width: max(5%, 20px);
    top: 50%;
    right: 5%;
  }
}
#hero .hero__content .hero__treat .bubble.bubble8 {
  width: max(11.5rem, 70px);
  left: 47.5%;
  top: 5%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble8 {
    display: none;
  }
}
#hero .hero__content .hero__treat .bubble.bubble9 {
  width: max(8rem, 40px);
  left: 72.5%;
  top: 45%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble9 {
    display: none;
  }
}
#hero .hero__content .hero__treat .bubble.bubble10 {
  width: max(2.5rem, 20px);
  left: 76%;
  top: 40%;
}
@media screen and (max-width: 768px) {
  #hero .hero__content .hero__treat .bubble.bubble10 {
    display: none;
  }
}
#hero.loaded {
  opacity: 1;
}

#intro {
  position: relative;
  z-index: 1;
}
#intro .intro__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
  z-index: -1;
}
#intro .intro__wrapper {
  display: flex;
  gap: max(5rem, 30px);
  margin-top: max(20rem, 100px);
  padding-bottom: max(22rem, 65px);
}
@media screen and (max-width: 1000px) {
  #intro .intro__wrapper {
    flex-direction: column;
  }
}
#intro .intro__wrapper .textBox {
  flex: 1;
}
#intro .intro__wrapper .textBox img.intro__strong {
  width: max(30rem, 300px);
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .textBox img.intro__strong {
    width: 100%;
  }
}
#intro .intro__wrapper .textBox h2 {
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: max(1rem, 10px);
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 550px) {
  #intro .intro__wrapper .textBox h2 {
    font-size: 6.1vw;
  }
}
#intro .intro__wrapper .textBox p.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .textBox p.pc {
    display: none;
  }
}
#intro .intro__wrapper .textBox p.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .textBox p.sp {
    display: block;
  }
}
#intro .intro__wrapper .textBox span.attention {
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: max(3rem, 20px);
}
#intro .intro__wrapper .textBox span.attention.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .textBox span.attention.pc {
    display: none;
  }
}
#intro .intro__wrapper .textBox span.attention.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .textBox span.attention.sp {
    display: block;
  }
}
#intro .intro__wrapper .imageBox {
  width: max(68rem, 400px);
  display: flex;
  gap: max(1rem, 5px);
}
@media screen and (max-width: 1000px) {
  #intro .intro__wrapper .imageBox {
    width: 100%;
  }
}
#intro .intro__wrapper .imageBox__inner {
  position: relative;
  flex: 1;
  border-radius: max(3rem, 5px);
  aspect-ratio: 12/31;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #intro .intro__wrapper .imageBox__inner {
    aspect-ratio: 20/37;
  }
}
@media screen and (max-width: 768px) {
  #intro .intro__wrapper .imageBox__inner {
    aspect-ratio: 53/95;
  }
}
#intro .intro__wrapper .imageBox__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #759aad;
  transition: 0.5s ease-in-out;
}
#intro .intro__wrapper .imageBox__inner img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
#intro .intro__wrapper .imageBox__inner:nth-of-type(1)::after {
  transform-origin: top;
}
#intro .intro__wrapper .imageBox__inner:nth-of-type(2)::after {
  transform-origin: bottom;
}
#intro .intro__wrapper .imageBox__inner:nth-of-type(3)::after {
  transform-origin: top;
}
#intro .intro__wrapper .imageBox.active .imageBox__inner::after {
  transform: scaleY(0);
}

.campaign {
  position: relative;
  z-index: 1001;
}
.campaign .campaign__wrapper .campaign__title {
  transform: translateY(-50%);
}
.campaign .campaign__wrapper .campaign__title h2 {
  display: block;
  text-align: center;
  padding: max(2rem, 10px) 5%;
  color: #fff;
  font-size: max(3.8rem, 25px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #eecf5d, #e897a4, #98c9cd);
}
.campaign .campaign__wrapper .campaign__content {
  display: flex;
  gap: max(10rem, 30px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content {
    gap: max(15rem, 40px);
    flex-direction: column;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver,
.campaign .campaign__wrapper .campaign__content .campaign__receiver {
  flex: 1;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver strong,
.campaign .campaign__wrapper .campaign__content .campaign__receiver strong {
  display: block;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(2.4rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: max(4rem, 20px);
  margin-bottom: max(2rem, 15px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver strong,
  .campaign .campaign__wrapper .campaign__content .campaign__receiver strong {
    font-size: max(5rem, 15px);
  }
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver strong.pc,
  .campaign .campaign__wrapper .campaign__content .campaign__receiver strong.pc {
    display: none;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver strong.sp,
.campaign .campaign__wrapper .campaign__content .campaign__receiver strong.sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver strong.sp,
  .campaign .campaign__wrapper .campaign__content .campaign__receiver strong.sp {
    display: block;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver span.attention,
.campaign .campaign__wrapper .campaign__content .campaign__receiver span.attention {
  margin-top: max(2rem, 10px);
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__target,
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__target {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: last baseline;
  gap: max(1rem, 10px);
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__target h3,
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__target h3 {
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
  font-size: max(3rem, 22px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__target h3 img,
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__target h3 img {
  width: auto;
  height: 0.8lh;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__target span,
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__target span {
  display: inline-block;
  padding: max(0.4rem, 4px) max(0.5rem, 5px);
  font-size: max(2.3rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 2px solid #413d3c;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner {
  display: flex;
  gap: max(2rem, 15px);
  margin-top: max(1.5rem, 15px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner {
    gap: max(10rem, 15px);
  }
}
@media screen and (max-width: 550px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner {
    gap: 15px;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .textBox {
  flex: 1;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .textBox span.supplement {
  display: block;
  width: auto;
  padding: max(1rem, 10px);
  margin-bottom: max(2rem, 15px);
  text-align: center;
  background: linear-gradient(to right, rgba(238, 207, 93, 0.2), rgba(232, 151, 164, 0.2), rgba(152, 201, 205, 0.2));
  font-size: max(2.5rem, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .textBox span.supplement {
    padding: max(2rem, 15px) max(1rem, 10px);
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .textBox span.supplement sup {
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox {
  position: relative;
  width: max(25rem, 185px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox {
    width: 40%;
  }
}
@media screen and (max-width: 550px) {
  .campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox {
    width: 47%;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox img {
  width: 95%;
  aspect-ratio: 221/140;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.5s ease-in-out;
  opacity: 0;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox img:nth-of-type(1) {
  transform: translateY(15%) rotate(0deg) translateZ(0);
  transform-origin: left bottom;
  transition-delay: 0.1s;
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox img:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(42.5%) translateZ(0);
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox.active img:nth-of-type(1) {
  opacity: 1;
  transform: translateY(5%) rotate(-3deg) translateZ(0);
}
.campaign .campaign__wrapper .campaign__content .campaign__giver .campaign__detail--inner .imageBox.active img:nth-of-type(2) {
  opacity: 1;
  transform: translateY(32.5%) translateZ(0);
}
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner {
  display: flex;
  align-items: end;
  gap: max(1.5rem, 10px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner {
    gap: max(10rem, 15px);
  }
}
@media screen and (max-width: 550px) {
  .campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner {
    gap: 15px;
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .textBox {
  flex: 1;
}
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .textBox img.campaign__price {
  margin-top: max(2rem, 15px);
}
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .imageBox {
  width: max(20rem, 125px);
}
@media screen and (max-width: 1000px) {
  .campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .imageBox {
    width: max(34rem, 125px);
  }
}
@media screen and (max-width: 550px) {
  .campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .imageBox {
    width: max(34rem, 125px);
  }
}
.campaign .campaign__wrapper .campaign__content .campaign__receiver .campaign__detail--inner .imageBox img {
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}

#problem {
  position: relative;
}
#problem .problem__frame {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
#problem .problem__wrapper {
  position: relative;
  padding-top: max(9rem, 50px);
  padding-bottom: max(30rem, 210px);
}
#problem .problem__wrapper .problem__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#problem .problem__wrapper .problem__bg img {
  -o-object-position: bottom;
     object-position: bottom;
}
#problem .problem__wrapper .problem__girl {
  position: absolute;
  width: max(42rem, 180px);
  bottom: 0;
  right: 12.5%;
  z-index: 100;
}
@media screen and (min-width: 2000px) {
  #problem .problem__wrapper .problem__girl {
    right: calc(50% - 700px);
  }
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__girl {
    right: -20px;
    width: 40vw;
  }
}
@media screen and (max-width: 550px) {
  #problem .problem__wrapper .problem__girl {
    width: 50vw;
  }
}
#problem .problem__wrapper .problem__girl img {
  filter: drop-shadow(max(8rem, 30px) max(7rem, 20px) 12px rgba(79, 109, 116, 0.15));
  transform: translateZ(0);
}
#problem .problem__wrapper .problem__content {
  position: relative;
}
#problem .problem__wrapper .problem__content picture > img {
  filter: drop-shadow(max(3rem, 20px) max(3rem, 20px) 10px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
}
#problem .problem__wrapper .problem__content .problem__arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max(11.5rem, 90px);
  transform: translate(-50%, 60%);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translate(-50%, 60%);
  }
  50% {
    transform: translate(-50%, 40%);
  }
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__content .problem__arrow {
    width: 80px;
  }
}
#problem .problem__wrapper .problem__content .problem__arrow img {
  filter: drop-shadow(4px 4px 16px #71b5b7);
  transform: translateZ(0);
}
#problem .problem__wrapper .problem__content .problem__inner {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  inset: 3% 4.5%;
  width: auto;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  #problem .problem__wrapper .problem__content .problem__inner {
    padding-bottom: 0;
  }
}
#problem .problem__wrapper .problem__content .problem__inner h2.problem__title {
  text-align: center;
  color: #759aad;
  font-size: max(3.5rem, 21px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__content .problem__inner h2.problem__title {
    width: 85%;
  }
}
#problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
  width: 65%;
  margin-top: max(5.5rem, 25px);
}
@media screen and (max-width: 1300px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
    margin-top: max(3rem, 15px);
  }
}
@media screen and (max-width: 1000px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
    width: 75%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
    width: 85%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 550px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
    width: 90%;
  }
}
@media screen and (max-width: 350px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list {
    margin-top: 10px;
  }
}
#problem .problem__wrapper .problem__content .problem__inner ul.problem__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: max(1.5rem, 10px);
  margin-bottom: max(1.5rem, 10px);
}
@media screen and (max-width: 1000px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li {
    padding-bottom: max(5rem, 10px);
    margin-bottom: max(5rem, 10px);
  }
}
@media screen and (max-width: 550px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 350px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
#problem .problem__wrapper .problem__content .problem__inner ul.problem__list li:not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #98c9cd 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
#problem .problem__wrapper .problem__content .problem__inner ul.problem__list li img {
  flex-shrink: 0;
  width: auto;
  height: 0.7lh;
  align-self: baseline;
  transform: translateY(17.5%);
}
#problem .problem__wrapper .problem__content .problem__inner ul.problem__list li h3 {
  flex: 1;
  font-size: max(1.9rem, 16px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li h3 {
    line-height: 1.5;
    margin-top: 0.22em;
  }
}
@media screen and (max-width: 350px) {
  #problem .problem__wrapper .problem__content .problem__inner ul.problem__list li h3 {
    font-size: 14px;
  }
}

#feature {
  position: relative;
  background: #98c9cd;
  z-index: 1000;
}
#feature .feature__treat {
  position: absolute;
  inset: 0;
}
#feature .feature__treat .bubble {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
#feature .feature__treat .bubble.bubble1 {
  width: max(22rem, 100px);
  top: 7.5%;
  left: -7.5%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble1 {
    width: max(25vw, 80px);
    top: 21%;
    left: -10%;
  }
}
#feature .feature__treat .bubble.bubble2 {
  width: max(9rem, 25px);
  top: 20%;
  left: 3%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble2 {
    width: max(10vw, 25px);
    top: 25%;
    left: 5%;
  }
}
#feature .feature__treat .bubble.bubble3 {
  width: max(7rem, 20px);
  top: 60%;
  left: 3%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble3 {
    width: max(10vw, 25px);
    top: 59%;
    left: 10%;
  }
}
#feature .feature__treat .bubble.bubble4 {
  width: max(4rem, 15px);
  top: 75%;
  left: 0%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble4 {
    width: max(25vw, 80px);
    top: 61%;
    left: -10%;
  }
}
#feature .feature__treat .bubble.bubble5 {
  width: max(22rem, 100px);
  bottom: 0;
  left: -5%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble5 {
    width: max(15vw, 70px);
    bottom: 3%;
  }
}
#feature .feature__treat .bubble.bubble6 {
  width: max(22rem, 100px);
  top: -7.5%;
  right: -7.5%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble6 {
    width: max(25vw, 68px);
    top: 2%;
    right: -12.5%;
  }
}
#feature .feature__treat .bubble.bubble7 {
  width: max(4rem, 15px);
  top: 15%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble7 {
    width: max(16vw, 35px);
    top: -1%;
    right: 0;
  }
}
#feature .feature__treat .bubble.bubble8 {
  width: max(8rem, 25px);
  top: 22.5%;
  right: 3%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble8 {
    width: max(10vw, 20px);
    top: 1%;
    right: 20%;
  }
}
#feature .feature__treat .bubble.bubble9 {
  width: max(8rem, 25px);
  top: 70%;
  right: 2%;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble9 {
    width: 17vw;
    top: 42%;
    right: -5%;
  }
}
#feature .feature__treat .bubble.bubble10 {
  display: none;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble10 {
    display: block;
    width: max(15vw, 45px);
    top: 77.5%;
    right: 1%;
  }
}
#feature .feature__treat .bubble.bubble11 {
  display: none;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble11 {
    display: block;
    width: max(20vw, 80px);
    top: 82%;
    right: -10%;
  }
}
#feature .feature__treat .bubble.bubble12 {
  display: none;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble12 {
    display: block;
    width: max(8rem, 25px);
    top: 80%;
    right: 10%;
  }
}
#feature .feature__treat .bubble.bubble13 {
  display: none;
}
@media screen and (max-width: 768px) {
  #feature .feature__treat .bubble.bubble13 {
    display: block;
    width: max(8rem, 25px);
    bottom: 3%;
    left: 25%;
  }
}
#feature .feature__wrapper {
  padding-top: max(10rem, 70px);
  padding-bottom: max(20rem, 150px);
}
#feature .feature__wrapper .feature__title {
  text-align: center;
}
#feature .feature__wrapper .feature__title h2 {
  position: relative;
  width: max(39rem, 350px);
  margin: 0 auto;
}
@media screen and (max-width: 550px) {
  #feature .feature__wrapper .feature__title h2 {
    width: 90%;
  }
}
#feature .feature__wrapper .feature__title h2::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: #98c9cd;
  z-index: 10;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}
#feature .feature__wrapper .feature__title h2 img {
  filter: blur(10px);
  transition: filter 0.5s ease-in-out;
}
#feature .feature__wrapper .feature__title.active h2 img {
  filter: blur(0px);
}
#feature .feature__wrapper .feature__title.active h2::before {
  transform: scaleX(0);
}
#feature .feature__wrapper .feature__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: max(7rem, 35px);
  margin-top: max(4rem, 40px);
}
@media screen and (max-width: 768px) {
  #feature .feature__wrapper .feature__content {
    gap: 50px;
  }
}
@media screen and (max-width: 550px) {
  #feature .feature__wrapper .feature__content {
    margin-top: 10px;
  }
}
#feature .feature__wrapper .feature__content .feature__item {
  text-align: center;
  max-width: calc((100% - max(14rem, 100px)) / 3);
  min-width: calc((100% - max(14rem, 100px)) / 3);
}
@media screen and (max-width: 1000px) {
  #feature .feature__wrapper .feature__content .feature__item {
    max-width: calc((100% - max(7rem, 50px)) / 2);
    min-width: calc((100% - max(7rem, 50px)) / 2);
  }
}
@media screen and (max-width: 768px) {
  #feature .feature__wrapper .feature__content .feature__item {
    min-width: 80%;
    max-width: 80%;
  }
}
@media screen and (max-width: 550px) {
  #feature .feature__wrapper .feature__content .feature__item {
    min-width: 90%;
    max-width: 90%;
  }
}
#feature .feature__wrapper .feature__content .feature__item .imageBox {
  position: relative;
  border-radius: 50%;
  border: max(0.4rem, 4px) solid #fff;
  overflow: hidden;
}
#feature .feature__wrapper .feature__content .feature__item .imageBox > img {
  aspect-ratio: 1/1;
  filter: blur(4px);
  transform: rotate(45deg) scale(1.02);
  transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#feature .feature__wrapper .feature__content .feature__item .imageBox__inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: max(0.2rem, 2px) solid #fff;
  overflow: hidden;
  transform: rotate(-45deg);
  transition: transform 0.5s ease-in-out, inset 0.5s ease-in-out;
}
#feature .feature__wrapper .feature__content .feature__item .imageBox__inner img {
  aspect-ratio: 1/1;
  filter: blur(4px);
  transform: scale(1.5);
  transition: filter 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#feature .feature__wrapper .feature__content .feature__item h3 {
  color: #fff;
  font-size: max(2.3rem, 19px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: max(2rem, 20px);
  margin-bottom: max(2rem, 10px);
}
#feature .feature__wrapper .feature__content .feature__item p {
  color: #fff;
  font-size: max(1.6rem, 15px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
#feature .feature__wrapper .feature__content .feature__item.active .imageBox > img {
  transform: rotate(0deg) scale(1.02);
}
#feature .feature__wrapper .feature__content .feature__item.active .imageBox__inner {
  transform: rotate(0deg);
  inset: 3%;
}
#feature .feature__wrapper .feature__content .feature__item.active .imageBox__inner img {
  filter: blur(0);
  transform: scale(1);
}

#price {
  position: relative;
  background: #FCF6DE;
  padding-bottom: max(7rem, 50px);
  z-index: 1000;
}
#price .price__wrapper {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eecf5d, #e897a4, #98c9cd);
  background-size: 100%;
  border-radius: max(3rem, 30px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
  transform: translateY(min(-5rem, -40px));
  transition: all 0.5s ease-in-out;
}
#price .price__wrapper .price__inner {
  width: calc(100% - max(1rem, 10px));
  height: calc(100% - max(1rem, 10px));
  padding: max(9rem, 50px) max(10rem, 35px);
  background: #fff;
  border-radius: max(2.7rem, 27px);
}
#price .price__wrapper .price__inner .price__title {
  text-align: center;
  width: max(55.5rem, 400px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #price .price__wrapper .price__inner .price__title {
    width: 100%;
  }
}
#price .price__wrapper .price__inner .price__title h2 {
  font-size: max(3.1rem, 20px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  #price .price__wrapper .price__inner .price__title h2 {
    font-size: 16px;
  }
}
#price .price__wrapper .price__inner .price__title h2 img {
  margin-top: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  #price .price__wrapper .price__inner .price__title h2 img {
    width: 60%;
  }
}
@media screen and (max-width: 550px) {
  #price .price__wrapper .price__inner .price__title h2 img {
    width: 70%;
  }
}
#price .price__wrapper .price__inner .price__content {
  display: flex;
  justify-content: space-between;
  margin-top: max(5rem, 30px);
  -moz-column-gap: max(8rem, 30px);
       column-gap: max(8rem, 30px);
}
@media screen and (max-width: 1300px) {
  #price .price__wrapper .price__inner .price__content {
    -moz-column-gap: max(5rem, 30px);
         column-gap: max(5rem, 30px);
  }
}
@media screen and (max-width: 1000px) {
  #price .price__wrapper .price__inner .price__content {
    row-gap: max(10rem, 50px);
    flex-direction: column;
  }
}
#price .price__wrapper .price__inner .price__content .imageBox {
  position: relative;
  display: grid;
  text-align: center;
  place-items: center;
  width: max(41rem, 250px);
  margin: 0 auto;
  z-index: 0;
}
@media screen and (max-width: 550px) {
  #price .price__wrapper .price__inner .price__content .imageBox {
    width: 100%;
  }
}
#price .price__wrapper .price__inner .price__content .imageBox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(45deg, #eecf5d, #e897a4, #98c9cd);
  opacity: 0.2;
  z-index: -1;
}
#price .price__wrapper .price__inner .price__content .imageBox img {
  width: 65%;
  filter: drop-shadow(max(4rem, 20px) max(3rem, 10px) 12px rgba(0, 0, 0, 0.15));
  transform: translateZ(0);
}
#price .price__wrapper .price__inner .price__content .textBox {
  flex: 1;
}
#price .price__wrapper .price__inner .price__content .textBox h3 {
  display: block;
  text-align: center;
  background: #759aad;
  color: #fff;
  font-size: max(2.4rem, 16px);
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
#price .price__wrapper .price__inner .price__content .textBox__inner span.attention {
  margin-top: max(2rem, 20px);
  text-align: right;
  font-size: max(1.4rem, 12px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #price .price__wrapper .price__inner .price__content .textBox__inner span.attention {
    text-align: left;
  }
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl {
  position: relative;
  display: flex;
  align-items: last baseline;
  justify-content: space-between;
  gap: max(2rem, 10px);
}
@media screen and (max-width: 768px) {
  #price .price__wrapper .price__inner .price__content .textBox__inner dl {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl:first-of-type {
  margin-top: max(3rem, 20px);
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl:not(:last-of-type) {
  padding-bottom: max(2rem, 15px);
  margin-bottom: max(1rem, 10px);
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl:not(:last-of-type)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #98c9cd 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dt {
  flex: 1;
  font-size: max(2.4rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dd {
  display: flex;
  align-items: end;
  gap: 5px;
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dd strong {
  color: #759aad;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(9.1rem, 65px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}
@media screen and (max-width: 350px) {
  #price .price__wrapper .price__inner .price__content .textBox__inner dl dd strong {
    font-size: 45px;
  }
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dd .unit {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-bottom: 0.5em;
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dd .unit__tax {
  font-size: max(2.2rem, 14px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#price .price__wrapper .price__inner .price__content .textBox__inner dl dd .unit__price {
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(4.5rem, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 350px) {
  #price .price__wrapper .price__inner .price__content .textBox__inner dl dd .unit__price {
    font-size: 24px;
  }
}
#price .price__wrapper.active {
  transform: translateY(min(-10rem, -80px));
  box-shadow: max(4rem, 20px) max(4rem, 20px) max(0.8rem, 3px) rgba(0, 0, 0, 0.15);
}

#step {
  position: relative;
  z-index: 10;
}
#step .step__wrapper {
  margin-top: max(8rem, 50px);
  margin-bottom: max(10rem, 60px);
}
#step .step__wrapper .step__title h2 {
  display: block;
  text-align: center;
  padding: max(2rem, 10px) 5%;
  color: #fff;
  font-size: max(3.8rem, 25px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #eecf5d, #e897a4, #98c9cd);
}
#step .step__wrapper .step__content {
  display: flex;
  gap: max(10rem, 50px);
  margin-top: max(8rem, 30px);
}
@media screen and (max-width: 1300px) {
  #step .step__wrapper .step__content {
    flex-direction: column;
  }
}
#step .step__wrapper .step__content .step__inner {
  flex: 1;
}
#step .step__wrapper .step__content .step__inner dl {
  display: grid;
  align-items: center;
  gap: max(2rem, 20px) max(4rem, 30px);
  grid-template-columns: max(16rem, 75px) 1fr;
}
@media screen and (max-width: 768px) {
  #step .step__wrapper .step__content .step__inner dl {
    grid-template-columns: 1fr;
    gap: max(1rem, 10px);
  }
}
#step .step__wrapper .step__content .step__inner dl dd {
  flex: 1;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt {
  color: #759aad;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(5rem, 21px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(1) {
  transition-delay: 0s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(2) {
  transition-delay: 0.1s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(3) {
  transition-delay: 0.2s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(4) {
  transition-delay: 0.3s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(5) {
  transition-delay: 0.4s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dt .step-char:nth-child(6) {
  transition-delay: 0.5s;
}
#step .step__wrapper .step__content .step__inner dl.step__item dd h3 {
  font-size: max(2.3rem, 19px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: max(1rem, 10px);
}
#step .step__wrapper .step__content .step__inner dl.step__item dd p {
  font-size: max(1.6rem, 15px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  #step .step__wrapper .step__content .step__inner dl.step__arrow {
    gap: 0;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
#step .step__wrapper .step__content .step__inner dl.step__arrow dt {
  position: relative;
  text-align: center;
}
#step .step__wrapper .step__content .step__inner dl.step__arrow dt::before {
  content: "";
  width: 0;
  height: 0;
  margin: 2rem auto;
  border-right: max(1.5rem, 15px) solid transparent;
  border-left: max(1.5rem, 15px) solid transparent;
  border-top: max(2.5rem, 25px) solid rgba(152, 201, 205, 0.4);
  border-bottom: none;
  display: block;
}
#step .step__wrapper .step__content .step__qr {
  width: max(35rem, 290px);
  padding: max(5rem, 20px) max(7rem, 30px);
  border: max(0.3rem, 3px) solid #98c9cd;
  border-radius: max(2rem, 15px);
  text-align: center;
}
@media screen and (max-width: 1300px) {
  #step .step__wrapper .step__content .step__qr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: max(10rem, 25px);
  }
}
@media screen and (max-width: 768px) {
  #step .step__wrapper .step__content .step__qr {
    display: none;
  }
}
#step .step__wrapper .step__content .step__qr h3 {
  font-size: max(1.9rem, 15px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#step .step__wrapper .step__content .step__qr .step__arrow {
  position: relative;
  text-align: center;
}
#step .step__wrapper .step__content .step__qr .step__arrow::before {
  content: "";
  width: 0;
  height: 0;
  margin: 2rem auto;
  border-right: max(1.5rem, 15px) solid transparent;
  border-left: max(1.5rem, 15px) solid transparent;
  border-top: max(2.5rem, 25px) solid rgba(152, 201, 205, 0.4);
  border-bottom: none;
  display: block;
}
@media screen and (max-width: 1300px) {
  #step .step__wrapper .step__content .step__qr .step__arrow::before {
    transform: rotate(31.5deg);
  }
}
@media screen and (max-width: 768px) {
  #step .step__wrapper .step__content .step__qr .step__arrow::before {
    transform: rotate(0);
  }
}
@media screen and (max-width: 1300px) {
  #step .step__wrapper .step__content .step__qr img {
    width: max(15%, 100px);
  }
}

#important {
  position: relative;
  z-index: 0;
  padding-bottom: max(20rem, 100px);
}
#important .important__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
#important .important__wrapper {
  margin-top: max(13rem, 65px);
  padding: max(8rem, 40px) max(13rem, 50px);
  background: #fff;
}
#important .important__wrapper .important__title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(1rem, 10px);
}
#important .important__wrapper .important__title h2 img {
  width: auto;
  height: 0.6lh;
  -o-object-fit: contain;
     object-fit: contain;
}
#important .important__wrapper .important__title h2 span {
  flex-shrink: 0;
  font-size: max(2.3rem, 19px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
#important .important__wrapper .important__content {
  margin-top: max(4rem, 30px);
  margin-bottom: max(8rem, 40px);
}
#important .important__wrapper .important__content span.attention {
  margin-top: 0;
}
#important .important__wrapper .important__content span.attention a {
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#important .cta {
  transform: translateY(-50%);
}
#important .cta__supplement, #important .cta__attention {
  display: none;
}

#faq {
  position: relative;
  background: #98c9cd;
  border-radius: max(3rem, 30px) max(3rem, 30px) 0 0;
  margin-top: min(-3rem, 30px);
}
#faq .faq__wrapper {
  padding-top: max(13rem, 70px);
  padding-bottom: max(13rem, 70px);
}
#faq .faq__wrapper .faq__title {
  text-align: center;
  margin-bottom: max(10rem, 40px);
}
#faq .faq__wrapper .faq__title h2 {
  color: #fff;
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(3.8rem, 25px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#faq .faq__wrapper .faq__content .faq__item {
  display: flex;
  gap: max(3.5rem, 12.5px);
}
#faq .faq__wrapper .faq__content .faq__item:not(:first-of-type) {
  margin-top: max(6rem, 40px);
}
#faq .faq__wrapper .faq__content .faq__item .accordion__icon {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #faq .faq__wrapper .faq__content .faq__item .accordion__icon {
    display: none;
  }
}
#faq .faq__wrapper .faq__content .faq__item .accordion__icon img {
  width: auto;
  height: 1.4lh;
}
#faq .faq__wrapper .faq__content .faq__item .accordion {
  flex: 1;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #faq .faq__wrapper .faq__content .faq__item .accordion {
    margin-top: 0;
  }
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question {
  position: relative;
  display: flex;
  width: 100%;
  gap: max(3.5rem, 12.5px);
  padding-bottom: max(2rem, 15px);
  margin-bottom: max(1.5rem, 10px);
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(to right, #fff 4px, transparent 3px);
  background-size: 7px 1px;
  background-repeat: repeat-x;
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question img {
  display: none;
}
@media screen and (max-width: 768px) {
  #faq .faq__wrapper .faq__content .faq__item .accordion__question img {
    display: inline-block;
    width: auto;
    height: 1lh;
  }
}
@media screen and (max-width: 350px) {
  #faq .faq__wrapper .faq__content .faq__item .accordion__question img {
    max-width: 40px;
  }
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__inner {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  #faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__inner {
    margin-top: 0.25em;
  }
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__inner h3 {
  color: #fff;
  font-size: max(2.3rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__arrow {
  flex-shrink: 0;
  position: relative;
  width: max(2.2rem, 18px);
  height: max(2.2rem, 18px);
  transition: transform 0.3s ease-out;
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__arrow--line {
  position: absolute;
  background: #fff;
  transition: transform 0.3s ease-out;
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__arrow--line:nth-of-type(1) {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
#faq .faq__wrapper .faq__content .faq__item .accordion__question .accordion__arrow--line:nth-of-type(2) {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
#faq .faq__wrapper .faq__content .faq__item .accordion__answer {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
#faq .faq__wrapper .faq__content .faq__item .accordion__answer p {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
#faq .faq__wrapper .faq__content .faq__item .accordion.open .accordion__arrow span:nth-of-type(2) {
  transform: rotate(90deg);
}/*# sourceMappingURL=style.css.map */