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

html {
  font-size: 10px;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (max-width: 1260px) and (min-width: 769px) {
  html {
    font-size: 0.7936507937vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #212121;
  background-color: #f5f5f5;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
.container {
  width: 100%;
  max-width: 104rem;
  margin: 0 auto;
}

.section-title {
  display: table;
  margin: 0 auto 6rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 0.6rem 0;
  border-top: 0.2rem solid #EF9A9A;
  border-bottom: 0.2rem solid #EF9A9A;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 4rem;
    padding: 0.4rem 0;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .header {
    height: 5.2rem;
  }
}
.header__inner {
  max-width: 144rem;
  height: 100%;
  margin: 0 auto;
  padding: 0 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1260px) and (min-width: 769px) {
  .header__inner {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 1.4rem;
  }
}
.header__logo img {
  height: auto;
  width: 16.9rem;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 12rem;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 2.4rem;
}
.header__nav-list a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #212121;
  transition: color 0.3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  padding-bottom: 0.4rem;
}
@media (max-width: 1260px) and (min-width: 769px) {
  .header__nav-list a {
    font-size: 1.6rem;
  }
}
.header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0.2rem;
  height: 0.2rem;
  background-color: #EF9A9A;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.header__nav-list a:hover::after, .header__nav-list a:active::after, .header__nav-list a.is-tapped::after {
  transform: translateX(0);
}

.hero {
  position: relative;
  padding: 16.2rem 10rem 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #CFF4EA 0%, #E2F8E1 100%);
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding: 5.2rem 0rem 0rem;
  }
}
.hero__image {
  position: relative;
  width: 124rem;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__image {
    width: 100%;
  }
}
.hero__buttons {
  display: flex;
  width: 30.6451612903%;
  gap: 7.8947368421%;
  position: absolute;
  top: 58.8454376164%;
  left: 8.064516129%;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__buttons {
    width: 100vw;
    left: 0rem;
    top: auto;
    bottom: 4rem;
    gap: 2.6rem;
    padding: 0 2.4rem;
  }
}
.hero .store-badge.app-store {
  width: 41.3157894737%;
  display: block;
}
@media (max-width: 768px) {
  .hero .store-badge.app-store {
    width: 14rem;
  }
}
.hero .store-badge.google-store {
  width: 51.0526315789%;
  display: block;
}
@media (max-width: 768px) {
  .hero .store-badge.google-store {
    width: 17.4rem;
  }
}
.hero__curve {
  position: absolute;
  bottom: -14.2rem;
  left: 50%;
  width: 121.875%;
  height: 19rem;
  background: #fff;
  border-radius: 100% 100% 100% 100%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .hero__curve {
    display: none;
  }
}

.about {
  background-color: #fff;
  padding: 10rem 0 10rem;
}
@media (max-width: 768px) {
  .about {
    padding: 6rem 0;
  }
}
.about__description {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about__description {
    padding: 0 2.4rem;
    text-align: left;
    font-size: 1.6rem;
  }
}

.problem-image {
  width: 100.6rem;
  margin: 0 auto 6rem;
  position: relative;
}
@media (max-width: 768px) {
  .problem-image {
    width: 39rem;
    margin: 0 auto 4rem;
  }
}
.problem-image__comment {
  position: absolute;
}
.problem-image__comment.js-fade-in02 {
  opacity: 0;
  transform: translateY(60px) scale(0.8);
}
.problem-image__comment.js-fade-in02.is-visible {
  animation: commentBounce 0.5s ease both;
}
.problem-image__comment.comment01 {
  padding-top: 8.6rem;
  top: 0rem;
  left: 0;
  width: 37.05rem;
}
.problem-image__comment.comment01.js-fade-in02.is-visible {
  animation-delay: 0.8s;
}
@media (max-width: 768px) {
  .problem-image__comment.comment01 {
    width: 25rem;
    left: 1.3rem;
    top: 0rem;
    padding-top: 0rem;
  }
}
.problem-image__comment.comment02 {
  top: 0;
  left: calc(50% + 3.5rem);
  transform: translateX(-50%);
  width: 31.45rem;
}
.problem-image__comment.comment02.js-fade-in02 {
  transform: translateX(-50%) translateY(60px) scale(0.8);
}
.problem-image__comment.comment02.js-fade-in02.is-visible {
  animation-name: commentBounceX;
  animation-delay: 1.2s;
}
@media (max-width: 768px) {
  .problem-image__comment.comment02 {
    width: 20.7rem;
    left: auto;
    right: 0.3rem;
    top: 13rem;
    transform: none;
  }
  .problem-image__comment.comment02.js-fade-in02 {
    transform: translateY(60px) scale(0.8);
  }
  .problem-image__comment.comment02.js-fade-in02.is-visible {
    animation-name: commentBounce;
    animation-delay: 1.2s;
  }
}
.problem-image__comment.comment03 {
  padding-top: 10.4rem;
  top: 0rem;
  right: 0;
  width: 29.4rem;
}
.problem-image__comment.comment03.js-fade-in02.is-visible {
  animation-delay: 1.6s;
}
@media (max-width: 768px) {
  .problem-image__comment.comment03 {
    width: 20.5rem;
    left: 0.65rem;
    top: 20.4rem;
    right: auto;
    padding-top: 0rem;
  }
}

.features {
  background-color: #e0f1f2;
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .features {
    padding: 6rem 0;
  }
}
.features__summary {
  margin-bottom: 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #fff;
  border-radius: 1.6rem;
}
@media (max-width: 768px) {
  .features__summary {
    margin: 0 auto 4rem;
    width: 34.2rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.feature-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 4rem 0 3.2rem;
}
.feature-summary::before {
  content: "";
  position: absolute;
  width: 0.2rem;
  height: 7.6rem;
  background-color: #066461;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.feature-summary::after {
  content: "";
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url("/assets/img/features-arrow.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.feature-summary:first-child::before {
  display: none;
}
@media (max-width: 768px) {
  .feature-summary {
    padding: 3.2rem 2.4rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  .feature-summary::before {
    width: 29.4rem;
    height: 0.1rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .feature-summary::after {
    width: 2.4rem;
    height: 2.4rem;
    top: 50%;
    position: absolute;
    right: 2.4rem;
    transform: translateY(-50%);
  }
}
.feature-summary__number {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #066461;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .feature-summary__number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    font-size: 1.44rem;
    line-height: 1;
  }
}
.feature-summary__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.feature-summary__text {
  font-size: 2rem;
  font-weight: 700;
  color: #212121;
}
@media (max-width: 768px) {
  .feature-summary__text {
    font-size: 1.6rem;
  }
}
.feature-summary__arrow {
  width: 2rem;
  height: 1.2rem;
}
.feature-summary__arrow path {
  fill: #066461;
}
.feature-summary__divider {
  display: block;
  width: 0.2rem;
  height: 7.6rem;
  background-color: #066461;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .feature-summary__divider {
    display: none;
  }
}

.feature-detail {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 10rem 17rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .feature-detail {
    width: 34.2rem;
    margin: 0 auto 4rem;
    padding: 3.2rem 2.4rem;
    gap: 2.4rem;
  }
}
.feature-detail:last-child {
  margin-bottom: 0;
}
.feature-detail--reverse {
  flex-direction: row-reverse;
}
.feature-detail__content {
  flex: 1;
}
.feature-detail__label {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #066461;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .feature-detail__label {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}
.feature-detail__title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .feature-detail__title {
    font-size: 2rem;
  }
}
.feature-detail__text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .feature-detail__text {
    text-align: left;
    font-size: 1.6rem;
  }
}
.feature-detail__note {
  font-size: 1.4rem;
  color: #757575;
  margin-top: 1.6rem;
  line-height: 1.7;
  padding-left: 1em;
  text-align: left;
  position: relative;
}
.feature-detail__note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .feature-detail__note {
    font-size: 1.2rem;
  }
}
.feature-detail__image {
  width: 100%;
}

.usage {
  padding: 10rem 0 6rem;
  background: #F5F5F5;
  position: relative;
}
@media (max-width: 768px) {
  .usage {
    padding: 6rem 2.4rem 2rem;
  }
}
.usage::before {
  content: "";
  position: absolute;
  width: 104rem;
  height: 0.2rem;
  background-color: #066461;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .usage::before {
    width: 31rem;
    height: 0.1rem;
  }
}
.usage__steps {
  display: grid;
  grid-template-columns: repeat(3, 32.6rem);
  justify-content: space-between;
}
@media (max-width: 768px) {
  .usage__steps {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}

.step {
  text-align: center;
  max-width: 30rem;
}
@media (max-width: 768px) {
  .step {
    max-width: 100%;
  }
}
.step__number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #066461;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .step__number {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
}
.step__content {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 2.4rem 2.4rem 0;
  gap: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .step__content {
    gap: 1.5rem;
  }
}
.step__image {
  width: 100%;
}
.step__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 6rem;
}
@media (max-width: 768px) {
  .step__title {
    font-size: 1.6rem;
    min-height: auto;
  }
}
.step__text {
  font-size: 1.8rem;
  text-align: left;
  color: #212121;
}
@media (max-width: 768px) {
  .step__text {
    font-size: 1.6rem;
  }
}
.step__note {
  font-size: 1.4rem;
  color: #757575;
  margin-top: 0.8rem;
  text-align: left;
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.step__note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 768px) {
  .step__note {
    font-size: 1.2rem;
  }
}

.download {
  padding: 4rem 0;
}
.download__title {
  font-size: 2rem;
  color: #066461;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .download__title {
    font-size: 1.6rem;
  }
}
.download__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 4rem;
}
@media (max-width: 768px) {
  .download__buttons {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }
}
.download__item {
  text-align: center;
  width: max-content;
}
.download .store-badge.app-store {
  display: block;
  width: 15.7rem;
}
.download .store-badge.google-store {
  display: block;
  width: 19.4rem;
}
.download .qr-code {
  width: 9.6rem;
}
.download__label {
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .download__label {
    font-size: 1.4rem;
  }
}

.faq {
  background: linear-gradient(180deg, #F5F5F5 0%, #CFF4EA 100%);
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 6rem 2.4rem;
  }
}
.faq__list {
  margin: 0 auto 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 768px) {
  .faq__list {
    margin: 0 auto 4rem;
  }
}
.faq__item {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.faq__item.is-open .faq__toggle::before {
  opacity: 0;
}
.faq__item.is-open .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.faq__item.is-open .faq__answer {
  max-height: inherit;
  opacity: 1;
  padding: 3.2rem;
}
@media (max-width: 768px) {
  .faq__item.is-open .faq__answer {
    padding: 2.4rem;
  }
}
.faq__question {
  width: 100%;
  padding: 3.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  text-align: left;
  background-color: #fff;
}
@media (max-width: 768px) {
  .faq__question {
    padding: 2.4rem;
    align-items: flex-start;
  }
}
.faq__q, .faq__a {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #066461;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  flex: 0 0 3.8rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .faq__q, .faq__a {
    font-size: 2.4rem;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    flex: 0 0 3.8rem;
  }
}
.faq__a {
  color: #066461;
  background-color: #fff;
}
.faq__question-text {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 400;
  color: #212121;
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 1.6rem;
  }
}
.faq__toggle {
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
  align-self: center;
  flex-shrink: 0;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background-color: #066461;
  transition: all ease 0.6s;
}
.faq__toggle::before {
  width: 0.2rem;
  height: 2.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__toggle::after {
  width: 2.2rem;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 0 3.2rem;
  background-color: #e0f1f2;
  max-height: 0;
  opacity: 0;
  color: #066461;
  overflow: hidden;
  transition: all 0.6s ease;
}
@media (max-width: 768px) {
  .faq__answer {
    padding: 0 2.4rem;
    align-items: flex-start;
  }
}
.faq__answer-text {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 768px) {
  .faq__answer-text {
    font-size: 1.6rem;
  }
}
.faq__more {
  display: flex;
  width: 35.8rem;
  height: 4.8rem;
  border-radius: 2.4rem;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  color: #066461;
  border: 0.1rem solid #066461;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
}
.faq__more:hover {
  background-color: #066461;
  color: #fff;
}
@media (max-width: 768px) {
  .faq__more {
    width: 100%;
    font-size: 1.8rem;
  }
}

.cta {
  background: linear-gradient(180deg, #CFF4EA 0%, #E2F8E1 100%);
  padding: 9.4rem 0rem 0rem;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .cta {
    padding: 6rem 2.4rem 0rem;
  }
}
.cta-image {
  position: relative;
  margin: 0 auto;
  z-index: 2;
  width: 126rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta-image {
    width: 100vw;
    left: -2.4rem;
  }
}
.cta__content {
  position: absolute;
  z-index: 3;
  top: 25.4rem;
  left: calc(50% - 26.6rem);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .cta__content {
    top: auto;
    left: auto;
    position: relative;
    transform: none;
  }
}
.cta__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 5.2rem;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
.cta__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
}
@media (max-width: 768px) {
  .cta__buttons {
    gap: 2.6rem;
    margin-bottom: 4rem;
  }
}
.cta .store-badge.app-store {
  width: 15.7rem;
  display: block;
}
@media (max-width: 768px) {
  .cta .store-badge.app-store {
    width: 14.2rem;
  }
}
.cta .store-badge.google-store {
  width: 19.4rem;
  display: block;
}
@media (max-width: 768px) {
  .cta .store-badge.google-store {
    width: 17.4rem;
  }
}
.cta__curve {
  position: absolute;
  bottom: -7rem;
  left: 50%;
  border-radius: 100%;
  transform: translateX(-50%);
  width: 121.875%;
  height: 19rem;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta__curve {
    display: none;
  }
}

.footer {
  background-color: #fff;
  color: #212121;
  padding: 10rem 0 9rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 6rem 2.4rem 2rem;
  }
}
.footer__nav {
  margin-bottom: 4rem;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer__nav-list {
    justify-content: flex-start;
    gap: 1.2rem 1.6rem;
    margin-bottom: 1.2rem;
  }
}
.footer__nav-list a {
  font-size: 1.4rem;
  transition: opacity 0.3s;
}
@media (max-width: 768px) {
  .footer__nav-list a {
    font-size: 1.2rem;
  }
}
.footer__nav-list a:hover {
  opacity: 0.7;
}
.footer__nav-list--sub {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__nav-list--sub {
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.footer__nav-list--sub a::after {
  content: "";
  display: inline-block;
  width: 2.1rem;
  height: 2.1rem;
  background-image: url("/assets/img/icon_pdf.svg");
  background-size: contain;
  background-position: 0 0;
  background-repeat: no-repeat;
  vertical-align: bottom;
  margin-left: 0.4rem;
}
@media (max-width: 768px) {
  .footer__nav-list--sub a::after {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.footer__copyright {
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.header__menu-btn {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__menu-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #212121;
}

.drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #CFF4EA 0%, #E2F8E1 100%);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .drawer {
    display: block;
  }
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.2rem;
  padding: 0 1.4rem;
  background-color: #fff;
}
.drawer__header .header__logo img {
  width: 12rem;
}
.drawer__close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.drawer__close-btn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #212121;
}
.drawer__nav {
  padding: 3.2rem 2.4rem;
}
.drawer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.drawer__nav-list a {
  font-size: 1.6rem;
  font-weight: 400;
  color: #212121;
  line-height: 1.5;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.drawer__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 0.2rem;
  height: 0.2rem;
  background-color: #EF9A9A;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.drawer__nav-list a:hover::after, .drawer__nav-list a:active::after, .drawer__nav-list a.is-tapped::after {
  transform: translateX(0);
}

.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .drawer-overlay {
    display: block;
  }
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.drawer-open {
  overflow: hidden;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-in.hero__image {
  transform: translateY(10px);
}
.js-fade-in.hero__image.is-visible {
  transform: translateY(0);
}
.js-fade-in.cta-image {
  transform: translateY(10px);
}
.js-fade-in.cta-image.is-visible {
  transform: translateY(0);
}
.js-fade-in.cta__content {
  transform: translateX(-50%) translateY(10px);
}
.js-fade-in.cta__content.is-visible {
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .js-fade-in.cta__content {
    transform: translateY(10px);
  }
  .js-fade-in.cta__content.is-visible {
    transform: none;
  }
}

@keyframes commentBounce {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(-15px) scale(1.1);
  }
  70% {
    transform: translateY(5px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes commentBounceX {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(60px) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(-15px) scale(1.1);
  }
  70% {
    transform: translateX(-50%) translateY(5px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
