/* ==========================================
   component.css - 再利用可能なコンポーネント
   - 色、背景、ボーダー
   - フォントサイズ、太さ
   - hover, active などのインタラクション
   - 影、角丸などの視覚効果
========================================== */

/* ========== Header ========== */
.site-header {
  background: transparent;
  transition: background-color 0.3s ease;
}

.site-header.is-scrolled {
  background: #fff;
}

/* メニューが開いている時: ヘッダー背景を透明に */
body.is-menu-open .site-header {
  background: transparent;
}

.site-header__menu-button {
  padding: 0;
  line-height: 0;
}

/* ========== Hero ========== */
.hero__inner {
  color: #ffffff;
}

.hero__badge {
  width: 125px;
  height: 125px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid #ffffff;
  /* background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px); */
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #ffffff;
  animation: float 3s ease-in-out infinite;
}

.hero__title {
  font-size: 28px;
  line-height: 1.4;
  margin: 0 0 12px;
  font-weight: 900;
}

.hero__lead {
  font-size: 14px;
  margin: 0;
  max-width: 40rem;
  line-height: 2;
}

.hero__lead-line {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s linear, transform 0.3s linear;
}

.hero__lead-line.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Section head (shared) ========== */
.section-head__bar {
  border-radius: 999px;
  background: linear-gradient(90deg, #6a3cff 0%, #0a7bff 50%, #00d6c6 100%);
}

.section-head__title {
  font-weight: 900;
  font-size: 32px;
}

/* ========== Mission ========== */
.message::before,
.message::after {
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.35;
  background: radial-gradient(circle at 30% 30%, #9be7ff 0%, rgba(155, 231, 255, 0) 60%),
              radial-gradient(circle at 70% 70%, #b99cff 0%, rgba(185, 156, 255, 0) 60%);
}

.message__title {
  font-size: 22px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: var(--color-text);
  margin-bottom: 8px;
}

.message__subtitle {
  font-weight: 700;
  color: #111;
  opacity: 0.9;
  margin-bottom: 16px;
  text-align: center;
}

.message__body {
  max-width: 90%;
  margin: 0 auto;
}

.message__text {
  font-size: 14px;
  color: var(--color-text);
}

.feature__text{
  max-width: 90%;
  margin: 0 auto;
}

.work-style__lead{
  max-width: 90%;
  margin: 0 auto;
}



/* ========== Buttons ========== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.button--primary {
  background: #2563eb;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.btn--primary {
  width: 260px;
  height: 52px;
  background: var(--color-blue);
  color: #fff;
}

.btn--pill {
  width: 240px;
  height: 48px;
  background: #fff;
  color: var(--color-text);
  border: 0;
}

/* ========== Service ========== */
.about-crew {
  background: #fff;
}

.section-lead {
  font-size: 14px;
  color: var(--color-text);
}

.feature__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
}

.feature__text {
  font-size: 14px;
  color: #111;
}

/* ========== Workstyle ========== */
.work-style {
  background: var(--color-bg-light);
}

.work-style__lead {
  font-size: 13px;
  color: #111;
}

.work-style__subhead {
  font-weight: 900;
  font-size: 18px;
  color: var(--color-text);
}

.profile__avatar {
  border-radius: 50%;
  background: #d9e7f7;
}

.profile__name {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text);
}

.hl {
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
  padding: 0 0.2em;
}

.profile__desc {
  font-size: 13px;
  color: var(--color-text);
}

.profile__pill {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  color: var(--color-blue-dark);
  font-weight: 900;
}

.profile__pill span {
  font-size: 14px;
}

.profile__pill b {
  font-size: 22px;
}

.profile__arrow {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid #123a74;
}

/* ========== CTA strip ========== */
.cta-strip {
  background: var(--color-primary);
  color: #fff;
}

.cta-strip__top {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.cta-strip__sub {
  font-size: 11px;
  opacity: 0.95;
}

/* ========== Company points ========== */
.company--points {
  background: #fff;
}

.company-desc {
  font-size: 13px;
  color: #111;
  max-width: 90%;
  margin: 0 auto;
}

.point {
  border-bottom: 1px solid #e6e6e6;
}

.point__no {
  color: #0b6bff;
  font-weight: 900;
}

.point__no span {
  font-size: 12px;
  letter-spacing: 0.12em;
}

.point__no b {
  font-size: 46px;
}

.point__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 16px;
}

.point__desc {
  font-size: 13px;
  color: var(--color-text);
  max-width: 90%;
  margin: 0 auto;
}

/* ========== Flow timeline ========== */
.process--timeline {
  background: #fff;
}

.process-desc {
  font-size: 13px;
  color: var(--color-text);
}

/* モバイルではシンプルな点線 */
.timeline__line {
  background: none;
  border-left: 2px dashed #0b6bff;
  opacity: 0.5;
}

.tstep__num {
  border-radius: 50%;
  background: #123a74;
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}

.tstep__card {
  background: #dff0ff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.tstep__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
}

.tstep__desc {
  font-size: 13px;
  color: var(--color-text);
}

/* ========== FAQ ========== */
.faq {
  background: #fff;
}

.faq-item {
  border: 1px solid #c9c9c9;
  border-radius: 12px;
  background: #fff;
}

.faq-q {
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  color: var(--color-text);
}

.faq-q::after {
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

details[open] .faq-q::after {
  transform: rotate(-135deg);
}

.faq-a {
  font-size: 13px;
  color: #111;
}

/* ========== Recruit ========== */
.job-list {
  background: #fff;
}

.job-area__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
}

.job-office {
  border: 1px solid #c9c9c9;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.job-office__summary {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text);
  background: #f9f9f9;
}

.job-office__summary::after {
  border-right: 2px solid #6b7280;
  border-bottom: 2px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.job-office[open] .job-office__summary::after {
  transform: rotate(-135deg);
}

.job-table {
  border-top: 1px solid #d8d8d8;
}

.job-row {
  border-bottom: 1px solid #d8d8d8;
}

.job-key {
  font-weight: 900;
  font-size: 14px;
  color: var(--color-text);
}

.job-val {
  font-size: 13px;
  color: var(--color-text);
}

.job-val small {
  color: #374151;
}

/* ========== Footer ========== */
.footer--dark {
  background: #000;
  color: #fff;
}

.footer-info {
  font-size: 13px;
}

.footer-url {
  color: #fff;
}

.footer__rule {
  background: rgba(255, 255, 255, 0.22);
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.9;
}

/* ==========================================
   PC (769px+)
========================================== */
@media (min-width: 769px) {
  /* ========== Section head PC ========== */
  .section-head__title {
    font-size: 36px;
  }

  /* ========== Hero PC ========== */
  .hero__badge {
    font-size: 15px;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__badge {
    position: absolute;
    width: 180px;
    height: 180px;
    font-size: 18px;
  }

  /* ========== Feature PC ========== */
  .feature__title {
    font-size: 18px;
  }

  /* ========== Profile PC ========== */
  .profile__name {
    font-size: 18px;
  }

  .profile__pill span {
    font-size: 13px;
  }

  .profile__pill b {
    font-size: 20px;
  }

  /* ========== Point PC ========== */
  .point {
    border-bottom: none;
  }

  .point__title {
    font-size: 20px;
  }

  .point__no b {
    font-size: 48px;
  }

  /* ========== Timeline PC ========== */
  .tstep__title {
    font-size: 16px;
  }

  .tstep__num {
    font-size: 20px;
  }

  /* ========== FAQ PC ========== */
  .faq-q {
    font-size: 15px;
  }

  .faq-a {
    font-size: 13px;
  }

  /* ========== Job List PC ========== */
  .job-area__title {
    font-size: 22px;
  }

  .job-office__summary {
    font-size: 16px;
  }

  /* ========== Footer PC ========== */
  .footer-info {
    font-size: 13px;
  }
}
