@charset "UTF-8";
/* ========================================================================== 
   サービスページ共通スタイル
   既存ページへ影響させないため、すべて .hvl-service 配下へ限定する。
   ========================================================================== */

.hvl-service {
  color: #0E1620;
  background: #FFFFFF;
}

.hvl-service .hvl-service-hero {
  position: relative;
  overflow: hidden;
  padding: calc(72px + clamp(56px, 9vh, 100px)) 0 clamp(64px, 9vh, 100px);
  background: #FFFFFF;
}

.hvl-service .hvl-service-hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hvl-service .hvl-service-hero-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(14, 22, 32, .05);
}

.hvl-service .hvl-service-hero-lines span:nth-child(1) { left: 25%; }
.hvl-service .hvl-service-hero-lines span:nth-child(2) { left: 50%; }
.hvl-service .hvl-service-hero-lines span:nth-child(3) { left: 75%; }

.hvl-service .hvl-service-hero-word {
  position: absolute;
  right: -1.5%;
  top: 86px;
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(3.4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  color: rgba(14, 22, 32, .025);
  -webkit-text-stroke: 1px rgba(14, 22, 32, .18);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.hvl-service .hvl-service-hero-inner {
  position: relative;
  z-index: 1;
}

.hvl-service .hvl-service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 44px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #5A6876;
}

.hvl-service .hvl-service-breadcrumb a {
  color: #5A6876;
  text-decoration: none;
  transition: color .2s ease;
}

.hvl-service .hvl-service-breadcrumb a:hover,
.hvl-service .hvl-service-breadcrumb a:focus-visible {
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .78rem;
  line-height: 1.5;
  letter-spacing: .22em;
  color: #5A6876;
}

.hvl-service .hvl-service-label::before {
  width: 42px;
  height: 1px;
  flex: none;
  content: "";
  background: var(--ab, #00C2FF);
  box-shadow: 0 0 8px rgba(0, 194, 255, .6);
}

.hvl-service .hvl-service-hero h1 {
  max-width: 16em;
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 4.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: .005em;
  color: #0E1620;
}

.hvl-service .hvl-service-hero-lead {
  max-width: 48em;
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 2;
  color: #5A6876;
}

.hvl-service .hvl-service-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hvl-service .hvl-service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  box-sizing: border-box;
  padding: 17px 34px;
  border: 1.5px solid transparent;
  border-radius: 2px;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hvl-service .hvl-service-button--primary {
  background: var(--ab, #00C2FF);
  color: #04222E;
}

.hvl-service .hvl-service-button--primary:hover,
.hvl-service .hvl-service-button--primary:focus-visible {
  color: #04222E;
  box-shadow: 0 10px 36px rgba(0, 194, 255, .4);
  transform: translateY(-1px);
}

.hvl-service .hvl-service-button--secondary {
  background: #FFFFFF;
  border-color: rgba(14, 22, 32, .7);
  color: #0E1620;
}

.hvl-service .hvl-service-button--secondary:hover,
.hvl-service .hvl-service-button--secondary:focus-visible {
  border-color: var(--ab, #00C2FF);
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 0;
  background: #FFFFFF;
}

.hvl-service .hvl-service-section--gray { background: #F4F6F8; }
.hvl-service .hvl-service-section--border { border-top: 1px solid #DCE3E9; }

.hvl-service .hvl-service-section-word {
  position: absolute;
  right: -1%;
  top: 38px;
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(3.7rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(14, 22, 32, .018);
  -webkit-text-stroke: 1px rgba(14, 22, 32, .16);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.hvl-service .hvl-service-section-head {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.hvl-service .hvl-service-section-number {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 17px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-section-number::after {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--ab, #00C2FF);
}

.hvl-service .hvl-service-section-en {
  display: block;
  margin: 0 0 14px;
  font-family: 'Archivo', 'Noto Sans JP', sans-serif;
  font-size: clamp(1.9rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  color: #0E1620;
}

.hvl-service .hvl-service-section-head h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  color: #5A6876;
}

.hvl-service .hvl-service-section-head h2::before {
  width: 22px;
  height: 1px;
  flex: none;
  content: "";
  background: currentColor;
  opacity: .5;
}

.hvl-service .hvl-service-copy {
  max-width: 52em;
  margin: 0;
  font-size: .94rem;
  line-height: 2;
  color: #5A6876;
}

.hvl-service .hvl-service-copy + .hvl-service-copy { margin-top: 1.2em; }

/* サービスハブ */
.hvl-service .hvl-service-entrances {
  border-top: 1px solid #DCE3E9;
}

.hvl-service .hvl-service-entrance {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 5vw, 52px) 4px;
  border-bottom: 1px solid #DCE3E9;
  color: #0E1620;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.hvl-service .hvl-service-entrance:hover,
.hvl-service .hvl-service-entrance:focus-visible {
  background: #F8FAFC;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-entrance-number {
  font-family: 'Archivo', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(14, 22, 32, .05);
  -webkit-text-stroke: 1px rgba(14, 22, 32, .38);
}

.hvl-service .hvl-service-entrance-en {
  display: block;
  margin-bottom: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-entrance h3 {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
  color: #0E1620;
}

.hvl-service .hvl-service-entrance p {
  max-width: 52em;
  margin: 0;
  font-size: .88rem;
  line-height: 1.9;
  color: #5A6876;
}

.hvl-service .hvl-service-entrance-arrow {
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  color: var(--abd, #00719E);
}

/* 課題・領域 */
.hvl-service .hvl-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.hvl-service .hvl-service-card {
  position: relative;
  box-sizing: border-box;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid #DCE3E9;
  border-radius: 3px;
  background: #FFFFFF;
}

.hvl-service .hvl-service-card--line {
  padding-left: clamp(28px, 4vw, 42px);
}

.hvl-service .hvl-service-card--line::before {
  position: absolute;
  top: clamp(30px, 4vw, 42px);
  left: 0;
  width: 20px;
  height: 1px;
  content: "";
  background: var(--ab, #00C2FF);
}

.hvl-service .hvl-service-card-label {
  display: block;
  margin: 0 0 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .67rem;
  line-height: 1.6;
  letter-spacing: .16em;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-card h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  color: #0E1620;
}

.hvl-service .hvl-service-card p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.9;
  color: #5A6876;
}

.hvl-service .hvl-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hvl-service .hvl-service-list li {
  padding: 7px 11px;
  border: 1px solid #DCE3E9;
  border-radius: 2px;
  background: #F8FAFC;
  font-size: .74rem;
  line-height: 1.45;
  color: #33465A;
}

/* コンセプト */
.hvl-service .hvl-service-concept {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.hvl-service .hvl-service-concept-title {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.55;
  color: #0E1620;
}

.hvl-service .hvl-service-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.hvl-service .hvl-service-flow li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', 'Noto Sans JP', monospace;
  font-size: .73rem;
  letter-spacing: .06em;
  color: #33465A;
}

.hvl-service .hvl-service-flow li:not(:last-child)::after {
  content: "→";
  font-family: 'Archivo', sans-serif;
  color: var(--abd, #00719E);
}

/* プロセス */
.hvl-service .hvl-service-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 175px), 1fr));
  gap: 0;
  border: 1px solid #DCE3E9;
  border-radius: 3px;
  overflow: hidden;
  background: #FFFFFF;
}

@media (min-width: 881px) {
  .hvl-service .hvl-service-process--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hvl-service .hvl-service-process--eight {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hvl-service .hvl-service-process--nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 880px) {
  .hvl-service .hvl-service-process--six,
  .hvl-service .hvl-service-process--eight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hvl-service .hvl-service-process--nine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hvl-service .hvl-service-process-item {
  min-height: 150px;
  box-sizing: border-box;
  padding: 24px 22px;
  background: #FFFFFF;
  box-shadow: 1px 0 0 #DCE3E9, 0 1px 0 #DCE3E9;
}

.hvl-service .hvl-service-process-number {
  display: block;
  margin-bottom: 28px;
  font-family: 'Archivo', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 194, 255, .11);
  -webkit-text-stroke: 1px var(--ab, #00C2FF);
}

.hvl-service .hvl-service-process-item h3 {
  margin: 0;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.65;
  color: #0E1620;
}

/* 特徴・成果物 */
.hvl-service .hvl-service-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.hvl-service .hvl-service-value {
  padding-top: 22px;
  border-top: 1px solid #DCE3E9;
}

.hvl-service .hvl-service-value-number {
  display: block;
  margin-bottom: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 194, 255, .08);
  -webkit-text-stroke: 1px var(--ab, #00C2FF);
}

.hvl-service .hvl-service-value h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
}

.hvl-service .hvl-service-value p {
  margin: 0;
  font-size: .87rem;
  line-height: 1.9;
  color: #5A6876;
}

.hvl-service .hvl-service-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--ab, #00C2FF);
  background: #F8FAFC;
  font-size: .82rem;
  line-height: 1.9;
  color: #5A6876;
}

/* 事例・コラム導線 */
.hvl-service .hvl-service-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.hvl-service .hvl-service-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 132px;
  box-sizing: border-box;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid #DCE3E9;
  border-radius: 3px;
  background: #FFFFFF;
  color: #0E1620;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.hvl-service .hvl-service-related-link:hover,
.hvl-service .hvl-service-related-link:focus-visible {
  border-color: var(--ab, #00C2FF);
  color: var(--abd, #00719E);
  box-shadow: 0 10px 30px -22px rgba(0, 194, 255, .8);
}

.hvl-service .hvl-service-related-en {
  display: block;
  margin-bottom: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .67rem;
  letter-spacing: .16em;
  color: #8A98A6;
}

.hvl-service .hvl-service-related-title {
  display: block;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.55;
}

.hvl-service .hvl-service-related-arrow {
  flex: none;
  font-family: 'Archivo', sans-serif;
  color: var(--abd, #00719E);
}

/* FAQ */
.hvl-service .hvl-service-faq {
  border-top: 1px solid #DCE3E9;
}

.hvl-service .hvl-service-faq details {
  border-bottom: 1px solid #DCE3E9;
}

.hvl-service .hvl-service-faq summary {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 54px 24px 4px;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.75;
  color: #0E1620;
  cursor: pointer;
  list-style: none;
}

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

.hvl-service .hvl-service-faq summary::before {
  flex: none;
  content: "Q";
  font-family: 'Archivo', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-faq summary::after {
  position: absolute;
  top: 29px;
  right: 8px;
  width: 18px;
  height: 18px;
  content: "+";
  font-family: 'Archivo', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: var(--abd, #00719E);
}

.hvl-service .hvl-service-faq details[open] summary::after { content: "−"; }

.hvl-service .hvl-service-faq-answer {
  padding: 0 54px 26px 36px;
}

.hvl-service .hvl-service-faq-answer p {
  margin: 0;
  font-size: .88rem;
  line-height: 2;
  color: #5A6876;
}

/* CTA */
.hvl-service .hvl-service-cta {
  padding: clamp(58px, 9.5vw, 120px) 0;
  background: #F4F6F8;
}

.hvl-service .hvl-service-cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid var(--ab, #00C2FF);
  border-radius: 3px;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(0, 194, 255, .1), 0 24px 70px -40px rgba(0, 194, 255, .35);
}

.hvl-service .hvl-service-cta-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: .72rem;
  letter-spacing: .2em;
  color: #5A6876;
}

.hvl-service .hvl-service-cta-label::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--ab, #00C2FF);
}

.hvl-service .hvl-service-cta h2 {
  max-width: 20em;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.45;
  color: #0E1620;
}

.hvl-service .hvl-service-cta p:not(.hvl-service-cta-label) {
  max-width: 48em;
  margin: 0;
  font-size: .9rem;
  line-height: 2;
  color: #5A6876;
}

@media (max-width: 880px) {
  .hvl-service .hvl-service-entrance {
    grid-template-columns: 66px minmax(0, 1fr) auto;
  }

  .hvl-service .hvl-service-concept {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hvl-service .hvl-service-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hvl-service .hvl-service-section-number { padding-top: 0; }
}

@media (max-width: 640px) {
  .hvl-service .hvl-service-hero {
    padding-top: calc(72px + 48px);
    padding-bottom: 58px;
  }

  .hvl-service .hvl-service-hero-word {
    top: 92px;
    right: -4%;
    font-size: clamp(3rem, 18vw, 5.4rem);
  }

  .hvl-service .hvl-service-breadcrumb { margin-bottom: 34px; }
  .hvl-service .hvl-service-label { margin-bottom: 24px; letter-spacing: .16em; }

  .hvl-service .hvl-service-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hvl-service .hvl-service-button { width: 100%; }

  .hvl-service .hvl-service-grid,
  .hvl-service .hvl-service-related {
    grid-template-columns: 1fr;
  }

  .hvl-service .hvl-service-entrance {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .hvl-service .hvl-service-entrance-number { font-size: 2rem; }
  .hvl-service .hvl-service-entrance-arrow { display: none; }

  .hvl-service .hvl-service-process {
    grid-template-columns: 1fr;
  }

  .hvl-service .hvl-service-process-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 0;
    padding: 20px;
  }

  .hvl-service .hvl-service-process-number { margin: 0; }

  .hvl-service .hvl-service-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .hvl-service .hvl-service-flow li {
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #DCE3E9;
  }

  .hvl-service .hvl-service-flow li:not(:last-child)::after { content: "↓"; }

  .hvl-service .hvl-service-faq summary {
    padding: 21px 42px 21px 2px;
    font-size: .9rem;
  }

  .hvl-service .hvl-service-faq summary::after {
    top: 25px;
    right: 4px;
  }

  .hvl-service .hvl-service-faq-answer { padding: 0 8px 24px 30px; }
}

@media (max-width: 390px) {
  .hvl-service .hvl-service-card { padding: 22px 20px; }
  .hvl-service .hvl-service-card--line { padding-left: 28px; }
  .hvl-service .hvl-service-related-link { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hvl-service .hvl-service-button,
  .hvl-service .hvl-service-entrance,
  .hvl-service .hvl-service-related-link { transition: none; }
}
