@charset "UTF-8";
/* ========================================================================
   株式会社アルファロウ — design tokens
   赤（ロゴ）×白×紺。赤は「主張する面」（FVのキャッチ・見出しの一語・帯・ボタン）に、
   紺は「締める面」（ヘッダー文字・暗い帯・フッター）に使う
   ======================================================================== */
/* ========================================================================
   Base
   ======================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 88px;
  }
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid #e0312b;
  outline-offset: 4px;
}

body {
  font-size: 16px;
  line-height: 1.9;
  color: #14182b;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  background: #ffffff;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
}

/* 英字大見出し＋日本語ラベルの2段（現サイトの COMPANY／会社案内 の型を継承） */
.heading__en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .heading__en {
    font-size: 64px;
  }
}
.heading__en--white {
  color: #fff;
}
.heading__en--red {
  color: #e0312b;
}

.heading__title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.heading__title::before {
  content: "";
  width: 28px;
  height: 3px;
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .heading__title {
    margin-top: 14px;
    font-size: 16px;
  }
}
.heading__title--white {
  color: #fff;
}

/* ボタン: 赤塗り（既定）／紺塗り／白塗り／白抜き線 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 220px;
  padding: 15px 23px 15px 27px;
  border: 1px solid #e0312b;
  border-radius: 0;
  background: #e0312b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b1530;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}
.button:hover::before, .button:focus-visible::before {
  transform: scaleX(1);
}
.button:hover {
  border-color: #0b1530;
}
.button--navy {
  background: #0b1530;
  border-color: #0b1530;
}
.button--navy::before {
  background: #e0312b;
}
.button--navy:hover {
  border-color: #e0312b;
}
.button--white {
  background: #fff;
  border-color: #fff;
  color: #0b1530;
}
.button--white::before {
  background: #e0312b;
}
.button--white:hover {
  border-color: #e0312b;
  color: #fff;
}
.button--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.button--outline::before {
  background: #fff;
}
.button--outline:hover {
  color: #0b1530;
  border-color: #fff;
}
.button--small {
  min-width: 0;
  padding: 11px 17px 11px 21px;
  font-size: 14px;
  gap: 14px;
}

.button__icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover .button__icon {
  transform: translateX(4px);
}

/* ========================================================================
   Animation utilities（採用する要素にだけ付ける）
   JSが正常に登録した要素のみ非表示から開始する。JSなしでは読める。
   ======================================================================== */
.fade-in-up,
.fade-in {
  opacity: 1;
  transform: none;
}

html.is-motion-ready .fade-in-up.is-motion-target {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-motion-ready .fade-in-up.is-motion-target:not(.is-in-view) {
  opacity: 0;
  transform: translateY(32px);
}

html.is-motion-ready .fade-in.is-motion-target {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-motion-ready .fade-in.is-motion-target:not(.is-in-view) {
  opacity: 0;
}

/* 子要素を順番に出す。親に stagger を付け、子の transition-delay を段階付け */
html.is-motion-ready .stagger.is-motion-target {
  transition: none;
  opacity: 1;
  transform: none;
}
html.is-motion-ready .stagger.is-motion-target > * {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-motion-ready .stagger.is-motion-target:not(.is-in-view) > * {
  opacity: 0;
  transform: translateY(32px);
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(1) {
  transition-delay: 0s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(2) {
  transition-delay: 0.1s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(3) {
  transition-delay: 0.2s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(4) {
  transition-delay: 0.3s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(5) {
  transition-delay: 0.4s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(6) {
  transition-delay: 0.5s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(7) {
  transition-delay: 0.6s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(8) {
  transition-delay: 0.7s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(9) {
  transition-delay: 0.8s;
}
html.is-motion-ready .stagger.is-motion-target > :nth-child(10) {
  transition-delay: 0.9s;
}

/* 写真のワイプ出現（左→右へマスクが開き、画像はわずかに縮む） */
html.is-motion-ready .js-reveal.is-motion-target {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}
html.is-motion-ready .js-reveal.is-motion-target > img {
  transform: scale(1.12);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-motion-ready .js-reveal.is-motion-target.is-in-view {
  clip-path: inset(0 0 0 0);
}
html.is-motion-ready .js-reveal.is-motion-target.is-in-view > img {
  transform: scale(1);
}
html.is-motion-ready .js-reveal--up.is-motion-target {
  clip-path: inset(100% 0 0 0);
}
html.is-motion-ready .js-reveal--up.is-motion-target.is-in-view {
  clip-path: inset(0 0 0 0);
}

/* 見出しの1文字ずつ出現（JSが .split__char > .split__char-inner に分割する） */
.split__char {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  white-space: pre;
}

.split__char-inner {
  display: inline-block;
}
html.is-motion-ready .split__char-inner {
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
html.is-motion-ready .is-in-view .split__char-inner {
  transform: translateY(0);
}
html.is-motion-ready .split__char--gsap .split__char-inner {
  transition: none;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  html.is-motion-ready .fade-in-up.is-motion-target,
  html.is-motion-ready .fade-in.is-motion-target,
  html.is-motion-ready .stagger.is-motion-target > *,
  html.is-motion-ready .js-reveal.is-motion-target,
  html.is-motion-ready .js-reveal.is-motion-target > img,
  html.is-motion-ready .split__char-inner {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}
/* ========================================================================
   Loading（初回表示。赤のマークが描かれる→白いワードマーク→キャッチ→
   赤い進捗バー→紺の幕が斜めに切れて開く）
   ======================================================================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  pointer-events: none;
}
html.is-loading .loading {
  display: block;
  pointer-events: auto;
}

.loading__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 32px;
  color: #fff;
}

.loading__mark {
  width: 120px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .loading__mark {
    width: 168px;
  }
}

.loading__mark-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.loading__mark-path {
  fill: #e0312b;
  stroke: #e0312b;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.loading__wordmark {
  width: min(260px, 66vw);
  clip-path: inset(0 100% 0 0);
}
@media screen and (min-width: 768px) {
  .loading__wordmark {
    width: 340px;
  }
}

.loading__wordmark-img {
  width: 100%;
  height: auto;
}

.loading__copy {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .loading__copy {
    font-size: 15px;
  }
}

.loading__bar {
  width: min(260px, 66vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .loading__bar {
    width: 340px;
  }
}

.loading__bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #e0312b;
  transform: scaleX(0);
  transform-origin: left center;
}

.loading__count {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  margin-top: -10px;
}

.loading__count-unit {
  margin-left: 2px;
}

.loading__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(50% + 1px);
  background: #0b1530;
  z-index: 1;
}
.loading__panel--1 {
  top: 0;
}
.loading__panel--2 {
  bottom: 0;
}

/* ========================================================================
   Header（FV上は透明・白文字。スクロールで白背景に）
   ======================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s, box-shadow 0.4s;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}
body.is-home .header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}
.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(11, 21, 48, 0.08);
}
.header.is-hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    height: 88px;
    padding: 0 40px;
  }
}

.header__logo {
  display: block;
  flex-shrink: 0;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 179px;
  }
}

.header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__menu {
  display: flex;
  gap: 18px;
}
@media screen and (min-width: 1100px) {
  .header__menu {
    gap: 18px;
  }
}

.header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 0;
  color: #0b1530;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #e0312b;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__link:hover::after, .header__link[aria-current=page]::after {
  transform: scaleX(1);
}
body.is-home .header:not(.is-scrolled) .header__link {
  color: #fff;
}

.header__link-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header__link-ja {
  font-size: 10px;
  color: #6b7384;
  letter-spacing: 0.08em;
}
body.is-home .header:not(.is-scrolled) .header__link-ja {
  color: rgba(255, 255, 255, 0.72);
}

.header__contact {
  display: none;
}
@media screen and (min-width: 1100px) {
  .header__contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
  }
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.2;
  white-space: nowrap;
  color: #0b1530;
}
body.is-home .header:not(.is-scrolled) .header__tel {
  color: #fff;
}

.header__tel-caption {
  font-size: 10px;
  letter-spacing: 0.06em;
}

.header__tel-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__tel-icon {
  width: 23px;
  height: 23px;
  padding: 3px;
  border-radius: 4px;
  background: #0b1530;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.is-home .header:not(.is-scrolled) .header__tel-icon {
  background: #fff;
  color: #0b1530;
}

.header__tel-number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.header__button {
  display: inline-flex;
  justify-content: center;
  min-width: 166px;
  min-height: 60px;
  padding: 14px 16px;
  gap: 9px;
  border: 1px solid #e0312b;
  border-radius: 0;
  font-size: 14px;
  white-space: nowrap;
}

.header__mail-icon {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media screen and (min-width: 768px) {
  .header__drawer-icon {
    display: none;
  }
}

/* ハンバーガー */
.drawer-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 102;
  color: #0b1530;
}
body.is-home .header:not(.is-scrolled) .drawer-icon {
  color: #fff;
}
.drawer-icon.is-checked {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  transform-origin: center;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.drawer-icon__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ドロワー本体（SP〜タブレット）: 紺の面が右上から円形に広がる */
.drawer-content {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: #0b1530;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 44px) 32px);
  transition: clip-path 0.7s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s, visibility 0s 0.7s;
  overflow-y: auto;
}
.drawer-content.is-checked {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(150% at calc(100% - 44px) 32px);
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s, visibility 0s;
}
.drawer-content::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -6%;
  width: 70vw;
  aspect-ratio: 74.379/50.6758;
  background: url("../img/logo-mark.svg") no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__inner {
  position: relative;
  padding: 88px 20px 48px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .drawer-content__inner {
    padding: 128px 40px 64px;
    max-width: 640px;
  }
}

.drawer-content__menu {
  display: flex;
  flex-direction: column;
}

.drawer-content__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s;
}
.drawer-content.is-checked .drawer-content__item {
  transform: none;
  opacity: 1;
}
.drawer-content__item:nth-child(1) {
  transition-delay: 0.15s;
}
.drawer-content__item:nth-child(2) {
  transition-delay: 0.21s;
}
.drawer-content__item:nth-child(3) {
  transition-delay: 0.27s;
}
.drawer-content__item:nth-child(4) {
  transition-delay: 0.33s;
}
.drawer-content__item:nth-child(5) {
  transition-delay: 0.39s;
}
.drawer-content__item:nth-child(6) {
  transition-delay: 0.45s;
}
.drawer-content__item:nth-child(7) {
  transition-delay: 0.51s;
}

.drawer-content__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 4px;
}

.drawer-content__link-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.drawer-content__link-ja {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.drawer-content__foot {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.drawer-content__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.drawer-content__tel-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.drawer-content__tel-number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.04em;
}

.drawer-content__hours {
  margin-top: 4px;
}

.drawer-content__address {
  margin-top: 12px;
}

/* ========================================================================
   Main / ページ共通
   ======================================================================== */
/* ========================================================================
   Top: MV（全画面・3枚を斜めワイプで切替＋K字シェイプ＋キャッチ）
   ======================================================================== */
.mv {
  position: relative;
  height: 100svh;
  min-height: 600px;
  max-height: 1100px;
  overflow: hidden;
  background: #0b1530;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .mv {
    min-height: 680px;
  }
}

.mv__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.mv__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  will-change: transform;
}

.mv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 21, 48, 0.62) 0%, rgba(11, 21, 48, 0.28) 55%, rgba(11, 21, 48, 0.05) 100%), linear-gradient(180deg, rgba(11, 21, 48, 0.1) 0%, rgba(11, 21, 48, 0) 40%, rgba(11, 21, 48, 0.55) 100%);
}

.mv__shape {
  position: absolute;
  right: -18%;
  top: 8%;
  width: 92vw;
  max-width: 900px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  .mv__shape {
    right: -6%;
    top: 4%;
    width: 60vw;
    max-width: 1000px;
  }
}

.mv__shape-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 74.379/50.6758;
  fill: rgba(255, 255, 255, 0.36);
  mix-blend-mode: screen;
  filter: drop-shadow(0 20px 60px rgba(11, 21, 48, 0.25));
}

.mv__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 64px;
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-top: 88px;
    padding-bottom: 120px;
  }
}

.mv__title {
  -webkit-text-stroke: 0.018em currentColor;
  margin-top: 18px;
  font-size: clamp(24px, 8.4vw, 44px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.02em;
  font-style: italic;
  text-shadow: 0 6px 30px rgba(11, 21, 48, 0.35);
}
@media screen and (min-width: 768px) {
  .mv__title {
    margin-top: 24px;
    font-size: clamp(56px, 5.6vw, 84px);
    line-height: 1.16;
  }
}

.mv__title-line {
  display: block;
  white-space: nowrap;
}
.mv__title-line--red {
  color: #e0312b;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.4), 0 6px 30px rgba(11, 21, 48, 0.35);
}

.mv__lead {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
  margin-top: 22px;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34em;
}
@media screen and (min-width: 768px) {
  .mv__lead {
    margin-top: 28px;
    font-size: 16px;
  }
}

.mv__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .mv__actions {
    margin-top: 40px;
    gap: 16px;
  }
}

.mv__button {
  min-width: 0;
  flex: 1 1 auto;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .mv__button {
    min-width: 220px;
    flex: 0 0 auto;
  }
}

.mv__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .mv__foot {
    bottom: 72px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}

.mv__news {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1530;
  font-size: 12px;
  max-width: 100%;
  transition: background-color 0.3s, color 0.3s;
}
.mv__news:hover {
  background: #e0312b;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv__news {
    font-size: 13px;
  }
}

.mv__news-label {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0312b;
  color: #fff;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mv__news:hover .mv__news-label {
  background: #fff;
  color: #e0312b;
}

.mv__news-date {
  flex-shrink: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mv__news-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mv__news-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

.mv__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mv__counter {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-flex;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.mv__counter-current {
  font-size: 16px;
}

.mv__counter-sep,
.mv__counter-total {
  color: rgba(255, 255, 255, 0.6);
  align-self: flex-end;
}

.mv__progress {
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv__progress {
    width: 160px;
  }
}

.mv__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #e0312b;
  transform: scaleX(0);
  transform-origin: left center;
}

/* ========================================================================
   Top: Intro（会社案内・キャッチ＋写真2枚＋赤いシェイプ＋数字帯）
   ======================================================================== */
.intro {
  position: relative;
  padding: 88px 0 72px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .intro {
    padding: 150px 0 120px;
  }
}

.intro__bg {
  position: absolute;
  left: -2%;
  top: 30px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 32vw;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  -webkit-text-stroke: 2px rgba(11, 21, 48, 0.08);
  paint-order: stroke fill;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .intro__bg {
    top: 60px;
    font-size: 22vw;
  }
}

.intro__inner {
  position: relative;
}

.intro__body {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .intro__body {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 43.3333333333% 1fr;
    gap: 6.6666666667%;
    align-items: center;
  }
}

.intro__catch {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .intro__catch {
    font-size: 36px;
  }
}

.intro__paragraph {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2.1;
}
.intro__paragraph + .intro__paragraph {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .intro__paragraph {
    font-size: 16px;
  }
}

.intro__action {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .intro__action {
    margin-top: 40px;
  }
}

.intro__visual {
  position: relative;
  margin-top: 44px;
  padding-bottom: 32%;
}
@media screen and (min-width: 768px) {
  .intro__visual {
    margin-top: 0;
    padding-bottom: 26.6666666667%;
  }
}

.intro__shape {
  position: absolute;
  right: -8%;
  top: -10%;
  width: 60%;
  aspect-ratio: 74.379/50.6758;
  background: url("../img/logo-mark.svg") no-repeat center/contain;
  opacity: 0.9;
  z-index: 0;
  will-change: transform;
}

.intro__photo {
  position: relative;
  z-index: 1;
  width: 86%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(11, 21, 48, 0.4);
}
.intro__photo--2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4/3;
  z-index: 2;
  border: 6px solid #fff;
}

.intro__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.12);
}

.intro__numbers {
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .intro__numbers {
    margin-top: 110px;
  }
}

/* 数字帯 */
.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #dfe2ea;
  border: 1px solid #dfe2ea;
}
@media screen and (min-width: 768px) {
  .numbers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.numbers__item {
  background: #fff;
  padding: 22px 16px 20px;
}
@media screen and (min-width: 768px) {
  .numbers__item {
    padding: 34px 28px 30px;
  }
}

.numbers__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6b7384;
  display: flex;
  align-items: center;
  gap: 8px;
}
.numbers__label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .numbers__label {
    font-size: 13px;
  }
}

.numbers__value {
  margin-top: 8px;
  color: #0b1530;
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.numbers__prefix {
  font-size: 14px;
  font-weight: 700;
}

.numbers__num {
  color: #e0312b;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 768px) {
  .numbers__num {
    font-size: 48px;
  }
}

.numbers__unit {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .numbers__unit {
    font-size: 16px;
  }
}

.numbers__note {
  margin-top: 8px;
  font-size: 11px;
  color: #6b7384;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .numbers__note {
    font-size: 12px;
  }
}

/* ========================================================================
   Top: Service（見出し＋3カード）
   ======================================================================== */
.service {
  position: relative;
  padding: 80px 0 88px;
  background: #f4f5f8;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service {
    padding: 130px 0 140px;
  }
}

@media screen and (min-width: 768px) {
  .service__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
}

.service__catch {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .service__catch {
    margin-top: 0;
    font-size: 34px;
    text-align: right;
  }
}

.service__lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service__lead {
    margin-top: 28px;
    font-size: 16px;
  }
}

.service__list {
  margin-top: 32px;
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .service__list {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
  }
}

/* サービスカード */
.service-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px rgba(11, 21, 48, 0.35);
}

.service-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card__figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  will-change: transform;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .service-card__body {
    padding: 28px 28px 32px;
  }
}

.service-card__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #e0312b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__number::after {
  content: "";
  width: 28px;
  height: 2px;
  background: #e0312b;
}

.service-card__title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .service-card__title {
    font-size: 22px;
  }
}

.service-card__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: #14182b;
}

.service-card__tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__tag {
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f4f5f8;
  color: #6b7384;
}

.service-card__more {
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e0312b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card__more-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__more-icon {
  transform: translateX(4px);
}

/* ========================================================================
   Top: MIRAINO コート（紺の面＋写真＋4つの特徴）
   ======================================================================== */
.miraino {
  position: relative;
  padding: 88px 0;
  background: #0b1530;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .miraino {
    padding: 150px 0;
  }
}

.miraino__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.miraino__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 21, 48, 0.94) 0%, rgba(11, 21, 48, 0.8) 60%, rgba(11, 21, 48, 0.55) 100%);
}

.miraino__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.miraino__deco {
  position: absolute;
  right: -4%;
  bottom: 20px;
  z-index: 1;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 22vw;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  filter: url(#text-outline-clean);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}
@media screen and (min-width: 768px) {
  .miraino__deco {
    font-size: 14vw;
  }
}

.miraino__inner {
  position: relative;
  z-index: 2;
}

.miraino__en {
  display: inline-flex;
  align-items: flex-start;
}

.miraino__reg {
  font-size: 0.35em;
  margin-top: 0.15em;
  margin-left: 0.1em;
}

.miraino__body {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .miraino__body {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 43.3333333333% 1fr;
    gap: 6.6666666667%;
    align-items: start;
  }
}

.miraino__catch {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .miraino__catch {
    font-size: 32px;
  }
}

.miraino__paragraph {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.86);
}
@media screen and (min-width: 768px) {
  .miraino__paragraph {
    font-size: 16px;
  }
}

.miraino__action {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .miraino__action {
    margin-top: 40px;
  }
}

.miraino__features {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .miraino__features {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* 特徴ボックス（紺面の上の白抜き枠） */
.feature-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 22px 20px 20px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: background-color 0.4s, border-color 0.4s;
}
.feature-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.4);
}
@media screen and (min-width: 768px) {
  .feature-box {
    padding: 26px 24px 24px;
  }
}

.feature-box__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #e0312b;
  color: #ff5a52;
}

.feature-box__title {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.feature-box__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

/* ========================================================================
   Top: Trust（建物別の清掃・メンテナンス）
   ======================================================================== */
.trust {
  padding: 88px 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .trust {
    padding: 140px 0;
  }
}

.trust__en {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #e0312b;
}

.trust__title {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .trust__title {
    font-size: 40px;
  }
}

.trust__lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .trust__lead {
    margin-top: 28px;
    font-size: 16px;
  }
}

.trust__buildings {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .trust__buildings {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin-top: 56px;
  }
}

.trust__building {
  border-top: 2px solid #0b1530;
  padding-top: 22px;
}

.trust__building-en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e0312b;
}

.trust__building-title {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #0b1530;
}

.trust__building-copy {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.trust__building-text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 2;
  color: #6b7384;
}

.trust__action {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .trust__action {
    margin-top: 56px;
  }
}

/* ========================================================================
   Top: Recruit（全幅写真の帯・赤の面）
   ======================================================================== */
.recruit {
  position: relative;
  padding: 96px 0;
  color: #fff;
  background: #e0312b;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .recruit {
    padding: 170px 0;
  }
}

.recruit__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.recruit__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(160, 24, 20, 0.92) 0%, rgba(160, 24, 20, 0.7) 50%, rgba(160, 24, 20, 0.45) 100%);
  mix-blend-mode: multiply;
}

.recruit__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  filter: grayscale(1) contrast(1.05);
}

.recruit__shape {
  position: absolute;
  right: -10%;
  bottom: -14%;
  width: 70vw;
  max-width: 720px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .recruit__shape {
    right: -2%;
    width: 44vw;
  }
}

.recruit__shape-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 74.379/50.6758;
  fill: rgba(255, 255, 255, 0.12);
}

.recruit__inner {
  position: relative;
  z-index: 2;
}

.recruit__title {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .recruit__title {
    margin-top: 20px;
    font-size: 44px;
  }
}

.recruit__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38em;
}
@media screen and (min-width: 768px) {
  .recruit__text {
    margin-top: 28px;
    font-size: 16px;
  }
}

.recruit__action {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .recruit__action {
    margin-top: 40px;
  }
}

/* ========================================================================
   Top: News
   ======================================================================== */
.news {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 130px 0;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    display: grid;
    grid-template-columns: 23.3333333333% 1fr;
    gap: 6.6666666667%;
    align-items: start;
  }
}

.news__list {
  margin-top: 28px;
  border-top: 1px solid #dfe2ea;
}
@media screen and (min-width: 768px) {
  .news__list {
    margin-top: 0;
  }
}

.news__item {
  border-bottom: 1px solid #dfe2ea;
}

.news__action {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .news__action {
    grid-column: 2;
  }
}

/* お知らせ1件 */
.news-link {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px 14px;
  padding: 18px 4px;
  transition: color 0.3s;
}
.news-link:hover {
  color: #e0312b;
}
@media not screen and (min-width: 768px) {
  .news-link {
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "date label icon" "title title title";
    gap: 8px 12px;
  }
}
@media screen and (min-width: 768px) {
  .news-link {
    padding: 24px 8px;
    gap: 24px;
  }
}

.news-link__date {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: #6b7384;
}
@media not screen and (min-width: 768px) {
  .news-link__date {
    grid-area: date;
  }
}

.news-link__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid #e0312b;
  color: #e0312b;
  border-radius: 999px;
}
@media not screen and (min-width: 768px) {
  .news-link__label {
    grid-area: label;
  }
}

.news-link__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}
@media not screen and (min-width: 768px) {
  .news-link__title {
    grid-area: title;
  }
}
@media screen and (min-width: 768px) {
  .news-link__title {
    font-size: 16px;
  }
}

.news-link__icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-link:hover .news-link__icon {
  transform: translateX(4px);
}
@media not screen and (min-width: 768px) {
  .news-link__icon {
    grid-area: icon;
    justify-self: end;
  }
}

/* ========================================================================
   共通: CTA（お問い合わせ帯・全ページ末尾）赤の面に白文字
   ======================================================================== */
.cta {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: #e0312b;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta {
    padding: 140px 0;
  }
}

.cta__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(160, 24, 20, 0.86);
  mix-blend-mode: multiply;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  filter: grayscale(1);
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .cta__en {
    font-size: 64px;
  }
}

.cta__title {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 768px) {
  .cta__title {
    font-size: 16px;
  }
}

.cta__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .cta__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.cta__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .cta__actions {
    margin-top: 44px;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.cta__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}

.cta__tel-label {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}

.cta__tel-number {
  margin-top: 6px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 768px) {
  .cta__tel-number {
    font-size: 40px;
  }
}

.cta__tel-hours {
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================================================
   Footer
   ======================================================================== */
.footer {
  background: #070e21;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 28px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 80px 0 32px;
  }
}

@media screen and (min-width: 768px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
}
@media screen and (min-width: 768px) {
  .footer__logo-link {
    height: 40px;
    gap: 10px;
  }
}

.footer__logo-mark {
  height: 100%;
  width: auto;
  aspect-ratio: 74.379/50.6758;
  fill: #e0312b;
}

.footer__logo-word {
  height: 53.057199211%;
  width: auto;
}

.footer__name {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
}

.footer__address {
  margin-top: 6px;
  line-height: 1.8;
}

.footer__tel {
  margin-top: 4px;
}

.footer__tel-link {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.footer__business {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer__nav {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
    gap: 56px;
  }
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__item--sub {
  padding-left: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__link {
  transition: color 0.3s;
}
.footer__link:hover {
  color: #e0312b;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    margin-top: 56px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
}

/* SP固定バー（FVを過ぎたら出る。PCでは出さない） */
.sp-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  background: #0b1530;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding-bottom: env(safe-area-inset-bottom);
}
.sp-bar.is-show {
  transform: none;
}
@media screen and (min-width: 768px) {
  .sp-bar {
    display: none;
  }
}

.sp-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 52px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sp-bar__item--mail {
  background: #e0312b;
}
.sp-bar__item + .sp-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.sp-bar__icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ページトップ */
@media not screen and (min-width: 768px) {
  .pagetop {
    bottom: 64px;
  }
}
.pagetop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: #0b1530;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.4s, visibility 0.4s, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.pagetop:hover {
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .pagetop {
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
  }
}

.pagetop__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(3px) rotate(45deg);
}

/* ========================================================================
   下層共通: page-head（全幅写真＋K字シェイプ＋英字＋見出し）・パンくず・注記
   ======================================================================== */
.page-head {
  position: relative;
  padding: 144px 0 64px;
  color: #fff;
  background: #0b1530;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .page-head {
    padding: 218px 0 96px;
    min-height: 520px;
  }
}
.page-head--short {
  min-height: 280px;
}
@media screen and (min-width: 768px) {
  .page-head--short {
    min-height: 400px;
    padding-top: 188px;
    padding-bottom: 72px;
  }
}

.page-head__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
}
.page-head__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 21, 48, 0.72) 0%, rgba(11, 21, 48, 0.45) 60%, rgba(11, 21, 48, 0.2) 100%);
}

.page-head__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.page-head__shape {
  position: absolute;
  right: -14%;
  top: 6%;
  width: 70vw;
  max-width: 640px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page-head__shape {
    right: -3%;
    width: 40vw;
  }
}

.page-head__shape-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 74.379/50.6758;
  fill: rgba(255, 255, 255, 0.28);
  mix-blend-mode: screen;
}

.page-head__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-head__en {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-head__en {
    font-size: 88px;
  }
}

.page-head__title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-head__title::before {
  content: "";
  width: 28px;
  height: 3px;
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .page-head__title {
    margin-top: 18px;
    font-size: 18px;
  }
}

.page-head__lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36em;
}
@media screen and (min-width: 768px) {
  .page-head__lead {
    margin-top: 22px;
    font-size: 16px;
  }
}

/* パンくず */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #dfe2ea;
  font-size: 12px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #6b7384;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: #dfe2ea;
}
.breadcrumb__item[aria-current=page] {
  color: #14182b;
}

.breadcrumb__link {
  transition: color 0.3s;
}
.breadcrumb__link:hover {
  color: #e0312b;
}

/* 要確認の注記 */
.note {
  font-size: 0.85em;
  color: #6b7384;
}

/* ========================================================================
   Service ページ
   ======================================================================== */
.service-intro {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .service-intro {
    padding: 120px 0 100px;
  }
}

.service-intro__catch {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .service-intro__catch {
    font-size: 40px;
  }
}

.service-intro__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  max-width: 44em;
}
@media screen and (min-width: 768px) {
  .service-intro__text {
    margin-top: 28px;
    font-size: 16px;
  }
}

.service-intro__nav {
  margin-top: 32px;
  display: grid;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .service-intro__nav {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.service-intro__nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  font-weight: 700;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
.service-intro__nav-link:hover {
  border-color: #0b1530;
  background: #0b1530;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service-intro__nav-link {
    padding: 22px 24px;
  }
}

.service-intro__nav-number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #e0312b;
}

.service-intro__nav-label {
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .service-intro__nav-label {
    font-size: 15px;
  }
}

.service-detail {
  padding: 72px 0;
  border-top: 1px solid #dfe2ea;
}
.service-detail--band {
  background: #f4f5f8;
  border-top: 0;
}
@media screen and (min-width: 768px) {
  .service-detail {
    padding: 120px 0;
  }
}

.service-detail__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
}

.service-detail__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: #e0312b;
}
@media screen and (min-width: 768px) {
  .service-detail__number {
    font-size: 64px;
  }
}

.service-detail__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .service-detail__title {
    font-size: 36px;
  }
}

.service-detail__en {
  width: 100%;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7384;
}

.service-detail__body {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .service-detail__body {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 46.6666666667% 1fr;
    gap: 5.3333333333%;
    align-items: center;
  }
  .service-detail__body--reverse {
    grid-template-columns: 1fr 46.6666666667%;
  }
  .service-detail__body--reverse .service-detail__figure {
    order: 2;
  }
}

.service-detail__figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 6px;
}

.service-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.12);
}

.service-detail__text {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .service-detail__text {
    margin-top: 0;
  }
}

.service-detail__lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .service-detail__lead {
    font-size: 18px;
  }
}

.service-detail__paragraph {
  margin-top: 14px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service-detail__paragraph {
    font-size: 16px;
  }
}

.service-detail__matrix {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .service-detail__matrix {
    margin-top: 72px;
  }
}

.service-detail__subtitle {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b1530;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail__subtitle::before {
  content: "";
  width: 22px;
  height: 3px;
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .service-detail__subtitle {
    font-size: 20px;
  }
}

.service-detail__subtitle-note {
  font-size: 12px;
  font-weight: 400;
  color: #6b7384;
}

.service-detail__works {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service-detail__works {
    margin-top: 64px;
  }
}

/* 業務内容: 横罫線で区切る一覧 */
.matrix {
  margin-top: 28px;
  border-top: 1px solid #0b1530;
}

.matrix__item {
  padding: 28px 0;
  border-bottom: 1px solid #dfe2ea;
}
@media screen and (min-width: 768px) {
  .matrix__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 48px;
    padding: 36px 0;
    align-items: start;
  }
}

.matrix__category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6b7384;
}

.matrix__title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .matrix__title {
    font-size: 22px;
  }
}

.matrix__sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 400;
  color: #6b7384;
}

.matrix__list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .matrix__list {
    margin-top: 0;
  }
}

.matrix__task {
  font-size: 15px;
  line-height: 1.9;
}

/* 物件名リスト（ピル） */
.work-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .work-list {
    margin-top: 24px;
    gap: 10px;
  }
}

.work-list__item {
  padding: 8px 14px;
  border-radius: 999px;
  background: #0b1530;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .work-list__item {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ========================================================================
   MIRAINO コート ページ
   ======================================================================== */
.mc-about {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .mc-about {
    padding: 120px 0;
  }
}

.mc-about__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .mc-about__body {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 43.3333333333%;
    gap: 6.6666666667%;
    align-items: center;
  }
}

.mc-about__catch {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .mc-about__catch {
    font-size: 36px;
  }
}

.mc-about__paragraph {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .mc-about__paragraph {
    font-size: 16px;
  }
}

.mc-about__figure {
  margin-top: 28px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .mc-about__figure {
    margin-top: 0;
  }
}

.mc-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.12);
}

.mc-strength {
  padding: 72px 0;
  background: #0b1530;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mc-strength {
    padding: 120px 0;
  }
}

.mc-strength__lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.86);
}
@media screen and (min-width: 768px) {
  .mc-strength__lead {
    margin-top: 28px;
    font-size: 16px;
  }
}

.mc-strength__formula {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .mc-strength__formula {
    margin-top: 56px;
  }
}

/* 知見 ＋ 技術 ＝ トータルケア */
.formula {
  display: grid;
  gap: 10px;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  .formula {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 16px;
  }
}

.formula__item {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 24px 22px;
  text-align: center;
}
.formula__item--result {
  background: #e0312b;
  border-color: #e0312b;
}

.formula__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .formula__label {
    font-size: 20px;
  }
}

.formula__text {
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.formula__sign {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
  align-self: center;
}

.mc-strength__points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .mc-strength__points {
    margin-top: 40px;
    gap: 14px;
  }
}

.mc-strength__point {
  padding: 10px 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mc-strength__point::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0312b;
}

.mc-features {
  padding: 72px 0;
  background: #f4f5f8;
}
@media screen and (min-width: 768px) {
  .mc-features {
    padding: 120px 0;
  }
}

.mc-features__list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .mc-features__list {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 特徴カード（白） */
.feature-card {
  background: #fff;
  border-radius: 6px;
  padding: 26px 24px 28px;
}
@media screen and (min-width: 768px) {
  .feature-card {
    padding: 34px 32px 36px;
  }
}

.feature-card__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e0312b;
}

.feature-card__title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .feature-card__title {
    font-size: 24px;
  }
}

.feature-card__text {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.9;
}

.mc-cost {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .mc-cost {
    padding: 120px 0;
  }
}

.mc-cost__lead {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .mc-cost__lead {
    margin-top: 28px;
    font-size: 16px;
  }
}

.mc-cost__compare {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .mc-cost__compare {
    margin-top: 48px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* Before / After ボックス */
.compare-box {
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  padding: 26px 24px 28px;
}
.compare-box--after {
  border-color: #e0312b;
  background: #fdecea;
}
@media screen and (min-width: 768px) {
  .compare-box {
    padding: 34px 32px 36px;
  }
}

.compare-box__label {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0;
  background: #0b1530;
  color: #fff;
}
.compare-box--after .compare-box__label {
  background: #e0312b;
}

.compare-box__title {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b1530;
}

.compare-box__sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6b7384;
  margin-top: 4px;
}

.compare-box__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-box__item {
  font-size: 14.5px;
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}
.compare-box__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7384;
}
.compare-box--after .compare-box__item::before {
  background: #e0312b;
}

.compare-box__result {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #dfe2ea;
  font-size: 16px;
  font-weight: 700;
  color: #0b1530;
}
.compare-box--after .compare-box__result {
  border-color: rgba(224, 49, 43, 0.3);
  color: #e0312b;
}

.mc-cost__chart {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .mc-cost__chart {
    margin-top: 64px;
  }
}

/* 10年コストのイメージ（棒の長さは概念図） */
.cost-chart {
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  padding: 24px 20px 26px;
}
@media screen and (min-width: 768px) {
  .cost-chart {
    padding: 36px 40px 40px;
  }
}

.cost-chart__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1530;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}

.cost-chart__note {
  font-size: 12px;
  font-weight: 400;
  color: #6b7384;
}

.cost-chart__row {
  margin-top: 24px;
}

.cost-chart__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cost-chart__bars {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .cost-chart__bars {
    gap: 8px;
  }
}

.cost-chart__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 4px;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}
.cost-chart__bar--clean {
  background: #0b1530;
  min-height: 72px;
}
.cost-chart__bar--initial {
  background: #e0312b;
  min-height: 88px;
}
.cost-chart__bar--keep {
  background: #dfe2ea;
  color: #14182b;
  min-height: 40px;
}
@media screen and (min-width: 768px) {
  .cost-chart__bar {
    font-size: 15px;
    padding: 16px 8px;
  }
  .cost-chart__bar--clean {
    min-height: 100px;
  }
  .cost-chart__bar--initial {
    min-height: 120px;
  }
  .cost-chart__bar--keep {
    min-height: 52px;
  }
}

.cost-chart__year {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cost-chart__year {
    font-size: 18px;
  }
}

.cost-chart__legend {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 12px;
}

.cost-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cost-chart__legend-item::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
.cost-chart__legend-item--clean::before {
  background: #0b1530;
}
.cost-chart__legend-item--initial::before {
  background: #e0312b;
}
.cost-chart__legend-item--keep::before {
  background: #dfe2ea;
}

.cost-chart__caption {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b7384;
}

.mc-cases {
  padding: 72px 0;
  background: #f4f5f8;
}
@media screen and (min-width: 768px) {
  .mc-cases {
    padding: 120px 0;
  }
}

.mc-cases__lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
}

.mc-cases__list {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .mc-cases__list {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* 事例カード */
.case-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.case-card__figure {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.case-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  padding: 20px 22px 24px;
}

.case-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 0;
  background: #fdecea;
  color: #e0312b;
}

.case-card__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b1530;
}

.case-card__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
}

.mc-evidence {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .mc-evidence {
    padding: 120px 0;
  }
}

.mc-evidence__lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
}

.mc-evidence__table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .mc-evidence__table-wrap {
    margin-top: 40px;
  }
}

/* 性能データ表 */
.evidence-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.evidence-table th,
.evidence-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #dfe2ea;
  text-align: left;
  vertical-align: middle;
}
.evidence-table thead th {
  background: #0b1530;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .evidence-table {
    font-size: 15px;
  }
  .evidence-table th,
  .evidence-table td {
    padding: 18px 20px;
  }
}

.evidence-table__label {
  font-weight: 700;
  color: #0b1530;
  background: #f4f5f8;
  width: 34%;
}

.evidence-table__base {
  color: #6b7384;
}

.evidence-table__value {
  font-weight: 700;
  color: #e0312b;
}

.mc-evidence__action {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: 6px;
  background: #f4f5f8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mc-evidence__action {
    margin-top: 56px;
    padding: 40px;
  }
}

.mc-evidence__note {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  color: #0b1530;
}

.mc-evidence__button {
  margin-top: 18px;
}

/* ========================================================================
   Company ページ
   ======================================================================== */
.message {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .message {
    padding: 120px 0;
  }
}

.message__body {
  margin-top: 32px;
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .message__body {
    margin-top: 56px;
  }
}

.message__catch {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .message__catch {
    font-size: 36px;
  }
}

.message__paragraph {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .message__paragraph {
    font-size: 16px;
  }
}

.message__sign {
  margin-top: 28px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.message__sign-role {
  font-size: 13px;
  color: #6b7384;
}

.message__sign-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #0b1530;
}

.policy {
  position: relative;
  padding: 72px 0;
  background: #0b1530;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .policy {
    padding: 120px 0;
  }
}

.policy__shape {
  position: absolute;
  right: -12%;
  top: -6%;
  width: 70vw;
  max-width: 760px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .policy__shape {
    right: -4%;
    width: 44vw;
  }
}

.policy__shape-svg {
  width: 100%;
  height: auto;
  aspect-ratio: 74.379/50.6758;
  fill: rgba(224, 49, 43, 0.22);
}

.policy__inner {
  position: relative;
}

.policy__list {
  margin-top: 32px;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .policy__list {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
  }
}

.policy__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
@media screen and (min-width: 768px) {
  .policy__item {
    padding: 20px 0;
  }
}

.policy__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #e0312b;
  color: #ff5a52;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .policy__number {
    font-size: 26px;
  }
}

.policy__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .policy__text {
    font-size: 18px;
  }
}

.outline {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .outline {
    padding: 120px 0;
  }
}

.outline__table {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .outline__table {
    margin-top: 40px;
  }
}

/* 概要表 */
.info-table {
  border-top: 1px solid #dfe2ea;
}

.info-table__row {
  border-bottom: 1px solid #dfe2ea;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .info-table__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 22px 8px;
  }
}

.info-table__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .info-table__label {
    font-size: 15px;
  }
}

.info-table__value {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .info-table__value {
    margin-top: 0;
    font-size: 16px;
  }
}

.info-table__link {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.clients {
  padding: 72px 0;
  background: #f4f5f8;
}
@media screen and (min-width: 768px) {
  .clients {
    padding: 120px 0;
  }
}

.clients__note {
  font-size: 12px;
  font-weight: 400;
  color: #6b7384;
  margin-left: 8px;
}

.clients__list {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .clients__list {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
  }
}
@media screen and (min-width: 1100px) {
  .clients__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.clients__item {
  background: #fff;
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .clients__item {
    padding: 18px 22px;
    font-size: 15px;
  }
}

.clients__subtitle {
  margin-top: 44px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b1530;
  display: flex;
  align-items: center;
  gap: 12px;
}
.clients__subtitle::before {
  content: "";
  width: 22px;
  height: 3px;
  background: #e0312b;
}
@media screen and (min-width: 768px) {
  .clients__subtitle {
    margin-top: 64px;
    font-size: 20px;
  }
}

.history {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .history {
    padding: 120px 0;
  }
}

.history__list {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .history__list {
    margin-top: 40px;
  }
}

/* 沿革 */
.timeline {
  border-top: 1px solid #dfe2ea;
}

.timeline__item {
  border-bottom: 1px solid #dfe2ea;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .timeline__item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 22px 8px;
  }
}

.timeline__date {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #e0312b;
  font-variant-numeric: tabular-nums;
}
@media screen and (min-width: 768px) {
  .timeline__date {
    font-size: 18px;
  }
}

.timeline__text {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .timeline__text {
    margin-top: 0;
    font-size: 16px;
  }
}

.access {
  padding: 72px 0;
  background: #f4f5f8;
}
@media screen and (min-width: 768px) {
  .access {
    padding: 120px 0;
  }
}

.access__body {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .access__body {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 33.3333333333% 1fr;
    gap: 5.3333333333%;
    align-items: start;
  }
}

.access__address {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: #0b1530;
}

.access__tel {
  margin-top: 10px;
  font-size: 15px;
}

.access__tel-link {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.access__route {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
}

.access__map {
  margin-top: 24px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .access__map {
    margin-top: 0;
    aspect-ratio: 16/9;
  }
}

.access__map-frame {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================================================
   Recruit ページ
   ======================================================================== */
.rc-message {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .rc-message {
    padding: 120px 0;
  }
}

@media screen and (min-width: 768px) {
  .rc-message__inner {
    display: grid;
    grid-template-columns: 1fr 40%;
    gap: 6.6666666667%;
    align-items: center;
  }
}

.rc-message__catch {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .rc-message__catch {
    font-size: 38px;
  }
}

.rc-message__paragraph {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .rc-message__paragraph {
    font-size: 16px;
  }
}

.rc-message__figure {
  margin-top: 28px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .rc-message__figure {
    margin-top: 0;
  }
}

.rc-message__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.12);
}

.rc-points {
  padding: 72px 0;
  background: #f4f5f8;
}
@media screen and (min-width: 768px) {
  .rc-points {
    padding: 120px 0;
  }
}

.rc-points__list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .rc-points__list {
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.rc-points__note {
  margin-top: 16px;
  color: #6b7384;
}

/* 理由ボックス */
.point-box {
  background: #fff;
  border-radius: 6px;
  padding: 26px 24px 28px;
}
@media screen and (min-width: 768px) {
  .point-box {
    padding: 32px 30px 34px;
  }
}

.point-box__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: #e0312b;
}

.point-box__title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b1530;
}

.point-box__text {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.9;
}

.rc-jobs {
  padding: 72px 0;
}
@media screen and (min-width: 768px) {
  .rc-jobs {
    padding: 120px 0;
  }
}

.rc-jobs__list {
  margin-top: 28px;
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .rc-jobs__list {
    margin-top: 40px;
    gap: 28px;
  }
}

/* 職種カード */
.job-card {
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  padding: 24px 22px 26px;
}
@media screen and (min-width: 768px) {
  .job-card {
    padding: 36px 40px 40px;
  }
}

.job-card__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.job-card__number {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #e0312b;
}

.job-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .job-card__title {
    font-size: 24px;
  }
}

.job-card__table {
  margin-top: 16px;
  border-top: 1px solid #dfe2ea;
}

.job-card__row {
  border-bottom: 1px solid #dfe2ea;
  padding: 12px 0;
}
@media screen and (min-width: 768px) {
  .job-card__row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 16px 4px;
  }
}

.job-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b1530;
}

.job-card__value {
  margin-top: 4px;
  font-size: 14.5px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .job-card__value {
    margin-top: 0;
    font-size: 15px;
  }
}

.job-card__button {
  margin-top: 20px;
}

.rc-jobs__apply {
  margin-top: 40px;
  padding: 28px 24px;
  border-radius: 6px;
  background: #f4f5f8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .rc-jobs__apply {
    margin-top: 56px;
    padding: 40px;
  }
}

.rc-jobs__apply-text {
  font-size: 15px;
  line-height: 1.9;
}

.rc-jobs__apply-tel {
  margin-top: 14px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .rc-jobs__apply-tel {
    font-size: 36px;
  }
}

.rc-jobs__apply-hours {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b7384;
}

/* ========================================================================
   News ページ
   ======================================================================== */
.news-index {
  padding: 56px 0 80px;
}
@media screen and (min-width: 768px) {
  .news-index {
    padding: 80px 0 130px;
  }
}

.news-index__list {
  border-top: 1px solid #dfe2ea;
}

.news-index__item {
  border-bottom: 1px solid #dfe2ea;
}

.news-detail {
  padding: 56px 0 80px;
}
@media screen and (min-width: 768px) {
  .news-detail {
    padding: 80px 0 130px;
  }
}

@media screen and (min-width: 768px) {
  .news-detail__inner {
    max-width: 940px;
  }
}

.news-detail__head {
  padding-bottom: 24px;
  border-bottom: 1px solid #dfe2ea;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.news-detail__date {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #6b7384;
}

.news-detail__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border: 1px solid #e0312b;
  color: #e0312b;
  border-radius: 999px;
}

.news-detail__title {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0b1530;
}
@media screen and (min-width: 768px) {
  .news-detail__title {
    font-size: 32px;
  }
}

.news-detail__body {
  margin-top: 28px;
  font-size: 15px;
  line-height: 2.1;
}
.news-detail__body p + p {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .news-detail__body {
    font-size: 16px;
  }
}

.news-detail__action {
  margin-top: 40px;
}

/* ========================================================================
   Contact ページ
   ======================================================================== */
.contact {
  padding: 56px 0 80px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 80px 0 130px;
  }
}

.contact__cards {
  display: grid;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .contact__cards {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* 電話／フォームのカード */
.contact-card {
  display: block;
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  border-color: #e0312b;
  box-shadow: 0 20px 40px -30px rgba(11, 21, 48, 0.35);
}
@media screen and (min-width: 768px) {
  .contact-card {
    padding: 40px 32px;
  }
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #e0312b;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card__title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b1530;
}

.contact-card__number {
  margin-top: 8px;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: #0b1530;
}
.contact-card__number--small {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-size: 20px;
  color: #e0312b;
}
@media screen and (min-width: 768px) {
  .contact-card__number {
    font-size: 36px;
  }
  .contact-card__number--small {
    font-size: 22px;
  }
}

.contact-card__note {
  margin-top: 8px;
  font-size: 12.5px;
  color: #6b7384;
}

.contact__form-wrap {
  margin-top: 48px;
  scroll-margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .contact__form-wrap {
    margin-top: 72px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 104px;
  }
}

.contact__lead {
  font-size: 14.5px;
  line-height: 2;
}

.contact__form {
  margin-top: 28px;
}

/* フォーム部品 */
.form__group {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}

.form__legend {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0b1530;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.form-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid #dfe2ea;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-radio:has(.form-radio__input:checked) {
  border-color: #e0312b;
  background: #fdecea;
}

.form-radio__input {
  accent-color: #e0312b;
}

.form__field {
  margin-top: 20px;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0b1530;
}

.form__required,
.form__optional {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
}

.form__required {
  background: #e0312b;
  color: #fff;
}

.form__optional {
  background: #dfe2ea;
  color: #6b7384;
}

.form__input,
.form__textarea {
  margin-top: 8px;
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #dfe2ea;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.6;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: #e0312b;
  box-shadow: 0 0 0 3px rgba(224, 49, 43, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 180px;
}

.form__help {
  margin-top: 6px;
  font-size: 12px;
  color: #6b7384;
}

.form__agree {
  margin-top: 28px;
  padding: 20px;
  border-radius: 6px;
  background: #f4f5f8;
}

.form__agree-text {
  font-size: 13.5px;
  line-height: 1.9;
}

.form__agree-link {
  color: #e0312b;
  text-decoration: underline;
}

.form-check {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.form-check__input {
  width: 18px;
  height: 18px;
  accent-color: #e0312b;
}

.form__submit {
  margin-top: 28px;
  text-align: center;
}

.form__button {
  min-width: 280px;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================================================
   Privacy ページ
   ======================================================================== */
.privacy {
  padding: 56px 0 80px;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding: 80px 0 130px;
  }
}

@media screen and (min-width: 768px) {
  .privacy__inner {
    max-width: 940px;
  }
}

.privacy__lead {
  font-size: 15px;
  line-height: 2;
}

.privacy__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacy__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1530;
  padding-bottom: 8px;
  border-bottom: 1px solid #dfe2ea;
}

.privacy__text {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 2;
}

.privacy__link {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.privacy__date {
  margin-top: 32px;
  font-size: 13px;
  color: #6b7384;
  text-align: right;
}
