@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap");

:root {
  --blue: #003cd8;
  --blue-2: #0253fd;
  --navy: #0e2344;
  --text: #31435b;
  --muted: #6b7b90;
  --line: #d7e5ff;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(0, 60, 216, 0.10);
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--white);
  letter-spacing: 0.02em;
}

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

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

/* =========================
   header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 229, 255, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
}

.site-logo img {
  width: 138px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue-2);
  border-radius: 999px;
  transition: width 0.24s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-contact,
.header-cta,
.site-header .global-nav a[href="#contact"],
.site-header .global-nav a[href*="contact"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 60, 216, 0.24);
}

.header-contact::after,
.header-cta::after,
.site-header .global-nav a[href="#contact"]::after,
.site-header .global-nav a[href*="contact"]::after {
  display: none;
}

.menu-button {
  display: none;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* =========================
   FV
========================= */

.fv {
  min-height: 100vh;
  padding-top: var(--header-height);
  background-image: url("../images/fv-bg-pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.fv-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.fv-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 54%);
  padding: 40px 0 60px;
}

.fv-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 3.5vw, 60px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.015em;
}

.fv-title span {
  display: block;
}

.fv-title .accent {
  color: var(--blue);
}

.fv-lead {
  margin: 26px 0 0;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 2;
}

/* proof badge */
.fv-proof {
  position: absolute;
  top: -122px;
  left: 86%;
  z-index: 3;
  transform: translateX(-50%);
}

.proof-badge {
  width: 146px;
  height: 146px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle at 30% 28%, #ffcf57 0%, #ff9d1c 28%, #ff7a00 68%, #f06700 100%);
  box-shadow:
    0 18px 34px rgba(240, 103, 0, 0.28),
    inset 0 2px 2px rgba(255, 255, 255, 0.45),
    inset 0 -3px 10px rgba(184, 74, 0, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.72);
}

.proof-year {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.proof-badge strong {
  display: block;
  color: #ffffff;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.proof-unit {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

/* =========================
   about
========================= */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(2, 83, 253, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-section::before {
  position: absolute;
  top: 72px;
  left: -140px;
  width: 420px;
  height: 420px;
  content: "";
  background: radial-gradient(circle, rgba(2, 83, 253, 0.07), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(2, 83, 253, 0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: 76px;
  padding: 110px 0;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-label {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
}

.about-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.about-body {
  margin-top: 32px;
}

.about-text {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 178px;
  min-height: 52px;
  margin-top: 34px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 60, 216, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 60, 216, 0.28);
}

.about-button span {
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-visual::before {
  position: absolute;
  top: 34px;
  right: -24px;
  width: 92%;
  height: 86%;
  content: "";
  background:
    radial-gradient(circle at 72% 26%, rgba(2, 83, 253, 0.10), transparent 34%),
    linear-gradient(145deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.45));
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  border-radius: 36px;
  pointer-events: none;
}

.about-visual::after {
  position: absolute;
  top: 26px;
  right: 12px;
  width: 124px;
  height: 124px;
  content: "";
  background-image: radial-gradient(rgba(2, 83, 253, 0.20) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.38;
  pointer-events: none;
}

.about-photo {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  width: min(520px, 100%);
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  border-radius: 32px;
  transform: translateY(-50%);
  filter: drop-shadow(0 24px 48px rgba(0, 60, 216, 0.12));
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.about-photo::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 42%);
  pointer-events: none;
}

.about-photo::after {
  position: absolute;
  left: -20px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  content: "";
  background: rgba(255, 208, 0, 0.20);
  border-radius: 50%;
  pointer-events: none;
}

/* =========================
   company
========================= */

.company-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: #ffffff;
}

.company-section::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 34%;
  content: "";
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.14) 42%,
      rgba(255, 255, 255, 0.72) 74%,
      rgba(255, 255, 255, 0.96) 88%,
      #ffffff 100%
    ),
    url("../images/company-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
  pointer-events: none;
}

.company-section::after {
  position: absolute;
  right: -180px;
  top: 60px;
  width: 460px;
  height: 460px;
  content: "";
  background: radial-gradient(circle, rgba(2, 83, 253, 0.07), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.company-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}

.company-content {
  grid-column: 2;
  max-width: 860px;
}

.company-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.35;
}

.company-list {
  margin: 42px 0 0;
  padding: 0;
}

.company-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(207, 224, 255, 0.95);
}

.company-row:first-child {
  border-top: 1px solid rgba(207, 224, 255, 0.95);
}

.company-row dt {
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.company-row dd {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.company-row dd span {
  color: #73839b;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.company-action {
  margin-top: 34px;
  text-align: right;
}

.company-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 52px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 60, 216, 0.22);
}

.company-button span {
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
}

/* =========================
   contact
========================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #0253fd 0%, #003cd8 100%);
}

.contact-section::before {
  position: absolute;
  right: 12%;
  top: 38px;
  width: 126px;
  height: 126px;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
}

.contact-section::after {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-card {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-label {
  color: rgba(255, 255, 255, 0.82);
}

.contact-title,
.contact-card .contact-title,
.contact-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.35;
}

.contact-text {
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.contact-action {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  text-align: center;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 250px;
  min-height: 58px;
  padding: 0 34px;
  color: var(--blue);
  background: #ffffff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(0, 35, 130, 0.22);
}

.contact-button span {
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
}

/* =========================
   values
========================= */

.values-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background: #eef6ff;
}

.values-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.values-heading {
  text-align: center;
}

.values-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.value-card {
  position: relative;
  min-height: 250px;
  padding: 30px 24px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(207, 224, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 60, 216, 0.07);
}

/* 番号は非表示 */
.value-card::after {
  content: none;
}

.value-icon {
  width: 120px;
  height: 105px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
}

.value-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.value-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.value-card p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
}

/* =========================
   service
========================= */

.service-section {
  position: relative;
  padding: 112px 0 60px;
  background: #ffffff;
}

.service-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.service-stage {
  position: relative;
  overflow: hidden;
  padding: 64px 56px 56px;
  border-radius: 36px;
  background: #eef6ff;
}

.service-stage-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/service-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.service-stage-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.service-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 2.8vw, 52px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
}

.service-title-emphasis {
  color: var(--blue-2);
  background: linear-gradient(
    transparent 68%,
    rgba(255, 220, 40, 0.72) 68%
  );
}

.service-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 53px 34px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(207, 224, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0, 60, 216, 0.08);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.service-card-number {
  position: absolute;
  top: 20px;
  left: 31px;
  color: rgba(2, 83, 253, 0.08);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-recommend {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  margin-top: 28px;
  padding: 10px 16px;
  color: #ffffff;
  background: #3560af;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  min-height: 96px;
  color: var(--navy);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 900;
  line-height: 1.45;
}

.service-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.service-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--blue-2);
  border-radius: 50%;
}

/* =========================
   profile
========================= */

.profile-section {
  position: relative;
  padding: 20px 0 110px;
  background: #ffffff;
}

.profile-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.profile-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: 48px;
  min-height: 420px;
  padding: 38px 72px 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("../images/profile-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid rgba(207, 224, 255, 0.95);
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0, 60, 216, 0.08);
}

.profile-card::before {
  position: absolute;
  left: -40px;
  bottom: -20px;
  width: 620px;
  height: 230px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='620' height='230' viewBox='0 0 620 230' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.5' stroke='%230253FD' stroke-width='1'%3E%3Cpath d='M-40 130C50 70 120 70 210 130C300 190 370 190 460 130C550 70 620 70 700 130'/%3E%3Cpath d='M-40 145C50 85 120 85 210 145C300 205 370 205 460 145C550 85 620 85 700 145'/%3E%3Cpath d='M-40 160C50 100 120 100 210 160C300 220 370 220 460 160C550 100 620 100 700 160'/%3E%3Cpath d='M-40 175C50 115 120 115 210 175C300 235 370 235 460 175C550 115 620 115 700 175'/%3E%3Cpath d='M-40 190C50 130 120 130 210 190C300 250 370 250 460 190C550 130 620 130 700 190'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.22;
  pointer-events: none;
}

.profile-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 26px;
}

.profile-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.profile-person {
  margin-top: 30px;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: #ffffff;
  background: #3560af;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.profile-name {
  display: block;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.profile-text {
  margin: 30px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 52px;
  margin-top: 32px;
  padding: 0 28px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(0, 60, 216, 0.22);
}

.profile-button span {
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
}

.profile-visual {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  justify-content: center;
}

.profile-visual img {
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
}

/* =========================
   voice
========================= */

.voice-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(2, 83, 253, 0.08), transparent 18%),
    radial-gradient(circle at 92% 10%, rgba(2, 83, 253, 0.08), transparent 20%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.voice-section::before {
  position: absolute;
  top: 56px;
  right: 12%;
  width: 120px;
  height: 120px;
  content: "";
  background-image: radial-gradient(rgba(2, 83, 253, 0.16) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.35;
  pointer-events: none;
}

.voice-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.voice-heading {
  text-align: center;
}

.voice-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.voice-title span {
  color: var(--blue-2);
  background: linear-gradient(
    transparent 66%,
    rgba(255, 220, 40, 0.72) 66%
  );
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.voice-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 36px 28px 30px;
  background: #ffffff;
  border: none;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 60, 216, 0.08);
}

.voice-icon {
  position: relative;
  z-index: 1;
  width: 160px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: #f3f7ff;
  border: 6px solid #eef6ff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 60, 216, 0.08);
}

.voice-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-text {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.voice-text span {
  color: var(--blue-2);
  font-weight: 900;
}


/* =========================
   footer
========================= */

.site-footer {
  padding: 44px 0 34px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.footer-logo img {
  width: 132px;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 12px;
}

/* =========================
   responsive
========================= */

@media (max-width: 1100px) {
  .fv-proof {
    left: 48%;
    top: 92px;
  }

  .proof-badge {
    width: 132px;
    height: 132px;
  }

  .proof-badge strong {
    font-size: 42px;
  }

  .proof-unit {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .global-nav {
    gap: 18px;
    font-size: 12px;
  }

  .site-logo img {
    width: 126px;
  }

  .header-contact,
  .header-cta,
  .site-header .global-nav a[href="#contact"],
  .site-header .global-nav a[href*="contact"] {
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  .fv-copy {
    width: min(640px, 60%);
  }

  .fv-title {
    font-size: clamp(34px, 4.8vw, 50px);
  }

  .fv-lead br {
    display: none;
  }

  .fv-proof {
    left: 50%;
    top: 94px;
  }

  .proof-badge {
    width: 120px;
    height: 120px;
  }

  .proof-year {
    font-size: 12px;
  }

  .proof-badge strong {
    font-size: 38px;
  }

  .proof-unit {
    font-size: 15px;
  }

  .about-section {
    padding: 88px 0 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 0;
  }

  .about-content {
    max-width: 720px;
  }

  .about-text br {
    display: none;
  }

  .about-visual {
    width: 100vw;
    max-width: none;
    min-height: auto;
    margin-top: 34px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .about-visual::before {
    display: none;
  }

  .about-visual::after {
    top: 12px;
    right: 28px;
    width: 86px;
    height: 86px;
    background-size: 10px 10px;
    opacity: 0.22;
  }

  .about-photo {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    overflow: hidden;
    clip-path: none;
    border-radius: 0;
    transform: none;
    filter: none;
  }

  .about-photo img {
    width: 100%;
    aspect-ratio: 3 / 3;
    object-fit: cover;
    object-position: center 74%;
    transform: none;
  }

  .about-photo::before {
    background:
      linear-gradient(90deg, rgba(247, 251, 255, 0.18), transparent 32%, transparent 68%, rgba(247, 251, 255, 0.12)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 38%, transparent 78%, rgba(247, 251, 255, 0.16));
  }

  .about-photo::after {
    left: 24px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    background: rgba(255, 208, 0, 0.16);
  }

  .values-section {
    padding: 88px 0;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-section {
    padding: 88px 0 30px;
  }

  .service-stage {
    padding: 52px 28px 32px;
    border-radius: 28px;
  }

  .service-stage-copy {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .service-title {
    font-size: clamp(30px, 5vw, 42px);
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 48px 26px 30px;
    border-radius: 22px;
  }

  .service-card-number {
    top: 16px;
    left: 22px;
    font-size: 64px;
  }

  .service-recommend {
    margin-top: 24px;
    padding: 9px 15px;
    border-radius: 11px;
    font-size: 12.5px;
  }

  .service-card h3 {
    min-height: auto;
    margin-top: 7px;
    font-size: 28px;
  }

  .service-list {
    margin-top: 14px;
    gap: 10px;
  }

  .service-list li {
    font-size: 14px;
    line-height: 1.75;
  }

  .profile-section {
  padding: 20px 0 88px;
}

.profile-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  align-items: end;
  gap: 28px;
  min-height: 400px;
  padding: 42px 40px 0;
  border-radius: 30px;
  background-position: center center;
}

.profile-copy {
  padding: 5px 0 40px;
  align-self: center;
}

.profile-title {
  font-size: clamp(24px, 3.2vw, 30px);
}

.profile-person {
  margin-top: 24px;
}

.profile-badge {
  min-height: 30px;
  padding: 0 14px;
  font-size: 12.5px;
}

.profile-name {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 56px);
}

.profile-text {
  max-width: 560px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.9;
}

.profile-text br {
  display: none;
}

.profile-button {
  min-width: 210px;
  min-height: 50px;
  margin-top: 26px;
  font-size: 13.5px;
}

.profile-visual {
  justify-content: center;
}

.profile-visual img {
  width: min(280px, 100%);
}

.voice-section {
  padding: 88px 0;
}

.voice-inner {
  width: min(1180px, calc(100% - 32px));
}

.voice-title {
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.5;
}

.voice-list {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

.voice-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 28px;
  min-height: auto;
  padding: 30px 32px;
  border-radius: 26px;
}

.voice-icon {
  width: 132px;
  margin: 0;
}

.voice-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
}

.company-section {
    padding: 88px 0;
  }

  .company-section::before {
    width: 35%;
    background-position: left center;
    background-image:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.82) 72%,
        #ffffff 100%
      ),
      url("../images/company-bg.png");
  }

  .company-inner {
    min-height: 440px;
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }

  .company-title {
    font-size: 36px;
  }

  .company-list {
    margin-top: 34px;
  }

  .company-row {
    grid-template-columns: 110px 1fr;
    gap: 22px;
    padding: 22px 0;
  }

  .company-row dd {
    font-size: 15px;
  }

  .contact-section {
    padding: 88px 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    width: min(100% - 28px, 1180px);
    height: var(--header-height);
  }

  .site-logo img {
    width: 118px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    margin-left: auto;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-open .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    z-index: 101;
    display: none;
    width: 100%;
    padding: 24px 28px 30px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(215, 229, 255, 0.95);
    box-shadow: 0 20px 44px rgba(0, 60, 216, 0.10);
    backdrop-filter: blur(16px);
  }

  .site-header.is-open .global-nav {
    display: grid;
    gap: 6px;
  }

  .global-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 4px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    border-bottom: 1px solid rgba(215, 229, 255, 0.72);
  }

  .global-nav a::after {
    display: none;
  }

.global-nav a:nth-last-child(2) {
    border-bottom: none;
  }

  .site-header .global-nav a[href="#contact"],
  .site-header .global-nav a[href*="contact"] {
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-2), var(--blue));
    border-bottom: none;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 60, 216, 0.22);
  }

  .header-contact,
  .header-cta {
    display: none;
  }



  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .fv {
    min-height: auto;
    background-image: url("../images/fv-bg-sp.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .fv-inner {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    align-items: flex-start;
  }

  .fv-copy {
    width: 100%;
    padding: 52px 0 420px;
  }

  .fv-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .fv-lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.9;
  }

  .fv-proof {
    position: static;
    margin-top: 24px;
    transform: none;
  }

  .proof-badge {
    width: 118px;
    height: 118px;
  }

  .proof-year {
    font-size: 12px;
  }

  .proof-badge strong {
    font-size: 36px;
  }

  .proof-unit {
    font-size: 14px;
  }

  .about-section {
    padding: 72px 0;
  }

  .about-inner {
    width: min(100% - 28px, 1180px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-content {
    display: contents;
  }

  .about-copy {
    order: 1;
    width: 100%;
  }

  .about-visual {
    order: 2;
    width: 100vw;
    max-width: none;
    min-height: auto;
    margin-top: 26px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .about-body {
    order: 3;
    width: 100%;
    margin-top: 28px;
  }

  .section-label {
    font-size: 11px;
  }

  .about-title {
    font-size: 30px;
  }

  .about-visual::before {
    display: none;
  }

  .about-visual::after {
    top: 10px;
    right: 18px;
    width: 76px;
    height: 76px;
    background-size: 10px 10px;
    opacity: 0.24;
  }

  .about-photo {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    overflow: hidden;
    clip-path: none;
    border-radius: 0;
    transform: none;
    filter: none;
  }

  .about-photo img {
    width: 100%;
    aspect-ratio: 13 / 12;
    object-fit: cover;
    object-position: center 57%;
    transform: none;
  }

  .about-photo::before {
    background:
      linear-gradient(90deg, rgba(247, 251, 255, 0.12), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 44%);
  }

  .about-photo::after {
    left: 16px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    background: rgba(255, 208, 0, 0.18);
  }

  .about-text {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.95;
  }

  .about-button {
    width: 100%;
    min-height: 52px;
    margin-top: 28px;
  }

  .values-section {
    padding: 72px 0;
  }

  .values-inner {
    width: min(100% - 28px, 1180px);
  }

  .values-heading {
    text-align: left;
  }

  .values-title {
    font-size: 28px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .value-card {
    min-height: auto;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .value-icon {
    width: 58px;
    height: 58px;
    margin: 0;
    grid-row: span 2;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .value-icon img {
    width: 70px;
    height: 55px;
    object-fit: contain;
  }

  .value-card h3 {
    font-size: 17px;
  }

  .value-card p {
    margin-top: 8px;
    font-size: 13.5px;
  }

.service-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 40px;
    background-image: url("../images/service-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: #ffffff;
  }

  /* 下側を自然に白へフェード */
  .service-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.48) 40%,
      rgba(255, 255, 255, 0.82) 72%,
      #ffffff 100%
    );
    z-index: 0;
  }

  .service-inner {
    position: relative;
    z-index: 1;
    width: min(100% - 28px, 1180px);
  }

  .service-stage {
    padding: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }

  .service-stage-bg {
    display: none;
  }

  .service-stage-copy {
    margin-bottom: 28px;
    text-align: left;
  }

  .service-title {
    font-size: 28px;
    line-height: 1.45;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 42px 20px 24px;
    border-radius: 20px;
  }

  .service-card-number {
    top: 14px;
    left: 18px;
    font-size: 54px;
  }

  .service-recommend {
    margin-top: 22px;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.65;
  }

  .service-card h3 {
    min-height: auto;
    margin-top: 9px;
    font-size: 22px;
    line-height: 1.45;
  }

  .service-list {
    margin-top: 18px;
    gap: 9px;
  }

  .service-list li {
    padding-left: 22px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .service-list li::before {
    top: 0.68em;
    width: 9px;
    height: 9px;
  }

  .profile-section {
  padding: 30px 0 72px;
}

.profile-inner {
  width: min(100% - 28px, 1180px);
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-height: auto;
  padding: 38px 22px 0;
  border-radius: 24px;
  background-position: center top;
  background-size: cover;
}

.profile-copy {
  display: contents;
}

.profile-copy .section-label {
  order: 1;
  width: 100%;
  text-align: left;
}

.profile-title {
  order: 2;
  width: 100%;
  margin-top: 0;
  font-size: 24px;
  line-height: 1.4;
  text-align: left;
}

.profile-person {
  order: 3;
  width: 100%;
  margin-top: 22px;
  text-align: left;
}

.profile-badge {
  min-height: 30px;
  padding: 0 13px;
  font-size: 12px;
}

.profile-name {
  margin-top: 7px;
  font-size: 40px;
  line-height: 1.15;
  text-align: left;
}

.profile-text {
  order: 4;
  width: 100%;
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.profile-text br {
  display: none;
}

.profile-visual {
  order: 5;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.profile-visual img {
  width: min(250px, 78%);
}

.profile-button {
  order: 6;
  width: 100%;
  min-width: auto;
  min-height: 52px;
  margin-top: 0px;
  margin-bottom: 30px;
  font-size: 14px;
}

.voice-section {
  padding: 72px 0;
}

.voice-inner {
  width: min(100% - 28px, 1180px);
}

.voice-heading {
  text-align: left;
}

.voice-title {
  font-size: 28px;
  line-height: 1.5;
}


.voice-list {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 30px;
}

.voice-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: start;
  gap: 14px;
  min-height: auto;
  padding: 22px 18px;
  border-radius: 22px;
}

.voice-icon {
  width: 82px;
  margin: 0;
  border-width: 5px;
}

.voice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}

.voice-note {
  margin-top: 18px;
  font-size: 11.5px;
  line-height: 1.8;
  text-align: left;
}

.company-section {
    padding: 72px 0;
  }

  .company-section::before {
    top: -50px;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 260px;
    background-image:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.46) 58%,
        #ffffff 100%
      ),
      url("../images/company-bg.png");
    background-position: center center;
    background-size: cover;
  }

  .company-section::after {
    display: none;
  }

  .company-inner {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    display: block;
    padding-top: 180px;
  }

  .company-content {
    max-width: 100%;
  }

  .company-title {
    font-size: 30px;
  }

  .company-list {
    margin-top: 30px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 0;
  }

  .company-row:last-child {
  border-bottom: none;
}

  .company-row dt {
    font-size: 13px;
  }

  .company-row dd {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .company-action {
    margin-top: 30px;
    text-align: left;
  }

  .company-button {
    width: 100%;
    min-width: auto;
  }

  .contact-section {
    padding: 72px 0;
  }

  .contact-inner {
    width: min(100% - 28px, 1180px);
  }

  .contact-section::before {
    right: 18px;
    top: 22px;
    width: 86px;
    height: 86px;
    background-size: 10px 10px;
    opacity: 0.32;
  }

  .contact-card {
    max-width: 100%;
    text-align: center;
  }

  .contact-title,
  .contact-card .contact-title,
  .contact-section h2 {
    font-size: 30px;
  }

  .contact-text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-text br {
    display: none;
  }

  .contact-action {
    margin-top: 28px;
  }

  .contact-button {
    width: 100%;
    min-width: auto;
    min-height: 54px;
    font-size: 14px;
  }

}