body {
  background-color: #e9fcf3;
  margin-top: -20px;
  position: relative;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

a:hover {
  opacity: 0.8;
  transition: 0.5s;
}

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

.inner-contents {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(140, 140, 140, 0.25);
}

.container {
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 400px;
  margin: 0 auto;
}
.header .logo {
  width: 101px;
}
.header .hamburger {
  display: block;
  width: 30px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #171717;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header .hamburger span:nth-child(1) {
  top: 0;
}
.header .hamburger span:nth-child(2) {
  top: 9px;
}
.header .hamburger span:nth-child(3) {
  top: 18px;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}
.header .nav-menu {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.header .nav-menu.active {
  display: block;
}
.header .nav-menu ul {
  padding-top: 40px;
  padding-left: 30px;
  list-style: none;
}
.header .nav-menu ul li {
  margin-bottom: 15px;
}
.header .nav-menu ul li a {
  color: #171717;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 10px 0;
}
.header .nav-menu ul li a:hover, .header .nav-menu ul li a:focus {
  color: #52b389;
}
.header .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.header .close-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #171717;
  position: absolute;
  left: 0;
  top: 50%;
}
.header .close-menu span:first-child {
  transform: rotate(45deg);
}
.header .close-menu span:last-child {
  transform: rotate(-45deg);
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.nav-icon {
  position: fixed;
  top: 140px;
  left: 5%;
  width: 250px;
  transform: rotate(-20.094deg);
}

.hero-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-section {
  background-color: #52b389;
  color: #fff;
  padding: 40px 30px;
  text-align: center;
}
.cta-section .cta-highlight {
  display: inline-block;
  background-color: #fff;
  color: #52b389;
  width: 100%;
  padding: 6px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 9px;
}
.cta-section .cta-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.cta-section .cta-description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
.cta-section .cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff100;
  color: #171717;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.cta-section .cta-button .cta-button-icon {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.features-section {
  padding: 60px 30px 5px 30px;
  background-image: url(../images/bk_point.webp);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.features-section .features-title {
  margin: 0 auto 20px auto;
}
.features-section .features-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #e60012;
  margin-bottom: 20px;
}
.features-section .feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 4px 4px 4px 0px rgba(140, 140, 140, 0.25);
}
.features-section .feature-card .feature-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.features-section .feature-card .feature-title span {
  color: #e60012;
}
.features-section .feature-card .feature-icon {
  width: 45%;
  margin: 0 auto 20px;
}
.features-section .feature-card .feature-description {
  font-size: 16px;
  text-align: justify;
}

.pricing-section {
  padding: 60px 30px;
  text-align: center;
}
.pricing-section .pricing-header {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.pricing-section .pricing-header .pricing-icon {
  width: 27px;
}
.pricing-section .pricing-header .pricing-title {
  font-size: 32px;
  color: #e60012;
  line-height: 45px;
}
.pricing-section .pricing-company {
  display: inline-block;
  background-color: #171717;
  color: #fff;
  padding: 10px 60px;
  border-radius: 40px;
  font-size: 20px;
  margin-bottom: 20px;
  width: 100%;
  font-weight: 600;
}
.pricing-section .pricing-company-green {
  background-color: #52b389;
}
.pricing-section .pricing-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  align-items: flex-end;
  border-bottom: 2px solid #171717;
  margin-bottom: 30px;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 600;
}
.pricing-section .pricing-item .pricing-label {
  font-size: 16px;
  line-height: 29px;
}
.pricing-section .pricing-item .pricing-value {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.pricing-section .pricing-item .pricing-value span {
  font-size: 40px;
  text-align: center;
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 100% */
}
.pricing-section .pricing-item .pricing-value .pricing-currency {
  font-size: 16px;
  line-height: 22px;
  vertical-align: top;
}
.pricing-section .pricing-total-backyellow {
  background: linear-gradient(transparent 70%, #fff100 60%);
}
.pricing-section .pricing-total {
  display: flex;
  padding-bottom: 10px;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 40px;
  font-family: "Noto Sans CJK JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
}
.pricing-section .pricing-total .highlight-green {
  color: #52b389;
}
.pricing-section .pricing-total .pricing-value {
  text-align: center;
  font-family: Roboto;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px; /* 100% */
}
.pricing-section .pricing-total .pricing-value .pricing-currency {
  font-family: "Noto Sans CJK JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 28px */
  color: #171717;
}
.pricing-section .pricing-total .pricing-total-value {
  font-weight: 700;
}
.pricing-section .pricing-separator {
  width: 50px;
  margin: 42px auto;
}

.savings-section {
  width: 100%;
  margin-top: -20px;
  margin-bottom: 40px;
}

.solutions-section {
  margin-top: 120px;
}
.solutions-section .solutions-title {
  text-align: center;
  font-size: 18px;
  line-height: 180%; /* 32.4px */
  margin-bottom: 40px;
}
.solutions-section .solutions-title p {
  margin-top: 20px;
}
.solutions-section .solutions-grid {
  padding: 40px 30px 0 30px;
  background-color: #e9fcf3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.solutions-section .solutions-grid .solution-card {
  margin-bottom: 60px;
}
.solutions-section .solutions-grid .solution-card .solution-header {
  width: 224px;
  margin: 0 auto;
}
.solutions-section .solutions-grid .solution-card .solution-subtitle {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.16px;
  color: #52b389;
}
.solutions-section .solutions-grid .solution-card .solution-image {
  width: 100%;
  margin: 20px auto 30px auto;
}
.solutions-section .solutions-grid .solution-card .solution-description {
  color: #171717;
  text-align: justify;
  line-height: 1.6;
}

.testimonial-section {
  padding: 60px 30px;
  background-color: #fff;
  text-align: center;
}
.testimonial-section .testimonial-title {
  font-size: 32px;
  font-weight: 600;
  color: #e60012;
  margin-bottom: 10px;
}
.testimonial-section .testimonial-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 30px;
}
.testimonial-section .testimonial-image {
  width: 100%;
  margin: 0 auto 30px;
  border-radius: 10px;
}
.testimonial-section .slider-item {
  margin: 0 10px;
}
.testimonial-section .testimonial-quote {
  font-size: 18px;
  color: #171717;
  line-height: 1.6;
  margin-bottom: 30px;
}
.testimonial-section .testimonial-quote span {
  color: #e60012;
  font-weight: 700;
}
.testimonial-section .author-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.testimonial-section .author-info .author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}
.testimonial-section .author-info .author-details {
  text-align: left;
}
.testimonial-section .author-info .author-details .author-name {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
}
.testimonial-section .author-info .author-details .author-title {
  font-size: 14px;
  color: #171717;
  opacity: 0.8;
}
.testimonial-section .testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.testimonial-section .testimonial-nav .nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d9d9d9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonial-section .testimonial-nav .nav-dot.active {
  background-color: #52b389;
}

.process-section {
  padding: 120px 30px 30px 40px;
}
.process-section .process-header {
  margin-bottom: 40px;
}
.process-section .process-list {
  list-style: none;
  padding: 0;
}
.process-section .process-list .process-content-alow {
  width: 20px;
  margin: 0 auto 40px auto;
}
.process-section .process-list .process-item {
  margin-bottom: 40px;
}
.process-section .process-list .process-item .process-step {
  background: #e60012;
  border-radius: 20px;
  text-align: center;
  width: 140px;
  padding: 8px 0px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 16px;
  margin: 0 auto 10px auto;
}
.process-section .process-list .process-item .process-step-title {
  font-family: "Noto Sans CJK JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.16px;
  text-align: center;
}
.process-section .process-list .process-item .process-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  margin-top: 30px;
}
.process-section .process-list .process-item .process-content img {
  display: flex;
  width: 120px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.process-section .process-list .process-item .process-content p {
  font-size: 16px;
}

.faq-section {
  padding: 60px 30px;
  background-image: url(../images/bk_point.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.faq-section .faq-header {
  text-align: center;
  margin-bottom: 14px;
}
.faq-section .faq-header h2 {
  margin-bottom: 15px;
}
.faq-section .faq-subtitle {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 14px;
}
.faq-section .faq-description {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.faq-section .faq-item {
  border-top: 1px solid #171717;
  padding: 16px 0;
}
.faq-section .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.faq-section .faq-item .faq-question .faq-toggle {
  width: 32px;
  height: 32px;
}

.footer {
  width: 400px;
  padding: 60px 30px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(140, 140, 140, 0.25);
}
.footer .footer-logo {
  width: 140px;
  margin-bottom: 30px;
}
.footer .footer-info {
  font-size: 14px;
  margin-bottom: 48px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer .footer-separator {
  border-top: 1px solid #171717;
  margin-bottom: 24px;
}
.footer .footer-copyright {
  font-size: 14px;
  text-align: center;
}/*# sourceMappingURL=pc.css.map */