@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  position: relative;
  font-style: normal;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: clip;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  width: 100%;
}

span {
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 1365px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1366 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

:root {
  --background: #f7f6f2;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --primary: #1a2e52;
  --secondary: #eef0f6;
  --muted-foreground: #6b7280;
  --accent: #c87941;
  --accent-light: #e8a96a;
  --border: rgba(26, 46, 82, 0.12);
  --input-background: #f3f3f5;
  --radius: 0.625rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Inter", sans-serif;
  background: var(--background);
  color: var(--foreground);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

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

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

ul {
  list-style: none;
}

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

.hidden {
  display: none !important;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .container {
    padding-inline: 1rem;
  }
}

.container-narrow {
  max-width: 768px;
}

.container-medium {
  max-width: 960px;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 28px;
  height: 28px;
}

.icon-xl {
  width: 48px;
  height: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 6px;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 8px 16px;
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
}

.btn-block {
  display: flex;
  width: 100%;
  padding: 16px;
}

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

.btn-accent:hover {
  background: #b56a35;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

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

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 24px;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.btn-outline:hover {
  border-color: #fff;
}

/* ── SECTIONS ── */
.section {
  padding: 96px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding-block: 3rem;
  }
}

.section-white {
  background: #fff;
}

.section-secondary {
  background: var(--secondary);
}

.section-primary {
  background: var(--primary);
}

.section-head {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .section-head {
    margin-bottom: 2rem;
  }
}

.section-head-center {
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
}

.section-title-light {
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  margin-top: 16px;
  color: var(--muted-foreground);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .section-desc {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.section-desc-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 510px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(3, 3fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-stretch {
  align-items: stretch;
}

/* ── HEADER ── */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.p-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.p-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
}

.p-header__logo {
  display: block;
}

.p-header__logo__img img {
  width: 4rem;
  height: 2.75rem;
  object-fit: contain;
}

.p-header__logo__text {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #555;
}

.logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
}

.logo-badge-accent {
  background: var(--accent);
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff;
  transition: color 0.3s ease;
}

.p-header.scrolled .logo-text {
  color: var(--primary);
}

.logo-text-light {
  color: #fff !important;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}

.p-header.scrolled .nav-link {
  color: var(--foreground);
}

.nav-link:hover {
  color: var(--accent) !important;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  transition: color 0.3s ease;
}

.p-header.scrolled .menu-toggle {
  color: var(--primary);
}

.nav-mobile {
  background: #fff;
  border-top: 1px solid var(--border);
}

.nav-mobile-link {
  display: block;
  padding: 12px 24px;
  font-size: 0.875rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.nav-mobile-cta {
  padding: 16px 24px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.p-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.p-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.p-header__logo {
  display: flex;
  align-items: center;
}
.p-header__logo__img img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.menu-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.menu-toggle #icon-menu {
  opacity: 1;
  transform: rotate(0deg);
}
.menu-toggle #icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}
.menu-toggle.is-open #icon-menu {
  opacity: 0;
  transform: rotate(90deg);
}
.menu-toggle.is-open #icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

.nav-mobile {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mobile-link {
  display: block;
  padding: 16px 24px;
  font-size: 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.nav-mobile-cta {
  padding: 20px 24px;
}

body.no-scroll {
  overflow: hidden;
}

.footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.7);
}

.p-footer__text {
  font-size: 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding: 64px 0 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-brand {
    grid-column: span 2;
  }
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 320px;
  margin-top: 16px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: #fff;
}

/* ── RESPONSIVE FORM ── */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 46, 82, 0.88) 0%, rgba(26, 46, 82, 0.65) 60%, rgba(200, 121, 65, 0.3) 100%);
}

.fv-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .fv-content {
    padding-block: 6rem 3rem;
  }
}

.eyebrow {
  font-size: 0.875rem;
  margin-bottom: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
}

.eyebrow-accent {
  color: var(--accent-light);
}

.fv-title {
  margin-bottom: 24px;
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.accent-text {
  color: var(--accent-light);
}

@media screen and (max-width: 767px) {
  .fv-text {
    font-size: 0.875rem !important;
  }
}

.fv-desc {
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.fv-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 640px) {
  .fv-actions {
    flex-direction: row;
  }
}
.fv-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgb(255, 255, 255);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
/* ── STATS ── */
.stats-bar {
  background: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 32px 24px;
  text-align: center;
  max-width: 960px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ── SERVICES ── */
.service-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .service-card {
    padding: 1rem;
  }
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--secondary);
  color: var(--primary);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ── WORKS ── */
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
}

.work-img-wrap {
  overflow: hidden;
  height: 13rem;
}
@media screen and (max-width: 767px) {
  .work-img-wrap {
    height: 12rem;
  }
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-img {
  transform: scale(1.06);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(26, 46, 82, 0.8) 0%, transparent 70%);
  transition: background 0.3s ease;
}
@media screen and (max-width: 767px) {
  .work-overlay {
    padding: 1rem;
    background: linear-gradient(to top, rgba(26, 46, 82, 0.9) 0%, transparent 90%);
  }
}

.work-card:hover .work-overlay {
  background: linear-gradient(to top, rgba(26, 46, 82, 0.92) 0%, rgba(26, 46, 82, 0.3) 60%, transparent 100%);
}

.work-info {
  color: #fff;
}

.work-category {
  font-size: 0.75rem;
  color: coral;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}

.work-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.work-link-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.work-card:hover .work-link-icon {
  opacity: 1;
}

.works-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.work-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text, #1a2e52);
  transition: all 0.25s ease;
}
.work-btn-outline .icon {
  transition: transform 0.25s ease;
}
.work-btn-outline:hover {
  background: coral;
  border-color: coral;
  color: #fff;
}
.work-btn-outline:hover .icon {
  transform: translateX(4px);
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.work-filter-btn {
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-sub, #666);
  transition: all 0.2s ease;
}
.work-filter-btn:hover {
  border-color: coral;
  color: coral;
}
.work-filter-btn.is-active {
  background: coral;
  border-color: coral;
  color: #fff;
}

.single-work-head {
  text-align: center;
  margin-bottom: 2rem;
}
.single-work-head .work-tags {
  justify-content: center;
  margin-top: 12px;
}

.single-work-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0 12px;
}
@media screen and (max-width: 767px) {
  .single-work-title {
    font-size: 1.5rem;
  }
}

.single-work-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.single-work-thumb .single-work-img {
  width: 100%;
  height: auto;
  display: block;
}

.single-work-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .single-work-body {
    grid-template-columns: 1fr;
  }
}

.single-work-desc {
  line-height: 1.9;
  margin-bottom: 2rem;
}

.single-work-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.single-work-meta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: fit-content;
}

.single-work-meta-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.single-work-meta-list li:last-child {
  border-bottom: none;
}
.single-work-meta-list .meta-label {
  font-size: 0.75rem;
  color: var(--text-sub, #999);
}
.single-work-meta-list .meta-value {
  font-size: 0.95rem;
  font-weight: 600;
}

.single-work-url {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding-block: 0.375rem;
}

.single-work-nav {
  margin-top: 3rem;
  text-align: center;
}

.single-work-back {
  color: var(--text-sub, #666);
  font-size: 0.9rem;
}
.single-work-back:hover {
  color: coral;
}

/* ── PROCESS ── */
.step {
  display: flex;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--accent-light);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ── PRICE ── */
.price-card {
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
}

.price-card-featured {
  background: var(--primary);
  border: 2px solid var(--accent);
  color: #fff;
}

.price-head {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .price-head {
    margin-bottom: 12px;
  }
}

.price-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.price-card-featured .price-sub {
  color: rgba(255, 255, 255, 0.7);
}

.price-amount {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .price-amount {
    margin-bottom: 1rem;
  }
}

.price-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
@media screen and (max-width: 767px) {
  .price-num {
    font-size: 2rem;
  }
}

.price-num-featured {
  color: var(--accent-light);
}

.price-num-quote {
  font-size: 1.8rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-left: 4px;
}

.price-note-featured {
  color: rgba(255, 255, 255, 0.7);
}

.price-features {
  flex: 1;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.check {
  color: var(--accent);
  margin-top: 2px;
}

.check-featured {
  color: var(--accent-light);
  margin-top: 2px;
}

.shine-card {
  position: relative;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shine-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2666666667), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
}

@keyframes anime-card-shine-ltr {
  0% {
    left: -150%;
  }
  30%, 100% {
    left: 150%;
  }
}
@keyframes anime-card-shine-rtl {
  0% {
    left: 150%;
  }
  30%, 100% {
    left: -150%;
  }
}
.shine-card.loop::before {
  animation: anime-card-shine-ltr 3.5s infinite;
}

.shine-card.hover:hover::before {
  animation: anime-card-shine-ltr 3.5s infinite;
}

/* ── VOICE ── */
.testimonial-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--background);
  border: 1px solid var(--border);
  position: relative;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  fill: var(--accent);
  color: var(--accent);
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.testomonial-img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 5rem;
  height: 5rem;
}
.testomonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
@media screen and (max-width: 767px) {
  .about-text {
    font-size: 0.875rem;
  }
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.about-detail-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.about-detail-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  height: 360px;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  border-radius: var(--radius);
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about-badge {
    left: -8px;
  }
}

.about-badge-num {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-badge-label {
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--primary);
}

.contact-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-hours {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--secondary);
  border: 1px solid var(--border);
}

.contact-hours-title {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-hours-text {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-top: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  background: var(--input-background);
  color: var(--foreground);
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 64px 0;
}

.form-success svg {
  margin: 0 auto 16px;
  color: var(--accent);
}

.form-success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-success-text {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ── Contact Form 7 送信ボタン ── */
.wpcf7-form-control.wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  padding: 16px 48px;
  margin: 1.5rem auto 0;
  border: 0.0625rem solid #333;
  border-radius: 0.5rem;
  background-color: #ffffff;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.wpcf7-form-control.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* 送信中はクリック不可にして見た目も薄く */
.wpcf7-form-control.wpcf7-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* has-spinner でCF7が自動生成するローディングアイコン */
.wpcf7 .wpcf7-spinner {
  margin: 0 0 0 12px;
  width: 20px;
  height: 20px;
  border-radius: 0.5rem;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: wpcf7-spin 0.7s linear infinite;
  opacity: 1;
  visibility: visible;
}

@keyframes wpcf7-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ボタン全体を中央寄せしたい場合 */
.wpcf7 form p:has(.wpcf7-submit) {
  text-align: center;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-accordion__item {
  font-size: 16px;
  line-height: 28px;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.p-accordion__item:not(:first-child) {
  margin-top: 20px;
}

.p-accordion__head {
  cursor: pointer;
  transition: all 0.5s ease;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-weight: 600;
  color: #1a2e52;
  font-size: 0.95rem;
}
.p-accordion__head-text {
  flex: 1;
}
.p-accordion__head.js-open .p-accordion__icon-line--v {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-accordion__icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.p-accordion__icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
  transition: transform 0.3s ease;
}
.p-accordion__icon-line--h {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.p-accordion__icon-line--v {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.p-accordion__body {
  transition: all 0.5s ease;
  overflow: hidden;
  padding: 0px 24px;
  height: 0;
}
.p-accordion__body p {
  transition: all 0.5s ease;
  padding-bottom: 12px;
  font-size: 0.875rem;
}

.news-section {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

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

.news-item {
  border-bottom: 1px solid #e0e0e0;
}

.news-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 4px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s;
}

.news-link:hover {
  opacity: 0.6;
}

.news-date {
  width: 100px;
  color: #888;
  font-size: 14px;
  flex-shrink: 0;
}

.news-category {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #4a90d9;
  padding: 2px 10px;
  border-radius: 3px;
  margin-right: 12px;
  flex-shrink: 0;
}

.news-headline {
  flex: 1;
  font-size: 15px;
  min-width: 200px;
}

.news-more {
  text-align: right;
  margin-top: 2rem;
  font-size: 14px;
}

.news-more a {
  color: #4a90d9;
  text-decoration: none;
}

.news-more a:hover {
  text-decoration: underline;
}

.news-none {
  color: #888;
  font-size: 14px;
}

@media (max-width: 480px) {
  .news-link {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-date {
    margin-bottom: 4px;
  }
  .news-category {
    margin-bottom: 6px;
  }
}
.section-blog {
  background: #fff;
}

/* ── Blog Archive ── */
.blog-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive-item {
  margin: 0;
}

.blog-archive-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-archive-body {
  padding: 24px 0;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-archive-date {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #999;
}

.blog-archive-title {
  margin: 6px 0 0;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s ease;
}

.blog-archive-link:hover .blog-archive-title {
  color: #555;
}

.blog-archive-excerpt {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: #666;
}

.blog-archive-none {
  text-align: center;
  color: #999;
  padding: 60px 0;
}

/* ── Pagination ── */
.blog-archive-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.blog-archive-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-archive-pagination .page-numbers a,
.blog-archive-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-archive-pagination .page-numbers a:hover {
  background-color: #f0f0f0;
}

.blog-archive-pagination .page-numbers.current {
  background-color: #1a1a1a;
  color: #fff;
}

.blog-archive-pagination .page-numbers.dots {
  color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .blog-archive-title {
    font-size: 17px;
  }
}
/* ── Blog Single ── */
.blog-single-header {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.blog-single-title {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a1a1a;
}

.blog-single-date {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #999;
}

.blog-single-content {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.blog-single-content p {
  margin: 0 0 1.6em;
}

.blog-single-content h2 {
  margin: 2.4em 0 0.8em;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.blog-single-content h3 {
  margin: 2em 0 0.7em;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.6em 0;
}

.blog-single-content a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-single-content blockquote {
  margin: 1.8em 0;
  padding: 4px 20px;
  border-left: 3px solid #ddd;
  color: #666;
  font-style: italic;
}

.blog-single-content ul,
.blog-single-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}

.blog-single-content li {
  margin-bottom: 0.5em;
}

/* ── Prev / Next Navigation ── */
.blog-single-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #eaeaea;
  font-size: 14px;
}

.blog-single-nav-item {
  flex: 1;
  min-width: 0;
}

.blog-single-nav-next {
  text-align: right;
}

.blog-single-nav a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-single-nav a:hover {
  color: #1a1a1a;
}

/* ── Back Link ── */
.blog-single-back {
  margin-top: 40px;
  text-align: center;
}

.blog-single-back a {
  display: inline-block;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-single-back a:hover {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .blog-single-title {
    font-size: 22px;
  }
  .blog-single-nav {
    flex-direction: column;
  }
  .blog-single-nav-next {
    text-align: left;
  }
}
.single-page-content {
  color: var(--text, #1a2e52);
  font-size: 1rem;
  line-height: 1.9;
}
.single-page-content p {
  margin-bottom: 1.5em;
}
.single-page-content p:last-child {
  margin-bottom: 0;
}
.single-page-content h2 {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 3em 0 1.2em;
  padding-bottom: 0.6em;
  border-bottom: 2px solid var(--border);
}
.single-page-content h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: coral;
}
.single-page-content h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .single-page-content h2 {
    font-size: 1.3rem;
  }
}
.single-page-content h3 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5em 0 1em;
  padding-left: 1em;
}
.single-page-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 6px;
  height: 1.2em;
  background: coral;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .single-page-content h3 {
    font-size: 1.15rem;
  }
}
.single-page-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2em 0 0.8em;
  color: #1a2e52;
}
.single-page-content h4::before {
  content: "// ";
  color: coral;
  font-weight: 700;
}
.single-page-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.6em 0 0.6em;
  color: var(--text-sub, #555);
}
.single-page-content h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 1.4em 0 0.5em;
  color: var(--text-sub, #777);
  letter-spacing: 0.04em;
}
.single-page-content ul,
.single-page-content ol {
  margin: 0 0 1.5em;
  padding-left: 0.2em;
}
.single-page-content ul li,
.single-page-content ol li {
  position: relative;
  list-style: none;
  padding-left: 1.6em;
  margin-bottom: 0.7em;
  line-height: 1.8;
}
.single-page-content ul li:last-child,
.single-page-content ol li:last-child {
  margin-bottom: 0;
}
.single-page-content ul ul, .single-page-content ul ol,
.single-page-content ol ul,
.single-page-content ol ol {
  margin: 0.6em 0 0.6em;
}
.single-page-content ul > li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: coral;
}
.single-page-content ol {
  counter-reset: work-ol-counter;
}
.single-page-content ol > li {
  counter-increment: work-ol-counter;
}
.single-page-content ol > li::before {
  content: counter(work-ol-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3em;
  height: 1.3em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: coral;
  border-radius: 50%;
}
.single-page-content strong {
  font-weight: 700;
  color: #1a2e52;
}
.single-page-content a:not(.btn) {
  color: coral;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.single-page-content a:not(.btn):hover {
  opacity: 0.7;
}
.single-page-content blockquote {
  position: relative;
  margin: 2em 0;
  padding: 1.2em 1.5em;
  background: #f7f8fa;
  border-left: 4px solid coral;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-sub, #555);
  font-style: italic;
}
.single-page-content blockquote p:last-child {
  margin-bottom: 0;
}
.single-page-content table {
  width: 100%;
  margin: 2em 0;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.single-page-content table th, .single-page-content table td {
  padding: 0.8em 1em;
  border: 1px solid var(--border);
  text-align: left;
}
.single-page-content table th {
  background: #f7f8fa;
  font-weight: 700;
  color: #1a2e52;
}
.single-page-content table tr:nth-child(even) td {
  background: #fafbfc;
}
.single-page-content hr {
  margin: 2.5em 0;
  border: none;
  border-top: 1px solid var(--border);
}
.single-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5em 0;
}
.single-page-content code {
  padding: 0.15em 0.4em;
  background: #f0f1f3;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d6336c;
}
.single-page-content pre {
  padding: 1.2em;
  background: #1a2e52;
  color: #f0f1f3;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5em 0;
}
.single-page-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.section-404 {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .section-404 {
    padding: 5rem 0;
  }
}

.error-404-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-404-code {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.4em 0 0.6em;
  color: coral;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .error-404-code {
    font-size: 3.5rem;
  }
}

.error-404-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-sub, #555);
  margin-bottom: 2.5rem;
}

.error-404-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.error-404-btn-primary {
  background: coral;
  border-color: coral;
  color: #fff;
}
.error-404-btn-primary:hover {
  background: rgb(255, 97.1577142857, 39.2);
  border-color: rgb(255, 97.1577142857, 39.2);
}

.error-404-btn-outline {
  border-color: var(--border);
  color: var(--text, #1a2e52);
}
.error-404-btn-outline:hover {
  background: coral;
  border-color: coral;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
