@charset "UTF-8";
/*
 * ======================================
 * 追加クラス一覧（共通SCSS取り込み検討用） — 株式会社LIFIX
 * ======================================
 *
 * .lifix-header / .lifix-nav / .lifix-spnav   - 透過スティッキーヘッダー＋1行ナビ
 * .lifix-btn (--accent/--primary/--outline/--ghost/--lg) - フラット矩形ボタン
 * .lifix-shead (__en/__ja, --center/--left)   - グラデEN＋日本語サブラベルの節見出し
 * .lifix-title / .lifix-lead / .lifix-text    - 明朝見出し・リード・本文
 * .lifix-phero (__en/__ja, --dark)            - 下層ページヒーロー（写真＋暗幕／ベタ）
 * .lifix-band / .lifix-band-dark              - 淡色／濃色セクション帯
 * .lifix-numgrid / .lifix-numbox              - 番号付きボックス一覧（TOP事業内容）
 * .lifix-navcards / .lifix-navcard            - 写真背景ナビカード（TOP）
 * .lifix-solgrid / .lifix-solcard             - ソリューションカード（事業内容）
 * .lifix-process (__row/__no/__ttl/__desc)    - 番号付きプロセス行
 * .lifix-icards / .lifix-icard                - 写真上カード（メリット課題）
 * .lifix-greet (__img/__body)                 - 代表挨拶の写真＋本文2カラム
 * .lifix-deftable (--filled)                  - 定義テーブル（会社情報・募集要項）
 * .lifix-chips / .lifix-chip / .lifix-map     - チップ・地図埋め込み
 * .lifix-prepbox                              - 「準備中」枠
 * .lifix-infocards / .lifix-infocard          - 連絡先カード（お問い合わせ）
 * .lifix-form / .lifix-input / .lifix-submit  - お問い合わせフォーム
 * .lifix-thanks                               - 送信完了メッセージ
 * .lifix-footer / .lifix-cta                  - ダークフッター・コンタクトCTA帯
 * .lifix-mv* （top-custom.css）                - メインビジュアル
 *
 * ======================================
 * 共通SCSSに不足していたもの（5分類）
 * ======================================
 * 構造不足: グラデーション3停止の英字見出し＋小サイズ日本語ラベルの組（heading-bigはen大/ja小だが2色グラデのみ）
 * 装飾パターン不足: 写真背景＋ブランド色グラデ暗幕のナビカード、上辺3pxアクセントのソリューションカード
 * 値の粒度不足: clamp()ベースのレスポンシブ余白／文字サイズ（共通は固定px段階）
 * 状態不足: フラットボタンの hover translateY＋背景色入替（btn--solidはsub色固定）
 * 指定方向不足: dl/grid 2分割の定義テーブル（table-basicは罫線フルボックス）
 */

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.lifix-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E2EAF2;
}
.lifix-header .header__inner {
  max-width: 1240px;
  height: 74px;
  padding: 0 clamp(20px, 5vw, 48px);
}
.lifix-logo img { height: 42px; }
.lifix-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.lifix-nav__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #15243B;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.lifix-nav__link:hover { color: #1C74BB; opacity: 1; }
.lifix-nav__link.is-current { color: #1C74BB; border-bottom-color: #1C74BB; }
@media (max-width: 1100px) {
  .lifix-nav { display: none; }
  .lifix-header .header__inner { height: 60px; }
  .lifix-logo img { height: 34px; }
}

/* SPナビ（共通sp-navの背景をダークネイビーへ） */
.lifix-spnav { background: #15243B; }
.lifix-spnav .sp-nav__link { font-family: "Noto Serif JP", serif; font-weight: 500; }
.lifix-spnav .sp-nav__link.is-current { color: #28A7E1; }
body.is-nav-open { overflow: hidden; }

/* ==========================================================================
   ボタン（フラット矩形）
   ========================================================================== */
.lifix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 15px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
}
.lifix-btn--accent  { background: #28A7E1; color: #fff; border-color: #28A7E1; }
.lifix-btn--accent:hover  { background: #1C74BB; border-color: #1C74BB; transform: translateY(-2px); opacity: 1; }
.lifix-btn--primary { background: #1C74BB; color: #fff; border-color: #1C74BB; }
.lifix-btn--primary:hover { background: #15243B; border-color: #15243B; transform: translateY(-2px); opacity: 1; }
.lifix-btn--outline { background: transparent; color: #1C74BB; border-color: #1C74BB; }
.lifix-btn--outline:hover { background: #1C74BB; color: #fff; transform: translateY(-2px); opacity: 1; }
.lifix-btn--ghost   { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.lifix-btn--ghost:hover { background: #fff; color: #15243B; transform: translateY(-2px); opacity: 1; }
.lifix-btn--lg { padding: 16px 46px; font-size: 1.5rem; letter-spacing: 0.1em; }

/* ==========================================================================
   節見出し（グラデEN ＋ 日本語ラベル）
   ========================================================================== */
.lifix-shead { margin-bottom: clamp(28px, 4vw, 44px); }
.lifix-shead--center { text-align: center; }
.lifix-shead__en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  background: linear-gradient(95deg, #2C8FA6 0%, #1C74BB 48%, #16245A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lifix-shead__ja {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
  color: #15243B;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Raleway 英字アイブロウ（小見出し上の英ラベル） */
.lifix-eyebrow {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.22em;
  color: #1C74BB;
  margin-bottom: 16px;
}

/* 見出し・本文 */
.lifix-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #15243B;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
}
.lifix-title--sm { font-size: clamp(2rem, 2.8vw, 3rem); }
.lifix-lead {
  color: #41506A;
  font-size: clamp(1.5rem, 1.8vw, 1.7rem);
  line-height: 2.2;
}
.lifix-text { color: #41506A; font-size: 1.6rem; line-height: 2.2; }
.lifix-text + .lifix-text { margin-top: 22px; }
/* タブレット以下では lifix-text を左揃え（親の text-center を上書き）。tb-text-left は汎用。 */
@media (max-width: 896px) {
  .lifix-text { text-align: left; }
  .tb-text-left { text-align: left; }
}
/* スマホではさらに小さめ */
@media (max-width: 639px) {
  .lifix-text { font-size: 1.4rem; }
}
/* 常に中央揃え（lifix-text のタブレット左揃えを上書き。media後に宣言して優先） */
.lifix-text--center { text-align: center; }

/* スマホ（639px以下）のみ表示する改行 */
.lifix-br-sp { display: none; }
@media (max-width: 639px) { .lifix-br-sp { display: inline; } }
.lifix-text--sm { color: #5C6E85; font-size: 1.4rem; line-height: 2; }
.lifix-accent { color: #1C74BB; }
.lifix-strong { color: #15243B; font-weight: 600; }

/* ==========================================================================
   セクション帯
   ========================================================================== */
.lifix-band { background: #F4F8FC; border-top: 1px solid #E2EAF2; border-bottom: 1px solid #E2EAF2; }
.lifix-band-dark { background: #0E2238; }

/* ==========================================================================
   下層ページヒーロー
   ========================================================================== */
.lifix-phero {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: clamp(72px, 12vw, 128px) 0;
}
.lifix-phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8, 20, 36, 0.52), rgba(8, 20, 36, 0.42));
}
.lifix-phero > .container,
.lifix-phero > .lifix-wrap { position: relative; z-index: 1; }
.lifix-phero__en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: 0.01em;
  color: #fff;
}
.lifix-phero__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: #fff;
}
.lifix-phero--dark { background: #0E2238; }
.lifix-phero--dark::before { display: none; }
.lifix-phero__icon {
  position: absolute;
  right: clamp(-40px, 1vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  height: clamp(180px, 32vw, 340px);
  opacity: 0.08;
  pointer-events: none;
}

/* ==========================================================================
   TOP：事業内容 番号ボックス
   ========================================================================== */
.lifix-numgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.lifix-numbox {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #D6E2EF;
  background: #fff;
  padding: 30px 34px;
  transition: border-color 0.25s, background 0.25s;
}
.lifix-numbox:hover { border-color: #28A7E1; background: #F8FBFE; }
.lifix-numbox__no {
  font-family: "Raleway", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #28A7E1;
  line-height: 1;
}
.lifix-numbox__label { font-size: 1.7rem; font-weight: 500; color: #15243B; letter-spacing: 0.02em; }
@media (max-width: 896px) { .lifix-numgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lifix-numgrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TOP：ナビカード（写真背景）
   ========================================================================== */
.lifix-navcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lifix-navcard {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 42px 34px;
  color: #fff;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
}
.lifix-navcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28, 116, 187, 0.66), rgba(8, 20, 36, 0.6));
}
.lifix-navcard > * { position: relative; z-index: 1; }
.lifix-navcard:hover { transform: translateY(-4px); opacity: 1; }
.lifix-navcard__en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.lifix-navcard__ttl {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.lifix-navcard__desc { font-size: 1.3rem; color: rgba(255, 255, 255, 0.85); line-height: 1.9; }
.lifix-navcard__view { display: block; margin-top: 24px; font-size: 1.3rem; letter-spacing: 0.1em; color: #fff; }

/* ==========================================================================
   事業内容：ソリューションカード
   ========================================================================== */
.lifix-solgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 896px) { .lifix-solgrid { grid-template-columns: repeat(2, 1fr); } }
.lifix-solcard {
  background: #fff;
  border: 1px solid #E2EAF2;
  border-top: 3px solid #1C74BB;
  padding: 38px 36px;
}
.lifix-solcard__no { font-family: "Raleway", sans-serif; font-size: 2.2rem; color: #28A7E1; margin-bottom: 12px; }
.lifix-solcard__ttl { font-family: "Noto Serif JP", serif; font-size: 1.9rem; font-weight: 600; color: #15243B; margin-bottom: 12px; }
.lifix-solcard__desc { color: #5C6E85; font-size: 1.4rem; line-height: 2; }
@media (max-width: 639px) { .lifix-solgrid { grid-template-columns: 1fr; } }

/* ==========================================================================
   プロセス行（番号 + 内容）
   ========================================================================== */
.lifix-process { display: flex; flex-direction: column; }
.lifix-process__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #E2EAF2;
}
.lifix-process__no { font-family: "Raleway", sans-serif; font-size: 3.4rem; color: #1C74BB; line-height: 1; }
.lifix-process__ttl { font-family: "Noto Serif JP", serif; font-size: 1.9rem; font-weight: 600; color: #15243B; margin-bottom: 8px; }
.lifix-process__desc { color: #5C6E85; font-size: 1.4rem; line-height: 2; }
@media (max-width: 639px) {
  .lifix-process__row { grid-template-columns: 56px 1fr; gap: 14px; }
  .lifix-process__no { font-size: 2.6rem; }
}

/* ==========================================================================
   メリット：写真上カード
   ========================================================================== */
.lifix-icards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.lifix-icard { background: #fff; border: 1px solid #E2EAF2; overflow: hidden; }
.lifix-icard__imgwrap { height: 170px; overflow: hidden; border-bottom: 1px solid #E2EAF2; }
.lifix-icard__img { width: 100%; height: 100%; object-fit: cover; object-position: center 70%; display: block; }
.lifix-icard__body { padding: 30px 30px 34px; }
.lifix-icard__ttl { font-family: "Noto Serif JP", serif; font-size: 1.8rem; font-weight: 600; color: #15243B; margin-bottom: 12px; }
.lifix-icard__desc { color: #5C6E85; font-size: 1.4rem; line-height: 2; }

/* ==========================================================================
   代表挨拶 2カラム
   ========================================================================== */
.lifix-greet { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 80px); align-items: flex-start; }
.lifix-greet__img { flex: 1 1 240px; overflow: hidden; }
.lifix-greet__img img { width: 100%; height: clamp(240px, 34vw, 380px); object-fit: cover; display: block; }
.lifix-greet__body { flex: 1.7 1 320px; }
.lifix-greet__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #15243B;
  margin-bottom: 32px;
}
.lifix-greet__sign { margin-top: 32px; text-align: right; }
.lifix-greet__sign-role { font-size: 1.3rem; color: #5C6E85; letter-spacing: 0.06em; }
.lifix-greet__sign-name { font-family: "Noto Serif JP", serif; font-size: 2rem; font-weight: 600; color: #15243B; }

/* ==========================================================================
   定義テーブル
   ========================================================================== */
.lifix-deftable { width: 100%; border-collapse: collapse; border-top: 1px solid #E2EAF2; }
.lifix-deftable tr { border-bottom: 1px solid #E2EAF2; }
.lifix-deftable th {
  width: 30%;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: #1C74BB;
  padding: 20px 8px;
  white-space: nowrap;
}
.lifix-deftable td { vertical-align: top; font-size: 1.5rem; line-height: 2; color: #15243B; padding: 20px 8px; }
.lifix-deftable--filled th { background: #FAFCFE; padding-left: 18px; white-space: normal; }
.lifix-deftable--filled td { background: #fff; padding-left: 18px; padding-right: 18px; }
@media (max-width: 639px) {
  .lifix-deftable th, .lifix-deftable td { display: block; width: 100%; white-space: normal; }
  .lifix-deftable th { padding-bottom: 4px; }
  .lifix-deftable td { padding-top: 0; }
}

/* 小見出し（取引銀行など） */
.lifix-subhead {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #15243B;
  letter-spacing: 0.03em;
}

/* チップ・地図・準備中 */
.lifix-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.lifix-chip {
  border: 1px solid #E2EAF2;
  padding: 12px 24px;
  font-size: 1.45rem;
  color: #15243B;
  line-height: 1.5;
}
@media (max-width: 639px) {
  .lifix-chip { padding: 10px 18px; font-size: 1.3rem; }
}
.lifix-map { width: 100%; height: 320px; border: 1px solid #E2EAF2; overflow: hidden; }
.lifix-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.lifix-prepbox {
  background: #fff;
  border: 1px solid #E2EAF2;
  padding: clamp(40px, 7vw, 72px);
  color: #7C8AA0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   お問い合わせ：連絡先カード
   ========================================================================== */
.lifix-infocards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.lifix-infocard {
  border: 1px solid #E2EAF2;
  background: #fff;
  padding: 42px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.lifix-infocard__label { font-size: 1.2rem; letter-spacing: 0.16em; color: #1C74BB; }
.lifix-infocard__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #15243B;
  letter-spacing: 0.02em;
}
.lifix-infocard__hours { font-size: clamp(2rem, 2.6vw, 2.4rem); font-weight: 600; color: #15243B; }
.lifix-infocard__hours small { font-size: 1.3rem; color: #5C6E85; font-weight: 400; }

/* ==========================================================================
   お問い合わせ：フォーム（メイン）＋連絡先（短い側・追従）2カラム
   ========================================================================== */
.lifix-contact2 { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 56px); align-items: flex-start; }
.lifix-contact2__main { flex: 1 1 480px; min-width: 0; }
.lifix-contact2__side {
  flex: 0 0 280px;
  position: sticky;
  top: 94px; /* スティッキーヘッダー(74px)分の余白を確保 */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 896px) {
  .lifix-contact2__main,
  .lifix-contact2__side { flex-basis: 100%; width: 100%; }
  .lifix-contact2__side { position: static; top: auto; }
}

/* 連絡先まとめカード（電話＋受付時間を1枚に） */
.lifix-contactbox {
  background: #F4F8FC;
  border: 1px solid #E2EAF2;
  border-top: 3px solid #1C74BB;
  padding: 32px 28px;
}
.lifix-contactbox__label {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  color: #1C74BB;
  margin-bottom: 6px;
}
.lifix-contactbox__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 700;
  color: #15243B;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.lifix-contactbox__div { border: none; border-top: 1px solid #E2EAF2; margin: 22px 0; }
.lifix-contactbox__hours { font-size: 1.8rem; font-weight: 600; color: #15243B; }
.lifix-contactbox__hours small { font-size: 1.3rem; font-weight: 400; color: #5C6E85; margin-left: 4px; }

/* 電話番号アイコン（672967） */
.lifix-tel-ico { width: 0.9em; height: 0.9em; display: inline-block; vertical-align: -0.12em; margin-right: 8px; color: #1C74BB; }
.lifix-contactbox__tel a { color: inherit; text-decoration: none; }

/* グラデーションアレンジ（672967：参考サイト kanou-consultant.com に準拠＝ティール→濃紺の90deg）
   ※ボタンは単色に戻す指示のため対象外（CSS既定の単色 #28A7E1／#1C74BB を使用） */
.lifix-numbox__no { background: linear-gradient(90deg, #2C8FA6 0%, #1C74BB 60%, #16245A 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* 個人情報の取り扱い（アコーディオン：672967） */
.lifix-policy { margin-top: clamp(40px, 5vw, 56px); }
.lifix-acc { border: 1px solid #E5E5E5; background: #F7F7F7; }
.lifix-acc__head { cursor: pointer; list-style: none; padding: 20px 50px 20px 24px; font-weight: 600; font-size: 1.6rem; color: #15243B; position: relative; }
.lifix-acc__head::-webkit-details-marker { display: none; }
.lifix-acc__head::after { content: "＋"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: #1C74BB; font-weight: 400; }
.lifix-acc[open] .lifix-acc__head::after { content: "－"; }
.lifix-acc__body { padding: 4px 24px 26px; }
.lifix-acc__list { list-style: disc; padding-left: 1.4em; }
.lifix-acc__list li { color: #41506A; font-size: 1.6rem; line-height: 2.2; }

/* TOP お知らせ一覧（672967。CMS差し込み前の仮レイアウト兼CMS出力の受け皿） */
.lifix-news-sec { background: #F9FBFD; padding-top: 80px; padding-bottom: 80px; }
.lifix-news2 { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); align-items: flex-start; max-width: 1110px; }
.lifix-news2__head { flex: 0 0 240px; }
.lifix-news2__body { flex: 1 1 480px; min-width: 0; }
@media (max-width: 768px) { .lifix-news2__head, .lifix-news2__body { flex-basis: 100%; width: 100%; } }
.lifix-news { border-top: 1px dotted #C2CEDA; max-height: 120px; overflow-y: auto; }
.lifix-news__item { display: flex; align-items: center; gap: 20px; padding: 18px 4px; border-bottom: 1px dotted #C2CEDA; }
.lifix-news__date { color: #1C74BB; font-family: "Raleway", sans-serif; font-weight: 600; font-size: 1.4rem; white-space: nowrap; }
.lifix-news__title { color: #15243B; font-size: 1.5rem; }
@media (max-width: 639px) { .lifix-news__item { flex-wrap: wrap; gap: 8px 14px; } .lifix-news__title { width: 100%; } }

/* 代表挨拶 左下の丸いグラデーション装飾（ぼかし：672967） */
.lifix-msg-sec { position: relative; z-index: 0; overflow: hidden; }
.lifix-msg-sec::before, .lifix-msg-sec::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle at 35% 68%, rgba(60,180,230,0.20) 0%, rgba(60,180,230,0) 60%), radial-gradient(circle at 65% 48%, rgba(150,205,140,0.13) 0%, rgba(150,205,140,0) 62%), radial-gradient(circle at 55% 60%, rgba(235,225,120,0.10) 0%, rgba(235,225,120,0) 64%); filter: blur(40px); z-index: -1; pointer-events: none; }
.lifix-msg-sec::before { left: -120px; bottom: -120px; }
.lifix-msg-sec::after  { right: -120px; top: -120px; }

/* 会社理念 背景（現状の薄水色 #F4F8FC を基調にしたグラデーション：672967） */
.lifix-band--phigrad { background: linear-gradient(160deg, #FFFFFF 0%, #F4F8FC 50%, #E4EEF8 100%); }

/* TOP事業内容 背景（bg-gradation.jpg 透過50%：672967） */
.lifix-band--bggrad { position: relative; z-index: 0; background: #fff; border-top: none; border-bottom: none; }
.lifix-band--bggrad::before { content: ""; position: absolute; top: 0; bottom: 0; left: 3.5%; right: 3.5%; z-index: -1; background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28269/bg-gradation.jpg") center / cover no-repeat; opacity: 0.2; border-radius: 10px; }
@media (max-width: 896px) { .lifix-band--bggrad::before { left: 0; right: 0; } }

/* お問い合わせフォーム見出し（やや小さめ・上下罫線） */
.lifix-form-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #15243B;
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  text-align: left;
  padding: 18px 0;
  border-top: 1px solid #E2EAF2;
  border-bottom: 1px solid #E2EAF2;
}

/* ==========================================================================
   お問い合わせフォーム
   ========================================================================== */
.lifix-form { display: flex; flex-direction: column; gap: 22px; }
.lifix-form label { display: block; }
.lifix-flabel { display: block; font-size: 1.4rem; font-weight: 500; color: #15243B; margin-bottom: 8px; }
.lifix-req { color: #1C74BB; font-size: 1.1rem; margin-left: 0.3em; }
.lifix-input {
  width: 100%;
  border: 1px solid #D6E0EC;
  background: #fff;
  padding: 14px 16px;
  font-size: 1.5rem;
  font-family: inherit;
  color: #15243B;
  outline: none;
  transition: border-color 0.2s;
}
.lifix-input:focus { border-color: #1C74BB; }
textarea.lifix-input { resize: vertical; }
.lifix-agree { display: flex; align-items: flex-start; gap: 10px; font-size: 1.4rem; color: #41506A; }
.lifix-agree input { margin-top: 5px; }
.lifix-submit {
  background: #1C74BB;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px;
  margin-top: 6px;
  transition: background 0.25s;
}
.lifix-submit:hover { background: #15243B; }
.lifix-thanks { background: #fff; border: 1px solid #28A7E1; padding: 48px 30px; text-align: center; }
.lifix-thanks__ttl { font-family: "Noto Serif JP", serif; font-size: 2.2rem; font-weight: 600; color: #1C74BB; margin-bottom: 14px; }
.lifix-thanks__txt { color: #5C6E85; font-size: 1.5rem; line-height: 2; }

/* ==========================================================================
   コンタクトCTA帯（TOP）
   ========================================================================== */
.lifix-cta { position: relative; background: linear-gradient(95deg, #0E2238 0%, #16245A 45%, #297681 130%); overflow: hidden; border-bottom: 1px solid rgba(255, 255, 255, 0.55); }
.lifix-cta__icon {
  position: absolute;
  right: clamp(-30px, 2vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  height: clamp(170px, 26vw, 300px);
  opacity: 0.07;
  pointer-events: none;
}
.lifix-cta__inner { position: relative; z-index: 1; padding: clamp(64px, 9vw, 96px) 0; }
.lifix-cta__en { font-family: "Raleway", sans-serif; font-size: 1.8rem; letter-spacing: 0.22em; color: #28A7E1; margin-bottom: 14px; }
.lifix-cta__title { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: clamp(2.2rem, 3.4vw, 3.4rem); color: #fff; line-height: 1.6; margin-bottom: 16px; }
.lifix-cta__lead { color: rgba(255, 255, 255, 0.75); font-size: 1.5rem; margin-bottom: 34px; }

/* ==========================================================================
   フッター
   ========================================================================== */
.lifix-footer { background: #0E2238; color: #fff; }
.lifix-footer__inner { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 8vw, 80px) clamp(24px, 6vw, 64px); }
.lifix-footer__cols { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); }
.lifix-footer__brand { flex: 1.7 1 280px; }
.lifix-footer__logo { height: 46px; width: auto; display: block; margin-bottom: 22px; }
.lifix-footer__addr { font-size: 1.3rem; line-height: 2; color: #9FB2C8; }
.lifix-footer__addr + .lifix-footer__addr { margin-top: 14px; }
.lifix-footer__menu { flex: 1 1 140px; display: flex; flex-direction: column; gap: 16px; }
.lifix-footer__mlabel { font-family: "Raleway", sans-serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 0.16em; color: #28A7E1; padding-bottom: 4px; }
.lifix-footer__link { color: #9FB2C8; font-size: 1.4rem; transition: color 0.2s; }
.lifix-footer__link:hover { color: #28A7E1; opacity: 1; }
.lifix-footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}
.lifix-footer__copy { font-size: 1.2rem; color: #7E93AC; letter-spacing: 0.04em; }

/* ページトップボタン：button要素の標準四角背景を消し、円形リンクのみ表示 */
.page-top {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
/* ハンバーガーメニューが出る幅（1100px以下）ではページトップを非表示 */
@media (max-width: 1100px) {
  .page-top { display: none; }
}

/* 共通 .container をデザイン基準（1240px・左右ガター）に合わせる微調整 */
.lifix-wrap { max-width: 1240px; margin: 0 auto; padding-left: clamp(24px, 6vw, 64px); padding-right: clamp(24px, 6vw, 64px); }
.lifix-wrap--narrow { max-width: 1080px; }
.lifix-wrap--slim { max-width: 880px; }
.lifix-wrap--form { max-width: 760px; }
.lifix-wrap--mid { max-width: 1000px; }
.lifix-wrap--full { max-width: 100%; }

/* TOP：ミッション節の背景透かしアイコン */
.lifix-mission { position: relative; overflow: hidden; }
.lifix-mission__icon {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(160px, 20vw, 280px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.lifix-mission > .column2 { position: relative; z-index: 1; }

/* 2カラム見出し列の上余白調整（タブレット縦積み時） */
@media (max-width: 896px) {
  .lifix-shead--col { margin-bottom: 20px; }
}

/* TOP：ミッション（左写真＋右テキスト＋下部の大きな薄い英字） */
.lifix-mission2 { position: relative; overflow: hidden; }
.lifix-mission2__inner {
  display: flex;
  flex-direction: row-reverse; /* 画像を右側に配置（テキストは左） */
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
  position: relative;
  z-index: 1;
}
.lifix-mission2__img {
  flex: 0 0 46%;
  align-self: stretch;
  min-height: clamp(320px, 38vw, 460px);
  background-size: cover;
  background-position: center;
}
.lifix-mission2__body {
  flex: 1 1 0;
  max-width: 730px;
  padding-left: clamp(24px, 6vw, 64px);
}
.lifix-mission2__bgtext {
  position: relative;
  z-index: 0;
  margin-top: clamp(10px, 2vw, 30px);
  padding-left: clamp(24px, 6vw, 64px);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #15243B;
  opacity: 0.06;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 896px) {
  .lifix-mission2__inner { flex-direction: column; align-items: stretch; gap: 28px; }
  .lifix-mission2__img { flex-basis: auto; width: 100%; min-height: 240px; }
  .lifix-mission2__body { max-width: none; padding: 0 clamp(24px, 6vw, 40px); }
  .lifix-mission2__bgtext { font-size: clamp(3rem, 13vw, 6rem); }
}
