/* ========== Variables ========== */
:root {
  --black: #1a1a1a;
  --dark: #222222;
  --gray-900: #2a2a2a;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-400: #aaaaaa;
  --gray-300: #cccccc;
  --gray-200: #e5e5e5;
  --gray-100: #f0f0f0;
  --white: #ffffff;
  --off-white: #fafafa;
  --accent: #0ABAB5;
  --font-en: "Outfit", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== Reset ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

::selection {
  background: var(--black);
  color: var(--white);
}

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

/* ========== Utility ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ========== Scroll Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease-out);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav .container-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo .slash {
  font-weight: 300;
  opacity: 0.3;
  margin: 0 6px;
}

.nav.on-dark .nav-logo {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), background 0.3s;
}

.nav-contact-btn:hover {
  transform: scale(1.08);
}

.nav-contact-btn svg {
  width: 16px;
  height: 16px;
}

/* ========== Hero ========== */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.hero-brand-img {
  width: clamp(200px, 40vw, 480px);
  height: auto;
  display: block;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero-sub {
  font-family: var(--font-en);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.45s forwards;
}

.hero-divider {
  width: 1px;
  height: 0;
  background: var(--gray-300);
  margin: 0 auto 40px;
  animation: growLine 0.8s var(--ease-out) 0.7s forwards;
}

.hero-copy {
  font-family: var(--font-jp);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 2;
  color: var(--gray-700);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.hero-copy strong {
  font-weight: 500;
  color: var(--black);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
}

.hero-scroll span {
  font-family: var(--font-en);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-400);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes growLine {
  from { height: 0; }
  to   { height: 48px; }
}

/* ========== Section Common ========== */
.section-light {
  background: var(--white);
  padding: clamp(80px, 12vw, 160px) 0;
}

.section-gray {
  background: var(--off-white);
  padding: clamp(80px, 12vw, 160px) 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
  padding: clamp(80px, 12vw, 160px) 0;
}

.section-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  max-width: 80px;
}

.section-dark .section-label { color: var(--accent); }
.section-dark .section-label::after { background: var(--accent); opacity: 0.3; }

.section-heading {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-heading-jp {
  font-family: var(--font-jp);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 24px;
}

.section-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 2;
  max-width: 560px;
}

.section-dark .section-body { color: var(--gray-400); }

/* ========== Philosophy ========== */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.philosophy-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 2.2;
}

.philosophy-text p + p { margin-top: 1.6em; }

.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pv-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.pv-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-300);
  padding-top: 4px;
}

.pv-item h4 {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.pv-item p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
}

.svc-card {
  border: 1px solid var(--gray-200);
  border-right: none;
  padding: clamp(28px, 3vw, 48px);
  background: var(--white);
  transition: box-shadow 0.5s var(--ease-out);
  position: relative;
}

.svc-card:last-child { border-right: 1px solid var(--gray-200); }
.svc-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.svc-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  padding: 3px 10px;
  margin-bottom: 28px;
  color: var(--gray-700);
}

.svc-title {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.svc-title-jp {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.svc-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.9;
}

/* ========== Structure ========== */
.structure-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin: 64px 0;
  padding: 48px 0;
}

.struct-entity {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: rgba(10, 186, 181, 0.04);
}

.struct-entity-name {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.struct-entity-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: gap 0.3s;
}

.struct-entity-link svg {
  width: 40px;
  height: 12px;
  transition: transform 0.3s;
}

.struct-entity-link:hover {
  gap: 16px;
}

.struct-entity-link:hover svg {
  transform: translateX(4px);
}

.struct-entity-role {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.9;
}

.struct-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
}

.struct-line {
  width: 64px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.struct-brand-label {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.structure-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white);
  line-height: 2.1;
}

/* ========== Strengths ========== */
.strengths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--gray-200);
}

.str-item {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.str-item:nth-child(even) {
  padding: 40px 0 40px 32px;
  border-left: 1px solid var(--gray-200);
}

.str-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.str-title {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.str-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.9;
}

/* ========== YouTube ========== */
.yt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 28px;
}

.yt-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  white-space: nowrap;
  flex-shrink: 0;
}

.yt-channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.yt-channel-btn .yt-icon { width: 18px; height: 18px; }
.yt-channel-btn .yt-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}
.yt-channel-btn:hover .yt-arrow { transform: translateX(3px); }

.yt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.yt-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  color: var(--gray-700);
  transition: all 0.3s;
}

.yt-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.yt-filter-btn.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

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

.yt-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.yt-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.yt-thumb {
  aspect-ratio: 16 / 9;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.yt-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 184, 154, 0.08), rgba(0, 0, 0, 0.1));
}

.yt-play-sm {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out);
}

.yt-card:hover .yt-play-sm {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.08);
}

.yt-play-sm svg {
  width: 16px;
  height: 16px;
  fill: white;
  margin-left: 2px;
}

.yt-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.yt-card-info { padding: 20px; }

.yt-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid var(--gray-300);
  border-radius: 2px;
  padding: 2px 8px;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.yt-card-title {
  font-family: var(--font-jp);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.yt-card-meta {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* ========== Contact ========== */
.contact {
  text-align: center;
  padding: clamp(100px, 14vw, 200px) 0;
  background: var(--dark);
  color: var(--white);
}

.contact-heading {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-bottom: 48px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 44px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.contact-btn:hover svg { transform: translateX(4px); }

/* ========== Footer ========== */
footer {
  background: var(--black);
  color: var(--gray-500);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
}

.footer-operator {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--gray-700);
  margin-top: 6px;
  text-align: right;
}

/* ========== Contact Form 7 Override ========== */
.wpcf7-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.wpcf7-form p {
  margin-bottom: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-jp);
  font-size: 0.88rem;
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.wpcf7-form textarea { min-height: 140px; resize: vertical; }

.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"],
.wpcf7-form button[type="button"],
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 44px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  margin-top: 8px;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover,
.wpcf7-form button[type="button"]:hover,
.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .philosophy-grid,
  .strengths-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .yt-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .svc-card {
    border-right: 1px solid var(--gray-200);
    border-bottom: none;
  }
  .svc-card:last-child { border-bottom: 1px solid var(--gray-200); }
  .structure-visual { grid-template-columns: 1fr; gap: 24px; }
  .struct-connector {
    padding: 12px 0;
    flex-direction: row;
  }
  .struct-line { width: 1px; height: 32px; }
  .str-item:nth-child(even) { padding: 40px 0; border-left: none; }
  .str-item { padding: 40px 0; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-links { display: none; }
}


/* =============================================
   CF7 確認・完了画面
   ============================================= */

/* 確認画面 */
.cf7-confirm {
  max-width: 640px;
  margin: 0 auto;
}
.cf7-confirm__lead {
  text-align: center;
  margin-bottom: 32px;
  color: var(--color-text-secondary, #666);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.cf7-confirm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.cf7-confirm__table th,
.cf7-confirm__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200, #e5e5e5);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.cf7-confirm__table th {
  width: 36%;
  color: var(--color-text-secondary, #666);
  font-weight: 400;
  white-space: nowrap;
}
.cf7-confirm__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.cf7-back-btn,
.cf7-send-btn {
  padding: 14px 40px;
  border: none;
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cf7-back-btn {
  background: transparent;
  border: 1px solid var(--gray-400, #999);
  color: var(--color-text-secondary, #666);
}
.cf7-send-btn {
  background: var(--color-text, #1a1a1a);
  color: #fff;
}
.cf7-back-btn:hover,
.cf7-send-btn:hover {
  opacity: 0.7;
}

/* 完了画面 */
.cf7-complete {
  text-align: center;
  padding: 80px 20px;
}
.cf7-complete__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--color-text, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.cf7-complete__icon svg {
  width: 24px;
  height: 24px;
}
.cf7-complete__title {
  font-family: var(--font-en, sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.cf7-complete__body {
  color: var(--color-text-secondary, #666);
  font-size: 0.9rem;
  line-height: 2;
}


/* =============================================
   ページトップボタン
   ============================================= */
.pagetop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(10, 186, 181, 0.3);
}
.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pagetop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 186, 181, 0.4);
}
.pagetop svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
