* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: #101716;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
.home {
  overflow-x: clip;
}
.page-width {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.text-blue {
  color: #1e87f9;
}
.text-green {
  color: #00a480;
}
.section-title {
  margin: 0;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.14;
  text-align: center;
}
.hero {
  position: relative;
  padding: 100px 0 132px;
  overflow: clip;
  background: #edfafd url("../img/home-ja/hero-bg.webp") center / cover no-repeat;
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(38px, 4.85vw, 93px);
  background: url("../img/home-ja/product-unlocker-bg.webp") center bottom / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 71px;
}
.hero__content {
  position: relative;
  z-index: 1;
  flex: 0 0 582px;
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 3px 14px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
  background: #323232;
}
.hero__title {
  margin: 0;
  font-size: 66px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
}
.hero__description {
  margin: 24px 0 0;
  color: #303a39;
  font-size: 24px;
  line-height: 1.8;
}
.hero__visual {
  flex: 0 0 auto;
  width: 760px;
  max-width: none;
  height: auto;
  object-fit: contain;
}
.products-wrap {
  padding: 129px 0 110px;
}
.products__grid {
  display: grid;
  grid-template-columns: minmax(0, 382px) minmax(0, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 22px 24px;
  margin-top: 46px;
}
.product-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 0 0 30px;
  border-radius: 20px;
}
.product-card--unlocker {
  grid-row: 1 / span 2;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 20px 28px 0;
  background: #edf6ff url("../img/home-ja/product-unlocker-card-bg.png") center / cover no-repeat;
}
.product-card--system {
  background: #edfbfa url("../img/home-ja/product-system-bg.webp") right center / auto 100% no-repeat;
}
.product-card--pdf {
  padding-top: 23px;
  padding-bottom: 23px;
  background: #fdf1ef url("../img/home-ja/product-pdf-bg.webp") center / cover no-repeat;
}
.product-card__content {
  position: relative;
  z-index: 1;
  flex: 1 1 46%;
}
.product-card__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}
.product-card__icon {
  display: flex;
  flex: 0 0 65px;
  width: 65px;
  height: 65px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #fff;
}
.product-card__icon-image {
  display: block;
  height: auto;
}
.product-card__icon-image--unlocker {
  width: 34px;
}
.product-card__icon-image--system {
  width: 38px;
}
.product-card__icon-image--pdf {
  width: 46px;
  border-radius: 50%;
}
.product-card__title {
  margin: 0;
  color: #040404;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
}
.product-card--pdf .product-card__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.product-card__description {
  margin: 0 0 20px;
  color: #505b5a;
  font-size: 16px;
  line-height: 1.8;
}
.product-card__button {
  display: inline-flex;
  width: 100%;
  max-width: 219px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.46;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(29, 75, 70, 0.15);
}
.product-card__button--blue {
  background: linear-gradient(180deg, #67b3f2, #158af6);
}
.product-card__button--green {
  background: linear-gradient(180deg, #2ae9bf, #0dbd96);
}
.product-card__button--red {
  background: linear-gradient(180deg, #ff9999, #fd6b68);
}
.product-card__arrow {
  display: block;
  width: 24px;
  height: 13px;
  object-fit: contain;
}
.product-card__visual {
  height: auto;
  object-fit: contain;
}
.product-card--system .product-card__visual {
  width: min(47%, 362px);
}
.product-card--pdf .product-card__visual {
  width: min(50%, 387px);
}
.product-card--unlocker .product-card__content {
  flex: 0 1 auto;
}
.product-card--unlocker .product-card__visual {
  width: calc(100% + 56px);
  max-width: 382px;
  margin: 0 -28px;
}
.mobile-card-swiper {
  overflow: visible;
}
.mobile-card-swiper .swiper-wrapper,
.mobile-card-swiper .swiper-slide {
  height: auto;
}
.mobile-card-swiper__pagination {
  display: none;
}
.reasons {
  padding: 178px 0 137px;
  background: #f5ffff url("../img/home-ja/reason-bg.webp") center / cover no-repeat;
}
.reasons__inner {
  display: grid;
  grid-template-columns: 312px minmax(0, 1fr);
  align-items: center;
  gap: 41px;
}
.reasons__slider {
  width: 100%;
  min-width: 0;
}
.reasons__title {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.25;
}
.reasons__description {
  margin: 18px 0 0;
  color: #505b5a;
  font-size: 16px;
  line-height: 1.75;
}
.reasons__line {
  display: block;
  width: 116px;
  height: 4px;
  margin-top: 0;
  background: #00a480;
}
.reasons__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.reason-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-content: start;
  align-items: center;
  column-gap: 16px;
  row-gap: 14px;
  padding: 20px 26px 16px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 11px 40px rgba(220, 236, 236, 0.74);
}
.reason-card__icon {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}
.reason-card > div {
  display: contents;
}
.reason-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}
.reason-card__text {
  grid-column: 1 / -1;
  margin: 0;
  color: #505b5a;
  font-size: 16px;
  line-height: 1.75;
}
.tips {
  padding: 90px 0;
  color: #fff;
  background: #009b8f url("../img/home-ja/tips-bg.webp") center / cover no-repeat;
}
.tips__title {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}
.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 42px;
}
.tip-card {
  display: flex;
  overflow: clip;
  flex-direction: column;
  border-radius: 18px;
  color: #101716;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 73, 69, 0.14);
}
.tip-card__image-link {
  display: block;
  aspect-ratio: 373 / 207;
  overflow: hidden;
}
.tip-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.tip-card:hover .tip-card__image {
  transform: scale(1.04);
}
.tip-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px 24px 18px;
}
.tip-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.tip-card__text {
  margin: 12px 0;
  color: #596361;
  font-size: 16px;
  line-height: 1.75;
}
.tip-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e7eeee;
  color: #989898;
  font-size: 16px;
  line-height: 1.745;
}
.tip-card__meta a {
  color: #00a480;
}
.reviews {
  padding: 116px 0 45px;
  background: #f9fbfb;
}
.reviews__inner {
  position: relative;
}
.reviews__inner {
  width: calc(100% - 48px);
  max-width: 1200px;
}
.reviews__inner .section-title {
  margin-bottom: 50px;
  font-size: 46px;
  line-height: 1.14;
}
.reviews__slider {
  width: 100%;
  max-width: 1062px;
  margin: 0 auto;
  padding: 0 0 54px;
}
.review-slide {
  display: block;
  padding: 24px 28px;
  background: #fff;
}
.review-slide.swiper-slide-next {
  border-left: 1px dashed #e5eeee;
}
.review-item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.review-item__logo {
  display: block;
  order: -1;
  width: 70px;
  height: 70px;
  margin-bottom: 4px;
  border-radius: 50%;
  object-fit: cover;
}
.review-item__text {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #505b5a;
  font-size: 16px;
  line-height: 1.745;
  background: transparent;
}
.reviews__slider .swiper-wrapper {
  border-radius: 11px;
  box-shadow: 0 9px 25px rgba(209, 230, 230, 0.28);
}
.reviews__arrow {
  position: absolute;
  top: 58%;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.reviews__arrow--prev {
  left: 0;
}
.reviews__arrow--next {
  right: 0;
}
.reviews__arrow-icon {
  display: block;
  width: 34px;
  height: 34px;
}
.reviews .swiper-pagination-bullet-active {
  background: #00a480;
}
.achievements {
  padding: 84px 0 96px;
  color: #fff;
  background-color: #008799;
  background-image: url("../img/home-ja/stats-bg.webp"), linear-gradient(90deg, #008799, #2ed8bd);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: luminosity, normal;
}
.achievements__title {
  margin: 0;
  font-size: 46px;
  line-height: 1.2;
  text-align: center;
}
.achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 52px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.achievement {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.achievement__icon {
  display: block;
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
}
.achievement__panel {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  padding: 49px 14px 34px;
  background: url("../img/home-ja/stat-panel.svg") center / 100% 100% no-repeat;
}
.achievement__number {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.04;
}
.achievement__label {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 996px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__description {
    font-size: 16px;
  }
  .products__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .product-card--unlocker {
    grid-row: auto;
    flex-direction: row;
    align-items: center;
    padding: 28px 12px 28px 32px;
  }
  .product-card--unlocker .product-card__visual {
    width: min(54%, 300px);
    margin: 0;
  }
  .reasons__inner {
    grid-template-columns: 1fr;
  }
  .reasons__title br {
    display: none;
  }
  .tips__grid {
    gap: 18px;
  }
  .reviews__arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-width {
    width: calc(100% - 32px);
  }
  .section-title {
    font-size: 26px;
  }
  .mobile-card-swiper {
    overflow: hidden;
    padding-bottom: 34px;
    width: 100%;
  }
  .mobile-card-swiper__pagination {
    bottom: 0;
    display: block;
  }
  .mobile-card-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 164, 128, 0.32);
    opacity: 1;
  }
  .mobile-card-swiper .swiper-pagination-bullet-active {
    background: #00a480;
  }
  .tips .mobile-card-swiper .swiper-pagination-bullet,
  .achievements .mobile-card-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.46);
  }
  .tips .mobile-card-swiper .swiper-pagination-bullet-active,
  .achievements .mobile-card-swiper .swiper-pagination-bullet-active {
    background: #fff;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero__inner {
    flex-direction: column;
    gap: 24px;
  }
  .hero__content {
    flex-basis: auto;
  }
  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .hero__title {
    font-size: 34px;
    line-height: 1.4;
  }
  .hero__description {
    margin-top: 18px;
    font-size: 14px;
  }
  .hero__visual {
    width: 100%;
    max-width: 560px;
  }
  .hero__visual {
    transform: none;
  }
  .products-wrap {
    padding: 64px 0 70px;
  }
  .products__grid {
    display: flex;
    gap: 0;
    margin-top: 32px;
  }
  .product-card {
    align-items: flex-start;
    padding: 24px;
  }
  .product-card__heading {
    gap: 14px;
  }
  .product-card__icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
  .product-card__icon-image--unlocker {
    width: 27px;
  }
  .product-card__icon-image--system {
    width: 30px;
  }
  .product-card__icon-image--pdf {
    width: 37px;
  }
  .product-card__title {
    font-size: 20px;
  }
  .product-card__description {
    font-size: 14px;
    line-height: 1.7;
  }
  .product-card__visual {
    align-self: center;
  }
  .reasons {
    padding: 70px 0;
  }
  .reasons__inner {
    gap: 34px;
  }
  .reasons__title {
    font-size: 36px;
  }
  .reasons__description {
    margin-top: 18px;
  }
  .reason-card__title {
    font-size: 20px;
  }
  .reason-card__text {
    font-size: 14px;
  }
  .reasons__list {
    display: flex;
    gap: 0;
  }
  .tips {
    padding: 62px 0 70px;
  }
  .tips__title {
    font-size: 32px;
  }
  .tips__grid {
    display: flex;
    gap: 0;
    margin-top: 30px;
  }
  .tip-card__text {
    font-size: 14px;
  }
  .tip-card__meta {
    font-size: 14px;
  }
  .reviews {
    padding: 66px 0 72px;
  }
  .reviews__inner {
    width: calc(100% - 32px);
  }
  .reviews__inner .section-title {
    margin-bottom: 32px;
    font-size: 26px;
  }
  .review-slide {
    padding: 24px;
    border-left: 0;
  }
  .review-slide.swiper-slide-next {
    border-left: 0;
  }
  .achievements {
    padding: 62px 0 70px;
  }
  .achievements__title {
    font-size: 30px;
  }
  .achievements__grid {
    display: flex;
    gap: 0;
    margin-top: 34px;
  }
  .achievement__icon {
    width: 72px;
    height: 72px;
  }
  .achievement__panel {
    max-width: 240px;
  }
}
@media (max-width: 520px) {
  .hero__title {
    font-size: 28px;
  }
  .product-card {
    flex-direction: column;
  }
  .product-card--unlocker {
    align-items: flex-start;
    padding: 24px;
  }
  .product-card__visual {
    width: 100%;
    max-width: 340px;
  }
  .product-card--unlocker .product-card__visual {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .product-card__button {
    width: 100%;
  }
  .reasons__title {
    font-size: 32px;
  }
  .reasons__list {
    grid-template-columns: 1fr;
  }
  .tips__title {
    font-size: 28px;
  }
  .achievement__number {
    font-size: 42px;
  }
}
