@charset "UTF-8";
/** @format */
/** @format */
html {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 400;
}

body {
  font-family: inherit;
}

:lang(en) {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.c-pagehead {
  --header-h: 80px;
  padding-top: calc(var(--header-h) + 120px);
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .c-pagehead {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 28px;
  }
}

.c-sectionhead {
  text-align: center;
  margin-bottom: 80px;
}
.c-sectionhead__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.c-sectionhead__subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0;
  color: #333333;
}
@media (max-width: 767px) {
  .c-sectionhead {
    margin-bottom: 40px;
  }
  .c-sectionhead__title {
    font-size: 36px;
  }
  .c-sectionhead__subtitle {
    font-size: 14px;
  }
}

.c-breadcrumb {
  margin: 0 0 40px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-breadcrumb {
    margin-bottom: 24px;
    font-size: 10px;
  }
}

.c-lead {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: center;
}
@media (max-width: 768px) {
  .c-lead {
    font-size: 13px;
    line-height: 2;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #444;
  border: 2px solid #444;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#CDEBE3), to(#A8E0D1));
  background: linear-gradient(90deg, #CDEBE3 0%, #A8E0D1 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn span {
  position: relative;
  z-index: 1;
}
.c-btn::after {
  content: " ›";
  position: relative;
  margin-left: 6px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn:hover {
  color: #2F5F57;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.c-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn:hover::after {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .c-btn {
    font-size: 14px;
    padding: 12px 32px;
  }
}
@media (max-width: 440px) {
  .c-btn {
    font-size: 11px;
    padding: 12px 16px;
  }
}
.c-btn-contact {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 20px 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid #7EC8B6;
  color: #3F6F67;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* グラデーション */
}
.c-btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#BFE8DD), to(#8FD6C5));
  background: linear-gradient(90deg, #BFE8DD 0%, #8FD6C5 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn-contact span {
  position: relative;
  z-index: 1;
}
.c-btn-contact::after {
  content: " → ";
  margin-left: 8px;
  position: relative;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn-contact:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.c-btn-contact:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn-contact:hover::after {
  margin-left: 14px;
}

/* SP */
@media (max-width: 767px) {
  .c-btn-contact {
    max-width: 100%;
    font-size: 15px;
  }
}
.contact-cta {
  padding: 140px 0;
  background: #f7faf8;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-cta {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .contact-cta {
    padding: 80px 0;
  }
}

.contact-cta__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-cta__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 60px;
}

.contact-cta__lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 48px;
}

.contact-cta__text {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.contact-cta__illust img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

.contact-cta__illust-sp {
  display: none;
}

.contact-cta__note {
  margin-top: 50px;
  font-size: 14px;
  color: #6BC1A9;
  font-weight: 600;
}

.contact-cta__button-wrapper {
  margin-top: 20px;
}

.contact-cta__button {
  position: relative;
  display: inline-block;
  padding: 20px 72px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6BC1A9, #58B79F);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.contact-cta__button span {
  position: relative;
  z-index: 2;
}
.contact-cta__button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.contact-cta__button:hover::after {
  left: 130%;
}
.contact-cta__button:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .contact-cta__main {
    display: block;
  }
  .contact-cta__illust {
    display: none;
  }
  .contact-cta__illust-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 40px;
  }
  .contact-cta__illust-sp img {
    max-width: 80px;
    width: 100%;
  }
  .contact-cta__lead {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .contact-cta__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-cta__illust-sp img {
    max-width: 100px;
  }
  .contact-cta__button {
    padding: 18px 56px;
    font-size: 14px;
  }
  .contact-cta__lead {
    font-size: 19px;
  }
}
.pc {
  display: block;
}

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

@media (max-width: 768px) {
  .sp {
    display: block;
  }
}
.is-corporate {
  background: #E6F5F1;
  color: #4A9E8A;
}

.is-lp {
  background: rgba(232, 241, 251, 0.95);
  color: #4A7FCF;
}

.is-blog {
  background: #FFF3E6;
  color: #E39B4A;
}

.is-ec {
  background: #FDECEF;
  color: #D96A7C;
}

.is-portfolio {
  background: #F2ECFF;
  color: #8A6AD9;
}

.is-banner {
  background: #FFF9E6;
  color: #D9A441;
}

.c-cta {
  text-align: center;
  margin-top: 48px;
}

.c-cta__btn {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #98D4C7;
  color: #98D4C7;
  background: transparent;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.c-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#98D4C7), to(#6BC1A9));
  background: linear-gradient(90deg, #98D4C7 0%, #6BC1A9 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}
.c-cta__btn span {
  position: relative;
  z-index: 1;
}
.c-cta__btn:hover {
  color: #fff;
}
.c-cta__btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.plan__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.plan__service {
  margin-bottom: 120px;
}
.plan__lead {
  max-width: 760px;
  margin: 12px auto 40px;
  padding: 0 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
@media (max-width: 480px) {
  .plan__lead {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.85;
  }
}

.c-sectiontitle {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 26px;
}

.plan-service__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 60px;
  font-size: 16px;
  font-weight: 500;
}

.plan-service__flowItem {
  color: #333;
  font-size: 14px;
  font-weight: 600;
}

.plan-service__flowPlus {
  font-size: 22px;
  font-weight: 600;
  color: #8cc7b8;
  opacity: 0.9;
}

/* ========================================
GRID
======================================== */
.plan-service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ========================================
CARD
======================================== */
.plan-service__item {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  border: 1px solid #e9eceb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.plan-service__item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.plan-service__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #111;
}

.plan-service__img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.plan-service__img--tint {
  padding: 14px;
  background: #f6fbf9;
  border-radius: 40%;
}

.plan-service__text {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  max-width: 220px;
}

@media (max-width: 1024px) {
  .plan-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plan-service__flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    font-size: 15px;
  }
  .plan-service__flowPlus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 20px;
  }
  .plan-service__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-service__item {
    padding: 28px 22px;
  }
  .plan-service__text {
    max-width: 100%;
  }
}
.plan__price {
  padding: 120px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f9f8), to(#eef7f4));
  background: linear-gradient(180deg, #f7f9f8 0%, #eef7f4 100%);
}

.plan-price__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-price__trust {
  text-align: center;
  margin: 24px 0 50px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

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

.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.plan-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
          box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.plan-card.is-recommend {
  border: 2px solid #98D4C7;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: #98D4C7;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 3;
}

.plan-card__label {
  font-size: 13px;
  color: #98D4C7;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}

.plan-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.plan-card__price {
  font-size: 36px;
  font-weight: 800;
  color: #98D4C7;
  margin-bottom: 24px;
}

.plan-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.plan-card__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}
.plan-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #98D4C7;
  font-weight: bold;
}

.plan-card__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: auto;
  margin-bottom: 24px;
  min-height: 60px;
}

.cta__btn {
  text-align: center;
}

.plan__note {
  margin-top: 50px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}

.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 768px) {
  .plan__cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .plan-card {
    padding: 32px 22px;
  }
  .plan-card__price {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .plan__price {
    padding: 80px 0;
  }
  .plan-card__title {
    font-size: 20px;
  }
  .plan-card__price {
    font-size: 28px;
  }
  .plan-card__list li {
    font-size: 14px;
  }
  .plan-card__text {
    font-size: 13px;
  }
}
.is-recommend {
  background: #ffffff;
  position: relative;
  z-index: 2;
  font-weight: 700;
  -webkit-box-shadow: 0 8px 16px rgba(152, 212, 199, 0.25);
          box-shadow: 0 8px 16px rgba(152, 212, 199, 0.25);
  border-left: 2px solid #98D4C7;
  border-right: 2px solid #98D4C7;
}

thead .is-recommend {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(152, 212, 199, 0.25)), to(rgba(152, 212, 199, 0.1)));
  background: linear-gradient(180deg, rgba(152, 212, 199, 0.25), rgba(152, 212, 199, 0.1));
}

.plan-compare {
  padding: 120px 0;
  background: #fff;
}

.plan-compare__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-compare__lead {
  text-align: center;
  margin: 24px auto 60px;
  font-size: 16px;
  line-height: 1.9;
  max-width: 760px;
  color: #333333;
}
.plan-compare__lead strong {
  color: #98D4C7;
}

.plan-compare__tableWrap {
  width: 100%;
}

.plan-compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
          box-shadow: 0 24px 50px rgba(0, 0, 0, 0.06);
}

.plan-compare__table thead {
  background: #f7f9f8;
  border-bottom: 3px solid #98D4C7;
}

.plan-compare__table th {
  width: 25%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #333;
  white-space: nowrap;
}

.plan-compare__table thead th {
  text-align: center;
}

.plan-compare__table thead th:first-child {
  text-align: center;
}

.plan-compare__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}

.plan-compare__table tbody th {
  text-align: center;
  font-weight: 600;
  padding: 22px 24px;
  border-bottom: 1px solid #e8edf1;
}

.plan-compare__table td {
  text-align: center;
  padding: 22px 24px;
  border-bottom: 1px solid #e8edf1;
  font-size: 15px;
}

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

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

.plan-compare__table thead .is-recommend {
  background: rgba(152, 212, 199, 0.15);
  position: relative;
}

.plan-compare__table tbody td.is-recommend {
  background: rgba(152, 212, 199, 0.08);
  font-weight: 700;
  position: relative;
}

.plan-compare__table th,
.plan-compare__table td {
  position: relative;
}

.plan-compare__table th:not(:last-child)::after,
.plan-compare__table td:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #eef2f6;
}

.plan-compare__table thead .is-recommend::before,
.plan-compare__table tbody td.is-recommend::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #98D4C7;
}

.plan-compare__table thead .is-recommend::after,
.plan-compare__table tbody td.is-recommend::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #98D4C7;
}

.plan-compare__badge {
  font-size: 12px;
  background: -webkit-gradient(linear, left top, right top, from(#98D4C7), to(#7FCDBB));
  background: linear-gradient(90deg, #98D4C7, #7FCDBB);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  -webkit-box-shadow: 0 6px 16px rgba(152, 212, 199, 0.4);
          box-shadow: 0 6px 16px rgba(152, 212, 199, 0.4);
}

.icon-check {
  color: #4CAF50;
  font-weight: 700;
  font-size: 16px;
}

.icon-check.strong {
  font-size: 18px;
}

@media (max-width: 768px) {
  .plan-compare {
    padding: 80px 0;
  }
  .plan-compare__lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .plan-compare__table th,
  .plan-compare__table td {
    padding: 14px 10px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .plan-compare__table tbody th,
  .plan-compare__table tbody td {
    padding: 12px 0px;
    font-size: 12px;
    word-break: break-word;
  }
}
.plan-maintenance {
  padding: 90px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f7fbfa), to(#eef7f5));
  background: linear-gradient(180deg, #f7fbfa 0%, #eef7f5 100%);
}

.plan-maintenance__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.plan-maintenance__lead {
  text-align: center;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.9;
}

.plan-maintenance__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.maintenance-card {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 32px 24px 24px;
  text-align: center;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.maintenance-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.maintenance-card__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

.maintenance-card__target {
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
}

.maintenance-card__price {
  font-size: 34px;
  font-weight: 900;
  color: #98D4C7;
  margin-bottom: 26px;
}

.maintenance-card__price span {
  font-size: 14px;
  margin-left: 4px;
}

.maintenance-card__list {
  text-align: left;
}

.maintenance-card__list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.maintenance-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #98D4C7;
  font-weight: bold;
}

.maintenance-card.is-recommend {
  border: 2px solid #98D4C7;
}

.maintenance-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#98D4C7), to(#7FCDBB));
  background: linear-gradient(90deg, #98D4C7, #7FCDBB);
  color: #fff;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 700;
  -webkit-box-shadow: 0 8px 18px rgba(206, 245, 236, 0.35);
          box-shadow: 0 8px 18px rgba(206, 245, 236, 0.35);
}

@media (max-width: 1024px) {
  .plan-maintenance__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .maintenance-card.is-recommend {
    -webkit-transform: none;
            transform: none;
  }
}
.plan-table-section {
  padding: 80px 0;
  background: #fff;
}

.plan-table-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.plan-table-section__lead {
  text-align: center;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.9;
}

.plan-table-section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.plan-table-section__icon {
  width: 36px;
  height: 36px;
  background: #98D4C7;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.plan-table-section__icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 2px;
}

.plan-table-section__icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 2px;
}

.plan-table-section__title {
  font-size: 20px;
  font-weight: 800;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  overflow: hidden;
  margin-bottom: 80px;
}

.plan-table th:nth-child(1),
.plan-table td:nth-child(1) {
  width: 23%;
}

.plan-table th:nth-child(2),
.plan-table td:nth-child(2) {
  width: 27%;
}

.plan-table th:nth-child(3),
.plan-table td:nth-child(3) {
  width: 50%;
}

.plan-table thead {
  border-bottom: 4px solid #98D4C7;
}

.plan-table th {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  color: #98D4C7;
  text-align: center;
}

.plan-table thead th {
  border-right: none;
}

.plan-table td {
  padding: 22px 24px;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.75;
  border-bottom: 1px solid #d9dee5;
}

.plan-table tbody td:not(:last-child) {
  border-right: 1px solid #d9dee5;
}

.plan-table tbody tr:nth-child(even) {
  background: rgba(241, 243, 246, 0.4784313725);
}

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

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

.plan-table td:first-child {
  text-align: left;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.plan-table td:nth-child(2) {
  text-align: center;
  font-weight: 700;
  color: #98D4C7;
  font-size: 16px;
}

.plan-table td:last-child {
  text-align: left;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .plan-table th,
  .plan-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .plan-table td:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .plan-table td:nth-child(2) {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}