@charset "UTF-8";
/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* ============================================
   A Modern CSS Reset
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

/* ============================================
   🔧 Swiper高速回転バグの修正
   ============================================
   問題: prefers-reduced-motion設定時に
        transition-duration: 0.01msが適用され
        Swiperが超高速回転する

   対策: Swiperの要素を除外する
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  /* Swiperの要素を除外 */
  *:not(.swiper-wrapper):not(.swiper-slide),
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  font-size: calc(100vw / 1200 * 16);
}
@media (1200px < width) {
  html {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 375 * 14);
  }
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #363636;
}
body.is-menu-open {
  overflow: hidden;
}

a {
  color: #4499ff;
}
a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

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

pre {
  white-space: pre;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  background-color: #eee;
  padding: 0 30px;
  position: relative;
}
.l-header__inner {
  margin: 0 auto;
  min-height: 250px;
}
@media (width <= 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    transition: 0.3s;
    background-color: #fff;
    padding: 6.25rem 1.25rem 12.5rem;
    overflow-y: scroll;
  }
  .is-menu-open .l-header__nav {
    left: 0;
  }
}

.l-menu-trigger {
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  position: relative;
}
.l-menu-trigger__bar {
  display: block;
  transition: all 0.3s;
  width: 1.5rem;
  height: 0.1875rem;
  position: absolute;
  left: calc(50% - 0.75rem);
  top: calc(50% - 0.09375rem);
  display: inline-block;
  background: #fff;
}
.l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(-0.4375rem);
}
.is-menu-clicked .l-menu-trigger__bar:nth-of-type(1) {
  transform: translateY(0rem) rotate(45deg);
}
.is-menu-clicked .l-menu-trigger__bar:nth-of-type(2) {
  transform: scaleX(0);
}
.l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(0.4375rem);
}
.is-menu-clicked .l-menu-trigger__bar:nth-of-type(3) {
  transform: translateY(0rem) rotate(-45deg);
}

/* Footer */
.l-footer {
  background-color: #eee;
  padding: 0 30px;
}
.l-footer__inner {
  margin: 0 auto;
  min-height: 250px;
}
/* Sidebar */
:root {
  --bg: #fafaf7;
  --bg-tint: #f1f4fa;
  /* soft blue tint */
  --bg-deep: #0e1b2c;
  /* navy */
  --ink: #0e1b2c;
  --ink-2: #2a3a52;
  --ink-3: #5a6b82;
  --ink-4: #94a2b5;
  --line: #e5e4de;
  --line-2: #d9dce3;
  --accent: oklch(0.52 0.16 250);
  /* blue */
  --accent-2: oklch(0.62 0.13 245);
  --accent-soft: oklch(0.94 0.04 250);
  --accent-ink: oklch(0.32 0.1 252);
  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", "Inter", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
}

body {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-wrap: pretty;
  word-break: normal;/*keep-all*/
  overflow-wrap: anywhere;
  overflow-x: hidden;
}

html,
#root {
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
span,
div,
th,
td,
button,
input,
textarea {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

button {
  font: inherit;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

/* utility */
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.h-display {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  font-size: clamp(28px, 4.6vw, 52px);
}

.h-section {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-size: clamp(26px, 3.4vw, 40px);
}

.h-3 {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.55;
  font-size: clamp(18px, 1.6vw, 22px);
}

.lead {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 2;
}

.muted {
  color: var(--ink-3);
}

.tiny {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-3);
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.logo-name {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.logo-name em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.nav-links a {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 6px 0;
  position: relative;
  font: inherit;
  letter-spacing: inherit;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  outline: none;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-ink) !important;
}

.nav-cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(11, 17, 32, 0.15);
}

/* hamburger button (mobile only) */
.hamburger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.32s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.2s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* drawer (mobile only) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 17, 32, 0);
  pointer-events: none;
  transition: background 0.32s ease;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
}

.nav-drawer.is-open {
  background: rgba(11, 17, 32, 0.36);
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer-inner {
  position: relative;
  background: #fff;
  width: min(440px, 92vw);
  height: 100vh;
  padding: 80px clamp(24px, 4vw, 48px) 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.7, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(11, 17, 32, 0.08);
  overflow-y: auto;
}

.nav-drawer.is-open .nav-drawer-inner {
  transform: translateX(0);
}

.nav-drawer-close {
  position: absolute;
  top: 20px;
  right: clamp(20px, 4vw, 32px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s;
}

.nav-drawer-close:hover {
  background: rgba(11, 17, 32, 0.05);
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}

.nav-drawer-links a {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 16px 4px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  transition: color 0.2s, padding 0.2s;
}

.nav-drawer-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-drawer-links a.active {
  color: var(--accent);
}

.nav-drawer-links .num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink-3);
}

.nav-drawer-links button.active .num,
.nav-drawer-links button:hover .num {
  color: var(--accent);
}

.nav-drawer-links .lbl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-drawer-cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 8px;
  transition: background 0.2s;
}

.nav-drawer-cta:hover {
  background: var(--accent-ink);
}

.nav-drawer-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.8;
  color: var(--ink-3);
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}

@media (max-height: 720px) {
  .nav-drawer-inner {
    padding: 80px clamp(24px, 4vw, 48px) 32px;
    gap: 16px;
  }
  .nav-drawer-links button {
    padding: 13px 4px;
  }
  .nav-drawer-links .lbl {
    font-size: 15px;
  }
  .nav-drawer-cta {
    padding: 14px 22px;
    font-size: 13px;
  }
  .nav-drawer-meta {
    font-size: 10.5px;
    line-height: 1.7;
    padding-top: 16px;
  }
}
/* layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  min-width: 0;
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}

.section.tinted {
  background: var(--bg-tint);
  border-bottom: none;
}

.section.dark {
  background: var(--bg-deep);
  color: #f1f4fa;
  border-bottom: none;
}

.section.dark .lead {
  color: #c2ccdb;
}

.section.dark .muted {
  color: #94a2b5;
}

.section.dark .eyebrow {
  color: #9cb6ff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head .num {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  line-height: 1;
}

.section-head .eyebrow {
  margin: 0;
}

.section-head h2 {
  margin: 0;
}

.section-head .lead {
  margin: 8px 0 0;
  max-width: 60ch;
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-tint);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--pad) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
/* hero — centered (Dzine-style) */
.hero-centered .hero-stack {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(45px, 5.6vw, 77px) var(--pad) clamp(64px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-centered h1 {
  text-align: center;
}

.hero-centered .hero-sub {
  margin: 24px auto 0;
  max-width: 60ch;
  text-align: center;
}

.hero-centered .hero-cta {
  justify-content: center;
  margin-top: 32px;
}

.hero-centered .hero-visual {
  margin: clamp(38px, 4.8vw, 64px) auto 0;
  max-width: 700px;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
  box-shadow: 0 30px 80px -20px rgba(11, 17, 32, 0.18), 0 8px 24px -8px rgba(11, 17, 32, 0.08);
}

.hero-centered .hero-visual video,
.hero-centered .hero-visual img {
  border-radius: 18px;
}

.hero h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-size: clamp(34px, 5.6vw, 68px);
  color: var(--ink);
}

.hero h1 .accent {
  color: var(--accent);
}

.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
}

.hero-sub {
  margin: 28px 0 0;
  max-width: 46ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 2;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-ink);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-2);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn .arr {
  transition: transform 0.2s;
}

.btn:hover .arr {
  transform: translateX(4px);
}

.hero-meta {
  position: absolute;
  left: var(--pad);
  bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--ink-3);
  font-size: 11px;
}

.hero-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
/* hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

.hv-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.hv-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
}

.hv-blob {
  position: absolute;
  width: 60%;
  height: 60%;
  left: 20%;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-ink));
  opacity: 0.85;
  filter: blur(0.5px);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8px, -12px) scale(1.04);
  }
}
.hv-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(14, 27, 44, 0.08);
  font-size: 11px;
  line-height: 1.5;
}

.hv-card-1 {
  left: -8%;
  top: 18%;
  width: 54%;
}

.hv-card-2 {
  right: -6%;
  bottom: 14%;
  width: 50%;
}

.hv-card .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hv-card .val {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.3;
}

.hv-card .bars {
  display: flex;
  gap: 3px;
  margin-top: 8px;
  align-items: flex-end;
  height: 24px;
}

.hv-card .bars span {
  flex: 1;
  background: var(--accent);
  opacity: 0.5;
  border-radius: 1px;
}

.hv-card .bars span:nth-child(2) {
  opacity: 0.7;
}

.hv-card .bars span:nth-child(3) {
  opacity: 0.85;
  height: 80%;
}

.hv-card .bars span:nth-child(4) {
  opacity: 1;
}

.hv-card .bars span:nth-child(5) {
  opacity: 0.6;
}

.hv-tag {
  position: absolute;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--accent);
}

.hv-tag-1 {
  left: 54%;
  top: 6%;
}

.hv-tag-2 {
  left: 8%;
  bottom: 8%;
}

/* placeholder image */
.ph {
  position: relative;
  background: var(--accent-soft);
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--accent-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 8px, rgba(31, 90, 201, 0.06) 8px 9px);
}

.ph .ph-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 12px;
  text-transform: uppercase;
}

.ph .ph-inner small {
  display: block;
  color: var(--accent);
  font-size: 9px;
  margin-bottom: 4px;
  font-weight: 500;
}

/* products / cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

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

@media (max-width: 880px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .case-row {
    grid-template-columns: 1fr !important;
  }
  .case-row > div:nth-child(2) {
    order: 0 !important;
  }
}
.vcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.vcard:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(14, 27, 44, 0.06);
}

.vcard .num {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.vcard h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.vcard p {
  margin: 0;
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.95;
}

.vcard .arrow {
  margin-top: auto;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
}

/* mission/vision — centered stack */
.mv-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mv-center .mv-label {
  padding-top: 14px;
  border-top: 2px solid var(--accent);
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.mv-center .mv-body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0;
}

.mv-center .mv-body .num {
  color: var(--accent);
  font-weight: 700;
}

.mv {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

@media (max-width: 880px) {
  .mv {
    grid-template-columns: 1fr;
  }
}
.mv-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 10px;
  border-top: 2px solid var(--accent);
  display: inline-block;
}

.mv-body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.mv-body .num {
  color: var(--accent);
  font-weight: 700;
}

/* products feature */
.product-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 880px) {
  .product-feature {
    grid-template-columns: 1fr;
  }
}
.product-mock {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(14, 27, 44, 0.08);
}

.pm-window {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pm-titlebar {
  height: 32px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.pm-titlebar .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-2);
}

.pm-titlebar .title {
  margin-left: 14px;
  font-size: 10.5px;
  color: var(--ink-3);
  font-family: "JetBrains Mono", monospace;
}

.pm-body {
  flex: 1;
  display: flex;
}

.pm-side {
  width: 34%;
  border-right: 1px solid var(--line);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg);
}

.pm-side .item {
  font-size: 10.5px;
  color: var(--ink-3);
  padding: 6px 8px;
  border-radius: 4px;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
}

.pm-side .item.active {
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-weight: 600;
}

.pm-main {
  flex: 1;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-msg {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 10.5px;
  line-height: 1.6;
  max-width: 80%;
}

.pm-msg.user {
  background: var(--accent);
  color: #fff;
  align-self: flex-end;
}

.pm-msg.ai {
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--line);
}

.pm-input {
  margin-top: auto;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  font-size: 10.5px;
  color: var(--ink-4);
  font-family: "JetBrains Mono", monospace;
}

.pm-input::after {
  content: "|";
  color: var(--accent);
  margin-left: auto;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
/* FAQ */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--ink);
}

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

.faq .q-mark {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  width: 24px;
}

.faq .toggle {
  margin-left: auto;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  color: var(--ink-3);
}

.faq .toggle::before,
.faq .toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}

.faq .toggle::before {
  width: 12px;
  height: 1.5px;
}

.faq .toggle::after {
  width: 1.5px;
  height: 12px;
}

.faq details[open] .toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq .a {
  padding: 14px 0 0 42px;
  color: var(--ink-2);
  line-height: 2;
  font-size: 14px;
  white-space: pre-line;
}

/* before / after */
.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}

@media (max-width: 880px) {
  .ba {
    grid-template-columns: 1fr;
  }
}
.ba-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px;
}

.ba-col.after {
  background: var(--accent-soft);
  border-color: transparent;
}

.ba-col h4 {
  margin: 0 0 4px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.ba-col.after h4 {
  color: var(--accent);
}

.ba-col h5 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ba-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ba-col li {
  padding-left: 22px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-2);
}

.ba-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1.5px;
  background: var(--ink-4);
}

.ba-col.after li::before {
  background: var(--accent);
}

/* process / timeline */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width: 880px) {
  .process {
    grid-template-columns: 1fr;
  }
}
.pstep {
  padding: 24px 24px 28px;
  border-left: 1px solid var(--line);
  position: relative;
}

.pstep:first-child {
  border-left: 0;
}

@media (max-width: 880px) {
  .pstep {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }
  .pstep:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
.pstep .num {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}

.pstep h4 {
  margin: 8px 0 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pstep p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.9;
}

/* org / executives */
.exec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 880px) {
  .exec {
    grid-template-columns: 1fr;
  }
}
.exec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.exec-photo {
  aspect-ratio: 1/1;
  border-radius: 6px;
}

.exec-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}

.exec-role {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 4px 0 0;
}

.exec-bio {
  font-size: 13px;
  line-height: 1.95;
  color: var(--ink-3);
  margin: 8px 0 0;
}

/* CTA strip */
.cta-strip {
  background: var(--bg-deep);
  color: #fff;
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  right: -160px;
  top: -160px;
  opacity: 0.5;
}

.cta-strip h3 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.cta-strip .row {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .cta-strip .row {
    grid-template-columns: 1fr;
  }
}
.cta-strip .lead {
  color: #c2ccdb;
  margin: 24px 0 0;
  max-width: 48ch;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* legal */
.legal {
  padding: 8px 0;
}

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 16px;
}

.legal-body {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
}

.legal-body p {
  margin: 0 0 12px;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.9;
}

.bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.meta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.meta-table th,
.meta-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.meta-table th {
  width: 140px;
  font-weight: 600;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}

.meta-table td {
  color: var(--ink-2);
}

.meta-table tr:last-child th,
.meta-table tr:last-child td {
  border-bottom: none;
}

/* footer */
.ft {
  background: var(--bg-deep);
  color: #c2ccdb;
  padding: 80px 0 36px;
  font-size: 13px;
}

.ft.sep {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: 40px;
  margin-bottom: 56px;
}

@media (max-width: 880px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ft h6 {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9cb6ff;
  margin: 0 0 18px;
}

.ft ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft a:hover {
  color: #fff;
}

.ft .brand {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.ft .copy {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #5a6b82;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* page transition */
.page {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* page header (sub pages) */
.ph-header {
  background: var(--bg-tint);
  padding: clamp(80px, 10vw, 140px) 0 clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.ph-header .crumb {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.ph-header .h1,
.ph-header h1 {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.ph-header p {
  margin: 24px 0 0;
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 60ch;
  line-height: 2;
}

/* news / posts */
.post {
  display: grid;
  grid-template-columns: 120px 140px 1fr auto;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

@media (max-width: 760px) {
  .post {
    grid-template-columns: 120px 1fr;
    gap: 14px 16px;
  }
  .post .date {
    grid-column: 1/2;
  }
  .post .tag {
    grid-column: 2/3;
  }
  .post .title {
    grid-column: 1/3;
  }
  .post .arr {
    display: none;
  }
}
.post .date {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
}

.cat-list a {
  display: inline-block;
}

.cat-list a,
.post .tag {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  text-align: center;
  width: fit-content;
}

.post .title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.post:hover .title {
  color: var(--accent);
}

/* table */
.tbl {
  width: 100%;
  border-collapse: collapse;
}

.tbl th,
.tbl td {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85;
}

.tbl th {
  width: 200px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  padding-right: 24px;
}

.tbl td {
  color: var(--ink-2);
}

.business-line-card > div:last-child,
.case-row > div,
.contact-layout > div,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.business-line-card .business-num {
  font-weight: 400 !important;
}

/* big quote */
.quote {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--ink);
  max-width: 36ch;
}

.quote .ln {
  color: var(--accent);
  font-weight: 700;
}

/* feature highlight */
.hl {
  padding: clamp(56px, 6vw, 88px);
  background: var(--bg-deep);
  color: #fff;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 880px) {
  .hl {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }
}
.hl::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  right: -100px;
  bottom: -100px;
  opacity: 0.55;
}

.hl h3 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.hl p {
  margin: 24px 0 0;
  color: #c2ccdb;
  font-size: 15px;
  line-height: 2;
  max-width: 46ch;
  position: relative;
  z-index: 1;
}

.hl-stat {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hl-stat .big {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.hl-stat .big em {
  font-style: normal;
  color: var(--accent);
}

.hl-stat .lbl {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9cb6ff;
  margin-top: 8px;
}

/* divider rule */
.rule {
  height: 1px;
  background: var(--line);
  margin: 48px 0;
}

.rule.dark {
  background: rgba(255, 255, 255, 0.08);
}

/* checklist */
.chk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 880px) {
  .chk {
    grid-template-columns: 1fr;
  }
}
.chk li {
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
}

.chk li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0 4px, transparent 5px);
}

/* news ticker for top */
.tick {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-2);
  overflow: hidden;
}

.tick .lbl {
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.tick .item {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.tick .d {
  font-family: "JetBrains Mono", monospace;
  color: var(--ink-3);
  font-size: 11px;
}

/* misc */
.icon-frame {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  body {
    word-break: normal;
    line-break: strict;
  }
  .h-display,
  .h-section,
  .h-3,
  .hero h1,
  .hero-sub,
  .lead,
  .mv-body,
  .mv-center .mv-body,
  .ph-header .h1 .ph-header h1,
  .ph-header p,
  .quote,
  .cta-strip h3,
  .cta-strip .lead,
  .vcard h3,
  .vcard p,
  .chk li,
  .business-line-card h3,
  .business-line-card p,
  .business-line-card li,
  .business-line-card .eyebrow,
  .legal-body,
  .faq summary,
  .faq .a,
  .tbl th,
  .tbl td,
  .meta-table th,
  .meta-table td {
    word-break: break-word;
    line-break: anywhere;
    overflow-wrap: anywhere;
    max-width: 100%;
    white-space: normal;
  }
  .wrap {
    width: 100%;
  }
  .business-line-card {
    grid-template-columns: 1fr !important;
    padding: 28px 24px !important;
    gap: 20px !important;
  }
  .business-line-card .business-num {
    font-size: 40px !important;
  }
  .message-profile {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .form-split {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .contact-form {
    padding: 32px 24px !important;
  }
  .tbl,
  .tbl tbody,
  .tbl tr,
  .tbl th,
  .tbl td,
  .meta-table,
  .meta-table tbody,
  .meta-table tr,
  .meta-table th,
  .meta-table td {
    display: block;
    width: 100%;
  }
  .tbl tr,
  .meta-table tr {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }
  .tbl th,
  .tbl td,
  .meta-table th,
  .meta-table td {
    border-bottom: 0;
    padding: 0;
  }
  .tbl th,
  .meta-table th {
    width: auto;
    padding-right: 0;
    margin-bottom: 6px;
  }
}
@media (max-width: 640px) {
  :root {
    --pad: 20px;
  }
  .section {
    padding: 64px 0;
  }
  .hero-centered .hero-stack {
    padding: 48px var(--pad) 72px;
  }
  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .hero-sub {
    font-size: 14px;
  }
  .h-section {
    font-size: clamp(24px, 7vw, 32px);
  }
  .section-head {
    margin-bottom: 36px;
  }
  .vcard,
  .ba-col,
  .exec-card {
    padding: 28px 22px;
  }
  .hl {
    padding: 36px 24px;
    border-radius: 12px;
    gap: 28px;
  }
  .hl-stat .big {
    font-size: clamp(56px, 18vw, 86px);
  }
  .ft-grid {
    grid-template-columns: 1fr;
  }
  .post {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cat-list a,
  .post .date,
  .post .tag,
  .post .title {
    grid-column: auto;
  }
  .case-row {
    gap: 28px !important;
  }
  .case-row > div {
    order: 0 !important;
  }
  .newsletter-input {
    min-width: 0 !important;
    width: 100% !important;
  }
  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
#company .section {
  display: none;
}

#company .section.active {
  display: block;
}

#company .btn-ghost {
  background: rgb(255, 255, 255);
  color: var(--ink);
  border-color: var(--line-2);
  padding: 10px 20px;
  font-size: 12px;
}

#company .btn-ghost.active {
  background: var(--accent);
  color: rgb(255, 255, 255);
  border-color: var(--accent);
  padding: 10px 20px;
  font-size: 12px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgb(255, 255, 255);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
}

#contact label input,
#contact label textarea {
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  background: var(--bg);
  font-family: "Noto Sans JP", "Inter", sans-serif;
  color: var(--ink);
  outline: none;
  resize: vertical;
  width: 100%;
}

#contact label input:focus,
#contact label textarea:focus {
  border-color: var(--accent);
  background: #fff;
}

#contact label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#contact .span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: Inter, sans-serif;
  color: var(--ink-2);
}

#contact .em {
  color: var(--accent);
  font-style: normal;
  margin-left: 6px;
}

#contact .radio-btn input[type=radio] {
  display: none;
}

#contact .radio-btn label.active {
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 13px;
  cursor: default;
  background: var(--accent-soft);
  color: var(--accent-ink);
}

#contact .radio-btn label {
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  cursor: default;
  background: rgb(255, 255, 255);
  color: var(--ink-2);
}

#contact .wpcf7-list-item {
  margin-left: 0;
}

#contact .wpcf7-radio {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#contact .wpcf7-response-output {
  margin: 0;
}

#newsletter form {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
  position: relative;
}

#newsletter .newsletter-input {
  padding: 14px 20px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  min-width: 280px;
  font-size: 14px;
  font-family: inherit;
  background: rgb(255, 255, 255);
}

#newsletter .wpcf7-spinner {
  position: absolute;
  right: calc(50% - 280px);
  top: calc(50% - 10px);
}

@media (max-width: 640px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  #newsletter .wpcf7-spinner {
    right: calc(50% - 12px);
    top: inherit;
    bottom: -35px;
    margin: 0;
  }
}
.single-post .post-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 4em;
}
.single-post .post-header h1 {
  width: 100%;
}
.single-post .post-content {
  margin-bottom: 4em;
}
.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5 {
  margin-bottom: 1em;
}
.single-post .post-content h2:not(:first-child),
.single-post .post-content h3:not(:first-child),
.single-post .post-content h4:not(:first-child),
.single-post .post-content h5:not(:first-child) {
  margin-top: 2em;
}
.single-post .post-content ul {
  margin-bottom: 1.5em;
}
.single-post .post-content p:not(:last-child) {
  margin-bottom: 1.5em;
}
.single-post .post-content a {
  text-decoration: underline;
}
.single-post .post-content table {
  margin: 1em 0 1.5em;
}
.single-post .post-nav {
  display: flex;
  justify-content: space-between;
}

.archive h1 {
  margin-bottom: 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.archive .archive-back {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  text-align: center;
  width: fit-content;
}

/********************************************
* Wordpress
********************************************/
/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink !important;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

/********************************************
* Component
********************************************/
.c-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list--upper-alphabet {
  list-style: upper-alpha;
}
.c-list--lower-alphabet {
  list-style: lower-alpha;
}
.c-list--upper-roman {
  list-style: upper-roman;
}
.c-list--lower-roman {
  list-style: lower-roman;
}
.c-list--none {
  list-style: none;
}
.c-list--circle {
  list-style: circle;
}
.c-list--square {
  list-style: square;
}
.c-list--decimal {
  list-style: decimal;
}
.c-list--decimal-leading-zero {
  list-style: decimal-leading-zero;
}

.c-pagenation {
  margin: 50px 0 0 0;
  text-align: center;
}
.c-pagenation:after, .c-pagenation__navul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.c-pagenation__nav {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
}
.c-pagenation__item {
  display: inline-block;
  list-style: none outside none;
  margin-left: 3px;
  margin-bottom: 3px;
}
.c-pagenation__item:first-child {
  margin-left: 0;
}
.c-pagenation__item--active {
  background-color: var(--accent);
  border-radius: 3px;
  color: #ffffff;
  cursor: not-allowed;
  padding: 10px 20px;
}
.c-pagenation__link {
  background: none repeat scroll 0 0 #cccccc;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.c-pagenation__link:hover {
  background-color: var(--accent);
  color: #ffffff;
  opacity: 1;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.c-scroll {
  overflow-x: auto;
}
.c-scroll table {
  min-width: 640px;
  margin: 0 0 40px 0;
}

.c-scroll-bar {
  overflow-y: scroll;
}
.c-scroll-bar::-webkit-scrollbar {
  width: 0.15625rem;
}
.c-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #ff0000;
  border-radius: 999px;
}
.c-scroll-bar::-webkit-scrollbar-track {
  background-color: #999;
  border-radius: 0.15625rem;
}

.c-table {
  width: 100%;
  margin-bottom: 40px;
}
.c-table th {
  text-align: center;
  background: #ededed;
  padding: 10px;
  width: 350px;
  border: 1px solid #d1d1d1;
  vertical-align: middle;
}
@media (width <= 768px) {
  .c-table th {
    width: 100%;
    display: block;
  }
}
.c-table td {
  padding: 10px;
  text-align: left;
  border: 1px solid #d1d1d1;
}
@media (width <= 768px) {
  .c-table td {
    width: 100%;
    display: block;
  }
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-pc {
  display: block;
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
}
.u-pc--inline {
  display: inline;
}
@media (width <= 768px) {
  .u-pc--inline {
    display: none;
  }
}
.u-pc--iblock {
  display: inline-block;
}
@media (width <= 768px) {
  .u-pc--iblock {
    display: none;
  }
}
.u-pc--table {
  display: table;
}
@media (width <= 768px) {
  .u-pc--table {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (width <= 768px) {
  .u-sp {
    display: block;
  }
}
.u-sp--inline {
  display: none;
}
@media (width <= 768px) {
  .u-sp--inline {
    display: inline;
  }
}
.u-sp--iblock {
  display: none;
}
@media (width <= 768px) {
  .u-sp--iblock {
    display: inline-block;
  }
}
.u-sp--table {
  display: none;
}
@media (width <= 768px) {
  .u-sp--table {
    display: table;
  }
}

.u-color__yellow {
  color: yellow;
}

.u-ellipsis {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.u-ellipsis--2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.u-ellipsis--3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.u-ellipsis--4 {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.u-ellipsis--5 {
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.u-fade-in {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: 0.8s;
}
@media (width <= 768px) {
  .u-fade-in {
    transform: translateY(2.1428571429rem);
  }
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.u-img {
  width: 100%;
  max-width: 100%;
}

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

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "メイリオ", Meiryo, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}
.u-text--mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}