@charset "UTF-8";

/* =============================================================
   BROS LLC - Corporate Site
   Base color : #FFC81E (Yellow) / #0D0D0D (Black) / #9C9C9C (Gray)
   ============================================================= */

/* -------------------------------------------------------------
   1. Design Tokens
------------------------------------------------------------- */
:root {
  /* Brand 3 colors */
  --c-yellow: #ffc81e;
  --c-yellow-dark: #e0ad00;
  --c-black: #0d0d0d;
  --c-gray: #9c9c9c;

  /* Derived */
  --c-black-soft: #141414;
  --c-black-line: #262626;
  --c-gray-light: #e6e6e4;
  --c-gray-dark: #6e6e6e;
  --c-white: #ffffff;

  /* Typography */
  --f-display: "Playfair Display", "Times New Roman", serif;
  --f-en: "Jost", "Helvetica Neue", Arial, sans-serif;
  --f-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  /* Layout */
  --w-container: 1180px;
  --w-narrow: 880px;
  --pad-x: clamp(20px, 5vw, 48px);
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------------------------------------
   2. Reset / Base
------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--f-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: var(--c-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease), opacity 0.3s var(--ease); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
::selection { background: var(--c-yellow); color: var(--c-black); }

/* -------------------------------------------------------------
   3. Layout Utilities
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--narrow { max-width: var(--w-narrow); }

.section { padding-block: clamp(72px, 11vw, 140px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 100px); }
.section--gray { background: var(--c-gray-light); color: var(--c-black); }
.section--soft { background: var(--c-black-soft); }

.section--gray .en-label { color: var(--c-gray-dark); }
.section--gray .lead { color: #3a3a3a; }

/* -------------------------------------------------------------
   4. Typography Parts
------------------------------------------------------------- */
.en-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gray);
}
.en-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-yellow);
}

.sec-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-top: 18px;
}
.sec-title .dot { color: var(--c-yellow); }

.sec-title-jp {
  display: block;
  margin-top: 14px;
  font-family: var(--f-jp);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-gray);
}
.section--gray .sec-title-jp { color: var(--c-gray-dark); }

.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head--center { text-align: center; }
.sec-head--center .en-label::before { display: none; }

.lead {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 2.2;
  color: #cfcfcf;
}
.lead + .lead { margin-top: 1.6em; }

.marker { color: var(--c-yellow); }

/* -------------------------------------------------------------
   5. Buttons
------------------------------------------------------------- */
.btn {
  --btn-bg: var(--c-yellow);
  --btn-fg: var(--c-black);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 34px;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn .arw {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}
.btn .arw::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255, 200, 30, 0.22); }
.btn:hover .arw { width: 30px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.btn--ghost:hover {
  color: var(--c-black);
  background: var(--c-yellow);
  border-color: var(--c-yellow);
  box-shadow: none;
}
.section--gray .btn--ghost { --btn-fg: var(--c-black); border-color: rgba(13, 13, 13, 0.2); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.text-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease);
}
.text-link:hover::after { width: 40px; }

/* -------------------------------------------------------------
   6. Header
------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 110; /* drawer(105) より上に置き、メニュー展開中も閉じるボタンを操作できるようにする */
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), height 0.4s var(--ease);
}
.header.is-scrolled {
  height: 64px;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-black-line);
}
.header__inner {
  width: 100%;
  max-width: var(--w-container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--c-yellow);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-black);
}
.logo__text {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--c-white);
}
.logo__sub {
  display: block;
  font-family: var(--f-jp);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--c-gray);
  margin-top: 4px;
}

.gnav { display: flex; align-items: center; gap: 34px; }
.gnav__link {
  position: relative;
  font-family: var(--f-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 6px;
}
.gnav__link small {
  display: block;
  font-family: var(--f-jp);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--c-gray);
  margin-top: 2px;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-yellow);
  transition: width 0.35s var(--ease);
}
.gnav__link:hover::after,
.gnav__link.is-current::after { width: 100%; }
.gnav__link.is-current { color: var(--c-yellow); }

.header__cta { margin-left: 8px; padding: 12px 24px; font-size: 12px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 25px; width: 14px; }
.burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open span:nth-child(2) { width: 22px; transform: translateY(-4px) rotate(-45deg); }

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--c-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad-x);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s var(--ease);
  visibility: hidden;
}
.drawer.is-open { clip-path: circle(150% at calc(100% - 40px) 40px); visibility: visible; }
.drawer__list { display: flex; flex-direction: column; gap: 6px; }
.drawer__item a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-black-line);
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 9vw, 2.6rem);
  line-height: 1.2;
}
.drawer__item a small {
  display: block;
  font-family: var(--f-jp);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gray);
  margin-top: 6px;
}
.drawer__item a:hover { color: var(--c-yellow); }
.drawer__foot { margin-top: 40px; }

/* -------------------------------------------------------------
   7. Hero
------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 40px) 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 60% at 78% 22%, rgba(255, 200, 30, 0.16) 0%, transparent 62%),
    linear-gradient(180deg, #121212 0%, var(--c-black) 55%, #0a0a0a 100%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(156, 156, 156, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 156, 156, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
}
.hero__circle {
  position: absolute;
  right: -4vw;
  top: 50%;
  translate: 0 -50%;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c-yellow);
  z-index: -1;
  opacity: 0.92;
  display: grid;
  place-items: center;
  animation: floaty 9s ease-in-out infinite;
}
.hero__circle span {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--c-black);
}
@keyframes floaty {
  0%, 100% { translate: 0 -50%; }
  50% { translate: 0 calc(-50% - 18px); }
}
@keyframes floatySp {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}
.hero__ring {
  position: absolute;
  right: 4vw;
  top: 50%;
  translate: 0 -50%;
  width: min(58vw, 700px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.hero__copy { max-width: 720px; }
.hero__title {
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: clamp(2rem, 6.2vw, 4.1rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-top: 24px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseUp 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.15s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.3s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__sub {
  margin-top: 30px;
  max-width: 40em;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 2.2;
  color: #c8c8c8;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

.hero__side {
  position: absolute;
  left: max(18px, 2vw);
  bottom: 96px;
  writing-mode: vertical-rl;
  font-family: var(--f-jp);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-gray);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--c-gray);
  text-align: center;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--c-yellow), transparent);
}

/* Page hero (lower pages) */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + clamp(60px, 10vw, 110px)) clamp(52px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--c-black-line);
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -6vw;
  top: -30%;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 30, 0.22) 0%, transparent 70%);
}
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 9vw, 5.6rem);
  line-height: 1;
  margin-top: 16px;
}
.page-hero__title .dot { color: var(--c-yellow); }
.page-hero__jp {
  display: block;
  margin-top: 16px;
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--c-gray);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--c-gray);
  margin-top: 34px;
}
.breadcrumb a:hover { color: var(--c-yellow); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: var(--c-gray-dark); }
.breadcrumb li { display: flex; }

/* -------------------------------------------------------------
   8. Marquee
------------------------------------------------------------- */
.marquee {
  background: var(--c-yellow);
  color: var(--c-black);
  padding-block: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; gap: 44px; animation: slide 26s linear infinite; }
.marquee__track span {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.marquee__track i { font-style: normal; opacity: 0.5; }
@keyframes slide { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------
   9. Mission / Value blocks
------------------------------------------------------------- */
.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.mission__visual {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-yellow);
  max-width: 380px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.mission__visual::after {
  content: "";
  position: absolute;
  inset: -26px;
  border: 1px solid rgba(255, 200, 30, 0.35);
  border-radius: 50%;
}
.mission__visual b {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
  text-align: center;
}
.mission__visual b small {
  display: block;
  font-family: var(--f-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-top: 12px;
}
.mission__body p {
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  line-height: 2.25;
  font-weight: 500;
}
.mission__body p + p { margin-top: 1.4em; }

/* 左右反転レイアウト（Vision / Concept 用） */
.mission--rev .mission__visual { order: 2; }
.mission--rev .mission__body { order: 1; }

/* Concept の見出し（みなと型経営） */
.concept-label {
  display: inline-block;
  margin-bottom: 26px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--c-yellow);
  border: 1px solid rgba(255, 200, 30, 0.4);
  border-radius: 999px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--c-black-line);
  border: 1px solid var(--c-black-line);
}
.pillar {
  background: var(--c-black);
  padding: clamp(30px, 4vw, 46px);
  transition: background 0.4s var(--ease);
}
.pillar:hover { background: var(--c-black-soft); }
.pillar__num {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-yellow);
}
.pillar__title {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.pillar__title span {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-bottom: 8px;
}
.pillar__text { margin-top: 14px; font-size: 0.9rem; line-height: 2; color: #b8b8b8; }

/* -------------------------------------------------------------
   10. Service cards
------------------------------------------------------------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
/* 4件を2×2で見せるレイアウト */
.svc-grid--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) {
  .svc-grid--2col { grid-template-columns: 1fr; }
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 40px);
  background: var(--c-black-soft);
  border: 1px solid var(--c-black-line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: var(--c-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: #3a3a3a; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num {
  font-family: var(--f-display);
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.09);
}
.svc-card__title {
  margin-top: 12px;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.svc-card__en {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 10px;
}
.svc-card__text { margin-top: 16px; font-size: 0.9rem; line-height: 2.05; color: #b5b5b5; flex: 1; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.svc-card__tags li {
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-gray);
  border: 1px solid var(--c-black-line);
  border-radius: 999px;
}

/* Service detail row */
.svc-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding-block: clamp(38px, 5vw, 60px);
  border-top: 1px solid var(--c-black-line);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--c-black-line); }
.svc-row__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--c-yellow);
}
.svc-row__title { font-size: clamp(1.3rem, 3vw, 1.75rem); font-weight: 700; line-height: 1.6; }
.svc-row__en {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray);
  margin-bottom: 10px;
}
.svc-row__text { font-size: 0.94rem; line-height: 2.1; color: #bcbcbc; }
.svc-row__list { margin-top: 22px; display: grid; gap: 10px; }
.svc-row__list li { position: relative; padding-left: 20px; font-size: 0.9rem; color: #d2d2d2; }
.svc-row__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: var(--c-yellow);
}

/* Flow */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.flow__item {
  position: relative;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
}
.flow__step {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gray-dark);
}
.flow__title { margin-top: 10px; font-size: 1.02rem; font-weight: 700; }
.flow__text { margin-top: 10px; font-size: 0.84rem; line-height: 1.95; color: #4d4d4d; }
.flow__item::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  translate: 0 -50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--c-yellow);
  border-right: 1.5px solid var(--c-yellow);
  transform: rotate(45deg);
}
.flow__item:last-child::after { display: none; }

/* -------------------------------------------------------------
   11. Tables (Company)
------------------------------------------------------------- */
.info-table { border-top: 1px solid var(--c-black-line); }
.info-table tr { border-bottom: 1px solid var(--c-black-line); }
.info-table th,
.info-table td {
  padding: 22px 8px;
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 2;
}
.info-table th {
  width: 210px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-yellow);
}
.info-table td { color: #dcdcdc; }
.info-table td .note { display: block; font-size: 0.8rem; color: var(--c-gray); margin-top: 4px; }

/* -------------------------------------------------------------
   12. Contact form / LINE
------------------------------------------------------------- */
.form { margin-top: 44px; display: grid; gap: 22px; }
.form__row { display: grid; gap: 8px; }
.form__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-yellow);
}
.form__label .req { color: var(--c-gray); margin-left: 6px; }
.form input,
.form textarea {
  padding: 14px 16px;
  background: var(--c-black-soft);
  border: 1px solid var(--c-black-line);
  border-radius: 4px;
  color: var(--c-white);
  font: inherit;
  transition: border-color 0.3s var(--ease);
}
.form textarea { resize: vertical; }
.form input:focus,
.form textarea:focus { outline: none; border-color: var(--c-yellow); }
.form__note { font-size: 0.8rem; color: var(--c-gray); line-height: 1.9; }

/* 区切り */
.or-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-block: clamp(46px, 7vw, 70px);
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--c-gray);
}
.or-divider::before,
.or-divider::after { content: ""; flex: 1; height: 1px; background: var(--c-black-line); }

/* LINE */
.line-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  background: var(--c-black-soft);
  border: 1px solid var(--c-black-line);
  border-radius: 6px;
}
.line-box__title { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.06em; }
.line-box__title span {
  display: block;
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #06c755;
  margin-bottom: 8px;
}
.line-box__text { margin-top: 14px; font-size: 0.88rem; line-height: 2; color: #b8b8b8; }

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 15px 30px;
  background: #06c755;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.line-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(6, 199, 85, 0.28); }
.line-btn svg { width: 20px; height: 20px; fill: currentColor; }

.line-qr {
  width: 150px;
  padding: 10px;
  background: var(--c-white);
  border-radius: 8px;
}
.line-qr img { width: 100%; border-radius: 4px; }
.line-qr figcaption {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--c-black);
}

@media (max-width: 640px) {
  .line-box { grid-template-columns: 1fr; justify-items: start; }
}

/* -------------------------------------------------------------
   13. CTA
------------------------------------------------------------- */
.cta {
  position: relative;
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--c-yellow);
  color: var(--c-black);
  overflow: hidden;
  text-align: center;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: 50%;
}
.cta::before { width: 420px; aspect-ratio: 1; left: -140px; bottom: -180px; }
.cta::after { width: 320px; aspect-ratio: 1; right: -110px; top: -140px; }
.cta__title {
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.1;
  font-weight: 500;
}
.cta__text { position: relative; margin-top: 22px; font-size: 0.95rem; line-height: 2.1; color: #262626; }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.cta .btn { --btn-bg: var(--c-black); --btn-fg: var(--c-yellow); }
.cta .btn:hover { box-shadow: 0 14px 30px rgba(13, 13, 13, 0.25); }
.cta .btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-black); border-color: rgba(13, 13, 13, 0.35); }
.cta .btn--ghost:hover { background: var(--c-black); color: var(--c-yellow); border-color: var(--c-black); }

/* -------------------------------------------------------------
   14. Footer
------------------------------------------------------------- */
.footer { background: var(--c-black); border-top: 1px solid var(--c-black-line); padding-block: clamp(50px, 7vw, 84px) 30px; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 70px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--c-black-line);
}
.footer__desc { margin-top: 22px; font-size: 0.86rem; line-height: 2.1; color: var(--c-gray); max-width: 34em; }
.footer__addr {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--c-black-line);
  font-size: 0.82rem;
  line-height: 1.95;
  font-style: normal;
  color: #b0b0b0;
  max-width: 34em;
}
.footer__addr b { display: block; font-weight: 500; color: var(--c-white); letter-spacing: 0.06em; }
.footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.footer__nav h4 {
  font-family: var(--f-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 16px;
}
.footer__nav li + li { margin-top: 10px; }
.footer__nav a { font-size: 0.86rem; color: #cccccc; }
.footer__nav a:hover { color: var(--c-yellow); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 26px;
}
.footer__copy { font-family: var(--f-en); font-size: 11px; letter-spacing: 0.12em; color: var(--c-gray-dark); }
.footer__sns { display: flex; gap: 18px; font-family: var(--f-en); font-size: 11px; letter-spacing: 0.16em; color: var(--c-gray); }
.footer__sns a:hover { color: var(--c-yellow); }

/* -------------------------------------------------------------
   15. Scroll reveal
------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
}

/* -------------------------------------------------------------
   16. Responsive
------------------------------------------------------------- */
@media (max-width: 1024px) {
  .mission { grid-template-columns: 1fr; }
  .mission--rev .mission__visual { order: 1; }
  .mission--rev .mission__body { order: 2; }
  .svc-row { grid-template-columns: 76px minmax(0, 1fr); }
  .svc-row__body { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .gnav,
  .header__cta { display: none; }
  .burger { display: block; }
  .hero__side { display: none; }
  /* SPでは右下に配置し、BROSの文字が画面内に収まるようにする */
  .hero__circle {
    top: auto;
    bottom: -80px;
    right: -40px;
    translate: 0 0;
    width: min(64vw, 280px);
    opacity: 0.95;
    animation: floatySp 9s ease-in-out infinite;
  }
  .hero__circle span { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .hero__scroll { display: none; }
  .hero__ring { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .info-table th, .info-table td { display: block; width: 100%; padding-block: 0; }
  .info-table th { padding-top: 20px; }
  .info-table td { padding-bottom: 20px; }
  .flow__item::after { right: 50%; top: auto; bottom: -14px; translate: 50% 0; transform: rotate(135deg); }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .footer__nav { grid-template-columns: 1fr; }
}
