:root {
  --green: #00984f;
  --green2: #06a75b;
  --greenDark: #007b40;
  --navy: #071427;
  --text: #111827;
  --muted: #4b5563;
  --line: #dfe8e4;
  --soft: #f3faf7;
  --soft2: #eef8f4;
  --yellow: #ffd91a;
  --radius: 10px;
  --max: 1280px;
  --font: -apple-system,
  BlinkMacSystemFont,
  "Segoe UI",
  "Noto Sans JP",
  "Hiragino Sans",
  "Yu Gothic",
  sans-serif;
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  font-feature-settings: "palt" 1;
  line-height: 1.75
}
a {
  text-decoration: none;
  color: inherit
}
img {
  max-width: 100%;
  display: block
}
/* スマホ表示時だけ有効にする改行 */
.sp-br {
  display: none;
}
@media (max-width:900px) {
  .sp-br {
    display: block;
  }
}
/* h1文字にグラデ追加 */
.page-hero h1,
.page-hero h3,
.page-hero p {
  text-shadow:
    0 0 4px #fff,
    0 0 8px #fff,
    0 0 14px #fff,
    0 0 22px rgba(255, 255, 255, 0.96),
    0 3px 18px rgba(255, 255, 255, 0.95);
}

.hero-copy-bg {
  position: relative;
  display: inline-block;
  padding: 28px 34px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
}
@media (max-width: 900px) {
  .hero-copy-bg {
    padding: 20px 0px;
  }
}
.hero-copy-bg::before {
  content: "";
  position: absolute;
  inset: -52px -70px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 38% 50%,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 26%,
    rgba(255, 255, 255, 0.72) 44%,
    rgba(255, 255, 255, 0.42) 62%,
    rgba(255, 255, 255, 0.16) 80%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(22px);
}

.container {
  max-width: var(--max);
  margin: auto;
  padding: 0 56px
}
.site-header {
  height: 76px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e5ece9;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px)
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}
.brand img {
  width: 178px;
  height: auto
}
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d9e4df;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex: 0 0 auto
}
.hamburger span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #102238;
  transition: .2s
}
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap
}
.global-nav a.active,
.global-nav a:hover {
  color: var(--green)
}
.header-actions {
  display: flex;
  gap: 12px
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid transparent;
  line-height: 1;
  transition: .2s;
  white-space: nowrap
}
.btn.primary {
  background: linear-gradient(135deg,var(--green),#08a85f);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,152,79,.24)
}
.btn.primary:hover {
  transform: translateY(-1px)
}
.btn.outline {
  border-color: #102238;
  color: #102238;
  background: #fff
}
.btn.greenOutline {
  border-color: var(--green);
  color: var(--green);
  background: #fff
}
.btn.yellow {
  background: var(--yellow);
  color: #071427;
  min-width: 250px
}
.section {
  padding: 30px 0 66px 0;
}
.section.tight {
  padding: 42px 0
}
.center {
  text-align: center
}
.eyebrow {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 12px
}
.headline {
  font-size: 48px;
  line-height: 1.22;
  letter-spacing: .02em;
  margin: 0 0 22px;
  font-weight: 900
}
.headline .green {
  color: var(--green)
}
.lead {
  font-weight: 600;
  line-height: 2.05;
  color: #172033
}
.small {
  font-size: 13px;
  color: #667085
}
.page-hero {
  background: linear-gradient(90deg,#fff 0%,#f1faf6 100%);
  position: relative;
  overflow: hidden
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 115px;
  background: linear-gradient(transparent,rgba(255,255,255,.8))
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
  padding: 5% 0 0 15%;
  min-height: 360px;
  gap: 48px
}
.hero-visual img {
  width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 18px 30px rgba(14,33,47,.10))
}
.home-hero {
  min-height: 465px;
  background-image: url("../images/top/main_img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.home-hero .page-hero-inner {
  min-height: 465px
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 32px
}
.hero-icons {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  margin-top: 48px
}
.mini-feature {
  text-align: center;
  border-right: 1px solid #dfe9e5
}
.mini-feature:last-child {
  border-right: 0
}
.mini-feature .ico {
  font-size: 42px;
  color: var(--green);
  line-height: 1;
}
.ico {
  overflow: hidden;
}
.ico img {
  display: block;
  border-radius: 8px;
}
.mini-feature strong {
  display: block;
  font-weight: 900;
  margin-top: 10px
}
.mini-feature span {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: #4b5563
}
.pale {
  background: linear-gradient(180deg,#f2fbf8,#fff)
}
.trouble-row,
.can-row,
.business-grid,
.feature-grid,
.scene-grid,
.step-grid,
.reason-row,
.plan-grid,
.option-grid,
.support-grid {
  display: grid;
  gap: 10px
}
.trouble-row {
  grid-template-columns: repeat(6,1fr)
}
.can-row {
  grid-template-columns: repeat(6,1fr)
}
.business-grid {
  grid-template-columns: repeat(4,1fr)
}
.feature-grid {
  grid-template-columns: repeat(5,1fr)
}
.scene-grid {
  grid-template-columns: repeat(3,1fr);
  gap: 10px
}
.step-grid {
  grid-template-columns: repeat(4,1fr);
  gap: 22px
}
.reason-row {
  grid-template-columns: repeat(5,1fr)
}
.plan-grid {
  grid-template-columns: repeat(4,1fr);
  gap: 16px
}
.option-grid,
.support-grid {
  grid-template-columns: repeat(3,1fr)
}
.card {
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(16,36,54,.05);
  padding: 10px
}
.icon-card {
  text-align: center;
  min-height: 170px
}
.icon-card .ico {
  font-size: 54px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px
}
.icon-card h3 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 700
}
.icon-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #485465;
  line-height: 1.8
}
.section-title {
  font-size: 34px;
  line-height: 1.32;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center
}
.section-title:after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  background: var(--green);
  border-radius: 999px;
  margin: 18px auto 0
}
.section-title2 {
  font-size: 18px;
  line-height: 1.32;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center
}
.section-title3 {
  font-size: 14px;
  line-height: 1.32;
  margin: 0 0 12px;
  font-weight: 700;
  text-align: center
}
.section-lead {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 34px
}
.mock-panel {
  /*display: grid;*/
  grid-template-columns: .95fr 1.1fr;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #eef2ef;
  border-radius: 18px;
  padding: 40px 52px;
  box-shadow: 0 16px 35px rgba(16,36,54,.04)
}
.mock-panel h2 {
  font-size: 28px;
  color: var(--green);
  line-height: 1.55;
  margin: 0 0 22px;
  font-weight: 900
}
.mock-panel p {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  margin: 0
}
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: -26px auto 40px;
  background: #fff;
  border: 1px solid #e4ebe8;
  border-radius: 14px;
  overflow: hidden;
  max-width: 1040px
}
.feature-tabs a {
  flex: 1;
  text-align: center;
  padding: 16px 20px;
  font-weight: 800;
  border-right: 1px solid #e4ebe8
}
.feature-tabs a:first-child {
  background: var(--green);
  color: #fff
}
.block-title {
  font-size: 26px;
  margin: 36px 0 18px;
  font-weight: 900;
  display: flex;
  gap: 10px;
  align-items: center
}
.block-title span {
  color: var(--green)
}
.feature-card .thumb {
  background: #f4faf7;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e7eeee
}
.feature-card h3 {
  font-size: 17px;
  text-align: center;
  margin: 0 0 8px;
  font-weight: 900
}
.feature-card p {
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  color: #3f4b5a;
  font-weight: 700
}
.scene-card {
  /*padding: 20px*/
}
.scene-card .photo {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px
}
.scene-card .num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px
}
.scene-card h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin: 0 0 14px;
  font-weight: 700;
  text-align: center;;
}
.scene-card p {
  text-align: center;
}
.check-list {
  padding: 0;
  margin: 14px 0 0;
  list-style: none
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin: 8px 0;
  font-weight: 700;
  font-size: 14px
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900
}
.split {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 28px;
  align-items: center
}

.quick-start-area {
  position: relative;
  background-image: url("../images/top/1_トップページ_r13_c11.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 92%;
}
.comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e2ebe7;
  border-radius: 16px;
  overflow: hidden
}
.comparison th,
.comparison td {
  padding:2px 16px;
  border-bottom: 1px solid #e2ebe7;
  border-right: 1px solid #e2ebe7;
  text-align: center;
  /*font-weight: 800*/
}
.comparison th:first-child,
.comparison td:first-child {
  text-align: left;
  background: #f9fcfa
}
.comparison tr:last-child td {
  border-bottom: 0
}
.comparison .rec {
  background: #eefaf4
}

.comparison-area {
  min-width: 0;
}
.comparison-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 900px) {
  .comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison {
    min-width: 760px;
  }
}

.price-card {
  position: relative;
  text-align: center;
  padding: 34px 26px
}
.price-card.recommend {
  border: 2px solid var(--green);
  transform: translateY(-10px)
}
.badge {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  margin: auto;
  background: var(--green);
  color: #fff;
  border-radius: 16px 16px 0 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  width: 100%
}
.price-card h3 {
  font-size: 26px;
  color: #0b1a32;
  margin: 18px 0 8px
}
.price {
  font-size: 42px;
  font-weight: 900;
  margin: 10px 0;
  color: #111
}
.price small {
  font-size: 16px
}
.cta-band {
  background: linear-gradient(135deg,#00984f,#00a95e);
  color: #fff;
  position: relative;
  overflow: hidden
}
.cta-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 30%,rgba(255,255,255,.14) 0 2px,transparent 3px);
  background-size: 70px 70px;
  opacity: .75
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 0
}
.cta-inner h2 {
  font-size: 34px;
  line-height: 1.4;
  margin: 0
}
.cta-inner p {
  font-size: 16px;
  font-weight: 800;
  margin: 6px 0 0
}
.footer {
  background: #071b2f;
  color: #fff;
  padding: 58px 0 30px
}
.footer.white {
  background: #fff;
  color: #101828;
  border-top: 1px solid #e4ebe8
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(2,1fr);
  gap: 46px
}
.footer img {
  width: 178px
}
.footer p,
.footer a {
  font-size: 14px;
  color: inherit;
  opacity: .86;
  font-weight: 700
}
.footer h4 {
  margin: 0 0 14px;
  font-size: 15px
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}
.footer li {
  margin: 7px 0
}
.copy {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  opacity: .7
}
.step-card {
  position: relative
}
.step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(135deg,var(--green),#0ab365);
  color: #fff;
  flex-direction: column;
  font-weight: 900;
  line-height: 1
}
.step-tag small {
  font-size: 11px
}
.step-card h3 {
  font-size: 21px;
  text-align: center;
  margin: 16px 0
}
.step-card .thumb {
  border-radius: 14px;
  background: #f1f8f5;
  overflow: hidden;
  margin-bottom: 16px
}
.simple-icons {
  border: 1px solid #dce8e4;
  border-radius: 18px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px
}
.simple-icons .icon-card {
  box-shadow: none;
  border: 0;
  border-radius: 0;
  border-right: 1px solid #dfe8e4;
  min-height: auto;
  padding: 12px
}
.simple-icons .icon-card:last-child {
  border-right: 0
}
.notice {
  background: linear-gradient(90deg,#fff8dc,#fffdf1);
  border: 1px solid #f0c759;
  border-radius: 18px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}
.faq-cats {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
  margin-bottom: 34px
}
.faq-cat {
  height: 118px;
  border: 1px solid #dfe8e4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: #fff
}
.faq-cat.active {
  border-color: var(--green);
  box-shadow: inset 0 -4px 0 var(--green)
}
.faq-list {
  display: grid;
  gap: 12px
}
.faq-item {
  border: 1px solid #dfe8e4;
  border-radius: 12px;
  background: #fff;
  overflow: hidden
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 28px;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  justify-content: space-between
}
.faq-item summary::-webkit-details-marker {
  display: none
}
.faq-item summary:after {
  content: "⌄";
  color: var(--green)
}
.faq-item[open] summary:after {
  content: "⌃"
}
.faq-item .answer {
  border-top: 1px solid #edf1ef;
  background: #f9fcfb;
  padding: 20px 28px;
  font-weight: 700
}
.legal-wrap {
  /*display: grid;
  grid-template-columns: 280px 1fr;*/
  gap: 56px;
  align-items: start
}
.toc {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid #dfe8e4;
  border-radius: 14px;
  padding: 24px
}
.toc h3 {
  margin: 0 0 16px
}
.toc a {
  display: block;
  border-top: 1px solid #edf1ef;
  padding: 14px 0;
  font-weight: 500;
  color: #334155
}
.legal-main {
  background: #fff
}
.legal-main .updated {
  text-align: right;
  margin-bottom: 20px
}
.legal-section {
  border-bottom: 1px solid #dfe8e4;
  padding: 0 0 22px;
  margin: 0 0 24px
}
.legal-section h2 {
  font-size: 20px;
  color: var(--green);
  margin: 0 0 10px
}
.legal-section p,
.legal-section li {
  font-weight: 700;
  color: #1f2937
}
.company-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff
}
.info-table th,
.info-table td {
  border-bottom: 1px solid #dfe8e4;
  padding: 16px 20px;
  text-align: left;
  /*font-weight: 800*/
}
.info-table th {
  width: 34%;
  background: #f3f7f5
}
.contact-box {
  margin-top: 40px;
  background: linear-gradient(90deg,#f0f8f5,#fff);
  border: 1px solid #dfe8e4;
  border-radius: 18px;
  padding: 30px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between
}
.contact-box h2{
  font-weight: 400;
  font-size: large;
}
.replace-note {
  display: none
}
@media (max-width:900px) {
  .container {
    padding: 0 20px
  }
  .site-header {
    height: auto;
    position: sticky;
    top: 0
  }
  .header-inner {
    height: auto;
    min-height: 70px;
    flex-wrap: nowrap;
    padding: 10px 20px;
    gap: 10px;
    position: relative
  }
  .brand {
    flex: 0 0 auto
  }
  .brand img {
    width: 142px
  }
  .hamburger {
    display: inline-flex;
    order: 3
  }
  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
  }
  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0
  }
  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
  }
  .global-nav {
    order: 4;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    overflow: visible;
    background: rgba(255,255,255,.98);
    border-top: 1px solid #e5ece9;
    border-bottom: 1px solid #e5ece9;
    box-shadow: 0 14px 28px rgba(16,36,54,.08)
  }
  .nav-toggle:checked ~ .global-nav {
    display: block
  }
  .global-nav ul {
    display: block;
    gap: 0
  }
  .global-nav li + li {
    border-top: 1px solid #eef3f1
  }
  .global-nav a {
    display: block;
    padding: 14px 22px
  }
  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 8px
  }
  .header-actions .btn.outline {
    display: inline-flex
  }
  .header-actions .btn {
    padding: 10px 14px;
    font-size: 13px
  }
  .headline {
    font-size: 30px
  }
  .page-hero-inner,
  .mock-panel,
  .split,
  .legal-wrap,
  .company-table {
    grid-template-columns: 1fr
  }
  .hero-actions,
  .cta-inner,
  .contact-box,
  .notice {
    flex-direction: column;
    align-items: flex-start
  }
  .trouble-row,
  .can-row,
  .business-grid,
  .feature-grid,
  .scene-grid,
  .step-grid,
  .reason-row,
  .plan-grid,
  .option-grid,
  .support-grid,
  .footer-grid,
  .simple-icons,
  .faq-cats {
    grid-template-columns: 1fr 1fr
  }
  .home-hero {
    min-height: 520px;
    background-size: cover;
    background-position: 78% center
  }
  .home-hero .page-hero-inner {
    min-height: 520px
  }
  .page-hero-inner {
    min-height: auto;
    padding: 44px 20px 40px
  }
  .page-hero {
    padding: 0
  }
  .quick-start-area {
    background-position: right 18px center;
    background-size: auto 78%;
  }
  .section {
    padding: 48px 0
  }
  .toc {
    position: relative;
    top: auto
  }
  .price-card.recommend {
    transform: none
  }
}
@media (max-width:560px) {
  .trouble-row,
  .can-row,
  .business-grid,
  .feature-grid,
  .scene-grid,
  .step-grid,
  .reason-row,
  .plan-grid,
  .option-grid,
  .support-grid,
  .footer-grid,
  .simple-icons,
  .faq-cats {
    grid-template-columns: 1fr
  }
  .brand img,
  .footer img {
    width: 145px
  }
  .header-inner {
    padding: 9px 12px;
    gap: 6px
  }
  .brand img {
    width: 116px
  }
  .hamburger {
    width: 40px;
    height: 40px;
    border-radius: 10px
  }
  .header-actions {
    gap: 5px
  }
  .header-actions .btn {
    padding: 8px 8px;
    font-size: 11px
  }
  .btn {
    padding: 12px 20px
  }
  .home-hero {
    min-height: 560px;
    background-position: 80% center
  }
  .home-hero .page-hero-inner {
    min-height: 560px
  }
  .headline {
    font-size: 30px
  }
  .section-title {
    font-size: 27px
  }
  .hero-icons {
    grid-template-columns: 1fr 1fr
  }
  .feature-tabs {
    overflow: auto;
    justify-content: flex-start
  }
  .feature-tabs a {
    min-width: 160px
  }
  .footer {
    padding-bottom: 84px
  }
}
