* {
  box-sizing: border-box;
}

:root {
  --page-max-width: 1920px;
  --motion-ease-standard: cubic-bezier(.22, 1, .36, 1);
  --motion-duration-base: 0.7s;
  --motion-duration-fast: 0.6s;
  --motion-duration-hover: 0.35s;
}

body {
  max-width: var(--page-max-width);
  margin-inline: auto;
}

html {
  scroll-behavior: smooth;
}

#top {
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  width: min(90%, calc(var(--page-max-width) * 0.9));
  color: #fff;
}

.site-header__inner {
  background: transparent;
  backdrop-filter: none;
  border-radius: 999px;
  box-shadow: none;
  padding: 1rem 1.25rem;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled .site-header__inner {
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled {
  color: #444;
}

.site-header.is-menu-open .site-header__inner {
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand-main,
.site-header__brand-sub {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: inherit;
}

.site-header__brand {
  display: grid;
  gap: 8px;
}

.site-header__brand-main {
  font-size: 1.2rem;
}

.site-header__brand-sub {
  font-size: 1.2rem;
}

.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  position: relative;
  z-index: 65;
  transition:
    background-color var(--motion-duration-fast) var(--motion-ease-standard),
    color var(--motion-duration-fast) var(--motion-ease-standard),
    border-color var(--motion-duration-fast) var(--motion-ease-standard);
}

.site-header__nav {
  display: none;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header__nav-link {
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-header.is-scrolled .site-header__menu-btn {
  color: #01af6b;
  background: #fff;
}

.site-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s ease;
}

.site-header__nav-link:hover {
  color: #01af6b;
}

.site-header__nav-link:hover::after {
  width: 100%;
}

.site-header__mobile-nav {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header__mobile-panel {
  background: #fff;
  border-radius: 14px;
  padding: 16px 24px 20px;
  width: 100%;
  margin: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.site-header__mobile-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}

.site-header__menu-close-label {
  display: none;
}

.site-header.is-menu-open .site-header__menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #01af6b;
  background: #01af6b;
  color: #fff;
}

.site-header.is-menu-open .site-header__mobile-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-header.is-menu-open .site-header__mobile-panel {
  transform: translateX(0);
}

.site-header.is-menu-open .menu-bars {
  width: 18px;
  background: transparent;
}

.site-header.is-menu-open .menu-bars::before,
.site-header.is-menu-open .menu-bars::after {
  transform: translateY(0);
}

.site-header.is-menu-open .menu-bars::before {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-bars::after {
  transform: rotate(-45deg);
}

.site-header.is-menu-open .site-header__menu-close-label {
  display: none;
}

.hero--fv {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 3.5rem;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero--fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/fv-bg-pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(30px);
  animation: fv-illust-in 0.7s cubic-bezier(.22, 1, .36, 1) 0.3s forwards;
  z-index: 0;
}

.hero__media {
  display: none;
  width: 100%;
}

.hero__picture {
  display: block;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero__container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  position: relative;
  z-index: 1;
}

.hero__content {
  position: relative;
  width: min(90%, calc(var(--page-max-width) * 0.9));
  margin-inline: auto;
  color: #fff;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 3.15rem;
}

.hero__heading,
.hero__sublead,
.hero__feature-pill,
.hero__btn {
  opacity: 0;
}

.hero__heading {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.2s forwards;
}

.hero__sublead {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.4s forwards;
}

.hero__feature-pill:nth-child(1) {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.5s forwards;
}

.hero__feature-pill:nth-child(2) {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.6s forwards;
}

.hero__feature-pill:nth-child(3) {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.7s forwards;
}

.hero__actions .hero__btn:nth-child(1) {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.6s forwards;
}

.hero__actions .hero__btn:nth-child(2) {
  animation: fv-fade-up 0.7s cubic-bezier(.22, 1, .36, 1) 0.7s forwards;
}

@keyframes fv-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fv-illust-in {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__heading {
  font-size: clamp(1.95rem, 6vw, 4.8rem);
  font-weight: 800;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.24);
}

.fv-heading {
  margin: 0;
  line-height: 1.32;
}

.fv-heading-line {
  display: block;
  white-space: nowrap;
  font-size: 80px;
}

.fv-nowrap {
  white-space: nowrap;
}

.fv-heading-sub {
  font-size: 0.8em;
}

.hero__sublead {
  margin-top: 1.05rem;
  margin-bottom: 0.75rem;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

.hero__sublead-accent {
  color: #ffff47;
}

.hero__lead {
  margin-top: 0;
  max-width: 1300px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-top: 2.65rem;
}

.hero__btn {
  position: relative;
  width: 325px;
  flex: 0 0 325px;
  min-height: 65px;
  justify-content: center;
  padding: 0.9rem 3.7rem 0.9rem 2.5rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  border-width: 1px;
  border-color: #fff;
  box-shadow: 0 3.523px 3.523px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.hero__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.hero__btn.btn-primary {
  background: #ff8f2c;
}

.hero__btn.btn-secondary {
  background: #009b5e;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem 2rem 0.65rem 5.1rem;
  min-height: 3rem;
  background: #f4f4f4;
  color: #444;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
}

.hero__feature-pill {
  position: relative;
}

.hero__feature-text {
  white-space: nowrap;
}

.hero__feature-icon-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4.25rem;
  height: 4.25rem;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #01af6b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  object-fit: contain;
}

.btn-primary,
.btn-secondary,
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #fff;
  padding: 0.9rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--motion-duration-fast) var(--motion-ease-standard),
    opacity var(--motion-duration-fast) var(--motion-ease-standard);
}

.btn-primary {
  background: #ff8f2c;
  color: #fff;
}

.btn-secondary {
  background: #01af6b;
  color: #fff;
}

.btn-contact {
  background: #ff8f2c;
  color: #fff;
  border-color: #ff8f2c;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-contact:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.section-title-wrap {
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.3;
  font-weight: 800;
}

.en-title {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.25rem;
}

.news-row {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(1, 175, 107, 0.4);
}

.news-date {
  color: #727684;
  font-size: 0.95rem;
  font-weight: 500;
}

.news-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  height: 1.7rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.tag-info {
  background: #e2fae4;
  color: #3c7332;
}

.tag-law {
  background: #fbf1c1;
  color: #a55e16;
}

.tag-seminar {
  background: #dbe6fd;
  color: #2242df;
}

.news-link {
  font-size: 1rem;
}

.news-link:hover {
  color: #01af6b;
}

.pain-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  counter-increment: pain-card-number;
  border-radius: 24px;
  background: #fff;
  border: 0;
  box-shadow: 0 0 8.504px -0.924px rgba(0, 0, 0, 0.1);
  padding: 22px 28px 24px;
  min-height: 190px;
  will-change: transform, box-shadow;
  transition:
    transform var(--motion-duration-hover) var(--motion-ease-standard),
    box-shadow var(--motion-duration-hover) var(--motion-ease-standard);
}

.pain-points__grid {
  counter-reset: pain-card-number;
}

.pain-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #d5ebe3;
  transition: background-color var(--motion-duration-hover) var(--motion-ease-standard);
  z-index: 1;
}

.pain-card::after {
  content: counter(pain-card-number, decimal-leading-zero);
  position: absolute;
  right: 14px;
  bottom: 8px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(1, 175, 107, 0.12);
  transition: color var(--motion-duration-hover) var(--motion-ease-standard);
  pointer-events: none;
  z-index: 0;
}

.pain-card:hover,
.pain-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.pain-card:hover::before,
.pain-card:focus-within::before {
  background: #01af6b;
}

.pain-card:hover::after,
.pain-card:focus-within::after {
  color: rgba(1, 175, 107, 0.26);
}

.pain-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pain-card__icon-box {
  width: 86px;
  height: 86px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 86px;
}

.pain-card__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pain-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.34;
  color: #444;
}

.pain-card__text {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: #444;
  max-width: 500px;
}

.plan-card {
  border: 2px solid #01af6b;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.4rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.plan-card-basic {
  border-color: #ffba00;
}

.plan-label {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-14px, 0);
  background: #ffba00;
  color: #7a3306;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 0 0.8rem 0.8rem;
  padding: 0.5rem 0.75rem;
}

.chip {
  border: 1px solid #01af6b;
  color: #444;
  border-radius: 0.5rem;
  padding: 0.65rem 0.7rem;
  background: #fff;
}

.chip-yellow {
  background: #ffba00;
  border-color: #ffba00;
  color: #7a3306;
  font-weight: 700;
}

.case-card {
  border: 1px solid #01af6b;
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  padding: 1.4rem;
}

.menu-bars {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
  transition: background-color var(--motion-duration-fast) var(--motion-ease-standard);
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  top: 0;
  transition: transform var(--motion-duration-fast) var(--motion-ease-standard);
}

.menu-bars::before {
  transform: translateY(-6px);
}

.menu-bars::after {
  transform: translateY(6px);
}

@media (max-width: 767px) {
  .site-header__mobile-panel {
    padding: 14px 18px 18px;
    width: 100%;
  }

  .site-header__mobile-list {
    font-size: 16px;
    gap: 0;
  }

  .site-header__mobile-utility {
    margin-top: 10px;
    gap: 0;
  }

  .site-header__mobile-utility-link {
    font-size: 16px;
  }

  .hero--fv {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero__content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .fv-heading {
    line-height: 1.14;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero__sublead {
    font-size: 18px;
    line-height: 1.45;
  }

  .hero__features {
    gap: 0.7rem;
  }

  .hero__actions {
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-inline: auto;
    width: 90%;
    max-width: 380px;
    padding: 14px;
    border-radius: 20px;
    background: #f4f4f4;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    margin-top: 0;
    z-index: 2;
  }

  .hero__btn {
    width: 100%;
    flex-basis: 100%;
    min-height: 72px;
    font-size: 17px;
    padding: 0.85rem 3.2rem 0.85rem 1.6rem;
  }

  .hero__btn::after {
    right: 22px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
  }

  .feature-pill {
    width: 100%;
    font-size: 0.9rem;
    min-height: 4rem;
    padding: 0.72rem 1rem 0.72rem 4.3rem;
  }

  .hero__feature-icon-wrap {
    left: 0.3rem;
    width: 3.5rem;
    height: 3.5rem;
    border-width: 3px;
  }

  .hero__feature-icon {
    width: 1.65rem;
    height: 1.65rem;
    flex-basis: 1.65rem;
  }

  .plan-card {
    padding: 1rem;
  }

  .plan-label {
    transform: translate(-8px, 0);
  }
}

@media (min-width: 768px) {
  .hero__features {
    gap: 0.75rem;
  }

  .hero__lead {
    font-size: 16px;
  }

  .feature-pill {
    font-size: 0.95rem;
  }
}

@media (min-width: 1024px) {
  .feature-pill {
    font-size: 0.99rem;
  }

  .site-header__inner {
    padding: 1rem 2rem;
  }

  .site-header__menu-btn {
    display: none;
  }

  .site-header__nav {
    display: block;
  }

  .site-header__mobile-nav {
    display: none !important;
  }
}

/* BEM rebuild */
.page {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
  margin-top: 0;
}

.page-loader {
  display: none;
}

.js.is-first-loading .site-header,
.js.is-first-loading .page__main,
.js.is-first-loading .site-footer,
.js.is-first-loading .page-top-btn {
  display: none;
}

.js.is-first-loading .page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0;
  animation: page-loader-fade-in 0.5s cubic-bezier(.22, 1, .36, 1) forwards;
}

.js.is-first-loading .page-loader.is-fade-out {
  animation: page-loader-fade-out 0.5s cubic-bezier(.22, 1, .36, 1) forwards;
}

.page-loader__logo {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #01af6b;
  letter-spacing: 0.02em;
}

@keyframes page-loader-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-loader-fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.22, 1, .36, 1);
  z-index: 55;
}

.page__main {
  margin-inline: auto;
}

.site-header__mobile-link {
  display: block;
  padding: 13px 0;
  text-align: left;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
  border-bottom: 1px solid #01af6b;
}

.site-header__mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 75;
  background: transparent;
  transition:
    opacity var(--motion-duration-fast) var(--motion-ease-standard),
    visibility var(--motion-duration-fast) var(--motion-ease-standard);
}

.site-header__mobile-utility {
  margin-top: 0;
  padding-top: 0;
}

.site-header__mobile-utility-link {
  display: block;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #01af6b;
}

.page.is-menu-open {
  overflow: hidden;
}

.page.is-menu-open::before {
  opacity: 0.5;
  visibility: visible;
}

.news {
  background: #fff;
  padding: 128px 0 140px;
}

.news__container,
.pain-points__container,
.service__container,
.case-study__container,
.company__container,
.contact-cta__container,
.site-footer__inner {
  width: min(1220px, 92%);
  margin-inline: auto;
}

.news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news__layout {
  display: grid;
  grid-template-columns: 253px 1fr;
  gap: 0;
  align-items: start;
}

.news__heading-block {
  padding-top: 2px;
}

.news__heading {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.news__heading-line {
  display: block;
  width: 64px;
  height: 7px;
  margin-top: 10px;
  background: #01af6b;
}

.news__row {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr 20px;
  align-items: center;
  column-gap: 18px;
  row-gap: 0;
  padding: 18px 0 16px 14px;
  border-bottom: 2px solid #01af6b;
  transition: background-color 0.15s ease;
}

.news__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 56%;
  border-radius: 999px;
  background: #9adfc4;
  transform: translateY(-50%);
  transition: background-color 0.15s ease;
}

.news__row:hover,
.news__row:focus-within {
  background: #f3fff9;
}

.news__row:hover::before,
.news__row:focus-within::before {
  background: #01af6b;
}

.news__date {
  color: #727684;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.news__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  height: 28px;
  width: auto;
  min-width: 0;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.news__link {
  font-size: 16px;
  color: #444;
  text-decoration: none;
  line-height: 1.35;
}

.news__arrow {
  width: 16px;
  height: 16px;
  position: relative;
  justify-self: end;
}

@media (max-width: 960px) {
  .fv-heading-line {
    font-size: 64px;
  }

  .feature-pill {
    font-size: 0.85rem;
    padding: 0.65rem 1rem 0.65rem 4.5rem;
  }

  .news__layout {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 40px;
  }

  .news__heading-block {
    justify-self: center;
  }

  .news__heading-line {
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 8px;
  }

  .site-header__inner {
    padding: 0.5rem 1.2rem;
  }

  .hero--fv {
    background-image: none;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero--fv::before {
    display: none;
  }

  .hero__media {
    display: block;
    opacity: 0;
    transform: translateX(30px);
    animation: fv-illust-in 0.7s cubic-bezier(.22, 1, .36, 1) 0.3s forwards;
  }

  .hero__features,
  .hero__heading,
  .hero__sublead,
  .hero__lead {
    display: none;
  }

  .hero__content {
    position: absolute;
    inset: 0;
    max-width: none;
    display: block;
  }

  .hero__actions {
    margin-top: 0;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 2;
  }

  .news__layout {
    width: 100%;
  }

  .news__list {
    width: 100%;
  }

  .news__row {
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr) 20px;
    grid-template-areas:
      "date link arrow"
      "tag link arrow";
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
    padding: 12px 0;
  }

  .news__date {
    grid-area: date;
  }

  .news__tag {
    grid-area: tag;
  }

  .news__link {
    grid-area: link;
    width: 100%;
    max-width: none;
    align-self: center;
    line-height: 1.45;
  }

  .news__arrow {
    grid-area: arrow;
    align-self: center;
    justify-self: end;
  }
}

.news__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #01af6b;
  border-right: 2px solid #01af6b;
  transform: translate(-70%, -50%) rotate(45deg);
}

.pain-points {
  background: #e9fff6;
  padding: 63px 0 86px;
}

.pain-points__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.pain-points__title-break {
  display: none;
}

.pain-points__title-accent {
  color: #01af6b;
}

@media (max-width: 768px) {
  .pain-points__title-break {
    display: inline;
  }
}

.pain-points__lead {
  margin: 12px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
}

.pain-points__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
}

.service {
  background: #f7f7f7;
  padding: 4rem 0;
}

.choice {
  background: #fff;
  padding: 72px 0 88px;
}

.choice__container {
  width: min(1222px, 92%);
  margin-inline: auto;
}

.choice__heading {
  margin: 0;
  text-align: center;
  color: #444;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}

.choice__heading span {
  color: #01af6b;
}

.choice__heading-break {
  display: none;
}

.choice__heading-break-next {
  display: inline;
}

@media (max-width: 768px) {
  .choice__heading-break {
    display: inline;
  }

  .choice__heading-break-next {
    display: inline;
  }
}

.choice__cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.choice-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 12.5px 1px rgba(0, 0, 0, 0.11);
  padding: 30px;
  transition:
    transform var(--motion-duration-hover) var(--motion-ease-standard),
    box-shadow var(--motion-duration-hover) var(--motion-ease-standard);
}

@media (max-width: 1080px) {
  .choice__cards {
    grid-template-columns: 1fr;
  }
}

.choice-card--recommend {
  border: 3px solid #01af6b;
  box-shadow: 0 0 12.5px 1px rgba(0, 0, 0, 0.11);
}

.choice-card--recommend.js-scroll-reveal {
  --reveal-distance: 40px;
}

.choice-card--recommend.js-scroll-reveal.visible {
  animation-name: section-reveal-in-recommend;
}

.choice-card--recommend:hover,
.choice-card--recommend:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(33, 155, 56, 0.4);
}

.choice-card__badge {
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  margin: 0;
  width: 176px;
  height: 27px;
  border-radius: 13.5px;
  background: #ffba00;
  color: #7a3306;
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
  text-align: center;
}

.choice-card__title {
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #444;
}

.choice-card__title--brand {
  color: #01af6b;
}

.choice-card__divider {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: #d9d9d9;
}

.choice-card__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.choice-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  color: #444;
  line-height: 1.35;
}

.choice-card__xicon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  object-fit: contain;
}

.choice-card__lead {
  margin: 19px 0 0;
  text-align: center;
  color: #01af6b;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .choice-card__title {
    font-size: 20px;
  }

  .choice-card__lead {
    font-size: 25px;
  }
}

.choice-card__desc {
  margin: 14px 0 0;
  text-align: center;
  color: #444;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.section-title--brand {
  color: #01af6b;
}

.service__plan-card {
  margin-top: 2.5rem;
}

.service__plan-card--sub {
  margin-top: 1.75rem;
  border-color: rgba(1, 175, 107, 0.8);
}

.service__plan-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}

.service__plan-sub-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.service__plan-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.service__plan-title--yellow {
  color: #ffba00;
}

.service__plan-title--brand {
  color: #01af6b;
}

.service__plan-catch {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.service__plan-price {
  margin: 0.5rem 0 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.service__plan-price span {
  font-size: 1.5rem;
  color: #444;
}

.service__plan-price--yellow {
  color: #ffba00;
}

.service__plan-price--brand {
  color: #01af6b;
}

.service__plan-desc {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.75;
}

.service__support-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7a3306;
}

.service__support-grid {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.service__plan-link-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.case-study {
  background: #e9fff6;
  padding: 4rem 0;
}

.case-study__card {
  margin-top: 2rem;
}

.case-study__title {
  margin: 0;
  color: #01af6b;
  font-size: 1.25rem;
  font-weight: 700;
}

.case-study__qa {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.75;
}

.case-study__qa p {
  margin: 0;
}

.case-study__label {
  color: #01af6b;
  font-weight: 700;
  margin-right: 0.5rem;
}

.company {
  background: #fff;
  padding: 120px 0 128px;
}

.company__layout {
  display: grid;
  grid-template-columns: minmax(0, 503px) minmax(0, 694px);
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.company__heading {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.company__subheading {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: #444;
}

.company__description {
  margin: 24px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.company__info-list {
  margin: 30px 0 0;
  padding: 0;
}

.company__info-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  padding: 12px 0;
  border-bottom: 1px solid #d9d9d9;
}

.company__info-term {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #01af6b;
}

.company__info-desc {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #444;
}

.company__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.en-title--left,
.section-title--left {
  text-align: left;
}

.faq {
  background: #fff;
  padding: 120px 0 64px;
}

.faq__container {
  width: min(750px, 92%);
  margin-inline: auto;
}

.faq__heading {
  margin: 0;
  text-align: center;
  font-size: 53px;
  font-weight: 800;
  line-height: 1.1;
}

.faq__list {
  margin-top: 62px;
  display: grid;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid #cfe5da;
  padding: 0 0 22px;
  margin-bottom: 32px;
  transition:
    border-color 0.25s,
    transform 0.25s;
}

.faq__item:hover,
.faq__item:focus-within {
  border-color: #01af6b;
  transform: translateX(4px);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  color: #fff;
  background: #01af6b;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 7px;
}

.faq__q-label {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.faq__q-text {
  display: inline-block;
}

.faq__toggle {
  margin-left: auto;
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 0.3s;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  translate: -50% -50%;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.faq__toggle::after {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__toggle {
  transform: rotate(0deg);
}

.faq__item.is-open .faq__toggle::after {
  opacity: 0;
}

.faq__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 0 24px 0;
  background: transparent;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s cubic-bezier(.22, 1, .36, 1),
    padding-top 0.4s cubic-bezier(.22, 1, .36, 1),
    opacity 0.3s;
}

.faq__item.is-open .faq__answer {
  max-height: 500px;
  padding-top: 18px;
  opacity: 1;
}

.faq__a-label {
  margin: 0;
  color: #01af6b;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.faq__a-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.contact-cta {
  background: #fff;
  padding: 96px 0 128px;
}

.contact-cta__container {
  width: min(878px, 92%);
  margin-inline: auto;
}

.contact-cta__box {
  background: #01af6b;
  border-radius: 14px;
  min-height: 294px;
  padding: 46px 24px 44px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 9px -1px rgba(0, 0, 0, 0.1);
}

.contact-cta__title {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
}

.contact-cta__title-break {
  display: none;
}

@media (max-width: 960px) {
  .contact-cta__title-break {
    display: inline;
  }
}

.contact-cta__lead {
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.35;
}

.contact-cta__lead-break {
  display: none;
}

@media (max-width: 768px) {
  .contact-cta__lead-break {
    display: inline;
  }
}

.contact-cta__btn {
  position: relative;
  margin-top: 30px;
  width: 325px;
  min-height: 65px;
  padding: 18px 54px 18px 36px;
  border-radius: 33px;
  border-color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact-cta__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

@media (max-width: 768px) {
  .news,
  .pain-points,
  .choice,
  .service,
  .case-study,
  .company,
  .faq,
  .contact-cta {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .news,
  .pain-points,
  .choice,
  .service,
  .case-study,
  .company,
  .faq,
  .contact-cta {
    padding: 48px 0;
  }

}

.site-footer {
  background: #01af6b;
  color: #fff;
  padding: 59px 0 63px;
}

.site-footer__inner {
  width: min(1222px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px 175px 175px 175px;
  justify-content: start;
  column-gap: 88px;
  row-gap: 24px;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__col:nth-child(2) {
  margin-left: 22px;
}

.site-footer__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__title-link {
  color: #fff;
  text-decoration: none;
}

.site-footer__address {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}

.site-footer__heading {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.site-footer__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1px;
}

.site-footer__list li,
.site-footer__list a {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.03;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1280px) {
  .site-footer__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
  }

  .site-footer__col:nth-child(2) {
    margin-left: 0;
  }

  .site-footer__title {
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 52px 0 56px;
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 28px;
  }
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .site-footer__title,
  .site-footer__heading {
    font-size: 18px;
  }
}

/* Service rebuild */
.service {
  background: #fff;
  padding: 64px 0 86px;
}

.service__container {
  width: min(1222px, 92%);
  margin-inline: auto;
}

.service__heading {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #444;
  line-height: 1.1;
}

.service__group {
  margin-top: 56px;
}

.service__group--sub {
  margin-top: 88px;
}

.service__group-head {
  border-left: 6px solid #01af6b;
  padding-left: 12px;
}

.service__group-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #01af6b;
}

.service__group-title-break {
  display: none;
}

.service__group-lead {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}

.service-plan {
  margin-top: 32px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 8.7px -0.9px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 22px 24px;
  transition:
    transform 0.35s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, box-shadow;
}

.service-plan--basic {
  border: 3px solid #ffba00;
}

.service-plan--light {
  border: 0.98px solid #01af6b;
}

.service-plan--light.js-scroll-reveal.visible {
  animation-name: section-reveal-in-left;
}

.service-plan--basic.js-scroll-reveal.visible {
  animation-name: section-reveal-in-right;
}

.service-plan:hover,
.service-plan:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.service-plan__badge {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  width: 114px;
  height: 40px;
  border-radius: 0 13.5px 0 12.7px;
  background: #ffba00;
  color: #7a3306;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}

.service-plan__layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 30px;
}

.service-plan__left {
  min-width: 0;
}

.service-plan__plan-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-plan__plan-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 56px;
}

.service-plan__plan-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #444;
}

.service-plan__plan-title--yellow {
  color: #ffba00;
}

.service-plan__plan-catch {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: #444;
}

.service-plan__plan-price {
  margin: 14px 0 0;
  font-size: 49px;
  font-weight: 600;
  line-height: 1.1;
  color: #01af6b;
}

.service-plan__plan-price--yellow {
  color: #ffba00;
}

.service-plan__plan-price span {
  font-size: 27px;
  color: #444;
  margin-left: 4px;
}

.service-plan__plan-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.service-plan__support-title {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 700;
  color: #444;
}

.service-plan__support-grid {
  margin-top: 13px;
  border-top: 1px solid #d9d9d9;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.service-plan__support-grid p {
  margin: 0;
  min-height: 59px;
  border: 1px solid #01af6b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  color: #444;
  background: #fff;
  padding: 6px 10px;
}

.service-plan__support-grid--filled p {
  background: #ffba00;
  border-color: #ffba00;
  color: #7a3306;
  font-weight: 700;
}

.service-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid #01af6b;
  background: #fff;
  box-shadow: 0 0 8.5px -0.9px rgba(0, 0, 0, 0.1);
  padding: 20px 22px;
  min-height: 245px;
  transition:
    border-color var(--motion-duration-hover) var(--motion-ease-standard),
    transform var(--motion-duration-hover) var(--motion-ease-standard);
  will-change: transform;
}

.service-card--accent {
  background: #01af6b;
  color: #fff;
  border-color: #01af6b;
  min-height: 254px;
}

.service-card:hover,
.service-card:focus-within {
  border-color: #009f5d;
  transform: translateY(-3px);
}

.service-card__badge {
  position: absolute;
  top: -1px;
  right: -1px;
  margin: 0;
  width: 116px;
  height: 41px;
  border-radius: 0 13.865px 0 13px;
  background: #ffba00;
  color: #7a3306;
  font-size: 14px;
  font-weight: 700;
  line-height: 41px;
  text-align: center;
}

.service-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #01af6b;
}

.service-card__title-break {
  display: none;
}

.service-card--accent .service-card__title {
  color: #fff;
}

.service-card__lead {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}

.service-card--accent .service-card__lead {
  color: #fff;
}

.service-card__price {
  margin: 16px 0 0;
  font-size: 39px;
  font-weight: 600;
  line-height: 1.1;
  color: #01af6b;
}

.service-card__price span {
  font-size: 22px;
  color: #444;
  margin-left: 4px;
}

.service-card--accent .service-card__price,
.service-card--accent .service-card__price span {
  color: #fff;
}

.service-card__tags {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.service-card__tags li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  line-height: 1.3;
  color: #444;
}

.service-card--accent .service-card__tags li {
  color: #fff;
}

.service-card__tags img {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  object-fit: contain;
}

.service-card__note {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.3;
  color: #fff;
}

.service-spot {
  margin-top: 32px;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 0 9.1px rgba(0, 0, 0, 0.06);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.service-spot__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #444;
}

.service-spot__text {
  margin: 10px 0 0;
  max-width: 706px;
  font-size: 15px;
  line-height: 1.45;
  color: #444;
}

.service-spot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 325px;
  height: 65px;
  border-radius: 32.591px;
  border: 1px solid #fff;
  background: #ff8213;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  box-shadow: 0 3.523px 3.523px rgba(0, 0, 0, 0.25);
  padding-right: 26px;
}

.service-spot__btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #fff;
}

.case-study {
  background: #e9fff6;
  padding: 77px 0 104px;
}

.case-study__container {
  width: min(1222px, 90%);
  margin-inline: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.case-study__heading {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #444;
}

.case-study__lead {
  margin: 18px 0 0;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #444;
}

.case-study__lead-break {
  display: none;
}

.case-study__tabs {
  margin: 24px auto 0;
  width: min(1222px, 100%);
  background: #fff;
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.case-study__tab {
  border: 0;
  background: transparent;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

.case-study__tab--active {
  background: #01af6b;
  color: #fff;
  border-radius: 10px;
  margin: 3px;
  height: 38px;
}

.case-study__tabs-hint {
  display: none;
}

.case-study__panel {
  display: none;
  margin-top: 13px;
  position: relative;
  background: #fff;
  border: 1px solid #01af6b;
  border-radius: 15px;
  box-shadow: 0 0 8.504px -0.924px rgba(0, 0, 0, 0.1);
  padding: 56px 30px 30px;
}

.case-study__panel.is-active {
  display: block;
}

.js .js-scroll-reveal {
  opacity: 0;
  translate: 0 28px;
}

.js .js-scroll-reveal.visible {
  animation: section-reveal-in 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

.js .service-plan--light.js-scroll-reveal.visible {
  animation: section-reveal-in-left 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

.js .service-plan--basic.js-scroll-reveal.visible {
  animation: section-reveal-in-right 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

.js .case-study__qa.js-scroll-reveal.visible {
  animation: section-reveal-in-from-top 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

.js .company__content.js-scroll-reveal.visible {
  animation: section-reveal-in-company-left 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

.js .company__image.js-scroll-reveal.visible {
  animation: section-reveal-in-company-right 0.7s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms) forwards;
}

@keyframes section-reveal-in {
  from {
    opacity: 0;
    translate: 0 var(--reveal-distance, 28px);
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-recommend {
  from {
    opacity: 0;
    translate: 0 40px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-left {
  from {
    opacity: 0;
    translate: -24px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-right {
  from {
    opacity: 0;
    translate: 24px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-from-top {
  from {
    opacity: 0;
    translate: 0 -28px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-company-left {
  from {
    opacity: 0;
    translate: -20px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes section-reveal-in-company-right {
  from {
    opacity: 0;
    translate: 20px 0;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .js .js-scroll-reveal {
    opacity: 1;
    translate: 0 0;
    animation: none !important;
  }

  .hero--fv::before,
  .hero__media,
  .hero__heading,
  .hero__sublead,
  .hero__feature-pill,
  .hero__btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .faq__answer {
    transition: none !important;
  }
}

.case-study__panel-badge {
  position: absolute;
  right: 16px;
  top: 14px;
  margin: 0;
  width: 105px;
  height: 31px;
  border-radius: 7px;
  background: #ff8213;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
  text-align: center;
}

.case-study__title {
  margin: 0;
  color: #01af6b;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.case-study__meta {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: #444;
}

.case-study__qa-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 768px) {
  .case-study__tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .case-study__tab {
    height: 44px;
    padding: 0 12px;
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .case-study__tab--active {
    margin: 3px;
    height: 38px;
  }

  .case-study__tabs.is-overflow {
    display: flex;
    align-items: center;
    padding: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .case-study__tabs.is-overflow::-webkit-scrollbar {
    display: none;
  }

  .case-study__tabs.is-overflow .case-study__tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding: 0 20px;
    overflow: visible;
    text-overflow: clip;
  }

  .case-study__tabs.is-overflow .case-study__tab--active {
    margin: 0;
    height: 44px;
  }

  .case-study__tabs.is-overflow + .case-study__tabs-hint {
    display: block;
    margin: 8px 6px 0 0;
    text-align: right;
    font-size: 12px;
    line-height: 1.3;
    color: #01af6b;
  }

  .case-study__qa-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

}

.case-study__qa-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  height: auto;
  color: #444;
}

.case-study__qa {
  border-radius: 13px;
  border: 1px solid #d9ece4;
  background: #fff;
  padding: 14px 16px 16px;
  box-shadow: 0 0 8.5px -0.9px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, 1, .36, 1);
  will-change: transform, box-shadow;
}

.case-study__qa:hover,
.case-study__qa:focus-within {
  transform: translateX(6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.case-study__qa-title span {
  margin-right: 6px;
  font-size: 24px;
  color: #01af6b;
}

.case-study__qa-text {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.35;
  color: #444;
}

.case-study__qa--a {
  background: #01af6b;
  border-color: #01af6b;
}

.case-study__qa--a .case-study__qa-title,
.case-study__qa--a .case-study__qa-title span,
.case-study__qa--a .case-study__qa-text {
  color: #fff;
}

.case-study__result {
  margin-top: 24px;
  background: #f9fafc;
  border-radius: 12px;
  padding: 24px 32px;
}

.case-study__result-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  color: #444;
}

.case-study__result-text {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: #444;
}

@media (max-width: 900px) {
  .choice__heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .choice__cards {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 30px;
  }

  .choice-card {
    height: auto;
    padding: 22px 20px;
  }

  .choice-card__item {
    font-size: 18px;
  }

  .choice-card__desc {
    font-size: 18px;
  }

  .pain-points__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .pain-points__title {
    font-size: 30px;
    line-height: 1.25;
  }

  .pain-points__lead {
    font-size: 14px;
  }

  .pain-card {
    padding: 20px 20px 24px;
    border-radius: 18px;
    min-height: 0;
  }

  .pain-card__head {
    gap: 14px;
  }

  .pain-card__icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    flex-basis: 64px;
  }

  .pain-card__title {
    font-size: 20px;
    line-height: 1.35;
  }

  .pain-card__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.55;
  }

  .service-plan__layout,
  .service-cards,
  .service-spot,
  .company__layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__col:nth-child(2) {
    margin-left: 0;
  }

  .service__heading {
    font-size: 32px;
  }

  .service__group {
    margin-top: 36px;
  }

  .service__group--sub {
    margin-top: 58px;
  }

  .service__group-title {
    font-size: 24px;
  }

  .service-plan {
    padding: 18px 16px 20px;
  }

  .company__heading {
    font-size: 36px;
  }

  .company__subheading {
    margin-top: 12px;
    font-size: 18px;
  }

  .company__description {
    margin-top: 20px;
  }

  .company__info-list {
    margin-top: 24px;
  }

  .company__info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .company__info-term,
  .company__info-desc {
    font-size: 16px;
    line-height: 1.45;
  }

  .company__image {
    margin-top: 20px;
    height: auto;
    aspect-ratio: 694 / 554;
  }

  .service-plan__layout {
    gap: 18px;
  }

  .service-plan__plan-title {
    font-size: 21px;
  }

  .service-plan__plan-price {
    font-size: 37px;
  }

  .service-plan__plan-price span {
    font-size: 21px;
  }

  .service-plan__support-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .service-card__title {
    font-size: 21px;
  }

  .service-card__price {
    font-size: 33px;
  }

  .service-card__price span {
    font-size: 18px;
  }

  .service-spot {
    padding: 18px 16px;
  }

  .service-spot__btn {
    width: 100%;
  }

  .faq__heading {
    font-size: 42px;
  }

  .faq__list {
    margin-top: 36px;
  }

  .faq__item {
    padding-bottom: 16px;
    margin-bottom: 14px;
  }

  .faq__question {
    padding: 12px 16px;
    font-size: 14px;
  }

  .faq__q-label,
  .faq__a-label {
    font-size: 28px;
  }

  .faq__answer {
    gap: 8px;
    padding: 12px 16px 0;
  }

  .faq__a-text {
    font-size: 13px;
    line-height: 1.45;
  }

  .contact-cta__box {
    min-height: 0;
    padding: 30px 18px 34px;
  }

  .contact-cta__title {
    font-size: 32px;
    line-height: 1.35;
  }

  .contact-cta__lead {
    margin-top: 14px;
    font-size: 16px;
  }

  .contact-cta__btn {
    width: 100%;
    max-width: 325px;
    min-height: 58px;
    margin-top: 20px;
    font-size: 15px;
    padding: 14px 52px 14px 28px;
  }
}

@media (max-width: 480px) {
  .case-study {
    padding: 48px 0;
  }

  .case-study__lead-break {
    display: inline;
  }

  .news__heading,
  .pain-points__title,
  .choice__heading,
  .service__heading,
  .case-study__heading,
  .company__heading,
  .faq__heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact-cta__title {
    font-size: 24px;
    line-height: 1.3;
  }

  .service-plan--basic {
    padding-top: 32px;
  }

  .service-card__title-break {
    display: inline;
  }

  .service__group-title-break {
    display: inline;
  }

  .pain-card__head {
    gap: 8px;
  }

  .pain-card__icon-box {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

/* Hide Lightning/VK pagetop button on renewal front page */
#page_top,
.page_top_btn {
  display: none !important;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  border: 0;
  border-radius: 999px;
  background: #01af6b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 14px 18px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(1, 175, 107, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition:
    opacity 0.3s cubic-bezier(.22, 1, .36, 1),
    transform 0.25s cubic-bezier(.22, 1, .36, 1);
}

.page-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-top-btn:hover,
.page-top-btn:focus-visible {
  transform: translateY(-3px);
}

.sp-fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --sp-fixed-cta-height: 56px;
  }

  .sp-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--sp-fixed-cta-height);
    padding: 0 16px;
    background: #f5a623;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s cubic-bezier(.22, 1, .36, 1),
      opacity 0.3s cubic-bezier(.22, 1, .36, 1);
  }

  .sp-fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .page.has-sp-fixed-cta .site-footer {
    padding-bottom: calc(var(--sp-fixed-cta-height) + env(safe-area-inset-bottom));
  }

  .page-top-btn {
    bottom: 68px;
  }

  .pain-card:hover,
  .pain-card:focus-within {
    transform: none;
    box-shadow: 0 0 8.504px -0.924px rgba(0, 0, 0, 0.1);
  }

  .pain-card:hover::before,
  .pain-card:focus-within::before {
    background: #d5ebe3;
  }

  .pain-card:hover::after,
  .pain-card:focus-within::after {
    color: rgba(1, 175, 107, 0.12);
  }

  .pain-card:active {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  }

  .pain-card:active::before {
    background: #01af6b;
  }

  .pain-card:active::after {
    color: rgba(1, 175, 107, 0.26);
  }

  .choice-card--recommend:hover,
  .choice-card--recommend:focus-within {
    transform: none;
    box-shadow: 0 0 12.5px 1px rgba(0, 0, 0, 0.11);
  }

  .choice-card--recommend:active {
    transform: translateY(-10px);
    box-shadow: 0 24px 64px rgba(33, 155, 56, 0.4);
  }

  .service-plan:hover,
  .service-plan:focus-within {
    transform: none;
    box-shadow: 0 0 8.7px -0.9px rgba(0, 0, 0, 0.1);
  }

  .service-plan:active {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .service-card:hover,
  .service-card:focus-within {
    border-color: #01af6b;
    transform: none;
  }

  .service-card:active {
    border-color: #009f5d;
    transform: translateY(-3px);
  }

  .case-study__qa:hover,
  .case-study__qa:focus-within {
    transform: none;
    box-shadow: 0 0 8.5px -0.9px rgba(0, 0, 0, 0.08);
  }

  .case-study__qa:active {
    transform: translateX(6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  }
}

/* Keep iOS auto-detected phone links from turning blue */
.site-footer a[href^="tel"],
.site-footer a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}
