@charset "UTF-8";
/**
 * Homepageya メインスタイル
 */
:root {
  --color-primary: #444;
  --color-accent: #FFC17F;
  --color-text: #000000;
  --color-subtext: #ff0000;
  --color-bg: #ffffff;
  --color-border: #474747;
  --color-surface: #ffffff;
  --color-surface-alt: #f8f9fb;
  --color-surface-soft: #f3f5f8;
  --color-surface-muted: #f8fafc;
  --color-surface-panel: #eef2f7;
  --color-heading: #0f172a;
  --color-heading-soft: #1e293b;
  --color-heading-strong: #111827;
  --color-copy: #475569;
  --color-copy-soft: #64748b;
  --color-copy-strong: #334155;
  --color-brand: #45556C;
  --color-muted: #90A1B9;
  --color-muted-soft: #94a3b8;
  --color-muted-line: #dbe3ec;
  --color-muted-line-soft: #e6edf4;
  --color-muted-panel: #e2e8f0;
  --color-placeholder: #e8e8e8;
  --color-link: #1f2937;
  --color-link-hover: #0f766e;
  --color-focus: #93c5fd;
  --color-focus-bg: #eff6ff;
  --color-focus-text: #1e3a8a;
  --color-info: #6c96ea;
  --color-warning: #f59e0b;
  --color-success: #3dde78;
  --color-white-rgb: 255, 255, 255;
  --color-heading-rgb: 15, 23, 42;
  --container-wide: 1200px;
  --container-base: 960px;
  --container-narrow: 900px;
  --container-form: 860px;
  --container-form-inner: 760px;
  --container-flow: 750px;
  --section-pad-x: 1rem;
  --section-pad-y: 5.4rem;
  --section-pad-y-sm: 4.4rem;
  --content-gap: 1rem;
  --content-gap-lg: 1.5rem;
  --utility-mt-xs: 0.5rem;
  --utility-mt-sm: 1rem;
  --utility-mt-md: 1.5rem;
  --utility-mt-lg: 2rem;
  --utility-text-xs: 0.75rem;
  --utility-text-sm: 0.875rem;
  --utility-text-md: 1rem;
  --utility-text-lg: 1.125rem;
  --utility-text-xl: 1.25rem;
  --utility-fw-regular: 400;
  --utility-fw-medium: 500;
  --utility-fw-bold: 700;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 0 rgba(var(--color-heading-rgb), 0.03);
  --shadow-md: 0 10px 24px rgba(var(--color-heading-rgb), 0.05);
  --shadow-lg: 0 14px 30px rgba(var(--color-heading-rgb), 0.06);
  --shadow-xl: 0 12px 30px rgba(var(--color-heading-rgb), 0.22);
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
}

/**
 * Homepageya メインスタイル
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/**
 * Homepageya メインスタイル
 */
body.is-menu-open {
  overflow: hidden;
}

.l-header-wrap.is-fixed {
  height: var(--header-height, 0px);
}

.l-header {
  border-bottom: 1px solid #F1F5F9;
  background: var(--color-bg);
}
.l-header-wrap.is-fixed .l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  animation: header-fade-slide-in 0.5s ease-out both;
}
.l-header__inner {
  max-width: var(--container-wide);
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  z-index: 102;
}
.l-header__logo a {
  color: var(--color-brand);
  text-decoration: none;
}
.l-header__nav {
  position: static;
}
.l-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
.l-header__menu a {
  font-size: 14px;
  color: var(--color-brand);
}
.l-header__cta {
  margin: 0;
}
.l-header__toggle {
  display: none;
}
.l-header__cta--mobile {
  display: none;
}

@keyframes header-fade-slide-in {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.l-main {
  min-height: 50vh;
}

.l-content {
  max-width: var(--container-narrow);
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.l-footer {
  border-top: 1px solid var(--color-muted-panel);
  background: var(--color-surface);
  margin-top: auto;
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.2rem 1rem 1.2rem;
}
.l-footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
}
.l-footer__brand {
  display: grid;
  gap: 0.38rem;
}
.l-footer__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.l-footer__menu a {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #c7d2fe;
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.l-footer__menu a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.l-footer__copy {
  margin: 0;
  font-size: 0.74rem;
  color: var(--color-muted-soft);
  letter-spacing: 0.05em;
}
.l-footer__logo {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.l-footer__logo a {
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.l-footer__logo-img {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 9999px;
  padding: 0.18rem;
}
.l-footer__lead {
  margin: 0;
  font-size: 1rem;
  color: #cbd5e1;
}
.l-footer__cta {
  margin: 0;
}
.l-footer__cta .c-btn {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.35rem;
  font-size: 0.82rem;
  border-width: 1px;
  background-color: initial;
  border-color: var(--color-surface);
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.l-footer--lp {
  background: radial-gradient(140% 120% at 0% 0%, rgba(14, 165, 233, 0.18) 0%, rgba(15, 23, 42, 0) 50%), radial-gradient(120% 120% at 100% 100%, rgba(14, 165, 233, 0.18) 0%, rgba(15, 23, 42, 0) 42%), linear-gradient(135deg, var(--color-heading) 0%, var(--color-heading-strong) 52%, var(--color-heading-soft) 100%);
  border-top: none;
  position: relative;
  overflow: hidden;
}
.l-footer--lp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(148, 163, 184, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: footer-shine 8s linear infinite;
  pointer-events: none;
}
.l-footer--lp .l-footer__inner {
  position: relative;
  z-index: 1;
}

@keyframes footer-shine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.c-backtotop {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3.4rem;
  height: 3.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  background: linear-gradient(145deg, var(--color-heading) 0%, var(--color-heading-soft) 65%, var(--color-copy-strong) 100%);
  color: #f8fafc;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.3);
  cursor: pointer;
  z-index: 160;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.86);
  transition: opacity 0.28s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
}

.c-backtotop::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(148, 163, 184, 0.4);
  opacity: 0;
  transform: scale(0.75);
}

.c-backtotop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: backtotop-float 2.6s ease-in-out infinite;
}

.c-backtotop.is-visible::before {
  animation: backtotop-ring 2.2s ease-out infinite;
}

.c-backtotop__label {
  font-size: 0.54rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}

.c-backtotop__arrow {
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid #f8fafc;
  border-right: 2px solid #f8fafc;
  transform: rotate(-45deg) translateY(2px);
}

.c-backtotop:hover {
  transform: translateY(-2px) scale(1.04);
}

@keyframes backtotop-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}
@keyframes backtotop-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  50% {
    opacity: 0.45;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.single .l-content {
  padding-top: 120px;
}

/**
 * Homepageya メインスタイル
 */
.p-single__header {
  margin-bottom: 1.5rem;
}

.p-single__title {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-single__date {
  display: block;
  font-size: 0.875rem;
  color: var(--color-copy);
}

.p-single__thumbnail {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.p-single__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.p-single__body {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.p-single__body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.p-single__body h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.p-single__body p {
  margin: 0 0 1rem;
}

.p-single__body ul,
.p-single__body ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

.p-single__body img {
  max-width: 100%;
  height: auto;
}

.p-single__footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.p-single__back {
  margin: 0;
  font-size: 0.9375rem;
}

.p-single__back a {
  color: var(--color-primary);
}

.p-archive__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

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

.p-404__title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

/**
 * Homepageya メインスタイル
 */
.c-sec-title {
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.c-sec-title__en {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-heading);
  margin-bottom: 15px;
}
.c-sec-title__ja {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: normal;
}

.c-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}
.c-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}
.c-btn--primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border: 2px solid var(--color-primary);
}
.c-btn--accent {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 2px solid var(--color-accent);
}

.p-lp-hero {
  position: relative;
  overflow: hidden;
  padding: 15rem var(--section-pad-x);
  background: var(--color-surface-alt);
}
.p-lp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8vw;
  width: 58vw;
  height: 100%;
  background: linear-gradient(180deg, #eff1f5 0%, #f2f4f8 100%);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 30% 100%);
  pointer-events: none;
}
.p-lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.25rem;
  align-items: center;
}
.p-lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.p-lp-hero__badge {
  padding: 0.2rem 0.8rem;
  font-weight: 500;
  color: var(--color-bg);
  background: var(--color-accent);
  border-radius: 9999px;
  letter-spacing: 0.02em;
}
.p-lp-hero__title {
  margin: 0 0 0.95rem;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.01em;
  color: var(--color-heading);
}
.p-lp-hero__title-set {
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.p-lp-hero__title-set2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
}
.p-lp-hero__title-accent {
  background: linear-gradient(90deg, #FF8904 0%, #F54900 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.p-lp-hero__lead {
  margin: 0 0 1.4rem;
  line-height: 1.75;
  color: var(--color-copy);
}
.p-lp-hero__cta {
  margin: 3rem 0 0.9rem;
}
.p-lp-hero__btn {
  padding: 0.82rem 1.95rem;
  font-size: 0.93rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}
.p-lp-hero__btn:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.28);
}
.p-lp-hero__visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lp-hero__placeholder {
  min-height: 280px;
  background: var(--color-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  border-radius: var(--radius-md);
}
.p-lp-hero__img {
  width: min(92%, 500px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 26px 42px rgba(15, 23, 42, 0.2));
}
.p-lp-hero__labels {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.p-lp-hero__label {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.8rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-copy-strong);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.34) 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(7px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
  animation: hero-label-float 2s ease-in-out infinite;
}
.p-lp-hero__label--coding {
  top: 34%;
  left: 18%;
  color: var(--color-warning);
  animation-delay: 0s;
}
.p-lp-hero__label--design {
  top: 15%;
  right: 20%;
  color: var(--color-info);
  animation-delay: 1.15s;
}
.p-lp-hero__label--support {
  bottom: 23%;
  right: 11%;
  color: var(--color-success);
  animation-delay: 2.25s;
}
.p-lp-hero__label-main {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}
.p-lp-hero__label-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.14);
}
.p-lp-hero__label-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}
.p-lp-hero__label-text {
  line-height: 1;
  letter-spacing: 0.03em;
}
.p-lp-hero__label-lines {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  opacity: 0.54;
  align-items: flex-end;
}
.p-lp-hero__label-lines span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #aaadaf;
}
.p-lp-hero__label-lines span:first-child {
  width: 2.5rem;
}
.p-lp-hero__label-lines span:last-child {
  width: 2rem;
}

@keyframes hero-label-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-lp-about {
  padding: 4rem var(--section-pad-x);
  background: var(--color-bg);
}
.p-lp-about__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.p-lp-about__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  max-width: 40em;
  line-height: 1.8;
}

.p-lp-news {
  padding: 5.5rem var(--section-pad-x);
  background: var(--color-bg);
}
.p-lp-news__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  background: var(--color-surface);
  padding: 3.5rem 1.5rem;
}
.p-lp-news__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
.p-lp-news__item {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  padding: 0.88rem 0;
  border-bottom: 1px solid #eef1f5;
  position: relative;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.32s ease;
}
.p-lp-news__item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-warning) 0%, #0ea5e9 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-lp-news__date {
  flex-shrink: 0;
  width: 10ch;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-muted);
  transition: color 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-lp-news__title {
  text-decoration: none;
  width: 100%;
  padding-right: 1.4rem;
  color: var(--color-link);
  position: relative;
  transition: color 0.28s ease;
}
.p-lp-news__title::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
  color: var(--color-muted-soft);
  transition: color 0.24s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-lp-news__title:hover {
  color: var(--color-heading-soft);
  text-decoration: none;
}
.p-lp-news__empty {
  margin: 0 auto;
  max-width: 800px;
  color: #666;
  font-size: 0.9375rem;
}
.p-lp-news .c-sec-title--news {
  max-width: 800px;
  margin: 0 auto 1.4rem;
  flex-direction: row;
  align-items: baseline;
  gap: 0.6rem;
}
.p-lp-news .c-sec-title--news .c-sec-title__en {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #0f172a;
}
.p-lp-news .c-sec-title--news .c-sec-title__ja {
  font-size: 0.9rem;
  color: #90A1B9;
  font-weight: normal;
}

@media (hover: hover) and (pointer: fine) {
  .p-lp-news__item:hover,
  .p-lp-news__item:focus-within {
    transform: translateX(8px);
  }
  .p-lp-news__item:hover::before,
  .p-lp-news__item:focus-within::before {
    transform: scaleX(1);
  }
  .p-lp-news__item:hover .p-lp-news__date,
  .p-lp-news__item:focus-within .p-lp-news__date {
    color: #0f766e;
    transform: translateX(3px);
  }
  .p-lp-news__item:hover .p-lp-news__title,
  .p-lp-news__item:focus-within .p-lp-news__title {
    color: #0f172a;
  }
  .p-lp-news__item:hover .p-lp-news__title::after,
  .p-lp-news__item:focus-within .p-lp-news__title::after {
    color: #0ea5e9;
    transform: translate(4px, -50%);
  }
}
.p-lp-news.js-reveal .c-sec-title--news,
.p-lp-news.js-reveal .p-lp-news__item,
.p-lp-news.js-reveal .p-lp-news__empty {
  opacity: 0;
  transform: translateY(24px);
}

.p-lp-news.is-inview .c-sec-title--news {
  animation: news-rise-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-news.is-inview .p-lp-news__item,
.p-lp-news.is-inview .p-lp-news__empty {
  animation: news-rise-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-news.is-inview .p-lp-news__item:nth-child(1) {
  animation-delay: 0.14s;
}

.p-lp-news.is-inview .p-lp-news__item:nth-child(2) {
  animation-delay: 0.24s;
}

.p-lp-news.is-inview .p-lp-news__item:nth-child(3) {
  animation-delay: 0.34s;
}

.p-lp-news.is-inview .p-lp-news__empty {
  animation-delay: 0.2s;
}

@keyframes news-rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-lp-service {
  padding: 5.5rem var(--section-pad-x) 4.8rem;
  background: #f8f9fb;
}
.p-lp-service__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.p-lp-service__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.p-lp-service__cta {
  margin: 3.5rem 0 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.p-lp-service__cta a {
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 0.12rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.p-lp-service__cta a:hover {
  color: #0f766e;
  border-color: #0f766e;
  text-decoration: none;
}
.p-lp-service .c-sec-title--service {
  align-items: center;
  margin-bottom: 4rem;
}
.p-lp-service .c-sec-title--service .c-sec-title__en {
  color: var(--color-heading-strong);
  font-size: 2.15rem;
  letter-spacing: 0.02em;
}
.p-lp-service .c-sec-title--service .c-sec-title__ja {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: normal;
}

.c-service-card {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-muted-line);
  list-style: none;
  margin: 0;
  min-height: 150px;
  border-top: 5px solid var(--color-brand);
}
.c-service-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.72rem;
  color: var(--color-copy-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-service-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.c-service-card__icon--design {
  color: var(--color-info);
}
.c-service-card__icon--coding {
  color: var(--color-warning);
}
.c-service-card__icon--care {
  color: var(--color-success);
}
.c-service-card__title {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
}
.c-service-card__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-copy);
}

.p-lp-service.js-reveal-service .c-sec-title--service .c-sec-title__en,
.p-lp-service.js-reveal-service .c-sec-title--service .c-sec-title__ja {
  opacity: 0;
  transform: translateY(14px);
}

.p-lp-service.js-reveal-service .c-service-card {
  opacity: 0;
  transform: translateY(34px) scale(0.93) rotateX(16deg);
  filter: blur(4px);
}

.p-lp-service.js-reveal-service .p-lp-service__cta {
  opacity: 0;
  transform: translateY(12px);
}

.p-lp-service.is-inview-service .c-sec-title--service .c-sec-title__en {
  animation: service-title-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-service.is-inview-service .c-sec-title--service .c-sec-title__ja {
  animation: service-subtitle-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.p-lp-service .c-service-card.is-inview-card {
  animation: service-card-pop 0.88s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  transform-origin: 50% 100%;
}

.p-lp-service.is-inview-service .p-lp-service__cta {
  animation: service-cta-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

@keyframes service-title-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
    letter-spacing: 0.08em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.02em;
  }
}
@keyframes service-subtitle-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes service-card-pop {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.93) rotateX(16deg);
    filter: blur(4px);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0);
  }
}
@keyframes service-cta-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-service-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
  }
  .c-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }
}
.p-lp-price {
  padding: 6rem var(--section-pad-x);
  background: var(--color-bg);
}
.p-lp-price__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 3.5rem;
  align-items: start;
}
.p-lp-price__title {
  margin: 0 0 0.75rem;
}
.p-lp-price__lead {
  padding-left: 20px;
}
.p-lp-price__intro {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
}
.p-lp-price__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.p-lp-price__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.3rem;
  padding: 1.2rem 1.5rem;
  background: #f8f9fb;
  border-left: 5px solid #E2E8F0;
}
.p-lp-price__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #475569;
}
.p-lp-price__value {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.p-lp-price.js-reveal-price .p-lp-price__lead {
  opacity: 0;
  transform: translateX(-34px);
}

.p-lp-price.js-reveal-price .p-lp-price__item {
  opacity: 0;
  transform: translateX(34px) skewX(-6deg);
}

.p-lp-price.is-inview-price .p-lp-price__lead {
  animation: price-lead-slide 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-price .p-lp-price__item.is-inview-price-item {
  animation: price-row-swipe 2s cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
  position: relative;
  overflow: hidden;
}

.p-lp-price .p-lp-price__item.is-inview-price-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(108, 150, 234, 0.2) 46%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%);
  animation: price-shine 1.05s ease-out 0.22s forwards;
  pointer-events: none;
}

@keyframes price-lead-slide {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes price-row-swipe {
  0% {
    opacity: 0;
    transform: translateX(34px) skewX(-6deg);
  }
  62% {
    opacity: 1;
    transform: translateX(-2px) skewX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
}
@keyframes price-shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}
.p-lp-works {
  padding: 4rem var(--section-pad-x);
  background: #f8f9fb;
}
.p-lp-works__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.p-lp-works__slider {
  margin: 0 -1rem;
}
.p-lp-works__empty {
  text-align: center;
  color: #666;
  padding: 2rem;
}

.p-lp-works .splide__arrow {
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.9;
}

.p-lp-works .splide__pagination__page.is-active {
  background: var(--color-accent);
}

.c-works-slide {
  background: var(--color-bg);
  border-radius: 8px;
  overflow: hidden;
}
.c-works-slide__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.c-works-slide__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-works-slide__thumb--noimg {
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
}
.c-works-slide__title {
  margin: 0;
  padding: 0.75rem 1rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
}
.c-works-slide__caption {
  margin: 0;
  padding: 0 1rem 1rem;
  font-size: 0.8125rem;
  color: #555;
}

.p-lp-flow {
  padding: 5.2rem var(--section-pad-x);
}
.p-lp-flow__inner {
  max-width: var(--container-flow);
  margin: 0 auto;
}
.p-lp-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.p-lp-flow__list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #d9e1ea;
  transform: translateX(-50%);
}
.p-lp-flow__item {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  margin-bottom: 1.15rem;
}
.p-lp-flow__item:nth-child(odd) {
  justify-content: flex-start;
}
.p-lp-flow__item:nth-child(even) {
  justify-content: flex-end;
}
.p-lp-flow__item:last-child {
  margin-bottom: 0;
}
.p-lp-flow__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #111827;
  border-radius: 50%;
  background: #f3f5f8;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.p-lp-flow__content {
  width: min(44%, 340px);
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}
.p-lp-flow__step {
  margin: 0 0 0.36rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #a9b6c8;
  text-transform: uppercase;
}
.p-lp-flow__title {
  margin: 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}
.p-lp-flow__text {
  margin: 0;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}
.p-lp-flow__item:nth-child(even) .p-lp-flow__step, .p-lp-flow__item:nth-child(even) .p-lp-flow__title, .p-lp-flow__item:nth-child(even) .p-lp-flow__text {
  text-align: right;
}
.p-lp-flow .c-sec-title--flow {
  align-items: center;
  margin-bottom: 2rem;
}

.p-lp-flow.js-reveal-flow .c-sec-title--flow .c-sec-title__en,
.p-lp-flow.js-reveal-flow .c-sec-title--flow .c-sec-title__ja {
  opacity: 0;
  transform: translateY(18px);
}

.p-lp-flow.js-reveal-flow .p-lp-flow__list::before {
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
}

.p-lp-flow.js-reveal-flow .p-lp-flow__dot {
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
}

.p-lp-flow.js-reveal-flow .p-lp-flow__item:nth-child(odd) .p-lp-flow__content {
  opacity: 0;
  transform: translateX(-34px) rotate(-1.5deg);
  transition: opacity 0.72s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.82s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.p-lp-flow.js-reveal-flow .p-lp-flow__item:nth-child(even) .p-lp-flow__content {
  opacity: 0;
  transform: translateX(34px) rotate(1.5deg);
  transition: opacity 0.72s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.82s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.p-lp-flow.is-inview-flow .c-sec-title--flow .c-sec-title__en {
  animation: flow-title-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-flow.is-inview-flow .c-sec-title--flow .c-sec-title__ja {
  animation: flow-title-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.p-lp-flow.is-inview-flow .p-lp-flow__list::before {
  animation: flow-line-draw 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.p-lp-flow .p-lp-flow__item.is-inview-flow-item .p-lp-flow__dot {
  animation: flow-dot-pop 0.5s cubic-bezier(0.22, 1.3, 0.36, 1) forwards;
}

.p-lp-flow.js-reveal-flow .p-lp-flow__item.is-inview-flow-item:nth-child(odd) .p-lp-flow__content,
.p-lp-flow.js-reveal-flow .p-lp-flow__item.is-inview-flow-item:nth-child(even) .p-lp-flow__content {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
}

@keyframes flow-title-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flow-line-draw {
  from {
    transform: translateX(-50%) scaleY(0);
  }
  to {
    transform: translateX(-50%) scaleY(1);
  }
}
@keyframes flow-dot-pop {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  82% {
    transform: translate(-50%, -50%) scale(0.88);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .p-lp-flow.js-reveal-flow .p-lp-flow__list::before {
    transform: scaleY(0);
    transform-origin: top center;
  }
  .p-lp-flow.is-inview-flow .p-lp-flow__list::before {
    animation: flow-line-draw-sp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  }
  .p-lp-flow.js-reveal-flow .p-lp-flow__item:nth-child(odd) .p-lp-flow__content,
  .p-lp-flow.js-reveal-flow .p-lp-flow__item:nth-child(even) .p-lp-flow__content {
    transform: translateY(28px) rotate(0deg);
  }
}
@keyframes flow-line-draw-sp {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.p-lp-contact {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-surface-soft);
}
.p-lp-contact__inner {
  max-width: var(--container-form);
  margin: 0 auto;
}
.p-lp-contact .c-sec-title {
  align-items: center;
  margin-bottom: 1.2rem;
}
.p-lp-contact .c-sec-title__en {
  color: var(--color-heading);
}
.p-lp-contact .c-sec-title__ja {
  color: var(--color-muted-soft);
}
.p-lp-contact__form {
  max-width: var(--container-form-inner);
  margin: 0 auto;
  padding: 3rem;
  border: 1px solid var(--color-muted-line);
  border-radius: 5px;
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
}
.p-lp-contact__form > p {
  color: var(--color-copy);
  line-height: 1.5;
  font-size: 0.9rem;
  text-align: center;
}
.p-lp-contact__form .wpcf7 form {
  margin: 0;
}
.p-lp-contact__form .c-required {
  color: #ff0000;
  font-size: 0.9rem;
  margin-left: 10px;
}
.p-lp-contact__form .wpcf7-form > p {
  margin: 0 0 0.95rem;
  font-size: 0.8rem;
  color: var(--color-copy);
  line-height: 1.5;
}
.p-lp-contact__form .wpcf7-form > p:last-child {
  margin-bottom: 0;
}
.p-lp-contact__form label {
  display: block;
  margin: 0 0 0.42rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading-soft);
  letter-spacing: 0.02em;
}
.p-lp-contact__form input[type=text],
.p-lp-contact__form input[type=email],
.p-lp-contact__form input[type=tel],
.p-lp-contact__form input[type=url],
.p-lp-contact__form input[type=number],
.p-lp-contact__form input[type=date],
.p-lp-contact__form select,
.p-lp-contact__form textarea {
  width: 100%;
  padding: 0.68rem 0.78rem;
  border: 1px solid var(--color-muted-line);
  border-radius: var(--radius-md);
  background: var(--color-surface-muted);
  color: var(--color-heading);
  font-size: 1.1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.p-lp-contact__form textarea {
  min-height: 8.8rem;
  resize: vertical;
}
.p-lp-contact__form input:focus,
.p-lp-contact__form select:focus,
.p-lp-contact__form textarea:focus {
  outline: none;
  border-color: var(--color-focus);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.22);
}
.p-lp-contact__form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.28rem;
}
.p-lp-contact__form .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}
.p-lp-contact__form .wpcf7-list-item {
  margin: 0;
}
.p-lp-contact__form .wpcf7-list-item > label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.43rem 0.62rem;
  border: 1px solid var(--color-muted-line);
  border-radius: var(--radius-pill);
  background: var(--color-surface-muted);
  color: var(--color-copy-strong);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.p-lp-contact__form .wpcf7-list-item input[type=radio] {
  margin: 0;
  accent-color: #1d4ed8;
}
.p-lp-contact__form .wpcf7-list-item label:has(input[type=radio]:checked) {
  border-color: var(--color-focus);
  background: var(--color-focus-bg);
  color: var(--color-focus-text);
}
.p-lp-contact__form hr {
  margin: 1.2rem 0 1rem;
  border: 0;
  border-top: 1px solid var(--color-muted-line-soft);
}
.p-lp-contact__form hr + p {
  margin-bottom: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--color-muted-line-soft);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-copy);
}
.p-lp-contact__form .wpcf7-spinner {
  margin: 0.5rem auto 0;
  display: block;
}
.p-lp-contact__form .wpcf7-not-valid-tip {
  margin-top: 0.36rem;
  font-size: 0.72rem;
}
.p-lp-contact__form .wpcf7 form .wpcf7-response-output {
  margin: 0.8rem 0 0;
  padding: 0.68rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.76rem;
}
.p-lp-contact__form .cf-turnstile {
  margin: 1rem auto 0.75rem;
  display: flex;
  justify-content: center;
}
.p-lp-contact__form p:has(.wpcf7-submit) {
  margin-top: 0.4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.p-lp-contact__form .wpcf7 form > .cf-turnstile {
  margin: 1rem auto 0.75rem;
  display: flex;
  justify-content: center;
}
.p-lp-contact__form .wpcf7 form > .wpcf7-submit {
  margin: 0.4rem auto 0;
  display: block;
}
.p-lp-contact__form .wpcf7 form > .wpcf7-spinner {
  margin: 0.45rem auto 0;
  display: block;
}
.p-lp-contact__form .wpcf7-submit {
  background: linear-gradient(145deg, var(--color-heading) 0%, var(--color-heading-soft) 100%);
  color: #f8fafc;
  border: none;
  padding: 0.82rem 2.2rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.p-lp-contact__form .wpcf7-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.p-lp-faq {
  padding: 5.2rem var(--section-pad-x);
  background: var(--color-surface);
}
.p-lp-faq__inner {
  max-width: var(--container-form);
  margin: 0 auto;
}
.p-lp-faq__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.p-lp-faq__item {
  border: 1px solid var(--color-muted-line);
  border-radius: var(--radius-lg);
  background: #f8fafd;
  border-left: 2px solid var(--color-brand);
  border-right: 2px solid var(--color-brand);
  overflow: hidden;
  transition: background-color 0.24s ease, box-shadow 0.24s ease;
}
.p-lp-faq__q {
  margin: 0;
}
.p-lp-faq__toggle {
  width: 100%;
  border: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem;
  cursor: pointer;
  color: var(--color-heading);
}
.p-lp-faq__label {
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--color-muted-panel);
  color: var(--color-copy-soft);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-lp-faq__question {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}
.p-lp-faq__icon {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  flex-shrink: 0;
}
.p-lp-faq__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-copy-soft);
  border-radius: 99px;
  transform: translateY(-50%);
}
.p-lp-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-copy-soft);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: transform 0.24s ease;
}
.p-lp-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-lp-faq__a {
  margin: 0;
  padding: 0.2rem 1.15rem 1rem 3.52rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-copy);
  border-top: 1px solid var(--color-muted-line-soft);
}
.p-lp-faq__item.is-open {
  background: var(--color-surface);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.p-lp-faq__item.is-open .p-lp-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.p-lp-faq .c-sec-title--faq {
  align-items: center;
  margin-bottom: 1.35rem;
}

.p-lp-faq.js-reveal-faq .c-sec-title--faq .c-sec-title__en,
.p-lp-faq.js-reveal-faq .c-sec-title--faq .c-sec-title__ja {
  opacity: 0;
  transform: translateY(16px);
}

.p-lp-faq.js-reveal-faq .p-lp-faq__item {
  opacity: 0;
  transform: translateY(24px) scale(0.97) rotateX(10deg);
  filter: blur(3px);
  clip-path: inset(0 100% 0 0 round 10px);
}

.p-lp-faq.js-reveal-faq .p-lp-faq__label {
  opacity: 0;
  transform: rotate(-26deg) scale(0.6);
}

.p-lp-faq.js-reveal-faq .p-lp-faq__icon {
  opacity: 0;
  transform: scale(0.7) rotate(-60deg);
}

.p-lp-faq.is-inview-faq .c-sec-title--faq .c-sec-title__en {
  animation: faq-title-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.p-lp-faq.is-inview-faq .c-sec-title--faq .c-sec-title__ja {
  animation: faq-title-rise 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.p-lp-faq.js-reveal-faq .p-lp-faq__item.is-inview-faq-item {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 10px);
  transition: opacity 0.52s ease, transform 0.72s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.52s ease, clip-path 0.64s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-lp-faq.js-reveal-faq .p-lp-faq__item.is-inview-faq-item .p-lp-faq__label {
  animation: faq-badge-pop 1.5s cubic-bezier(0.22, 1.3, 0.36, 1) 0.08s forwards;
}

.p-lp-faq.js-reveal-faq .p-lp-faq__item.is-inview-faq-item .p-lp-faq__icon {
  animation: faq-icon-spin-in 1s cubic-bezier(0.22, 1.3, 0.36, 1) 0.14s forwards;
}

@keyframes faq-title-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes faq-badge-pop {
  0% {
    opacity: 0;
    transform: rotate(-26deg) scale(0.6);
  }
  65% {
    opacity: 1;
    transform: rotate(8deg) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes faq-icon-spin-in {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-60deg);
  }
  70% {
    opacity: 1;
    transform: scale(1.08) rotate(12deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-lp-faq__item:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }
}
/**
 * Homepageya メインスタイル
 */
@media (max-width: 767px) {
  .l-header__inner {
    flex-direction: row;
    gap: 0;
    padding: 0.85rem 1rem;
  }
  .l-header__toggle {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.33rem;
    margin-left: auto;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--color-surface);
    position: relative;
    z-index: 102;
    cursor: pointer;
  }
  .l-header__toggle-line {
    width: 1.15rem;
    height: 2px;
    border-radius: 99px;
    background: var(--color-accent);
    transition: transform 0.28s ease, opacity 0.2s ease;
  }
  .l-header.is-menu-open .l-header__toggle-line:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
  }
  .l-header.is-menu-open .l-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-menu-open .l-header__toggle-line:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
  }
  .l-header__nav {
    position: fixed;
    top: var(--header-height, 0px);
    right: 0;
    bottom: 0;
    width: min(80vw, 420px);
    height: calc(100dvh - var(--header-height, 0px));
    padding: 2rem 1.5rem 2rem;
    background: rgba(var(--color-white-rgb), 0.99);
    border-left: 1px solid var(--color-muted-panel);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0.32s ease;
    z-index: 101;
  }
  .l-header.is-menu-open .l-header__nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .l-header::before {
    content: "";
    position: fixed;
    top: var(--header-height, 0px);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(var(--color-heading-rgb), 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 100;
  }
  .l-header.is-menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    width: 80%;
  }
  .l-header__menu li {
    width: 100%;
  }
  .l-header__menu a {
    font-size: 1.15rem;
    color: var(--color-heading);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: block;
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px solid #d1d2d4;
  }
  .l-header__cta--desktop {
    display: none;
  }
  .l-header__cta--mobile {
    display: block;
    margin: 0;
  }
  .l-footer__inner {
    padding-bottom: 30px;
  }
  .l-footer__menu {
    justify-content: center;
  }
  .l-footer__head,
  .l-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .l-footer__brand {
    justify-items: center;
  }
  .c-backtotop {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 3rem;
    height: 3rem;
  }
  .c-backtotop__label {
    font-size: 0.5rem;
  }
  .c-backtotop__arrow {
    width: 0.64rem;
    height: 0.64rem;
  }
  /* LP */
  .p-lp-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .p-lp-hero {
    padding: 10px 15px;
  }
  .p-lp-hero__badges {
    justify-content: center;
  }
  .p-lp-hero__badge {
    font-size: 1rem;
  }
  .p-lp-hero__text {
    order: 1;
  }
  .p-lp-hero__visual {
    order: 0;
    min-height: 250px;
  }
  .p-lp-hero__labels {
    display: block;
  }
  .p-lp-hero__img {
    width: min(84vw, 420px);
  }
  .p-lp-hero__label {
    font-size: 0.64rem;
    padding: 0.42rem 0.68rem;
  }
  .p-lp-hero__label-icon {
    width: 1.02rem;
    height: 1.02rem;
  }
  .p-lp-hero__label-icon svg {
    width: 0.62rem;
    height: 0.62rem;
  }
  .p-lp-hero__label-lines {
    gap: 0.13rem;
  }
  .p-lp-hero__label-lines span:first-child {
    width: 1.2rem;
  }
  .p-lp-hero__label-lines span:last-child {
    width: 0.82rem;
  }
  .p-lp-hero__label--coding {
    top: 44%;
    left: 1%;
  }
  .p-lp-hero__label--design {
    top: 8%;
    right: 8%;
  }
  .p-lp-hero__label--support {
    bottom: 12%;
    right: 2%;
  }
  .p-lp-hero__cta {
    margin: 1.5rem 0 0.9rem;
  }
  .p-lp-news {
    padding: 4rem 1rem;
  }
  .p-lp-news__inner {
    padding: 2.5rem 1rem;
  }
  .p-lp-news__item {
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .p-lp-news__date {
    width: 6.4ch;
    font-size: 1rem;
  }
  .p-lp-news__title {
    line-height: 1.5;
    padding-left: 10px;
  }
  .p-lp-news .c-sec-title--news {
    margin-bottom: 1.1rem;
    gap: 0.5rem;
  }
  .p-lp-news .c-sec-title--news .c-sec-title__en {
    font-size: 1.6rem;
  }
  .p-lp-service__list {
    grid-template-columns: 1fr;
  }
  .p-lp-price {
    padding: 4rem 1rem;
  }
  .p-lp-price__inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .p-lp-price__lead {
    max-width: 100%;
  }
  .p-lp-price__item {
    min-height: 3rem;
    padding: 0.78rem 0.86rem;
  }
  .p-lp-price__name,
  .p-lp-price__value {
    font-size: 0.95rem;
  }
  .p-lp-flow__list {
    padding-left: 0;
  }
  .p-lp-flow__list::before {
    left: 0.75rem;
    transform: none;
  }
  .p-lp-flow__item {
    display: block;
    min-height: 0;
    margin-bottom: 0.95rem;
    padding-left: 2rem;
  }
  .p-lp-flow__content {
    width: 100%;
    max-width: none;
  }
  .p-lp-flow__dot {
    left: 0.75rem;
    width: 12px;
    height: 12px;
    border-width: 2px;
    transform: translate(-50%, -50%);
  }
  .p-lp-flow__step,
  .p-lp-flow__title,
  .p-lp-flow__text {
    text-align: left !important;
  }
  .p-lp-contact {
    padding: var(--section-pad-y-sm) var(--section-pad-x);
  }
  .p-lp-contact__form {
    padding: 1rem;
  }
  .p-lp-contact__form .wpcf7-form > p {
    margin-bottom: 0.8rem;
  }
  .p-lp-contact__form textarea {
    min-height: 7.2rem;
  }
  .p-lp-contact__form .wpcf7-submit {
    width: 100%;
  }
  .p-lp-faq {
    padding: 4.2rem 1rem;
  }
  .p-lp-faq__toggle {
    gap: 0.65rem;
    padding: 0.9rem 0.9rem;
  }
  .p-lp-faq__question {
    font-size: 1.2rem;
  }
  .p-lp-faq__a {
    padding: 0.15rem 0.9rem 0.9rem 3rem;
    font-size: 1.1rem;
  }
  .single .l-content {
    padding-top: 60px;
  }
  .u-br-sp {
    display: block;
  }
}
@media (min-width: 768px) {
  .u-br-pc {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .u-br-tab {
    display: block;
  }
}
/**
 * Homepageya メインスタイル
 */
.p-lp-ai-art {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-surface-alt);
}

.p-lp-ai-art__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}

.p-lp-ai-art__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.p-lp-ai-art__lead {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: var(--color-copy);
  line-height: 1.8;
}

.p-lp-ai-art__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.p-lp-ai-art__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.p-lp-ai-art__meta {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.p-lp-ai-art__title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--color-heading);
}

.p-lp-ai-art__excerpt {
  margin: 0;
  color: var(--color-copy);
  line-height: 1.7;
}

.p-lp-ai-art__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.c-term-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-muted-line);
  color: var(--color-brand);
  font-size: 0.85rem;
  line-height: 1;
}

.c-button {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s;
}

.c-button:hover {
  opacity: 0.9;
  text-decoration: none;
}

.c-button--primary {
  background: var(--color-primary);
  color: var(--color-bg);
  border: 2px solid var(--color-primary);
}

.c-button--secondary {
  background: var(--color-accent);
  color: var(--color-bg);
  border: 2px solid var(--color-accent);
}

.c-section-heading {
  margin-bottom: 1.5rem;
}

.c-section-heading__eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.c-section-heading__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-heading);
}

.c-section-heading__lead {
  margin-top: 0.8rem;
  color: var(--color-copy);
}

.p-subhero,
.p-archive,
.p-article,
.p-page {
  padding: 3rem var(--section-pad-x);
}

.p-subhero__inner,
.p-archive__inner,
.p-article__inner,
.p-page__inner {
  max-width: var(--container-base);
  margin: 0 auto;
}

.p-subhero__eyebrow,
.c-content__meta,
.c-entry-card__meta,
.c-term-group__label {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.p-subhero__title,
.c-page-title,
.c-entry-card__title {
  margin: 0;
  color: var(--color-heading);
  line-height: 1.35;
}

.p-subhero__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.p-subhero__lead {
  margin-top: 1rem;
  color: var(--color-copy);
  line-height: 1.8;
}

.p-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--content-gap-lg);
}

.c-entry-card,
.c-content,
.c-empty-state {
  background: var(--color-surface);
  border: 1px solid var(--color-muted-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.c-entry-card {
  overflow: hidden;
}

.c-entry-card__link {
  display: block;
  height: 100%;
}

.c-entry-card__media {
  background: var(--color-surface-panel);
}

.c-entry-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.c-entry-card__body,
.c-content {
  padding: var(--content-gap-lg);
}

.c-entry-card__excerpt,
.c-content__body,
.c-empty-state {
  color: var(--color-copy);
  line-height: 1.8;
}

.c-empty-state {
  padding: var(--content-gap-lg);
}

.c-content--single {
  display: grid;
  gap: var(--content-gap);
}

.c-content__media {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.c-content__body > :first-child {
  margin-top: 0;
}

.c-content__body > :last-child {
  margin-bottom: 0;
}

.c-content__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.c-term-group {
  display: grid;
  gap: 0.9rem;
}

.c-term-group--compact {
  margin-top: 1rem;
}

.c-term-group__row {
  display: grid;
  gap: 0.5rem;
}

.c-term-group__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.p-pagination {
  margin-top: 2rem;
}

.p-section--related {
  padding-top: 3rem;
}

.p-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  margin-right: 0.5rem;
  padding: 0 0.75rem;
  border: 1px solid var(--color-muted-line);
  border-radius: var(--radius-pill);
  background: var(--color-surface);
}

.p-pagination .current {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-surface);
}

@media (max-width: 767px) {
  .p-lp-ai-art__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-lp-ai-art__grid,
  .p-card-grid {
    grid-template-columns: 1fr;
  }
  .p-subhero,
  .p-archive,
  .p-article,
  .p-page {
    padding: 2.5rem var(--section-pad-x);
  }
}
/**
 * Homepageya メインスタイル
 */
.u-hidden {
  display: none !important;
}

.u-br-sp,
.u-br-pc,
.u-br-tab {
  display: none;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: var(--utility-mt-xs) !important;
}

.u-mt-sm {
  margin-top: var(--utility-mt-sm) !important;
}

.u-mt-md {
  margin-top: var(--utility-mt-md) !important;
}

.u-mt-lg {
  margin-top: var(--utility-mt-lg) !important;
}

.u-text-xs {
  font-size: var(--utility-text-xs) !important;
}

.u-text-sm {
  font-size: var(--utility-text-sm) !important;
}

.u-text-md {
  font-size: var(--utility-text-md) !important;
}

.u-text-lg {
  font-size: var(--utility-text-lg) !important;
}

.u-text-xl {
  font-size: var(--utility-text-xl) !important;
}

.u-fw-regular {
  font-weight: var(--utility-fw-regular) !important;
}

.u-fw-medium {
  font-weight: var(--utility-fw-medium) !important;
}

.u-fw-bold {
  font-weight: var(--utility-fw-bold) !important;
}
