:root {
  --text: #222;
  --muted: #5b6b66;
  --line: #e7efea;
  --bg: #ffffff;
  --header-bg: #fcfff7;

  --mint: #bfe6d2;
  --mint2: #9ed9c1;
  --lime: #dff0a5;
  --lime2: #cfe88e;

  --accent: #2bb673;
  --accent2: #22a463;
  --gradient-green: linear-gradient(90deg, #00b09b 0%, #96c93d 100%);

  --pill: #eef7f3;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow2: 0 10px 24px rgba(0, 0, 0, 0.06);
  --btn-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  --radius: 16px;
  --radius-lg: 22px;

  --container: 1000px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

.container {
  width: 90%;
  max-width: var(--container);
  margin-inline: auto;
}

/* ===== Utility ===== */
@media (min-width: 969px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 968px) {
  .pc-only {
    display: none !important;
  }
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  height: 121px;
  transition: height 0.3s;
}

body {
  padding-top: 121px;
}

.header-inner {
  height: 121px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1001;
  transition: height 0.3s;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.header-logo img {
  width: 137px;
  height: auto;
  aspect-ratio: 137 / 52;
}

/* Header Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-left: auto;
}

.nav-item {
  color: var(--text);
  font-size: 20px;
  font-weight: 400;
  transition: opacity 0.3s, font-size 0.3s;
}

.nav-item:hover {
  opacity: 0.7;
}

/* Header CTA Button */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1002;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.8;
}

.btn-trial {
  width: 210px;
  height: 56px;
  font-size: 16px;
  color: #fff;
  background: var(--gradient-green);
  box-shadow: var(--btn-shadow);
  transition: opacity 0.3s, width 0.3s, height 0.3s, font-size 0.3s;
}

.btn-trial:visited,
.btn-trial:focus,
.btn-trial:active,
.btn-trial:hover {
  color: #fff;
}

.btn-trial:hover {
  opacity: 0.8;
}

@media (min-width: 969px) {
  .site-header.is-scrolled {
    height: 96px;
  }

  .site-header.is-scrolled .header-inner {
    height: 96px;
  }

  .site-header.is-scrolled .header-nav {
    gap: 36px;
  }

  .site-header.is-scrolled .nav-item {
    font-size: 18px;
  }

  .site-header.is-scrolled .btn-trial {
    width: 190px;
    height: 48px;
    font-size: 14px;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #78c497;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* SP Menu */
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--header-bg);
  padding-top: 70px;
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 998;
}

.sp-menu.active {
  right: 0;
}

.sp-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
}

.sp-nav-item {
  padding: 16px 5%;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s;
}

.sp-nav-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.sp-nav-item:last-child {
  border-bottom: none;
}

/* SP Responsive */
@media (max-width: 968px) {
  .site-header {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .header-inner {
    height: 70px;
    justify-content: flex-start;
    gap: 8px;
  }

  .header-logo {
    margin-right: auto;
  }

  .header-logo img {
    width: 87px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    margin-left: 0;
    order: 2;
  }

  .hamburger {
    display: flex;
    order: 3;
    margin-left: 10px;
  }

  .sp-menu {
    display: block;
  }

  .btn-trial {
    width: 160px;
    height: 37px;
    font-size: 14px;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(
    137deg,
    rgba(126, 198, 188, 0.5) 30.11%,
    rgba(235, 231, 23, 0.5) 100%
  );
  padding: 89px 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  width: 90%;
  max-width: 1085px;
  margin: 0 auto;
}

/* Hero Points */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: #ffffff;
  border: none;
  font-size: 24px;
  font-weight: 700;
  color: #4dbd6c;
}

.hero-cross {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 4px;
}

/* Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-visual {
  flex: 0 0 calc(50.54% - 20px);
  max-width: calc(50.54% - 20px);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  flex: 0 0 calc(47.56% - 20px);
  max-width: calc(47.56% - 20px);
}

.hero-text h1 {
  margin: 0 0 16px;
  font-size: clamp(20px, calc((34 / 1160) * 100vw), 36px);
  font-feature-settings: "palt" on;
  line-height: 1.4;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--text);
}

.hero-text p {
  margin: 0 0 24px;
  color: #275044;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

.hero-text .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 500;
}

/* Hero Responsive */
@media (max-width: 968px) {
  .hero {
    padding: 34px 0 16px;
  }

  .hero-content {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 24px;
  }

  .hero-visual {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }

  .hero-text {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }

  .hero-text h1 {
    font-size: 24px;
    line-height: 1.5;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-points {
    margin-bottom: 24px;
    justify-content: center;
    letter-spacing: 0.06em;
  }

  .hero-point {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 20px);
    padding: 4px;
  }

  .hero-cross {
    font-size: 12px;
  }

  .hero-text .btn {
    padding: 14px 24px;
    width: 160px;
    height: auto;
  }
}

/* ===== Section base ===== */
section {
  padding: 64px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 31px;
}

@media (max-width: 968px) {
  .section-title {
    font-size: clamp(16px, calc((16 / 375) * 100vw), 32px);
    margin-bottom: 20px;
  }
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: -10px 0 28px;
  font-weight: 500;
}

/* ===== Video intro ===== */
.intro {
  background: #f6f6f6;
  padding: 52px 0;
}

/* ===== SP Campaign ===== */
.sp-campaign {
  background: #4dbd6c;
  padding: 14px 0;
  text-align: center;
}

.sp-campaign-link {
  display: block;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 968px) {
  .home .sp-campaign {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1000;
  }
}

.sp-campaign-line {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, calc(14px + 4 * ((100vw - 380px) / 600)), 18px);
  line-height: 1.6;
}

.sp-campaign-price {
  font-size: 20px;
}

.intro-card {
  max-width: 737px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 32px;
}

@media (max-width: 968px) {
  .intro-card {
    padding: 16px;
  }
}

.intro-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #edf3ef;
}

.intro-media img,
.intro-media video {
  width: 100%;
  display: block;
}

/* ===== Problems ===== */
.problems {
  background: #fff;
  position: relative;
  padding-top: 40px;
  padding-bottom: 0;
}

.problems:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  aspect-ratio: 1444 / 544.183;
  background: url(../images/bg_arrow_pc.svg) no-repeat center bottom / contain;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 968px) {
  .problems:before {
    background-image: url(../images/bg_arrow_sp.svg);
    aspect-ratio: 375 / 196;
  }
}

.problems-container {
  overflow: visible;
}

.dots {
  display: flex;
  justify-content: center;
  margin: 10px 0 18px;
}

.dots img {
  width: 152px;
  height: auto;
}

@media (max-width: 968px) {
  .dots img {
    width: 18.67vw;
  }
}

.section-title.nayami {
  font-weight: 500;
}

@media (max-width: 968px) {
  .section-title.nayami {
    font-size: 20px;
    font-weight: 700;
  }
}

.section-title.nayami .marker {
  background: linear-gradient(
    transparent calc(100% - 8px),
    #95c93d calc(100% - 8px)
  );
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.problem-grid .problem:nth-child(1),
.problem-grid .problem:nth-child(2),
.problem-grid .problem:nth-child(3) {
  grid-column: span 2;
}

.problem-grid .problem:nth-child(4) {
  grid-column: 2 / span 2;
}

.problem-grid .problem:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 980px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-grid .problem:nth-child(1),
  .problem-grid .problem:nth-child(2),
  .problem-grid .problem:nth-child(3),
  .problem-grid .problem:nth-child(4),
  .problem-grid .problem:nth-child(5) {
    grid-column: auto;
  }
}

.problem {
  border-radius: 20px;
  padding: 20px 36px;
  background: #fff;
  font-size: 16px;
  position: relative;
}

@media (max-width: 968px) {
  .problem {
    padding: 0 24px 16px 24px;
  }
}

.problem::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -2px;
  right: -2px;
  height: 70%;
  background: #fff;
  z-index: 1;
  border-radius: 20px 20px 0 0;
}

.problem > * {
  position: relative;
  z-index: 2;
}

/* Problem (1) - Blue */
.problem:nth-child(1) {
  border: 2px solid #77abd4;
}

.problem:nth-child(1) h3 {
  background: linear-gradient(
    transparent calc(100% - 8px),
    rgba(119, 171, 212, 0.5) calc(100% - 8px)
  );
}

.problem:nth-child(1) .problem-label {
  color: #3d8dcc;
}

/* Problem (2) - Yellow */
.problem:nth-child(2) {
  border: 2px solid #ffbe4b;
}

.problem:nth-child(2) h3 {
  background: linear-gradient(
    transparent calc(100% - 8px),
    #ffdea5 calc(100% - 8px)
  );
}

.problem:nth-child(2) .problem-label {
  color: #ffbe4b;
}

/* Problem (3) - Pink */
.problem:nth-child(3) {
  border: 2px solid #fc9c9c;
}

.problem:nth-child(3) h3 {
  background: linear-gradient(
    transparent calc(100% - 8px),
    #fee6e6 calc(100% - 8px)
  );
}

.problem:nth-child(3) .problem-label {
  color: #fc9c9c;
}

/* Problem (4) - Light Blue */
.problem:nth-child(4) {
  border: 2px solid #8eafff;
}

.problem:nth-child(4) h3 {
  background: linear-gradient(
    transparent calc(100% - 8px),
    #e3ebff calc(100% - 8px)
  );
}

.problem:nth-child(4) .problem-label {
  color: #4a80ff;
}

/* Problem (5) - Teal */
.problem:nth-child(5) {
  border: 2px solid #13c2bc;
}

.problem:nth-child(5) h3 {
  background: linear-gradient(
    transparent calc(100% - 8px),
    #e2f7f7 calc(100% - 8px)
  );
}

.problem:nth-child(5) .problem-label {
  color: #13c2bc;
}

.problem h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  display: inline;
}

.problem p {
  margin: 4px 0 10px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.problem-label {
  display: block;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  margin-top: 15px;
}

/* ===== "promo solution" section ===== */
.promo-solution {
  padding: 160px 0;
  position: relative;
  z-index: 2;
  text-align: center;
}

.promo-solution-text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(16px, calc((36 / 1440) * 100vw), 36px);
  color: #78c497;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}

.promo-solution-text .promo-text {
  font-family: "Roboto", sans-serif;
  color: #78c497;
}

.promo-solution-icon {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(calc(-100% - 24px), -50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .promo-solution {
    padding: 100px 0 60px 0;
  }

  .promo-solution-icon {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
  }
}

/* ===== Features ===== */
.features {
  padding-top: 34px;
}

.feature-head {
  text-align: center;
  margin-bottom: 30px;
}

.feature-title {
  font-size: clamp(20px, calc((40 / 1440) * 100vw), 40px);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.feature-title_h3.is_center {
  justify-content: center;
}

.feature-title_h3 {
  margin-bottom: 32px;
  font-size: clamp(20px, calc((36 / 1440) * 100vw), 36px);
  font-weight: 800;
  color: #50858a;
  display: flex;
  align-items: center;
}

.feature-title_h3::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/feature_titile_icon.svg) no-repeat center center /
    contain;
  margin-right: 16px;
}

@media (max-width: 980px) {
  .feature-title_h3::before {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

.feature-body p {
  margin: 0;
  color: #222;
  font-weight: 400;
  font-size: 20px;
}

.feature-body p strong {
  color: #222;
}

@media (max-width: 980px) {
  .feature-body p {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 18px);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Points ===== */
.points {
  padding-top: 40px;
}

.points {
  overflow: visible;
}

.point-wrapper {
  position: relative;
  width: 100%;
}

.point-deco {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 344px;
  pointer-events: none;
  z-index: 0;
}

.point-deco-right {
  left: auto;
  right: 3.47vw;
  top: 0;
  transform: none;
  width: 238px;
  height: 238px;
}

.point-deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.point {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: center;
  padding: 40px 4.93vw;
  position: relative;
}

.point + .point {
  border-top: none;
}

.point-wrapper .illus {
  border-radius: 0;
  background: none;
}

/* 01: gap 27px */
.point-wrapper:nth-of-type(1) .point {
  gap: 27px;
}

.point-wrapper:nth-of-type(1) .meta {
  position: relative;
  z-index: 1;
}

/* 02: gap 60px */
.point-wrapper:nth-of-type(2) .point {
  gap: 60px;
}

/* 03: gap 52px */
.point-wrapper:nth-of-type(3) .point {
  gap: 52px;
}

@media (min-width: 980px) {
  .point-wrapper:nth-of-type(3) .illus {
    padding-right: 4.93vw;
  }
}

@media (max-width: 980px) {
  .point-deco {
    display: none;
  }

  .point-wrapper:nth-of-type(1) .meta,
  .point-wrapper:nth-of-type(2) .meta,
  .point-wrapper:nth-of-type(3) .meta {
    padding-left: 0;
    padding-right: 0;
  }
}

/* HTMLは全て.meta → .illusの順 */
/* 01, 03はテキスト左・画像右 = デフォルトのまま */
/* 02は画像左・テキスト右にしたいので direction: rtl で反転 */
.point-wrapper:nth-of-type(2) .point {
  direction: rtl;
}

.point-wrapper:nth-of-type(2) .meta,
.point-wrapper:nth-of-type(2) .illus {
  direction: ltr;
}

.point .meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.point .no {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  position: relative;
}

.point .no-label {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #828282;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.point .no-number {
  font-family: "Roboto", sans-serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  color: #78c497;
  margin-left: -14px;
  position: relative;
  z-index: 1;
}

.point h4 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 500;
  color: #000;
}

.point p {
  margin: 0;
  color: #222;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width: 980px) {
  .point p strong {
    font-weight: 400;
  }
}

.illus {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

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

@media (max-width: 980px) {
  .points {
    padding: 0;
    margin-top: 40px;
  }

  .point-wrapper:nth-of-type(1),
  .point-wrapper:nth-of-type(3) {
    background: rgba(149, 201, 61, 0.1);
  }

  .point {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0;
    position: relative;
  }

  .point-wrapper:nth-of-type(1) .point,
  .point-wrapper:nth-of-type(2) .point,
  .point-wrapper:nth-of-type(3) .point {
    direction: ltr;
  }

  .point-wrapper .illus {
    position: absolute;
    top: 5%;
    right: 0;
    width: 37%;
    height: auto;
    max-width: 160px;
  }

  .point-wrapper:nth-of-type(1) .illus {
    width: 53%;
    max-width: 190px;
  }

  .point-wrapper .illus img {
    width: 100%;
    height: auto;
    display: block;
  }

  .point .meta {
    text-align: left;
    padding-right: 40px;
    gap: 16px;
  }

  .point .no {
    margin-bottom: 10px;
  }

  .point .no-label {
    font-size: 24px;
  }

  .point .no-number {
    font-size: 56px;
  }

  .point h4 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .point p {
    font-size: 14px;
    line-height: 1.8;
  }

  .point p {
    font-size: 14px;
  }
}

/* ===== Effects list ===== */
.effects {
  width: min(640px, 100%);
  margin: 10px auto 0;
  padding-top: 18px;
}

.effects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .effects-head {
    justify-content: center;
  }
}

.effects-head .feature-title_h3 {
  margin-bottom: 0;
}

.effects ol {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  display: grid;
  gap: 40px;
  list-style: none;
  counter-reset: list-counter;
  margin-bottom: 60px;
}

@media (max-width: 980px) {
  .effects ol {
    margin-bottom: 40px;
    gap: 20px;
  }
}

.effects ol li {
  position: relative;
  font-size: 30px;
  padding-left: calc(32px + 25px);
  min-height: 32px;
  display: flex;
  align-items: center;
  counter-increment: list-counter;
}

@media (max-width: 980px) {
  .effects ol li {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 18px);
  }
}

.effects ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url(../images/effect_num_bg.svg) no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #454545;
}

.effect-last-title {
  padding: 40px 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .effect-last-title {
    font-size: 20px;
    padding-top: 0;
  }
}

.effects-notice {
  color: #454545;
}

.section-wrap {
  display: flex;
  flex-direction: column;
}

@media (max-width: 980px) {
  .section-wrap {
    flex-direction: column-reverse;
  }
}

/* ===== Other services cards ===== */
.release-cards {
  background: linear-gradient(90deg, #fbed96 0%, #abecd6 100%);
  padding: 40px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
    padding: 0 5%;
    gap: 16px;
  }
}

.card {
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-top {
  display: flex;
  gap: 20px;
  padding: 30px 20px 0 20px;
}

.card-top .card-image {
  flex: 0 0 53%;
}

@media (max-width: 768px) {
  .card-top .card-image {
    flex: 0 0 45%;
  }
}

.card-top .card-body {
  flex: 1;
  min-width: 0;
}

.card-image {
  aspect-ratio: 210 / 145;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.card .title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #757575;
  line-height: 1.5;
}

.card .description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #757575;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .card .title {
    font-size: 16px;
  }
  .card .description {
    font-size: 12px;
  }
}

.card-link {
  width: 100%;
}

.card-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  padding: 15px 20px;
}

.card-link a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/ico_detail.svg) no-repeat center / contain;
}

/* ===== Flow ===== */
.flow {
  padding: 56px 0 70px;
  background: #fff;
}

@media (max-width: 768px) {
  .flow {
    padding-top: 0;
  }
}

.flow .container {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-title {
  color: #01b09a;
  text-align: left;
}

@media (max-width: 768px) {
  .flow-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.step {
  position: relative;
  padding: 30px;
  color: #fff;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.step:nth-child(1) {
  width: 32.6%;
  background-image: url(../images/step01_bg.svg);
  align-items: flex-start;
}

.step:nth-child(2) {
  width: 32.6%;
  background-image: url(../images/step02_bg.svg);
  align-items: flex-start;
}

.step:nth-child(3) {
  width: 29.59%;
  background-image: url(../images/step03_bg.svg);
}

.step .kicker {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.step .kicker::before {
  content: "STEP";
  font-size: 16px;
  line-height: 1;
}

.step .kicker::after {
  content: attr(data-step);
  font-size: 32px;
  line-height: 1;
}

.step:nth-child(1) .kicker,
.step:nth-child(2) .kicker {
  margin-left: 60px;
}

.step .main {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.35;
  text-align: left;
}

.step .desc {
  opacity: 0.9;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
}

@media (max-width: 980px) {
  .flow-steps {
    gap: 8px;
  }

  .step {
    padding: 20px 10px 32px 10px;
    min-height: auto;
    gap: 20px;
  }

  .step:nth-child(1),
  .step:nth-child(2),
  .step:nth-child(3) {
    width: 33.33%;
  }

  .step:nth-child(1) .kicker,
  .step:nth-child(2) .kicker {
    margin-left: 25%;
  }

  .step .kicker {
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
  }

  .step .kicker::before {
    font-size: 10px;
  }

  .step .kicker::after {
    font-size: 14px;
  }

  .step .main {
    font-size: 12px;
    text-align: center;
  }

  .step .desc {
    font-size: 10px;
    text-align: center;
  }
}

/* ===== Trial CTA ===== */
.trial {
  background: #a1d6b6;
  padding: 80px 0;
}

.trial-card {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.trial-card::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 24.27%;
  aspect-ratio: 242 / 194;
  background: url(../images/trial_deco.png) no-repeat bottom right / contain;
  pointer-events: none;
}

.trial-card-list::after {
  content: none;
}

.service-page .trial-card::after {
  top: 40px;
  right: 50%;
  bottom: auto;
  transform: translateX(50%) translateY(-100%);
  width: 203px;
}

@media (min-width: 981px) {
  .service-trial .trial-card {
    transform: translateY(100px);
  }
}

.trial h3 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  color: #0d274a;
}

.trial-card h3 {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 700;
  color: #0d274a;
}

@media (max-width: 768px) {
  .trial-card h3 {
    font-size: 16px;
  }
}

.trial p {
  margin: 0 0 40px;
  color: #757575;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  section.trial {
    background: rgba(149, 201, 61, 0.25);
    padding: 130px 0 40px !important;
  }

  .trial-card {
    padding: 40px 20px;
    margin: 0 auto;
    width: 90%;
  }

  .trial-card p {
    font-size: 14px;
  }

  .trial-card::after {
    top: 40px;
    right: 50%;
    transform: translateX(50%) translateY(-100%);
    bottom: auto;
    width: 203px;
  }

  .trial h3 {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 24px);
    margin-bottom: 16px;
  }

  .trial p {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 16px);

    margin-bottom: 30px;
  }
}

/* ===== News ===== */
.news {
  padding: 56px 0 54px;
  background: #fff;
  position: relative;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-title {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0fb292;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1030px) {
  .news-title {
    position: relative;
    transform: initial;
    top: initial;
    left: initial;
    margin-bottom: 40px;
  }
}

.news .container {
  max-width: 590px;
  margin: 0 auto;
}

.news-btn {
  margin: 60px 0;
  text-align: center;
}

.news-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #0fb292;
  background: transparent;
  color: #0fb292;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.news-btn a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/ico_news_more.svg) no-repeat center / contain;
}

.news-btn a:hover {
  background: #0fb292;
  color: #fff;
}

.news-btn a:hover::after {
  background: url(../images/ico_news_more_w.svg) no-repeat center / contain;
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin: 0 0 48px;
  gap: 28px;
}

.tabs > div,
.tabs > a {
  flex: 1;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #c7c7c7;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid #c7c7c7;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.tabs > div.active,
.tabs > a.active {
  color: #0fb292;
  border-bottom-color: #0fb292;
}

@media (max-width: 980px) {
  .tabs {
    gap: 16px;
  }

  .tabs > div,
  .tabs > a {
    font-size: 16px;
  }
}

.news-list {
  display: grid;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr 202px;
  grid-template-areas:
    "meta image"
    "title image"
    "client image";
  column-gap: 50px;
  row-gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #d9d9d9;
  background: transparent;
}

.news-item .meta {
  grid-area: meta;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #c7c7c7;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-item .meta span {
  position: relative;
}

@media (min-width: 981px) {
  .news-item .meta span + span {
    padding-left: 20px;
  }

  .news-item .meta span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #d9d9d9;
  }
}

@media (max-width: 980px) {
  .news-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "meta"
      "image"
      "title"
      "client";
    gap: 12px;
  }

  .news-item .meta {
    justify-content: space-between;
    width: 100%;
    gap: 0;
  }
}

.news-item .ttl {
  grid-area: title;
  margin: 16px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #1f4037;
}

.news-item .client-name {
  grid-area: client;
  margin-top: 8px;
  font-size: 16px;
}

.news-item img {
  grid-area: image;
  width: 202px;
  height: 118px;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  background: transparent;
}


/* ===== News Archive ===== */
.news-archive {
  padding: 60px 0;
}

.news-archive .news{
  padding-bottom: 0;
  padding-top: 0;
}

.news-archive .news-title{
  top: 0;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .news-archive .news-title {
    text-align: center;
    font-size: 24px;
  }
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 10px;
  font-family: "Roboto", sans-serif;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid #d9d9d9;
  color: #6f6f6f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.news-pagination .page-numbers.current {
  background: #0fb292;
  border-color: #0fb292;
  color: #fff;
}

/* ===== News Detail ===== */
.news-detail {
  padding: 70px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.news-detail .container {
  max-width: 800px;
  margin: 0 auto;
}

.news-detail-head {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 980px) {
  .news-detail-head {
    gap: 24px;
    flex-direction: column-reverse;
  }
}

.news-detail-kicker {
  font-family: "Roboto", sans-serif;
  font-size: clamp(24px, calc((48 / 1440) * 100vw), 48px);
  font-weight: 700;
  color: #78C497;
  margin: 0 0 8px;
}

@media (max-width: 980px) {
  .news-detail-kicker {
    font-size: 24px;
    text-align: center;
  }
}

.news-detail-title {
  margin: 0 0 10px;
  font-size: 28px;
  color: #1f4037;
}

.news-detail-client {
  margin: 0;
  font-size: 16px;
  color: #1f4037;
}

.news-detail-meta {
  display: inline-flex;
  align-items: center;
  gap: 47px;
  color: #8d9b96;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 980px) {
  .news-detail-meta {
    font-size: 16px;
    gap: 16px;
  }
}

.news-detail-category {
  color: #78C497;
}

.news-detail-thumb {
  max-width: 820px;
  margin: 0 auto 24px;
}

.news-detail-thumb img {
  width: 100%;
  height: auto;
}

.news-detail-body {
  max-width: 820px;
  margin: 0 auto;
  color: #2d3f39;
  font-size: 16px;
  line-height: 1.9;
}

.news-detail-body h2 {
  position: relative;
  margin: 32px 0 16px;
  padding-left: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #1f4037;
}

.news-detail-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 3px;
  height: 1.2em;
  background: #78C497;
}

.news-detail-body h3 {
  margin: 28px 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #78C497;
}

.news-detail-body ul,
.news-detail-body ol {
  margin: 16px 0;
  padding-left: 1.4em;
}

.news-detail-body li {
  margin: 6px 0;
}

.news-detail-body a {
  color: #0fb292;
  text-decoration: underline;
}

.news-detail-body h4 {
  margin-top: 28px;
}

.news-detail-footer {
  text-align: center;
  margin-top: 30px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 50px;
  background: transparent;
  border-radius: 8px;
  border: 1px solid #0fb292;
  color: #0fb292;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.news-detail-back:visited,
.news-detail-back:focus,
.news-detail-back:active {
  color: #0fb292;
}

.news-detail-back::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../images/ico_news_more.svg) no-repeat center / contain;
}

.news-detail-back:hover {
  background: #0fb292;
  color: #fff;
}

.news-detail-back:hover::after {
  background: url(../images/ico_news_more_w.svg) no-repeat center / contain;
}

@media (max-width: 980px) {
  .news-detail {
    padding: 48px 0;
  }

  .news-detail-title {
    font-size: 18px;
  }
}

/* ===== FAQ ===== */
.faq {
  background: transparent;
  padding: 56px 0 70px;
}

.faq-wrap {
  width: min(980px, 90%);
  margin: 0 auto;
}

@media (max-width: 980px) {
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.faq .section-title {
  color: #78c497;
}

@media (max-width: 980px) {
  .faq .section-title {
    font-size: 20px;
  }
}

.faq details {
  border: 0;
  background: #fafafa;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.faq details + details {
  margin-top: 16px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 500;
  color: #78c497;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 20px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:after {
  content: "";
  width: 15px;
  height: 7.5px;
  display: inline-block;
  background: url(../images/faq_open.svg) no-repeat center / contain;
  flex: 0 0 auto;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq details[open] summary:after {
  transform: rotate(180deg);
}

.faq-question {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-body {
  padding: 0 16px 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-body .answer-label {
  color: #f7971e;
  flex: 0 0 auto;
}

.faq-body .answer-text {
  flex: 1 1 auto;
}

.faq-body .answer-text > *:first-child {
  margin-top: 0;
}

.faq-body .answer-text > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .faq summary {
    font-size: 15px;
  }

  .faq-body {
    font-size: 15px;
  }
}

/* ===== Service Page ===== */
.service-page section {
  padding: 70px 0;
}

.service-hero {
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.page-title.is_center {
  text-align: center;
}

.page-title.is_left {
  text-align: left;
}

@media (max-width: 768px) {
  .page-title.is_left {
    text-align: center;
  }
}

.service-lead {
  text-align: center;
  color: #222;
  margin: 0 0 60px;
  font-size: clamp(14px, calc((20 / 1440) * 100vw), 20px);
}

.service-hero-row {
  max-width: 842px;
  margin: 0 auto;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .service-hero-row {
    gap: 16px;
  }
}

.service-hero-icon {
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  flex: 0 0 158px;
}

.service-hero-icon img {
  width: 158px;
  height: auto;
}

@media (max-width: 768px) {
  .service-hero-icon {
    width: 94px;
    height: 94px;
    flex: 0 0 94px;
  }
  .service-hero-icon img {
    width: 94px;
  }
}

.service-hero-text {
  background: #f0fff6;
  border-radius: 20px 20px 20px 0;
  padding: 24px 28px;
  color: #454545;
  font-size: 20px;
}

@media (max-width: 768px) {
  .service-hero-text {
    font-size: 13px;
  }
}

.service-section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #78c497;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .service-section-title {
    flex-direction: column;
  }
}

.service-section-title.light {
  color: #fff;
}

.limited-tag {
  color: #f5a623;
}

.enterprise-title {
  line-height: 1.3;
  color: #454545;
  display: inline-block;
  padding: 0 4px;
  background: linear-gradient(transparent calc(100% - 13px), #02b09a 0);
}

@media (max-width: 768px) {
  .enterprise-title {
    background: linear-gradient(transparent calc(100% - 7px), #02b09a 0);
  }
}

.service-section-lead {
  text-align: center;
  color: #454545;
  margin: 0 0 36px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .service-section-title {
    font-size: 20px;
  }

  .service-section-lead {
    text-align: left;
    font-size: 14px;
    display: inline-block;
    display: flex;
    justify-content: center;
  }
}

.service-section-lead.light {
  color: rgba(255, 255, 255, 0.9);
}

.service-support {
  background: #78c497;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
}

@media (max-width: 768px) {
  .support-grid {
    margin-top: 50px;
    gap: 40px;
  }
}

.support-card {
  position: relative;
  background: #eaf8f2;
  border-radius: 22px;
  padding: 34px 28px 28px;
}

.support-card h3 {
  margin: 0 0 12px;
  font-size: clamp(16px, calc((16 / 375) * 100vw), 18px);
  text-align: center;
  line-height: 1.4;
}

.support-card p {
  margin: 0;
  font-size: clamp(12px, calc((12 / 375) * 100vw), 16px);
  color: #3f4a46;
  line-height: 1.4;
}

.support-icon {
  position: absolute;
  left: -18px;
  top: -22px;
  width: 88px;
  aspect-ratio: 1 / 1;
  display: block;
}

.support-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-press {
  background: #fff;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 24px;
}

.press-card {
  background: #e4f3ea;
  border-radius: 20px;
  padding: 24px;
  max-width: 350px;
}

.press-card h3 {
  margin: 0 0 14px;
  text-align: center;
  font-size: 18px;
}

.press-visual {
  background: #fff;
  width: min(310px, 100%);
  aspect-ratio: 310 / 175;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 5%;
}

.press-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.press-card p {
  font-size: 14px;
  color: #3f4a46;
  margin: 0;
}

.service-effect {
  background: #cfebd9;
}

.service-effect .service-section-title {
  color: #454545;
}

.effect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

@media (max-width: 768px) {
  .effect-grid {
    gap: 40px;
  }
}

.effect-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  position: relative;
}

.effect-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .effect-head {
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
  }
}

.effect-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: block;
}

.effect-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.effect-head h3 {
  font-size: 16px;
  margin: 0;
}

.effect-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #b9d6c7;
  margin: 12px 0;
}

@media (max-width: 768px) {
  .effect-line {
    display: none;
  }
}

.effect-card p {
  margin: 0;
  font-size: clamp(12px, calc((12 / 375) * 100vw), 16px);
  color: #3f4a46;
}

section.service-enterprise {
  border: 30px solid rgba(2, 176, 154, 0.8);
  padding: 0;
}

@media (max-width: 768px) {
  section.service-enterprise {
    border: 16px solid rgba(2, 176, 154, 0.8);
    padding: 0 !important;
  }
}

.enterprise-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 42px 36px;
}

.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.enterprise-card {
  background: #e4f8f6;
  border-radius: 18px;
  padding: 24px;
  max-width: 350px;
}

.enterprise-card h3 {
  text-align: center;
  font-size: 18px;
  margin: 0 0 16px;
}

.enterprise-media {
  background: #fff;
  border-radius: 0;
  padding: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  min-height: 120px;
}

.media-icon {
  display: block;
  object-fit: contain;
}

.media-icon.single {
  width: 80px;
  height: 80px;
}

.media-icon.group {
  width: 70px;
  height: 70px;
}

.enterprise-card p {
  margin: 0;
  font-size: 14px;
  color: #3f4a46;
}

@media (max-width: 768px) {
  .enterprise-card p {
    font-size: 12px;
  }
}

.service-trial {
  background: #e6f4ea;
}

@media (max-width: 980px) {
  .service-trial {
    padding-top: 150px !important;
  }
}

.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-trial .trial-card-group {
  text-align: center;
}

@media (max-width: 980px) {
  .service-trial .trial-card-list {
    margin-top: 24px;
  }
}

.trial-card-group .trial-card h3 {
  font-size: 24px;
}

@media (max-width: 768px) {
  .trial-card-group .trial-card h3 {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.trial-ill img {
  width: 180px;
  margin: 0 auto 14px;
}

.trial-list-title {
  color: #78c497;
  font-weight: 700;
  margin: 0 0 12px;
}

.trial-card-list {
  text-align: center;
}

@media (min-width: 981px) {
  .trial-card-list {
    padding-top: 0 !important;
  }
}

.trial-card-list .trial-list-title {
  text-align: center;
}

ul.trial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: grid;
  gap: 6px;
  max-width: 245px;
  margin: 0 auto;
}

.trial-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
}

.trial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #78c497;
}

.trial-form-wrap {
  padding: 16px;
  border-radius: 0;
  background: #78c497;
}

.trial-form {
  background: #fff;
  border: 0;
  border-radius: 10px;
  padding: 28px;
}

.trial-form form {
  display: grid;
  gap: 14px;
}

.trial-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.trial-form .label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trial-form .required {
  color: #e95454;
  font-weight: 700;
}

.trial-form input,
.trial-form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d6ded9;
  font-size: 14px;
}

.trial-form select {
  background: #fff;
}

.trial-form small {
  display: block;
  font-weight: 400;
  color: #8a9590;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-trial .btn-primary {
  margin-top: 4px;
  border-radius: 999px;
  background: #78c497;
  color: #fff;
  height: 44px;
  font-size: 14px;
}

.privacy-note {
  font-size: 12px;
  color: #3f4a46;
  margin: 0;
}

.privacy-note a {
  color: #78c497;
}

@media (max-width: 980px) {
  .service-page section {
    padding: 40px 0;
  }

  .service-title {
    font-size: 22px;
  }

  .service-hero-card {
    flex-direction: column;
    text-align: center;
  }

  .press-grid,
  .effect-grid,
  .enterprise-grid,
  .trial-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .support-card {
    padding: 26px 20px 22px 20px;
    max-width: 296px;
  }

  .support-icon {
    left: -35px;
    top: -35px;
    width: 70px;
    height: 70px;
  }

  .effect-card {
    max-width: 296px;
  }

  .effect-icon {
    position: absolute;
    left: -35px;
    top: -35px;
    width: 70px;
    height: 70px;
  }

  .enterprise-inner {
    padding: 32px 20px;
  }

  .trial-form {
    padding: 22px;
  }

  .trial-card-list {
    margin-top: 0;
  }

  .trial-card p.trial-list-title {
    font-size: 16px;
  }

  .service-trial .trial-card-group {
    background: transparent;
    padding: 0;
    display: grid;
    gap: 12px;
    width: 100%;
  }

  .trial-card-group .trial-card {
    width: 100%;
  }
}

/* ===== Plan Page ===== */
.plan-page section {
  padding: 70px 0;
}

.plan-hero {
  padding-top: 40px;
}

@media (max-width: 980px) {
  .plan-hero {
    padding-bottom: 0 !important;
  }
}

/* ===== Trial Page ===== */
.trial-page {
  background: #fff;
}

.trial-page .trial-apply {
  padding: 70px 0 90px;
}

.trial-apply-head .page-title {
  margin-bottom: 12px;
}

.trial-apply-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trial-apply-note {
  margin: 0 0 32px;
  font-size: 14px;
  color: #8a9590;
}

@media (max-width: 980px) {
  .trial-apply-note {
    text-align: center;
  }
}

.trial-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 16px;
  align-items: start;
}

.trial-apply-copy {
  margin: 0 0 24px;
  font-size: clamp(20px, calc((32 / 1440) * 100vw), 32px);
  font-weight: 700;
  line-height: 1.6;
  background: linear-gradient(90deg, #014C60 0%, #494949 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.08em;
  display: inline-block;
  margin: 0 auto 60px;
}

.trial-apply-visual {
  margin-bottom: 24px;
}

.trial-apply-list-title {
  margin: 0 0 12px;
  color: #78C497;
  font-weight: 700;
  text-align: center;
  font-size: clamp(16px, calc((24 / 1440) * 100vw), 24px);
}

.trial-apply-list {
  max-width: 420px;
  margin: 0 auto;
}

.trial-page .trial-list {
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

.trial-page .btn-primary {
  margin-top: 4px;
  border-radius: 999px;
  background: #78c497;
  color: #fff;
  height: 44px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .trial-page .trial-apply {
    padding: 40px 0 60px;
  }

  .trial-apply-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trial-apply-content {
    text-align: center;
  }

  .trial-apply-copy {
    font-size: 18px;
  }

  .trial-page .trial-list {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ===== Contact Page ===== */
.contact-page {
  background: #fff;
}

.contact-hero {
  padding: 70px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 50px;
  align-items: start;
}

.contact-copy .page-title {
  margin-bottom: 18px;
}

.contact-lead {
  margin: 0 0 12px;
  font-size: 14px;
  color: #3f4a46;
}

.contact-form-wrap {
  padding: 16px;
}

.contact-page .btn-primary {
  margin-top: 4px;
  border-radius: 999px;
  background: #78c497;
  color: #fff;
  height: 44px;
  font-size: 14px;
}

.contact-page .trial-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d6ded9;
  font-size: 14px;
  resize: vertical;
}

@media (max-width: 980px) {
  .contact-hero {
    padding: 40px 0 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-copy {
    text-align: center;
  }
}

/* ===== Privacy Policy Page ===== */
.privacy-page {
  background: #fff;
}

.privacy-title {
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 20px);
}

.privacy-hero {
  padding: 70px 0 90px;
}

.privacy-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: #3f4a46;
}

.privacy-content p {
  margin: 0 0 20px;
}

.terms-content .terms-intro {
  margin: 0 0 32px;
}

.terms-content .terms-section {
  margin: 0 0 28px;
}

.terms-content .terms-section h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #2f3b37;
}

.terms-content .terms-section p {
  margin: 0 0 12px;
}

.terms-content .terms-section ol,
.terms-content .terms-section ul {
  margin: 0;
  padding-left: 22px;
}

.terms-content .terms-section li {
  margin: 0 0 8px;
}

.terms-content .terms-sublist {
  margin-top: 8px;
}

.terms-content ul.terms-sublist {
  list-style: disc;
}

.terms-content ol.terms-sublist {
  list-style: decimal;
}

.privacy-sign {
  margin: 40px 0 0;
  text-align: right;
}

@media (max-width: 980px) {
  .privacy-hero {
    padding: 40px 0 60px;
  }

  .privacy-content {
    font-size: 13px;
  }

  .terms-content .terms-section h2 {
    font-size: 14px;
  }
}

/* ===== Popup CTA ===== */
.popup-cta {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 170px;
  height: 170px;
  z-index: 900;
}

.popup-cta img {
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .popup-cta {
    display: none;
  }
}

.plan-lead {
  color: #222;
  margin: 0 0 32px;
}

@media (max-width: 768px) {
  .plan-lead {
    font-size: 14px;
    text-align: center;
  }
}

.plan-table-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  margin-bottom: 60px;
}

.plan-col-label {
  width: 25%;
}

.plan-col-plan {
  width: 25%;
}

.plan-table th,
.plan-table td {
  border: 1px solid #cfd7d2;
  padding: 12px 10px;
  text-align: center;
  vertical-align: middle;
  position: relative;
}

.plan-table tfoot th,
.plan-table tfoot td {
  background: #fff;
  padding: 16px 10px 20px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.plan-table th.plan-top {
  padding: 12px 0 !important;
}

.plan-table tbody tr:nth-child(odd) th,
.plan-table tbody tr:nth-child(odd) td {
  background: #fff;
}

.plan-table tbody tr:nth-child(even) th,
.plan-table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

.plan-table th {
  text-align: left;
  font-weight: 600;
  background: #fff;
}

.plan-table th small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #7d8882;
}

.plan-side {
  background: #fff;
  border-top: none !important;
  border-left: none !important;
}

.plan-top {
  background: #fff;
  font-size: clamp(14px, calc((18 / 1440) * 100vw), 18px);
  font-weight: 600;
  color: #4f5b56;
  text-align: center !important;
  border-color: #9ccf6a #9ccf6a #cfd7d2 #9ccf6a;
  border-top-width: 2px;
}

.plan-head {
  color: #fff;
  font-weight: 700;
  text-align: center !important;
  font-size: clamp(16px, calc((20 / 1440) * 100vw), 20px);
}

th.plan-head-free {
  background: #93c93f;
}

th.plan-head-standard {
  background: #54be66;
}

th.plan-head-enterprise {
  background: #02b09a;
}

.plan-check,
.plan-cross {
  display: inline-block;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 0;
  color: transparent;
}

.plan-cross {
  background-image: url(../images/batsu.svg);
}

.plan-check {
  background-image: url(../images/maru.svg);
}

.plan-price strong {
  font-size: 24px;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 768px) {
  .plan-price strong {
    font-size: 16px;
  }
}

.plan-price small {
  font-size: 12px;
  color: #6e7a75;
}

.plan-allow {
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%);
  text-align: center;
  font-size: 13px;
  color: #ff383c;
  font-weight: 700;
}

.plan-monthly-note {
  text-align: right;
  font-size: 12px;
  color: #6e7a75;
  margin: 0 0 6px;
}

.plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  width: 100%;
  transition: opacity 0.3s;
}

.plan-page .plan-cta,
.plan-page .plan-cta:visited,
.plan-page .plan-cta:focus,
.plan-page .plan-cta:active {
  color: #fff;
}

.plan-cta:hover {
  color: #fff;
  opacity: 0.8;
}

.plan-cta-free {
  background: #93c93f;
}

.plan-cta-standard {
  background: #54be66;
}

.plan-cta-enterprise {
  background: #02b09a;
}

.plan-note {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  text-align: left;
}

.plan-consult {
  margin: 24px auto;
  max-width: 842px;
}

.plan-consult .service-hero-row {
  margin: 0;
  justify-content: center;
}

.plan-consult .service-hero-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}

.plan-consult .service-hero-icon img {
  width: 72px;
}

.plan-consult .service-hero-text {
  background: #f0fff6;
  border: none;
  border-radius: 16px 16px 16px 0;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.8;
}

.plan-consult .service-hero-text a {
  color: #3b3b3b;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .plan-note {
    font-size: 12px;
  }

  .plan-consult {
    margin: 20px auto 28px;
  }

  .plan-consult .service-hero-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
  }

  .plan-consult .service-hero-icon img {
    width: 54px;
  }

  .plan-consult .service-hero-text {
    font-size: 12px;
    padding: 14px 16px;
  }
}

.plan-cards {
  display: grid;
  max-width: 600px;
  margin: 0 auto;
}

.plan-anchor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 60px auto;
  max-width: 600px;
  width: 100%;
}

.plan-anchor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 6px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  padding: 8px 4px;
  gap: 8px;
}

.plan-anchor-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/plan_anchor_arrow.svg) no-repeat center / contain;
  display: block;
}

.plan-anchor-btn:visited {
  color: #fff;
}

.plan-anchor-free {
  background: #93c93f;
}

.plan-anchor-standard {
  background: #54be66;
}

.plan-anchor-enterprise {
  background: #02b09a;
}

.plan-card {
  border: 1px solid #d7ded9;
  background: #fff;
}

.plan-card-head {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #d7ded9;
  font-size: 16px;
  font-weight: 700;
  color: #454545;
}

.plan-card.plan-card-free .plan-card-head {
  border-color: #93c93f;
}
.plan-card.plan-card-standard .plan-card-head {
  border-color: #54be66;
}
.plan-card.plan-card-enterprise .plan-card-head {
  border-color: #02b09a;
}

.plan-card-title {
  text-align: center;
  font-weight: 700;
  color: #fff;
  padding: 12px;
}

.plan-card-free .plan-card-title {
  background: #93c93f;
}

.plan-card-standard .plan-card-title {
  background: #54be66;
}

.plan-card-enterprise .plan-card-title {
  background: #02b09a;
}

.plan-card-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #d7ded9;
  font-size: 14px;
  align-items: center;
}

.plan-price-main {
  font-size: 16px;
  font-weight: 700;
}

.plan-price-sub {
  font-size: 12px;
  font-weight: 600;
  color: #6e7a75;
}

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

.plan-card-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 60px 10px 14px;
  border-bottom: 1px solid #d7ded9;
  font-size: 14px;
}

.plan-card-list span {
  font-weight: 700;
}

.plan-card-note {
  font-size: 11px;
  color: #6e7a75;
  padding: 10px 14px;
  margin: 0;
}

.plan-card-note-outside {
  padding: 6px 4px 0;
  text-align: left;
}

.plan-campaign {
  background: rgba(84, 190, 102, 0.8);
}

.campaign-title {
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
}

.campaign-card {
  position: relative;
  background: #fff;
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.campaign-badge {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-30%, -45%);
  width: 219px;
  height: 219px;
  border-radius: 999px;
  background: #fcffaa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #3b3b3b;
  gap: 2px;
}

.campaign-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 0;
}

.campaign-icon {
  width: 10.49vw;
  aspect-ratio: 1 / 1;
  max-width: 151px;
  position: absolute;
  left: clamp(8px, 2.78vw, 40px);
  bottom: clamp(8px, 2.78vw, 40px);
}

.campaign-icon img {
  width: 100%;
  height: auto;
}

.campaign-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.campaign-content p {
  margin: 6px 0;
  font-weight: 700;
  color: #3b3b3b;
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .campaign-content p {
    font-size: clamp(16px, calc((16 / 375) * 100vw), 36px);
    margin-bottom: 20px;
  }
}

.campaign-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-bottom: 0;
}

.campaign-plan-bg {
  background: #7bcb86;
  font-size: 24px;
  color: #fff;
  padding: 4px 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .campaign-plan-bg {
    font-size: clamp(14px, calc((14 / 375) * 100vw), 24px);
  }
}

.campaign-plan-text {
  font-size: 32px;
  font-weight: 700;
  color: #454545;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .campaign-plan-text {
    font-size: clamp(16px, calc((16 / 375) * 100vw), 32px);
  }
}

.campaign-price span:not(.pc-only) {
  color: #7bcb86;
  font-size: 48px;
}

@media (max-width: 768px) {
  .campaign-price span:not(.pc-only) {
    font-size: clamp(24px, calc((24 / 375) * 100vw), 48px);
  }
}

.campaign-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #58b368;
  color: #fff;
  border-radius: 6px;
  padding: 16px 24px;
  font-weight: 700;
  margin-top: 10px;
  min-width: 240px;
  margin: 0 auto;
  transition: opacity 0.3s;
}

.plan-page .campaign-btn,
.plan-page .campaign-btn:visited,
.plan-page .campaign-btn:focus,
.plan-page .campaign-btn:active {
  color: #fff;
}

.campaign-btn:hover {
  color: #fff;
  opacity: 0.8;
}

.plan-page .flow-title{
  text-align: center;
}

@media (max-width: 980px) {
  .plan-page section {
    padding: 48px 0;
  }

  .plan-cta {
    width: 100%;
    max-width: 270px;
    margin: 60px auto;
  }

  .plan-campaign {
    padding: 36px 0;
  }

  .campaign-card {
    padding: 30px;
  }

  .campaign-title {
    font-size: clamp(20px, calc((20 / 375) * 100vw), 24px);
  }

  .campaign-body-badges {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
  }

  .campaign-badge {
    position: static;
    transform: none;
    margin: 0 auto 12px;
    border-radius: 20px;
    height: auto;
    width: auto;
    padding: 16px 16px 24px 16px;
  }

  .campaign-badge strong {
    font-size: clamp(15px, calc((15 / 375) * 100vw), 22px);
  }

  .campaign-badge strong:first-child {
    margin-bottom: 0.5rem;
  }

  .campaign-icon {
    position: static;
    margin: 0 auto 12px;
    width: clamp(90px, calc((90 / 375) * 100vw), 151px);
  }

  .campaign-body {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #fdffcd;
  padding: 28px 0 34px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo img {
  width: 200px;
  height: auto;
  display: block;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 0;
  padding: 0;
}

.footer-nav-list li {
  list-style: none;
  margin: 0;
}

.footer-nav-list a {
  color: #454545;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}

@media (max-width: 780px) {
  .footer-nav-list a {
    font-size: 12px;
  }
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: #8ec43d;
  margin: 18px 0 22px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.footer-companies {
  display: grid;
  gap: 0;
}

.footer-company {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #3b5a51;
  font-weight: 400;
  text-decoration: none;
}

.footer-company img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-legal {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  color: #3b5a51;
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-privacy {
  color: #454545;
  text-decoration: none;
  font-weight: 500;
}

.footer-copy {
  font-size: 16px;
  font-weight: 500;
  color: #454545;
}

@media (max-width: 980px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-logo {
    width: 85px;
    min-width: 85px;
    flex: 0 0 85px;
  }

  .footer-logo img {
    width: 85px;
  }

  .footer-company-name {
    font-size: 12px;
  }

  .footer-nav-list {
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    align-items: flex-start;
  }
  .footer-legal-links {
    gap: 12px;
  }
  .footer-privacy {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }
}

/* ===== Responsive (Global) ===== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  nav {
    display: none;
  }

  .site-footer nav {
    display: block;
  }
}
