@charset "UTF-8";
:root {
  --bg: #fff;
  --bg2: #f1efe9;
  --sand: #f6f0d6;
  --dark: #2f2f2f;
  --text: #0f0f10;
  --muted: rgba(15, 15, 16, 0.68);
  --line: rgba(15, 15, 16, 0.12);
  --white: #ffffff;
  --accent: #f2c014;
  --radius: 18px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  --max: 1120px;
  --headerH: 76px;
  --fade-h: 120px;
  --font-title: 16px;
  --font-headline: 32px;
  --font-lead: 18px;
  --font-body: 12px;
  --font-btn: 13px;
  --weight-normal: 400;
  --weight-bold: 700;
  --line-height-tight: 1.3;
  --line-height-normal: 1.7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

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

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

/* base */
html {
  overflow-x: hidden;
  /* アンカーリンク移動時に固定ヘッダー分をオフセット */
  scroll-padding-top: var(--headerH);
}

body {
  color: var(--text);
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", Segoe UI, Roboto, Arial, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

p {
  line-height: 1.9;
  margin: 0 0 12px;
}

.sp, .nav__menuSp {
  display: none;
}

.pc {
  display: block;
}

.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-end {
  text-align: end !important;
}

.t-nowrap {
  white-space: nowrap !important;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.l-container {
  width: min(var(--max), 100% - 48px);
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(246, 246, 243, 0.06);
  backdrop-filter: blur(10px);
  height: var(--headerH);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 16px;
}
.header__inner .header__brand {
  margin-right: auto;
}

.logo {
  width: auto;
  height: 24px;
}

.logo--small {
  font-size: 12px;
  opacity: 0.9;
}

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

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.nav__toggleLine {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 2px;
}

.nav__menu {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__link {
  font-size: 13px;
  color: rgba(15, 15, 16, 0.8);
  padding: 8px 6px;
  border-radius: 10px;
}

.nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav__link.is-active {
  color: var(--text);
  font-weight: 600;
}

.header__cta {
  white-space: nowrap;
}

.footer {
  background: #3a3a3a;
  color: #fff;
  padding: 54px 0;
  position: relative;
  z-index: 0;
  min-height: 440px;
  display: flex;
  align-items: center;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 56px;
  align-items: center;
}

/* 左 */
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 260px;
  margin: 0 0 0 auto;
}

.footer__logoImg {
  height: auto;
  width: 260px;
  display: block;
}

.footer__address {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

/* 中央メニュー */
.footer__menu {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 auto;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 160px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 10px;
}

.footer__link:hover {
  opacity: 0.9;
}

.footer__linkIcon {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

/* 右 */
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
}

.footer__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 48px 52px;
  align-items: center;
}

.footer__service {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer__service img {
  display: block;
  height: 18px;
  width: auto;
}

.footer__service .footer__ext {
  height: 18px;
  width: 18px;
  opacity: 0.8;
}

.footer__service:hover {
  opacity: 0.92;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

/* レスポンシブ（フッター専用） */
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .footer__right {
    align-items: flex-start;
  }
  .footer__services {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__services {
    grid-template-columns: 1fr;
  }
}
.footer__menu.sp {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 40px 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  max-width: fit-content;
  max-height: 40px;
  min-width: 160px;
  text-align: center;
  position: relative;
}
.btn__icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #fff;
}
.btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 6px solid #111;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translate(-40%, -50%);
}

.btn.btn--secondary {
  color: var(--text);
}
.btn.btn--secondary .btn__icon {
  background: var(--accent);
}
.btn.btn--secondary .btn__icon::after {
  border-left-color: var(--text);
}

.btn:active {
  transform: translateY(1px);
}

.btn--pill {
  border-radius: 999px;
}

.btn--primary {
  background: var(--accent);
  border-color: rgba(0, 0, 0, 0.05);
}

.btn--primary:hover {
  filter: brightness(0.98);
}

.btn--secondary {
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.05);
}

.btn--secondary:hover {
  filter: brightness(0.98);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.85);
}

.sectionHead {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sectionHead__title {
  font-size: 24px;
  margin: 0px 0 64px 0;
  line-height: 1.6em;
}

.sectionHead__headline {
  position: relative;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0;
  padding-left: 50px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.sectionHead__headline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  bottom: -30px;
  width: 1px;
  background: var(--text);
}

.sectionHead__lead {
  margin: 0;
  color: rgba(15, 15, 16, 0.75);
  text-align: center;
  font-size: clamp(14px, 3.6vw, 28px);
  font-weight: bold;
}

.sectionHead__description {
  margin: 0;
  color: rgba(15, 15, 16, 0.75);
  font-size: clamp(14px, 3.6vw, 24px);
  padding-left: 55px;
  line-height: 1.8;
  max-width: 600px;
}

.sectionHead--split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 18px;
  padding-block: clamp(16px, 3vw, 40px);
  align-items: stretch;
}

.sectionHead__topAlign {
  grid-column: 1;
  grid-row: 1;
}

.sectionHead__bottomAlign {
  grid-row: 2;
  grid-column: 2;
}

.sectionHead--onDark .sectionHead__sub {
  color: rgba(255, 255, 255, 0.62);
}

.sectionHead__rightBox .sectionHead__lead {
  text-align: start;
}
.sectionHead__rightBox .card--text {
  margin-top: 50px;
}
.sectionHead__rightBox .card--text .btn {
  margin-top: 20px;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

.grid2--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.grid2__spacer {
  min-width: 100%;
}

.mediaPh__box {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card--text {
  margin: 0 0 0 auto;
  padding-left: 20%;
}
.card--text p {
  white-space: nowrap;
}

/* 初期：表示 */
.videoStage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.videoStage__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero {
  min-height: calc(100svh - var(--headerH));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
}

/* 背景レイヤー */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* 動画本体 */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 上に乗せる薄いフィルター（任意） */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.9) 100%);
}

/* コンテンツ */
.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.08), transparent 70%) 12% 18%/520px 520px no-repeat, radial-gradient(closest-side, rgba(242, 192, 20, 0.25), transparent 68%) 74% 12%/520px 520px no-repeat, radial-gradient(closest-side, rgba(0, 0, 0, 0.06), transparent 72%) 60% 70%/700px 700px no-repeat;
  filter: blur(0.2px);
}

.hero__kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 15, 16, 0.65);
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(38px, 4vw, 64px);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  transform: skewX(-20deg);
  text-align: center;
}

.hero__scroll {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 60;
}

.hero__scrollBtn {
  width: 180px;
  height: 180px;
  border-radius: 9999px;
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 0px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14), 0 10px 26px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}
.hero__scrollBtn:hover {
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.16), 0 12px 30px rgba(0, 0, 0, 0.12);
}
.hero__scrollBtn:active {
  transform: translateY(1px);
}

.hero__scrollText {
  font-size: 22px;
  letter-spacing: 0.02em;
  color: rgba(15, 15, 16, 0.85);
}

.hero__scrollArrow {
  position: relative;
  width: 48px;
  height: 88px;
  overflow: hidden;
}

.hero__scrollArrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  width: 2px;
  height: 80px;
  border-radius: 1px;
  background: rgba(15, 15, 16, 0.85);
  animation: scroll-down 1.2s ease-in-out infinite;
}

.hero__scrollArrow::after {
  content: "";
  position: absolute;
  left: calc(50% - 5px);
  top: 76px;
  width: 18px;
  height: 2px;
  background: rgba(15, 15, 16, 0.85);
  border-radius: 1px;
  transform-origin: right center;
  animation: scroll-arrow 1.2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes scroll-arrow {
  0% {
    transform: rotate(-45deg) scaleX(0);
    opacity: 0;
  }
  20% {
    transform: rotate(-45deg) scaleX(0);
    opacity: 0;
  }
  40% {
    transform: rotate(-45deg) scaleX(1);
    opacity: 1;
  }
  80% {
    transform: rotate(-45deg) scaleX(1);
    opacity: 1;
  }
  90% {
    transform: rotate(-45deg) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) scaleX(1);
    opacity: 0;
  }
}
.section {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.section--bgFadeTop::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: var(--fade-h, 120px);
  background: linear-gradient(to bottom, var(--fade-from), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 10;
}

.section--bgFadeTop.section--recruit {
  --fade-from: #4a4a4a;
  --fade-h: 80px;
}

.section--domain {
  position: relative;
  background: transparent;
}

.section--domain::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65); /* 半透明 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
}

.section--domain > .section__inner {
  position: relative;
  z-index: 1;
}

.section--hr {
  padding-top: 0;
}
.section--hr .section__inner {
  gap: 0;
}

.section--fintech .section__inner {
  gap: 0;
}

.section--businessStudios {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: url("https://finnow.co.jp/assets/images/top/pc_image_back4.png") center/contain no-repeat, url("https://finnow.co.jp/assets/images/top/pc_image_back3.png") center/cover no-repeat;
  background-color: #e8e4c8;
}
.section--businessStudios .section__inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.section--businessStudios .section__inner .sectionHead__lead {
  color: #fff;
}
.section--businessStudios .sectionHead__headline::before {
  background: #fff;
}

.section--recruit {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: url("https://finnow.co.jp/assets/images/top/pc_image_back6.png") center/cover no-repeat, linear-gradient(to bottom, #000 0%, #fff 100%);
  padding: 100px 0;
}
.section--recruit .section--recruit--bg {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.section--recruit .section--recruit--bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://finnow.co.jp/assets/images/top/pc_image_back7.png") left bottom/100% auto no-repeat;
  clip-path: inset(0 100% 0 0);
  pointer-events: none;
}
.section--recruit .section--recruit--bg.is-visible::after {
  animation: waveReveal 1.5s ease-out forwards;
}
.section--recruit .orbitGroup2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.section--recruit .orbitGroup2 .orbitBall {
  position: absolute;
  width: auto;
  height: auto;
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.section--recruit .orbitGroup2 .orbitBall--7 {
  width: 50px;
  bottom: 10%;
  left: 5%;
}
.section--recruit .orbitGroup2 .orbitBall--8 {
  width: 60px;
  bottom: 15%;
  left: 40%;
}
.section--recruit .orbitGroup2 .orbitBall--9 {
  width: 70px;
  top: 5%;
  left: 50%;
}
.section--recruit .orbitGroup2 .orbitBall--10 {
  width: 90px;
  top: 20%;
  right: 2%;
}
.section--recruit .orbitGroup2 .orbitBall--11 {
  width: 70px;
  top: -2%;
  right: 17%;
}
.section--recruit .orbitGroup2 .orbitBall--12 {
  width: 45px;
  top: 57%;
  right: 53%;
}
.section--recruit .sectionHead__headline::before {
  background: var(--white);
}
.section--recruit .sectionHead__headline::before {
  background: var(--white);
}

/* ====== Recruit block ====== */
.recruit {
  color: var(--white);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 26px;
  z-index: 2;
}
.recruit .sectionHead__headline {
  display: flex;
  width: 100%;
  justify-self: stretch;
}
.recruit .card--text {
  margin: 50px 0 0 0;
  padding-left: 20%;
}

.recruit__body {
  max-width: 560px;
}

/* ====== Company + Contact ====== */
.company__title,
.contact__title {
  margin: 0 0 12px;
  font-size: 24px;
}

.company__dl {
  margin: 0;
}

.company__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 10px 0;
}

.company__row dt {
  color: rgba(15, 15, 16, 0.65);
}

.company__row dd {
  margin: 0;
}

.company__logo {
  display: block;
  margin: 0 auto;
}
.company__logo img {
  height: auto;
  width: 300px;
}

.contact__cta {
  margin-top: 20px;
}

.section--white {
  background: #fff;
}

.section--cta {
  background: var(--bg2);
}

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

.domainVisual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domainVisual__circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(1px);
}

.domainVisual__circle--1 {
  width: 180px;
  height: 180px;
  background: rgba(0, 0, 0, 0.12);
  top: 15%;
  left: 35%;
}

.domainVisual__circle--2 {
  width: 140px;
  height: 140px;
  background: rgba(0, 0, 0, 0.08);
  top: 8%;
  right: 20%;
}

.domainVisual__circle--3 {
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.85);
  top: 45%;
  left: 25%;
}

.domainVisual__circle--4 {
  width: 90px;
  height: 90px;
  background: rgba(242, 192, 20, 0.75);
  top: 25%;
  left: 20%;
}

.domainVisual__circle--5 {
  width: 110px;
  height: 110px;
  background: rgba(242, 192, 20, 0.55);
  bottom: 20%;
  left: 20%;
}

.domainVisual__circle--6 {
  width: 150px;
  height: 150px;
  background: rgba(242, 192, 20, 0.65);
  bottom: 15%;
  right: 25%;
}

.sectionSpan {
  position: relative;
  background-color: #f6f0d6;
}

.spanMark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.spanMark__bg {
  background: url("https://finnow.co.jp/assets/images/top/pc_image_back2.png") no-repeat center/cover;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.spanMark__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, rgb(232, 228, 200) 100%);
  pointer-events: none;
}

.spanMark__overlay {
  background: url("https://finnow.co.jp/assets/images/top/pc_image_back1.png") no-repeat center/cover;
  position: absolute;
  top: 30%;
  right: 0;
  width: 100px;
  height: 60%;
  pointer-events: none;
  z-index: 2;
}

.sectionSpan > section {
  position: relative;
  z-index: 1;
}

/* ====== Service Page ==== == */
/* Page Hero */
.pageHero {
  padding: 36px 0 28px;
}

.breadcrumb {
  font-size: 12px;
  color: rgba(15, 15, 16, 0.62);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pageHero__title {
  margin: 14% 0 0;
  font-size: 44px;
  letter-spacing: 0.01em;
}

.pageHero--service {
  padding: 28px 0 30px;
  background: url("https://finnow.co.jp/assets/images/service/pc_image_top.png") center/cover no-repeat;
  position: relative;
  min-height: 360px;
}

.pageHero--service .breadcrumb {
  position: fixed;
  top: var(--headerH);
  z-index: 20;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 12px 6px;
  backdrop-filter: blur(8px);
  font-size: large;
}

/* Service Grid */
.serviceGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.serviceCard {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.serviceCard__media {
  padding: 18px;
}

.serviceCard__body {
  padding: 0 18px 18px;
}

.serviceCard__title {
  margin: 0 0 6px;
  font-size: 20px;
}

.serviceCard__desc {
  margin: 0 0 10px;
}

.serviceBlocks {
  background: #fff;
  padding: 28px 0 80px;
}
.serviceBlocks .sectionHead__topAlign {
  position: relative;
  margin-top: 120px;
  margin-left: 10%;
}
.serviceBlocks .sectionHead__topAlign::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  bottom: -50px;
  width: 1px;
  background: var(--text);
}

.serviceBlock {
  position: relative;
  background: #f1efe9;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: 480px;
}
.serviceBlock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.06), transparent 65%);
  pointer-events: none;
}

.serviceBlock__media {
  position: relative;
  height: 100%;
}
.serviceBlock__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.serviceBlock__media .serviceBlock__media--sub img {
  width: auto;
  height: 240px;
}

.serviceBlock__body {
  position: relative;
  z-index: 1;
  padding-left: max(24px, (100vw - var(--max)) / 2);
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.serviceBlock__body .btn {
  margin-top: 10px;
  width: fit-content;
}

.serviceBlock__logo {
  height: 28px;
  width: auto;
  max-width: fit-content;
}

.serviceBlock__headline {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 28px);
  letter-spacing: 0.01em;
}

.serviceBlock__text {
  margin: 0;
  color: rgba(15, 15, 16, 0.78);
  line-height: 1.9;
}

.serviceBlock--imgRight {
  margin-top: 100px;
  background: linear-gradient(to right, #f5f4f0 0%, #e8e5dc 50%, #d9d5c9 100%);
}
.serviceBlock--imgRight .serviceBlock__media {
  order: 2;
}
.serviceBlock--imgRight .serviceBlock__body {
  order: 1;
}

.serviceBlock--imgLeft {
  background: linear-gradient(to left, #f5f4f0 0%, #e8e5dc 50%, #d9d5c9 100%);
}
.serviceBlock--imgLeft .serviceBlock__media {
  order: 1;
}
.serviceBlock--imgLeft .serviceBlock__body {
  order: 2;
}

.serviceBlock__body--right {
  align-items: end;
  text-align: right;
  padding-left: 24px;
  padding-right: max(24px, (100vw - var(--max)) / 2);
}

.serviceBlock__text--right {
  text-align: right;
}

/* HR / ToBPay セクションの画像を縮小 (3/4サイズ) */
#hr .serviceBlock__media,
#tobpay .serviceBlock__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hr .serviceBlock__media > div:first-child,
#hr .serviceBlock__media > .serviceBlock__media--main,
#tobpay .serviceBlock__media > div:first-child,
#tobpay .serviceBlock__media > .serviceBlock__media--main {
  position: relative;
  width: 85%;
  height: auto;
}
#hr .serviceBlock__media > div:first-child > img,
#hr .serviceBlock__media > .serviceBlock__media--main > img,
#tobpay .serviceBlock__media > div:first-child > img,
#tobpay .serviceBlock__media > .serviceBlock__media--main > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#hr .serviceBlock__media > img,
#tobpay .serviceBlock__media > img {
  width: 85%;
  height: auto;
  object-fit: contain;
}

/* ToBPay サブ画像を右下に重ねる */
#tobpay {
  overflow: visible;
}
#tobpay .serviceBlock__media--main {
  position: relative;
}
#tobpay .serviceBlock__media--main .serviceBlock__media--sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
}
#tobpay .serviceBlock__media--main .serviceBlock__media--sub img {
  width: auto;
  height: 200px;
}

@media (max-width: 920px) {
  .serviceBlock {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }
  .serviceBlock__media {
    min-height: 260px;
  }
  .serviceBlock__body {
    padding: 28px 22px;
  }
}
/* ====== Contact Section ====== */
.section--contact {
  padding: 120px 0;
  background: #fff;
}

.contactBlock {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
}

.contactBlock__body {
  max-width: 520px;
}

.contactBlock__title {
  margin: 0 0 22px;
  font-size: 34px;
  letter-spacing: 0.02em;
}

.contactBlock__text {
  margin: 0 0 26px;
  color: rgba(15, 15, 16, 0.72);
  line-height: 2;
}

.contactBlock__media {
  display: flex;
  justify-content: flex-end; /* 右寄せ */
  align-items: center;
}

.contactBlock__media img {
  width: min(720px, 100%);
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 920px) {
  .section--contact {
    padding: 72px 0;
  }
  .contactBlock {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .contactBlock__media {
    justify-content: center;
  }
  .contactBlock__body {
    max-width: none;
  }
}
html.modal-open,
body.modal-open {
  overflow: hidden;
}

.contact-page {
  min-height: 100vh;
  background-color: #f6f6f6;
}

.section-contact-form {
  max-width: min(800px, 90%);
  margin: 0 auto;
  padding-bottom: 80px;
}
.section-contact-form .section-title {
  margin: 70px 0 50px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #ed8c65;
}
.section-contact-form .section-subtitle {
  display: block;
  margin-top: 17px;
  color: #aaa;
  font-size: 18px;
}
.section-contact-form .text {
  margin: 50px 0;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.contact-form .form-row {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f2f4f5;
}
.contact-form .form-row:last-child {
  border-bottom: none;
}
.contact-form .form-row.form-row-textarea {
  align-items: flex-start;
}
.contact-form .form-row.form-row-textarea textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.3s;
}
.contact-form .form-row.form-row-textarea textarea:focus {
  outline: none;
  border-color: #E49108;
}
.contact-form .form-label {
  display: flex;
  align-items: center;
  width: 250px;
  flex-shrink: 0;
}
.contact-form .form-label label {
  font-weight: bold;
  font-size: 14px;
}
.contact-form .form-label span {
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #E49106;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder {
  color: #999;
  font-size: 14px;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus {
  outline: none;
  border-color: #E49108;
}
.contact-form select {
  flex: 1;
  background-color: #f2f4f5;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form select:focus {
  outline: none;
  background-color: #e8eaeb;
}
.contact-form .form-item {
  margin-top: 30px;
  text-align: center;
}
.contact-form .form-item input[type=submit] {
  display: inline-block;
  background: #ed8c65;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 0;
  border: 1px solid #ed8c65;
  border-radius: 10px;
  min-width: 192px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form .form-item input[type=submit]:hover {
  background: #fff;
  color: #ed8c65;
}
.contact-form .form-item input[type=submit]:active {
  transform: translateY(1px);
}
.contact-form .form-termsLink {
  display: block;
  margin: 50px 0 20px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}
.contact-form .form-termsLink:hover {
  color: #E49108;
}
.contact-form .form-termsCheck {
  text-align: center;
  margin: 20px 0;
}
.contact-form .form-termsCheck input[type=checkbox] {
  margin-right: 8px;
  cursor: pointer;
}
.contact-form .form-termsCheck label {
  font-size: 14px;
  cursor: pointer;
}

.section-modal .modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}
.section-modal .modal.isShow {
  visibility: visible;
  opacity: 1;
}
.section-modal .modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(200, 200, 200, 0.8);
}
.section-modal .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 900px;
  padding: 60px 60px 0;
  border-radius: 30px;
  background-color: #fff;
}
.section-modal .modal-title {
  font-size: 21px;
  margin-top: 20px;
  margin-bottom: 50px;
  font-weight: bold;
  text-align: center;
  color: #E49108;
}
.section-modal .modal-content {
  max-height: 70vh;
  overflow-y: scroll;
  padding-right: 10px;
}
.section-modal .modal-content::-webkit-scrollbar {
  width: 8px;
}
.section-modal .modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.section-modal .modal-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.section-modal .modal-content::-webkit-scrollbar-thumb:hover {
  background: #999;
}
.section-modal .modal-lead {
  margin-bottom: 20px;
}
.section-modal .modal-heading {
  font-size: 15px;
  margin: 2em 0 1em;
  color: #E49108;
  font-weight: bold;
}
.section-modal .modal-text {
  margin: 1em 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.section-modal .modal-separator {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}
.section-modal .modal-box {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.section-modal .modal-box-title {
  margin: 15px 0 28px;
  font-weight: bold;
}
.section-modal .modal-close {
  position: absolute;
  top: 25px;
  right: 50px;
  cursor: pointer;
  font-size: 35px;
  color: #E49108;
  font-weight: bold;
  transition: color 0.3s;
}
.section-modal .modal-close:hover {
  color: #c67d06;
}
.section-modal .indentList {
  padding-left: 4em;
  list-style: none;
}
.section-modal .indentList-item {
  position: relative;
}
.section-modal .indentList-item::first-letter {
  margin-left: -3.15em;
}
.section-modal .indentList-ol {
  list-style: decimal;
  padding-left: 10px;
  margin-left: 2em;
}

.message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  min-height: 80vh;
  margin-bottom: -90px;
  padding: 40px 20px;
}
.message .message-text {
  margin: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.message .button {
  display: block;
  width: max-content;
  margin: 30px auto 0;
  padding: 12px 60px;
  border-radius: 45px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}
.message .button.button-orange {
  background: #E49108;
}
.message .button.button-orange:hover {
  background: rgb(178.7288135593, 113.6652542373, 6.2711864407);
  transform: translateY(-2px);
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.2);
}
.message .button.button-gray {
  background: #555;
}
.message .button.button-gray:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .section-contact-form .section-title {
    font-size: 24px;
    margin: 40px 0 30px;
  }
  .section-contact-form .section-subtitle {
    font-size: 16px;
  }
  .contact-form .form-row {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 10px;
  }
  .contact-form .form-row.form-row-textarea textarea {
    min-height: 200px;
  }
  .contact-form .form-label {
    width: 100%;
    margin-bottom: 10px;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form select {
    width: 100%;
  }
  .section-modal .modal-container {
    width: 90%;
    padding: 40px 20px 0;
  }
  .section-modal .modal-close {
    right: 20px;
    font-size: 28px;
  }
  .section-modal .indentList {
    padding-left: 2em;
  }
}
/* ===== Reveal Animation ===== */
.js-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay variants */
.js-reveal--delay-1 {
  transition-delay: 0.15s;
}

.js-reveal--delay-2 {
  transition-delay: 0.35s;
}

.js-reveal--delay-3 {
  transition-delay: 0.75s;
}

.js-reveal--delay-4 {
  transition-delay: 1s;
}

/* ====== Animations ====== */
@keyframes revealFromLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes revealFromBottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.orbitWrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbitGroup {
  position: relative;
  width: min(100%, 100vh);
  height: min(100%, 100vh);
  aspect-ratio: 1/1;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* 白い円 */
.orbitRings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.65;
  transform: scale(0.85); /* ← 縮小率（0.7〜0.9で調整） */
  transform-origin: center; /* 中央基準 */
}

/* 球（orbitGroup内専用） */
.orbitGroup .orbitBall {
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 球の座標：角度と半径で円周上に配置 */
.orbitGroup .orbitBall--1 {
  --angle: 65deg;
  --radius: 41.5%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
}

.orbitGroup .orbitBall--2 {
  --angle: -200deg;
  --radius: 41.5%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
}

.orbitGroup .orbitBall--3 {
  --angle: -130deg;
  --radius: 41.5%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
}

.orbitGroup .orbitBall--4 {
  --angle: 0deg;
  --radius: 41.5%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
}

.orbitGroup .orbitBall--5 {
  --angle: -245deg;
  --radius: 19%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
}

.orbitGroup .orbitBall--6 {
  --angle: -215deg;
  --radius: 19%;
  left: calc(50% + var(--radius) * cos(var(--angle)));
  top: calc(50% + var(--radius) * sin(var(--angle)));
  width: 50px;
  height: auto;
}

@keyframes waveReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes waveRevealUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@media (max-width: 920px) {
  .sectionHead--split {
    grid-template-columns: 1fr;
  }
  .grid2,
  .grid2--reverse {
    grid-template-columns: 1fr;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    flex-direction: column;
  }
  .hero__title {
    font-size: clamp(32px, 5vw, 48px);
  }
  .hero__scroll {
    right: 24px;
    bottom: 24px;
  }
  .hero__scrollBtn {
    width: 140px;
    height: 140px;
  }
  .hero__scrollText {
    font-size: 18px;
  }
  .hero__scrollArrow {
    width: 36px;
    height: 68px;
  }
  .section {
    padding: 48px 0;
  }
  .orbitGroup .orbitBall {
    width: 60px !important;
    height: 60px !important;
  }
  .orbitGroup .orbitBall--1 {
    width: 50px !important;
    height: 50px !important;
  }
  .orbitGroup .orbitBall--4 {
    width: 50px !important;
    height: 50px !important;
  }
  .section--recruit {
    padding: 60px 0;
  }
  .section--recruit .section--recruit--bg {
    min-height: 300px;
  }
  .section--recruit .orbitGroup2 .orbitBall--7 {
    width: 40px;
    bottom: 8%;
    left: 3%;
  }
  .section--recruit .orbitGroup2 .orbitBall--8 {
    width: 50px;
    bottom: 12%;
    left: 35%;
  }
  .section--recruit .orbitGroup2 .orbitBall--9 {
    width: 60px;
    top: 18%;
    left: 55%;
  }
  .section--recruit .orbitGroup2 .orbitBall--10 {
    width: 100px;
    top: 28%;
    right: 2%;
  }
  .section--recruit .orbitGroup2 .orbitBall--11 {
    width: 70px;
    top: 8%;
    right: 5%;
  }
  .section--recruit .orbitGroup2 .orbitBall--12 {
    width: 38px;
    top: 55%;
    right: 50%;
  }
  .recruit {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }
  .recruit__body {
    max-width: 100%;
  }
  .card--text {
    margin: 30px 0 0 0;
  }
  .company__row {
    grid-template-columns: 100px 1fr;
    gap: 10px;
  }
  .pageHero__title {
    font-size: 36px;
  }
  .serviceDetail__visual {
    min-height: 300px;
  }
  .section--domain .sectionHead--split {
    gap: 24px;
  }
  .section--domain .sectionHead__headline {
    font-size: 42px;
  }
  .section--domain .card--text {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --headerH: 70px;
    --orbit-radius-sp: 32%;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .t-left__sp {
    text-align: left !important;
  }
  .t-center__sp {
    text-align: center !important;
  }
  .t-end__sp {
    text-align: end !important;
  }
  .mt-50__sp {
    margin-top: 50px !important;
  }
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .btn--spWrapper {
    text-align: center;
  }
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
  p {
    font-weight: 600;
  }
  .l-container {
    width: min(var(--max), 100% - 32px);
  }
  .sectionHead__title {
    font-size: 22px;
    font-weight: 500;
  }
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
  }
  .nav__toggleLine {
    transition: background-color 0.3s ease;
  }
  body.menu-open .header {
    background: #3a3a3a;
  }
  body.menu-open .nav__toggleLine {
    background: #fff;
  }
  .nav__menuSp {
    position: fixed;
    top: var(--headerH);
    left: 0;
    right: 0;
    bottom: 0;
    background: #3a3a3a;
    color: #fff;
    padding: 25% 18px;
    display: none;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    height: calc(100vh - var(--headerH));
  }
  .nav__menuSp.is-open {
    display: flex;
  }
  .nav__linkSp {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 12px 0;
    font-size: 15px;
  }
  .nav__linkSp .nav__menuSp_inner {
    padding: 0 16px;
  }
  .nav__menuSp > div.nav__menuSp_inner {
    display: flex;
    flex-direction: column;
    padding: 0 50px;
  }
  .nav__linkIcon {
    width: 16px;
    height: 16px;
  }
  .nav__footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .nav__footer .footer__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .nav__footer .footer__service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
  }
  .header__cta {
    display: none;
  }
  .sectionHead__headline {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 12px;
    margin-top: 30px;
    padding: 0;
    width: 100%;
  }
  .sectionHead__headline br {
    display: inline;
  }
  .sectionHead__headline::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
  }
  .sectionHead__title {
    margin-bottom: 24px;
    font-weight: 500;
  }
  .hero {
    min-height: calc(110svh - var(--headerH));
  }
  .hero__title {
    font-size: clamp(28px, 6vw, 40px);
    margin-bottom: 12px;
  }
  .hero__kicker {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .hero__scroll {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }
  .hero__scrollBtn {
    width: 80px;
    height: 80px;
  }
  .hero__scrollText {
    font-size: 12px;
  }
  .hero__scrollArrow {
    width: 20px;
    height: 42px;
  }
  .hero__scrollArrow::before {
    height: 36px;
    top: 3px;
  }
  .hero__scrollArrow::after {
    width: 10px;
    top: 32px;
    left: calc(50% - 3px);
  }
  .section {
    padding: 40px 0;
  }
  .sectionHead__headline {
    font-size: 32px;
  }
  .sectionHead__lead {
    font-size: 20px;
  }
  .orbitWrap {
    opacity: 0.8;
  }
  .orbitRings {
    transform: scale(1.2);
  }
  .orbitGroup .orbitBall {
    width: 45px !important;
    height: 45px !important;
  }
  .orbitGroup .orbitBall--1 {
    --angle: -30deg !important;
    --radius: calc(var(--orbit-radius-sp) + 13%) !important;
    width: 35px !important;
    height: 35px !important;
  }
  .orbitGroup .orbitBall--2 {
    --angle: 10deg !important;
    --radius: calc(var(--orbit-radius-sp) - 3%) !important;
    width: 50px !important;
    height: 50px !important;
  }
  .orbitGroup .orbitBall--3 {
    --angle: 50deg !important;
    --radius: calc(var(--orbit-radius-sp) - 15%) !important;
    width: 40px !important;
    height: 40px !important;
  }
  .orbitGroup .orbitBall--4 {
    --angle: 90deg !important;
    --radius: calc(var(--orbit-radius-sp) - 2%) !important;
    width: 35px !important;
    height: 35px !important;
  }
  .orbitGroup .orbitBall--5 {
    --angle: 30deg !important;
    --radius: calc(var(--orbit-radius-sp) + 15%) !important;
    width: 38px !important;
    height: 38px !important;
  }
  .orbitGroup .orbitBall--6 {
    display: none;
  }
  .section--recruit {
    padding: 0 0 40px 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    background: url("https://finnow.co.jp/assets/images/top/sp_image_back6.png") center/cover no-repeat;
    background-color: var(--accent);
    min-height: 90vh;
  }
  .section--recruit .section--recruit--bg {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
  }
  .section--recruit .section--recruit--bg::after {
    height: 90%;
    background: url("https://finnow.co.jp/assets/images/top/sp_image_back7.png") center/cover no-repeat;
    clip-path: inset(100% 0 0 0);
  }
  .section--recruit .section--recruit--bg.is-visible::after {
    animation: waveRevealUp 1.5s ease-out forwards;
  }
  .section--recruit .orbitGroup2 .orbitBall--7 {
    width: 100px;
    top: 52%;
    left: auto;
    right: 20%;
  }
  .section--recruit .orbitGroup2 .orbitBall--8 {
    display: none;
  }
  .section--recruit .orbitGroup2 .orbitBall--9 {
    width: 50px;
    top: 35%;
    left: auto;
    right: 15%;
  }
  .section--recruit .orbitGroup2 .orbitBall--10 {
    width: 60px;
    top: 75%;
    left: auto;
    right: 18%;
    transform: translateY(0) rotate(45deg) !important;
  }
  .section--recruit .orbitGroup2 .orbitBall--11 {
    display: none;
  }
  .section--recruit .orbitGroup2 .orbitBall--12 {
    width: 30px;
    top: 50%;
    left: auto;
    right: 8%;
  }
  .recruit {
    padding: 16px;
    text-align: left;
    margin-top: 80px;
  }
  .recruit .btn--spWrapper {
    margin-top: 50px;
    justify-content: center;
  }
  .recruit .card--text {
    margin: 0 0 0 auto;
    padding-left: 0;
  }
  .recruit h2 {
    font-size: 28px;
  }
  .recruit .sectionHead__headline {
    padding-left: 0;
    padding-bottom: 30px;
  }
  .recruit .sectionHead__headline::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .recruit p {
    font-size: 12px;
    margin-top: 30px;
    line-height: 2rem;
  }
  .card--text {
    margin: 30px 0 0 0;
    padding: 20px;
    font-size: 12px;
    white-space: normal;
  }
  .btn--pill {
    padding: 12px 40px 12px 20px;
    font-size: 14px;
  }
  .company {
    border-left: solid 1px var(--text);
    padding-left: 12px;
  }
  .company .company__row {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 8px 0;
    justify-items: start;
    text-align: left;
  }
  .company .company__row dt {
    font-weight: 600;
    width: 120px;
  }
  .company .company__logo img {
    width: 200px;
  }
  .company .company__title,
  .company .contact__title {
    font-size: 20px;
  }
  #company .sectionHead__headline {
    padding-left: 0;
    padding-bottom: 10px;
  }
  #company .sectionHead__headline::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  #company .contact {
    text-align: center;
  }
  #company .contact__cta {
    margin-top: 28px;
    margin-bottom: 34px;
  }
  .pageHero {
    padding: 50px 0 20px;
  }
  .pageHero--service {
    display: flex;
    align-items: center;
    background-image: url("https://finnow.co.jp/assets/images/service/sp_image_top.png");
    min-height: 220px;
  }
  .pageHero--service .l-container {
    width: 100%;
  }
  .pageHero__title {
    font-size: 28px;
    margin-top: 0;
    padding-left: 5%;
  }
  #hr .serviceBlock__media > img,
  #tobpay .serviceBlock__media > img {
    width: 100%;
  }
  #hr .serviceBlock__media > div:first-child,
  #hr .serviceBlock__media > .serviceBlock__media--main,
  #tobpay .serviceBlock__media > div:first-child,
  #tobpay .serviceBlock__media > .serviceBlock__media--main {
    width: 100%;
  }
  #tobpay .serviceBlock__media--main .serviceBlock__media--sub {
    bottom: -77px;
    right: -20px;
  }
  #tobpay .serviceBlock__media--main .serviceBlock__media--sub img {
    height: 150px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 6px;
  }
  .serviceCard {
    flex-direction: column;
  }
  .serviceCard__visual {
    height: 200px;
  }
  .serviceCard__body {
    padding: 20px;
  }
  .serviceDetail__visual {
    min-height: 250px;
  }
  .serviceDetail__body {
    padding: 24px 16px;
  }
  .serviceDetail__title {
    font-size: 24px;
  }
  .serviceMission__title {
    font-size: 28px;
  }
  .spanMark__bg {
    background: url("https://finnow.co.jp/assets/images/top/sp_image_back2.png") no-repeat center/cover;
  }
  .section--domain,
  .section--hr,
  .section--fintech,
  .section--businessStudios {
    padding: 50px 0;
  }
  .section--domain .grid2,
  .section--hr .grid2,
  .section--fintech .grid2,
  .section--businessStudios .grid2 {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 12px;
    margin-top: 32px;
  }
  .section--domain .sectionHead--split,
  .section--hr .sectionHead--split,
  .section--fintech .sectionHead--split,
  .section--businessStudios .sectionHead--split {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1/-1;
  }
  .section--domain .sectionHead__title,
  .section--hr .sectionHead__title,
  .section--fintech .sectionHead__title,
  .section--businessStudios .sectionHead__title {
    font-size: var(--font-title);
    font-weight: var(--weight-normal);
  }
  .section--domain .sectionHead__headline,
  .section--hr .sectionHead__headline,
  .section--fintech .sectionHead__headline,
  .section--businessStudios .sectionHead__headline {
    font-size: var(--font-headline);
    line-height: var(--line-height-tight);
  }
  .section--domain .sectionHead__headline br,
  .section--hr .sectionHead__headline br,
  .section--fintech .sectionHead__headline br,
  .section--businessStudios .sectionHead__headline br {
    display: inline;
  }
  .section--domain .sectionHead__lead,
  .section--hr .sectionHead__lead,
  .section--fintech .sectionHead__lead,
  .section--businessStudios .sectionHead__lead {
    font-size: var(--font-lead);
    margin-bottom: 0;
  }
  .section--domain .sectionHead__rightBox,
  .section--hr .sectionHead__rightBox,
  .section--fintech .sectionHead__rightBox,
  .section--businessStudios .sectionHead__rightBox {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 2;
  }
  .section--domain .card--text,
  .section--hr .card--text,
  .section--fintech .card--text,
  .section--businessStudios .card--text {
    padding: 20px 16px;
    font-size: var(--font-body);
    border-left: 1px solid var(--text);
  }
  .section--domain .card--text p,
  .section--hr .card--text p,
  .section--fintech .card--text p,
  .section--businessStudios .card--text p {
    margin-bottom: 12px;
    line-height: var(--line-height-normal);
    white-space: normal;
  }
  .section--domain .btn,
  .section--hr .btn,
  .section--fintech .btn,
  .section--businessStudios .btn {
    font-size: var(--font-btn);
    padding: 10px 36px 10px 20px;
  }
  .section--hr .sectionHead__rightBox .btn--spWrapper .btn--primary,
  .section--fintech .sectionHead__rightBox .btn--spWrapper .btn--primary {
    background: var(--white);
    color: var(--text);
    border-color: rgba(0, 0, 0, 0.05);
  }
  .section--hr .sectionHead__rightBox .btn--spWrapper .btn--primary .btn__icon,
  .section--fintech .sectionHead__rightBox .btn--spWrapper .btn--primary .btn__icon {
    background: var(--accent);
  }
  .section--hr .sectionHead__rightBox .btn--spWrapper .btn--primary .btn__icon::after,
  .section--fintech .sectionHead__rightBox .btn--spWrapper .btn--primary .btn__icon::after {
    border-left-color: var(--text);
  }
  .section--hr .mediaPh__box,
  .section--fintech .mediaPh__box {
    grid-column: 2;
    grid-row: 2;
    width: 220px;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: visible;
    position: relative;
    padding-top: 40px;
    margin-left: 90%;
    margin-right: -20px;
    pointer-events: none;
  }
  .section--hr .mediaPh__box img,
  .section--fintech .mediaPh__box img {
    transform: rotate(-60deg);
    width: 232%;
    height: auto;
    object-fit: contain;
    max-width: none;
  }
  .section--hr .btn.sp,
  .section--fintech .btn.sp {
    grid-column: 1/-1;
    grid-row: 3;
    justify-self: start;
    margin-top: 0;
  }
  .section--fintech .mediaPh__box img {
    transform: rotate(-80deg);
    width: 214%;
  }
  .section--hr .btn--spWrapper,
  .section--fintech .btn--spWrapper {
    grid-column: 1/-1;
    grid-row: 3;
    justify-content: flex-end;
    margin-top: 30px;
    position: relative;
    z-index: 3;
  }
  .section--hr .btn--spWrapper:not(.sp),
  .section--fintech .btn--spWrapper:not(.sp) {
    display: flex;
  }
  .section--businessStudios {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -1px;
    background: url("https://finnow.co.jp/assets/images/top/sp_image_back4.png") center/cover no-repeat, url("https://finnow.co.jp/assets/images/top/sp_image_back3.png") center/cover no-repeat, linear-gradient(to bottom, #e8e4c8 0%, #4d4d4d 100%);
  }
  .section--businessStudios .card--text {
    border-left: none;
  }
  .section--businessStudios .l-container {
    width: min(var(--max), 100vw - 32px);
  }
  .section--businessStudios .orbitRings {
    content: url("https://finnow.co.jp/assets/images/top/sp_image_back5.png");
  }
  .section--businessStudios .sectionHead__headline::before {
    background: #fff;
  }
  .footer__menu {
    margin: 0 auto 0 20px;
    align-items: flex-start;
  }
  .footer__menu.sp {
    margin-left: auto;
    align-items: flex-end;
  }
  .serviceBlocks {
    max-width: 90%;
    margin: 0 auto;
  }
  .serviceBlocks .serviceBlock__body {
    align-items: center;
    text-align: center;
  }
  .serviceBlocks .sectionHead__topAlign {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-end;
    margin: 0;
    width: 100%;
  }
  .serviceBlocks .sectionHead__topAlign:before {
    left: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .serviceBlocks .sectionHead__topAlign .sectionHead__description {
    margin: 0 0 10px 0;
    padding: 0;
    white-space: nowrap;
  }
  .serviceBlocks .sectionHead__headline {
    font-size: 21px;
  }
  .serviceBlocks .sectionHead__headline::before {
    content: none;
  }
  .serviceBlocks .serviceBlock__text {
    text-align: center;
    font-size: 14px;
  }
  .serviceBlocks .serviceBlock__body--right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .serviceBlocks .serviceBlock--imgRight {
    margin-top: 30px;
    text-align: center;
    padding: 16px;
    background: linear-gradient(to bottom, rgba(255, 230, 200, 0.5) 0%, transparent 50%), linear-gradient(to bottom right, rgba(140, 135, 125, 0.7) 0%, transparent 45%), linear-gradient(to top, #fff 0%, #e8e5dd 100%);
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .serviceBlocks .serviceBlock--imgRight .serviceBlock__media {
    order: 1;
  }
  .serviceBlocks .serviceBlock--imgRight .serviceBlock__body {
    order: 2;
  }
  .serviceBlocks .serviceBlock--imgLeft {
    margin: 30px 0 0;
    padding: 16px;
    background: linear-gradient(to bottom, rgba(255, 230, 200, 0.5) 0%, transparent 50%), linear-gradient(to bottom right, rgba(140, 135, 125, 0.7) 0%, transparent 45%), linear-gradient(to top, #fff 0%, #e8e5dd 100%);
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .serviceBlocks .serviceBlock__media {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .serviceBlocks .serviceBlock__media.js-reveal {
    transition-delay: 0s;
  }
  .serviceBlocks .serviceBlock__media img {
    border-radius: 8px;
  }
  .serviceBlocks .serviceBlock__media .btn {
    width: 100%;
    justify-content: center;
  }
  .serviceBlocks .serviceBlock__body.js-reveal {
    transition-delay: 0.3s;
  }
  .serviceBlocks .serviceBlock__cta-btn {
    display: flex;
    justify-content: center;
    text-align: center;
    order: 2;
  }
  .contactBlock__body {
    text-align: center;
  }
  .contactBlock__body h2 {
    font-size: 28px;
  }
  .contactBlock__body p {
    font-size: 14px;
  }
}
