:root {
  --color-bg: #f7f9fc;
  --color-base: #ffffff;
  --color-text: #1d2433;
  --color-sub: #474c57;
  --color-line: #d9e0ea;
  --color-main: #1f5eff;
  --color-main-light: #adc4ff;
  --color-main-dark: #1647c2;
  --color-accent: #eaf0ff;
  --shadow: 0 16px 40px rgba(18, 36, 76, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1280px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root :where(.is-layout-constrained) > *,
:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
}
:root :where(.is-layout-constrained) > p {
  margin-block-start: 16px;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-open {
  overflow: hidden;
}
.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}
.section {
  padding: 88px 0;
}
.services.section, .works.section, .area.section, .contact.section {
  padding-top: 40px;
}
.section-heading {
  margin-bottom: 40px;
}
.section-label,
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-main);
}
.section-label {
  color: var(--color-main);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.eyecatch {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.eyecatch span {
  color: var(--color-main-light);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 16px;
}
p {
  color: var(--color-sub);
  margin: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.btn-mini {
  min-height: 32px;
  font-size: .875rem;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--color-main);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 94, 255, 0.22);
}
.btn-primary:hover {
  background: var(--color-main-dark);
}
.btn-secondary {
  background-color: #fff;
  color: var(--color-text);
  border-color: var(--color-line);
}
.btn-secondary:hover {
  background-color: rgb(from var(--color-accent) r g b / 1);
}
.btn-wide {
  width: 100%;
}
.btn-actions .btn-wide {
  width: min(400px, 100%);
}
.text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.width100 {
  width: 100%;
}
.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 78px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 224, 234, 0.7);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.logo {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}
.logo-mark {
  width: 298px;
  height: 26px;
  background: url(../assets/img/logo.svg) no-repeat center/contain;
}
.logo-text {
  font-size: .8em;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.logo-text span {
  font-weight: bold;
}
.toggle-menu {
  display: flex;
  align-items: center;
  gap: 80px;
}
.main-menu {
  display: flex;
  gap: 8px 16px;
}
.main-menu li {
  position: relative;
}
.site-header .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  padding: 8px 24px 16px;
  visibility: hidden;
  transition: all 0.3s;
  overflow: hidden;
}
.site-header .sub-menu::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}
.site-header .sub-menu li {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
}
.main-menu a {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  font-weight: 500;
  color: var(--color-text);
  padding: 0 12px;
}
.main-menu > li > a {
  height: 78px;
}
.site-header .sub-menu a {
  height: 48px;
  padding: 0;
}
.site-header .menu-item:hover .sub-menu {
  visibility: visible;
}
.site-header .menu-item:hover .sub-menu::after,
.site-header .menu-item:hover .sub-menu li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-menu a:hover, .sitemap-list a:hover {
  color: var(--color-main);
}
.sitemap-list a:hover {
  text-decoration: underline;
}
.hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 999;
}
.hamburger span:not(:last-child) {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 1px;
  background: var(--color-main);
  transform-origin: center;
  transition: all 0.3s ease;
}
.hamburger span:first-child {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 14px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.nav-open .hamburger span:first-child {
  transform: rotate(30deg) translate(3px, 5px);
}
.nav-open .hamburger span:nth-child(2) {
  transform: scaleX(0);
}
.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-30deg) translate(3px, -5px);
}
.hamburger span.hamburger-description {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  line-height: 1;
  padding-top: calc(40px - 1em);
}
.hero {
  position: relative;
  display: flex;
  height: 100svh;
  align-items: center;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
}
.hero-copy p {
  color: #fff;
}
.hero-text {
  max-width: 700px;
  font-size: 1.03rem;
}
.hero-copy .eyebrow {
  color: var(--color-main-light);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  height: fit-content;
}
.hero-points li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: var(--color-accent);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--color-text);
}
.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff, #f2f6ff);
  border: 1px solid #dfe7fb;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px;
}
video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.card-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-main);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.service-mini-list {
  display: grid;
  gap: 14px;
}
.service-mini-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
}
.service-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translateY(-50%);
}
.problem-grid,
.service-grid,
.service-detail-grid,
.works-grid,
.flow-grid {
  display: grid;
  gap: 32px 24px;
}
.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-card,
.service-card,
.service-detail-card,
.flow-card,
.company-table,
.price-card,
.white-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.white-card {
  background: #fff;
}
.service-detail-card {
  padding-top: 104px;
  display: flex;
  flex-direction: column;
}
.flow-card {
  overflow: hidden;
  width: 100%;
}
.service-grid {
  grid-template-columns: repeat(2, 1fr);
}
.service-detail-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 120px 24px;
  margin-top: 112px;
}
.service-card h3, .service-card p {
  width: 60%;
}
.service-card {
  height: 100%;
  background-color: rgb(from var(--color-accent) r g b / 0);
  transition: background-color .5s ease;
}
.service-card:hover {
  background-color: rgb(from var(--color-accent) r g b / 1);
}
.service-card::after {
  content: '';
  position: absolute;
  top: -16px;
  right: 16px;
  width: 35%;
  aspect-ratio: 3 / 2;
  pointer-events: none;
  transform-origin: bottom center;
  transform: scale(1);
  transition: transform .5s ease;
}
.service-card:hover::after {
  transform: scale(1.05);
}
.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(240px, 65%);
  aspect-ratio: 3 / 2;
}
a:has(.service-card):first-child .service-card::after,
.service-detail-card:first-child::before {
  background: url(../assets/img/srvc-webcreate.webp) no-repeat center/contain;
}
a:has(.service-card):nth-child(2) .service-card::after,
.service-detail-card:nth-child(2)::before {
  background: url(../assets/img/srvc-seo.webp) no-repeat center/contain;
}
a:has(.service-card):nth-child(3) .service-card::after,
.service-detail-card:nth-child(3)::before {
  background: url(../assets/img/srvc-ec.webp) no-repeat center/contain;
}
a:has(.service-card):last-child .service-card::after,
.service-detail-card:last-child::before {
  background: url(../assets/img/srvc-print.webp) no-repeat center/contain;
}
.service-detail-card h3 {
  font-size: 1.25rem;
}
.service-detail-card ul,
.price-card.price-op ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
  padding: 0;
}
.service-detail-card li,
.price-card.price-op li {
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--color-line);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  list-style: none;
}
.section-white {
  background: #fff;
}
.strength-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px 64px;
  align-items: start;
}
.strength-list {
  display: grid;
  gap: 20px;
  width: 100%;
}
.strength-item, .strategy-item {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  width: 100%;
}
.strength-item {
  display: flex;
  gap: 18px;
}
.strength-item p {
  margin-bottom: 0;
}
.num {
  color: var(--color-main);
  font-weight: 800;
  font-size: 2rem;
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.works-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.work-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  height: 100%;
}
.work-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.work-body {
  padding: 22px;
}
.work-body h3 {
  font-size: 1em;
  font-weight: 400;
  color: var(--color-sub);
}
.work-meta {
  font-size: 0.88em;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 8px;
}
.work-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.flow-grid {
  grid-template-columns: repeat(4, 1fr);
}
.flow-card::before, .flow-card::after {
  content: '';
  position: absolute;
}
.flow-card::before {
  inset: 0;
  background-color: var(--color-base);
  z-index: -2;
}
.flow-card::after {
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 50%;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 100%);
}
.flow-card:first-child::after {
  background: url(../assets/img/flow-contact.webp) no-repeat center/cover;
}
.flow-card:nth-child(2)::after {
  background: url(../assets/img/flow-suggestion.webp) no-repeat center/cover;
}
body.flow .flow-card:nth-child(3)::after {
  background: url(../assets/img/flow-estimate.webp) no-repeat center/cover;
}
body.flow .flow-card:nth-child(4)::after {
  background: url(../assets/img/flow-direction.webp) no-repeat center/cover;
}
body.home .flow-card:nth-child(3)::after,
body.flow .flow-card:nth-child(5)::after {
  background: url(../assets/img/flow-production.webp) no-repeat center/cover;
}
body.flow .flow-card:nth-child(6)::after {
  background: url(../assets/img/flow-check.webp) no-repeat center/cover;
}
body.home .flow-card:last-child::after,
body.flow .flow-card:nth-child(7)::after {
  background: url(../assets/img/flow-public.webp) no-repeat center/cover;
}
body.flow .flow-card:last-child::after {
  background: url(../assets/img/flow-after.webp) no-repeat center/cover;
}
.flow-card span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-main);
  font-size: 0.8rem;
  font-weight: 800;
}
.flow-card h3, .flow-card p {
  width: 60%;
}
.area-box,
.contact-box {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.area-box {
  position: relative;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
}
.area-box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 280px;
  aspect-ratio: 1 / 1;
  background: url(../assets/img/gunma.webp) no-repeat center/ contain;
}
.area-text {
  margin: 0;
  font-size: 1.02em;
  width: calc(100% - 280px);
}
.btn-actions,
.btn-service {
  display: flex;
  justify-content: center;
}
.btn-actions {
  margin-top: 56px;
}
.btn-service {
  margin-top: auto;
  width: 100%;
}
.contact-box {
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: center;
}
.contact-actions {
  display: grid;
  gap: 14px;
  width: 100%;
}
.site-footer {
  padding-top: 48px;
  background: #111827;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
}
.site-footer .footer-logo {
  width: 280px;
  height: 24px;
  margin: 4px 0 16px;
  background: url(../assets/img/logo-w.svg) no-repeat center/contain;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-template-rows: repeat(6, 1fr);
  gap: 12px 36px;
}
.footer-nav > li:first-child {
  grid-row: 1 / 6;
}
.footer-nav .sub-menu {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: 1fr;
  gap: 12px 36px;
  margin-top: 12px;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-nav a:hover {
  color: #fff;
}
.copyright {
  margin: 0;
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88em;
}

@media (max-width: 1024px) {
  .toggle-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    height: calc(100svh - 56px);
    background: var(--color-bg);
    padding-top: 40px;
    gap: 64px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-open .toggle-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .main-menu {
    flex-direction: column;
  }
  .site-header .sub-menu {
    position: relative;
    visibility: visible;
    padding: 8px 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .site-header .sub-menu li {
    position: relative;
    opacity: 1;
    transform: none;
  }
  .site-header .sub-menu li::before {
    content: '';
    display: block;
    width: 8px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #a3a7ae;
  }
  .main-menu > li > a {
    height: 48px;
  }
  .main-menu a {
    font-size: 1em;
    border-bottom: 1px solid var(--color-line);
    padding: 0 16px;
  }
  .site-header .sub-menu a {
    padding-left: 16px;
  }
  .header-cta {
    width: min(70%, 360px);
  }
  .hamburger {
    display: block;
  }
  .hero-card {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner,
  .strength-grid,
  .contact-box,
  .area-box {
    grid-template-columns: 1fr;
  }
  .service-detail-grid,
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .works-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  p {font-size: 0.9em;}
  .container {
    width: calc(100% - 32px);
  }
  .site-header {
    height: 56px;
  }
  .logo-text {
    font-size: .7em;
  }
  .logo-mark {
    width: 240px;
    height: 20px;
  }
  .toggle-menu {
    top: 56px;
  }
  .hero-text {
    font-size: .875rem;
  }
  .hero-card {
    display: none;
  }
  .problem-grid,
  .service-grid,
  .works-grid,
  .flow-grid,
  .policy-grid {
    gap: 20px;
  }
  .service-detail-grid {
    gap: 112px 20px;
  }
  .service-grid,
  .service-detail-grid,
  .works-grid,
  .flow-grid,
  .policy-grid {
    grid-template-columns: 1fr !important;
  }
  .section {
    padding: 72px 0;
  }
  .hero-card-inner,
  .problem-card,
  .service-card,
  .flow-card,
  .area-box,
  .contact-box {
    padding: 24px;
  }
  .service-card::after {
    top: 50%;
    transform: translateY(-50%);
  }
  .area-box::after {
    width: 160px;
    top: -40px;
    right: -8px;
    transform: none;
  }
  .area-text {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
  }
}

.page-hero {
  position: relative;
  padding: 150px 0 64px;
  height: 400px;
  display: flex;
  align-items: center;
}
.article-title {
  font-size: 2rem;
}
.page-hero p {
  width: 400px;
}
.hero-back-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(50% + min(100% - 64px, var(--container)) / 2 - 280px);
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(0% + 240px) 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}
.contact-main,
.side-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-main {
  width: 100%;
  padding: 40px;
}
.contact-intro {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-line);
}
.contact-intro h3,
.side-card h3,
.confirm-area h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.note,
.form-help {
  font-size: 0.92rem;
  color: var(--color-sub);
}
.confirm-area, .thanks-area, .wpcf7-spinner {
  display: none;
}
.Form {
  display: grid;
}
.Form, .confirm-area {
  gap: 24px;
}
.FormItem {
  display: grid;
  gap: 8px;
}
.FormItem label, .FormItemLabel {
  font-weight: 700;
  color: var(--color-text);
}
.FormItem label span {
  display: inline-block;
  margin-top: -3px;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff0f0;
  color: #d33;
  font-size: 0.75rem;
  vertical-align: middle;
}
select {
  appearance: auto;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 94, 255, 0.16);
  border-color: var(--color-main);
}
textarea {
  resize: vertical;
}
.cd-upload-btn {
  color: var(--color-main);
  font-size: 1.04rem;
}
.form-help {
  margin: 6px 0 0;
}
.FormSubmit {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
}
.contact-side {
  display: grid;
  gap: 20px;
  width: 100%;
}
.side-card {
  width: 100%;
  padding: 26px;
}
.tel {
  margin-bottom: 8px;
}
.tel a {
  color: var(--color-main);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.info-list {
  margin: 0;
  display: grid;
  gap: 8px;
}
.info-list dt {
  margin: 8px 0 0;
  font-weight: 800;
  color: var(--color-text);
}
.info-list dd {
  color: var(--color-sub);
}
.info-list a {
  color: var(--color-main);
  word-break: break-all;
}
.side-list {
  display: grid;
  gap: 10px;
}
.side-list li {
  position: relative;
  padding-left: 20px;
  color: var(--color-sub);
}
.side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-main);
  transform: translateY(-50%);
}
.thanks-container {
  width: max-content;
}
.thanks-container ul {
  width: 100%;
  margin-top: 16px;
  padding: 16px 24px;
  border: 1px solid var(--color-line);
}
.thanks-container a {
  text-decoration: underline;
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 200px 0 0;
    height: auto;
  }
  .article-title {
    font-size: 1.75rem;
  }
  .page-hero p {
    width: auto;
  }
  .hero-back-img {
    width: 100%;
    height: 124px;
    top: 56px;
    left: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(0% + 68px) 100%);
  }
  .contact-main,
  .side-card {
    padding: 24px;
  }
}

body.flow .flow-grid {
  grid-template-columns: 1fr;
}
body.flow .flow-card h3,
body.flow .flow-card p {
  width: calc(100% - 300px);
}
body.flow .flow-card::after {
  left: calc(100% - 300px);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, calc(0% + 104px) 100%);
}
body.flow .section-white .container > div {
  gap: 64px 24px;
}
body.flow .section-white h3 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
body.flow ul.wp-block-list {
  margin: 16px 0;
}

@media (max-width: 600px) {
  body.flow .flow-card h3 {
    width: calc(100% - 120px);
  }
  body.flow .flow-card p {
    width: calc(100% - 80px);
  }
  body.flow .flow-card::after {
    left: calc(100% - 150px);
    clip-path: polygon(0% 0%, 100% 0%, 100% min(225px, 100%), 100% min(225px, 100%));
  }
}

.price h3,
.ec-support h3,
.print h3 {
  font-size: 1.75rem;
}
.price-cat {
  display: flex;
  gap: 64px 24px;
}
.container.price-cat {
  flex-direction: column;
}
.price-title {
  margin-bottom: 32px;
}
.price-op .price-title {
  margin: 0;
}
.price-card {
  width: 100%;
  background: #fff;
}
.price-card > * {
  padding: 16px 0;
}
.price-card > h4 {
  padding: 16px;
}
.price-op > * {
  padding: 0;
}
.price-card > div {
  border-bottom: 1px solid var(--color-line);
}
.price-card > div > p {
  margin: 0;
}
.price-card h4 {
  font-size: 1.03rem;
  background: var(--color-accent);
}
.price-card .amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main);
}
.amount span {
  font-size: 2rem;
}
.price-card .amount.small {
  font-size: 0.95rem;
  font-weight: normal;
}
.price-card p {
  color: var(--color-text);
  margin: 0;
}
.price-flex {
  display: flex;
  flex-direction: row;
}
.price-flex p {
  width: 160px;
}
.price-flex ul {
  width: 100%;
}
body.flow ul.wp-block-list,
.price-card ul {
  padding-left: 1.5em;
}
body.flow ul.wp-block-list li,
.price-card li {
  list-style: disc;
}
.ec-price-flex {
  gap: 0 24px;
}
.ec-price-item {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .price h3,
  .ec-support h3,
  .print h3 {
    font-size: 1.275rem;
  }
  .price-flex {
    flex-direction: column;
  }
  .price-flex p {
    width: 100%;
  }
}

.company-table {
  background: #fff;
}
.company-table th, .company-table td {
  border: none;
  padding: 16px;
}
.company-table th {
  width: 15%;
  min-width: 6em;
  background: var(--color-bg);
}
.company-table tr:not(:first-child) th,
.company-table tr:not(:first-child) td {
  border-top: 1px solid var(--color-line);
}
.company-table a {
  color: var(--color-main);
}
.print .company-table th {
  width: max(100px, 30%);
}
.print .company-table td {
  text-align: center;
}
.print .company-table tr td:last-child {
  color: var(--color-main);
  font-weight: 700;
  font-size: 1rem;
}
.privacy-policy h4 {
  margin-top: 32px;
}
.privacy-contact {
  margin-top: 36px !important;
  padding-top: 36px;
  border-top: 1px solid var(--color-line);
}

@media (max-width: 600px) {
  .print .company-table {
    font-size: 0.95em;
  }
  .print .company-table th {
    width: 120px;
  }
  .company-table th, .company-table td {
    padding: 8px;
  }
  .company-table td {
    padding-right: 0;
  }
  .print .company-table tr td:last-child {
    font-size: 0.9rem;
  }
}

.sitemap-list, .sitemap-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px 114px;
}
.sitemap-list {
  flex-wrap: wrap;
  height: 270px;
  width: min(800px, 100%);
  margin: 0 auto;
}
.sitemap-list ul {
  margin-top: 24px;
}
.sitemap-list .sub-menu li {
  position: relative;
}
.sitemap-list .sub-menu li::before {
  content: '';
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #a3a7ae;
}
.sitemap-list .sub-menu a {
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .sitemap-list {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .sitemap-list {
    flex-wrap: nowrap;
    height: auto;
  }
}

.grecaptcha-note {margin-top: 48px !important; font-size: 0.85rem;}
.grecaptcha-note a {text-decoration: underline;}
.grecaptcha-badge {visibility: hidden;}