@charset "UTF-8";
@keyframes swing {
  from {
    animation-timing-function: linear;
    transform: rotate(0deg);
  }
  to {
    animation-timing-function: linear;
    transform: rotate(0deg);
  }
  30% {
    animation-timing-function: linear;
    transform: rotate(15deg);
  }
  60% {
    animation-timing-function: linear;
    transform: rotate(0deg);
  }
  80% {
    animation-timing-function: linear;
    transform: rotate(-5deg);
  }
}
.header {
  padding: 10px 20px;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 10;
  box-shadow: 0px 8px 8px -6px rgba(0, 0, 0, 0.3);
  will-change: transform;
  transition: transform var(--header-effect-duration);
  transform: translateY(var(--translate));
}
.header__logo {
  height: 5vw;
  max-height: 30px;
}
.header__logo-h1 {
  display: flex;
  height: 100%;
}
.header__logo-img {
  height: 100%;
  width: auto;
}
@container style(--scroll-direction: 0) {
  .header {
    transition-delay: calc(infinity * 1s);
  }
}
@container style(not (--scroll-direction: 0)) {
  .header {
    transition-delay: 0s;
  }
}
@container style(--scroll-direction: -1) {
  .header {
    --translate: 0;
  }
}
@container style(--scroll-direction: 1) {
  .header {
    --translate: -100%;
  }
}

.content {
  background-color: #fff2f2;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-right: 500px;
}
.content__body {
  padding-top: 68px;
  background-color: #FF6F91;
  width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.content__menu {
  padding-right: 490px;
  position: fixed;
  top: 0;
  left: 55%;
  display: block;
  width: 1280px;
  height: 100vh;
  color: #fff;
  transform: translate(-50%);
  box-sizing: border-box;
  pointer-events: none;
  z-index: 10;
}
.content__menu-panel-wrapper {
  position: absolute;
  top: 0;
  right: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 480px;
  height: 100%;
  padding-left: 5%;
  pointer-events: auto;
}
.content__menu-panel {
  width: 100%;
  margin: auto;
  position: relative;
  padding: 10px;
  background-color: #FF6F91;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2509803922);
}

.menu {
  padding: 20px;
  border: dashed 2px white;
  border-radius: 5px;
  margin: 5px;
}
.menu__title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}
.menu__item {
  list-style: none;
  line-height: 2.2rem;
  margin-left: 10px;
}
.menu__item::before {
  content: "›";
  position: absolute;
  left: 2em;
  color: white;
}
.menu__link {
  color: white;
  text-decoration: none;
}
.menu__cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .content {
    padding-right: 0;
  }
  .content__body {
    width: 100%;
  }
  .content__menu {
    display: none;
  }
}
@property --scroll {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --scroll-delayed {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --scroll-direction {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@keyframes setScrollProps {
  to {
    --scroll: 1000;
    --scroll-delayed: 1000;
  }
}
:root {
  animation: setScrollProps linear both;
  animation-timeline: scroll(root);
  --header-effect-duration: .5s;
}

html {
  font-family: "Zen Maru Gothic";
  color: #324A5F;
  scroll-behavior: smooth;
}

body {
  transition: --scroll-delayed calc(var(--header-effect-duration) + 0.01s);
  --scroll-velocity: calc(var(--scroll) - var(--scroll-delayed));
  --scroll-speed: max(var(--scroll-velocity), -1 * var(--scroll-velocity));
  --scroll-direction: calc(var(--scroll-velocity) / var(--scroll-speed));
}

img {
  width: 100%;
}

.pink {
  color: #FF6F91;
}

.block-text {
  border-radius: 2px;
  background-color: white;
  padding: 5px 10px;
  font-size: clamp(1.6rem, 1.6rem + 0.625vw, 2.4rem);
}

.button {
  text-decoration: none;
  background-color: white;
  color: #FF6F91;
  border: 2px solid #FF6F91;
  border-radius: 50px;
  display: flex;
  padding: 10px 30px 10px 20px;
  position: relative;
}
.button::after {
  position: absolute;
  right: 10px;
  top: 28%;
  content: "";
  background-image: url(../images/icon-arrow-right.png);
  width: 10px;
  height: 20px;
  background-size: contain;
}
.button__icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}

label {
  font-size: 0.8rem;
}

textarea {
  border: 1px solid #D9D9D9;
  font-size: 0.8rem;
  border-radius: 4px;
  line-height: 1.6rem;
  padding: 5px;
}
textarea::-moz-placeholder {
  opacity: 0.5;
}
textarea::placeholder {
  opacity: 0.5;
}

footer {
  background-color: white;
  position: relative;
  z-index: 3;
  padding: 20px;
}
footer .copyright {
  text-align: center;
}

input {
  border: 1px solid #D9D9D9;
  font-size: 0.8rem;
  border-radius: 4px;
  line-height: 1.6rem;
  padding: 5px;
  height: 40px;
}
input::-moz-placeholder {
  opacity: 0.5;
}
input::placeholder {
  opacity: 0.5;
}

.hero {
  position: relative;
  padding: 20px;
}
.hero::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url(../images/hero/wave-top.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.hero::after {
  z-index: 1;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 880/240;
  background-image: url(../images/hero/wave-bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.hero__balloon1 {
  width: 30%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.hero__balloon2 {
  position: absolute;
  right: 0;
  top: 70px;
  width: 35%;
  margin-bottom: 20px;
  z-index: 2;
}
.hero__texts {
  margin-top: 10px;
  margin-bottom: 20px;
}
.hero__text1 {
  margin-bottom: 15px;
}
.hero__text2 {
  margin-left: 30px;
}
.hero__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero__img {
  position: relative;
}
.hero__img img {
  position: relative;
  z-index: 2;
}
.hero__img::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 40px;
  height: 100%;
  background-image: url(../images/hero/hero-back-left.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.hero__img::after {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 100px;
  height: 100%;
  background-image: url(../images/hero/hero-back-right.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .hero__balloon2 {
    position: absolute;
    right: 0;
    top: 27px;
    width: 33%;
    margin-bottom: 20px;
    z-index: 2;
  }
}
.reason {
  background-color: #F9F9F9;
}
.reason__contents {
  padding: 20px;
}
.reason__header {
  margin-top: 60px;
  line-height: 0;
}
.reason__body {
  border-radius: 4px;
  background-color: white;
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 60px;
}

.reason-item {
  display: flex;
  justify-content: left;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.reason-item__check {
  line-height: 0;
}
.reason-item__check img {
  width: 24px;
  height: 24px;
}
.reason-item__number {
  display: flex;
  align-items: center;
  min-width: 60px;
}
.reason-item__big-number {
  font-size: 2.2rem;
  margin-left: 5px;
  margin-bottom: 6px;
}

.compare {
  padding-bottom: 60px;
}
.compare__contents {
  padding: 20px;
}
.compare__header {
  margin-top: 60px;
  line-height: 0;
}
.compare__body {
  border-radius: 4px;
  background-color: white;
  padding: 25px 15px;
  margin-bottom: 30px;
}
.compare__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.feature {
  background-color: #FFBECD;
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  -webkit-clip-path: polygon(0 700px, 100% 0, 100% calc(100% - 700px), 0 100%);
          clip-path: polygon(0 700px, 100% 0, 100% calc(100% - 700px), 0 100%);
  z-index: 1;
}
.feature__header {
  position: relative;
  z-index: 3;
  margin-top: 20px;
}
.feature__body {
  position: relative;
  z-index: 3;
  margin-top: 20px;
}
.feature__contents {
  padding: 20px;
}

.feature-item {
  margin-bottom: 100px;
}
.feature-item__number {
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background-color: #FF6F91;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 5px;
}
.feature-item__number-header {
  font-size: 0.6rem;
}
.feature-item__number-body {
  line-height: 1.2rem;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.feature-item__title {
  position: relative;
  z-index: 4;
  font-size: clamp(1.6rem, 1.6rem + 0.625vw, 2.4rem);
  margin-bottom: 5px;
  line-height: clamp(1.6rem, 1.6rem + 0.625vw, 2.4rem);
  background-color: rgba(255, 255, 255, 0.831372549);
  padding: 10px;
  display: inline-block;
  border-radius: 2px;
}
.feature-item__contents {
  position: relative;
  z-index: 4;
  font-size: clamp(0.7rem, 0.7rem + 0.625vw, 1.2rem);
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.831372549);
  padding: 10px 15px;
  border-radius: 2px;
}
.feature-item--1 {
  text-align: right;
  display: flex;
  align-items: end;
  flex-direction: column;
  position: relative;
}
.feature-item--1::before {
  z-index: 3;
  position: absolute;
  content: "";
  top: 20px;
  left: -10px;
  width: 50%;
  aspect-ratio: 240/800;
  background-image: url(../images/feature/feature-mock1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.feature-item--2 {
  position: relative;
  text-align: right;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.feature-item--2::after {
  z-index: 3;
  position: absolute;
  content: "";
  top: 50px;
  right: 0px;
  width: 50%;
  aspect-ratio: 240/800;
  background-image: url(../images/feature/feature-mock2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.feature-item--3 {
  text-align: right;
  display: flex;
  align-items: end;
  flex-direction: column;
}

.plan {
  position: relative;
}
.plan__recommend img {
  vertical-align: bottom;
}
.plan__header {
  margin-top: 60px;
  padding: 20px;
}
.plan__body {
  padding: 10px;
  margin-bottom: 60px;
}

.plan-box {
  border: solid 4px #D9D9D9;
  border-radius: 4px;
  margin-bottom: 40px;
}
.plan-box--yellow {
  background-color: #FFE23D;
  border: solid 3px #FFE23D;
}
.plan-box--yellow .plan-box__header {
  background-color: #FFE23D;
}
.plan-box--yellow .plan-box__body-item {
  border-bottom: 2px solid #FFE23D;
}
.plan-box__header {
  padding: 20px;
  font-size: 1.6rem;
  background-color: #D9D9D9;
  text-align: center;
}
.plan-box__body {
  background-color: white;
}
.plan-box__body-item {
  font-size: 0.8rem;
  padding: 10px;
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #D9D9D9;
  margin: 0 20px;
  justify-content: flex-start;
  align-items: center;
}
.plan-box__body-item:last-child {
  border-bottom: none;
}
.plan-box__body-item-header {
  text-align: left;
  min-width: 100px;
}
.plan-box__body-item-contents {
  text-align: right;
  width: 100%;
}
.plan-box__number {
  font-size: 2.2rem;
}
.plan-box__lists {
  text-align: left;
  display: flex;
  justify-content: left;
  flex-direction: row;
  gap: 40px;
}

.contact {
  background-color: #F9F9F9;
}
.contact__contents {
  padding: 20px;
}
.contact__header {
  margin-top: 30px;
  line-height: 0;
  margin-bottom: 40px;
}
.contact__body {
  border-radius: 4px;
  background-color: white;
  padding: 20px;
}
.contact__item {
  display: flex;
  justify-content: left;
  flex-direction: column;
  margin-bottom: 10px;
}
.contact__cta {
  margin: 20px 0px;
  display: flex;
  justify-content: center;
}

.footer {
  background-color: #F9F9F9;
}
.footer__mock {
  top: 160px;
  position: relative;
}
.footer__contents {
  padding-top: 20vh;
  background-image: url(../images/footer/footer-background.png);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer__header {
  padding: 0 20%;
}
.footer__sitemap {
  padding: 10% 20%;
}
.footer__sitemap-item {
  list-style: none;
  line-height: 2.2rem;
}
.footer__sitemap-link {
  color: white;
  text-decoration: none;
}

.particles {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.particles__img {
  position: absolute;
  display: block;
  bottom: -100px;
}
.particles__img img {
  max-width: 40px;
}
.particles__img:nth-child(1) {
  animation: float1 15s linear infinite;
  left: 0;
}
.particles__img:nth-child(1) img {
  max-width: 100px;
}
.particles__img:nth-child(2) {
  animation: float1 15s linear infinite;
  left: 2%;
}
.particles__img:nth-child(2) img {
  max-width: 40px;
}
.particles__img:nth-child(3) {
  animation: float3 16s linear infinite;
  bottom: -280px;
  left: 5%;
}
.particles__img:nth-child(3) img {
  max-width: 60px;
}
.particles__img:nth-child(4) {
  animation: float2 10s linear infinite;
  bottom: -20px;
  left: 6%;
}
.particles__img:nth-child(4) img {
  max-width: 20px;
}
.particles__img:nth-child(5) {
  animation: float2 17s linear infinite;
  left: 2%;
}
.particles__img:nth-child(5) img {
  max-width: 20px;
}
.particles__img:nth-child(5) {
  animation: float1 18s linear infinite;
  left: 15%;
}
.particles__img:nth-child(5) img {
  max-width: 40px;
}
.particles__img:nth-child(6) {
  animation: float3 20s linear infinite;
  bottom: -500px;
  left: 9%;
}
.particles__img:nth-child(6) img {
  max-width: 100px;
}
.particles__img:nth-child(7) {
  animation: float3 17s linear infinite;
  bottom: -340px;
  left: 8%;
}
.particles__img:nth-child(7) img {
  max-width: 20px;
}
.particles__img:nth-child(8) {
  animation: float1 17s linear infinite;
  bottom: -40px;
  right: 8%;
}
.particles__img:nth-child(8) img {
  max-width: 50px;
}
.particles__img:nth-child(9) {
  animation: float2 13s linear infinite;
  bottom: -140px;
  right: 10%;
}
.particles__img:nth-child(9) img {
  max-width: 40px;
}
.particles__img:nth-child(10) {
  animation: float3 19s linear infinite;
  bottom: -240px;
  right: 8%;
}
.particles__img:nth-child(10) img {
  max-width: 80px;
}
.particles__img:nth-child(11) {
  animation: float1 11s linear infinite;
  bottom: -40px;
  right: 20%;
}
.particles__img:nth-child(11) img {
  max-width: 80px;
}
.particles__img:nth-child(12) {
  animation: float2 14s linear infinite;
  bottom: -140px;
  right: 24%;
}
.particles__img:nth-child(12) img {
  max-width: 30px;
}
.particles__img:nth-child(13) {
  animation: float3 21s linear infinite;
  bottom: -180px;
  right: 30%;
}
.particles__img:nth-child(13) img {
  max-width: 80px;
}
.particles__img:nth-child(14) {
  animation: float1 10s linear infinite;
  bottom: -240px;
  right: 33%;
}
.particles__img:nth-child(14) img {
  max-width: 50px;
}
.particles__img:nth-child(15) {
  animation: float2 17s linear infinite;
  bottom: -340px;
  right: 24%;
}
.particles__img:nth-child(15) img {
  max-width: 40px;
}
.particles__img:nth-child(16) {
  animation: float3 14s linear infinite;
  bottom: -480px;
  right: 28%;
}
.particles__img:nth-child(16) img {
  max-width: 80px;
}

/* Balloon floating upwards */
@keyframes float1 {
  0% {
    transform: translateY(0) translateX(0) rotateZ(0);
  }
  50% {
    transform: translateY(-80vh) translateX(60px) rotateZ(90deg);
  }
  100% {
    transform: translateY(-160vh) translateX(20px) rotateZ(180deg);
  }
}
@keyframes float3 {
  0% {
    transform: translateY(0) translateX(0) rotateZ(0);
  }
  30% {
    transform: translateY(-48vh) translateX(40px) rotateZ(-90deg);
  }
  100% {
    transform: translateY(-160vh) translateX(-20px) rotateZ(-180deg);
  }
}
@keyframes float2 {
  0% {
    transform: translateY(0) translateX(0) rotateZ(0);
  }
  40% {
    transform: translateY(-64vh) translateX(-60px) rotateZ(-90deg);
  }
  100% {
    transform: translateY(-160vh) translateX(20px) rotateZ(-180deg);
  }
}
@media screen and (max-width: 768px) {
  .particles {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */