@charset "UTF-8";
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    設定の読み込み

 * 役割: settings配下の読み込みを集約する
 * 副作用: なし
 * 依存: settings/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    変数

 * 役割: カラーや寸法などの変数を定義する
 * 副作用: なし
 * 依存: なし
 * 注意: 変更時は全体スタイルへの影響を確認

================================== */
/* ==================================
    関数

 * 役割: Sass関数を定義する
 * 副作用: なし
 * 依存: なし
 * 注意: 追加時は命名衝突に注意

================================== */
/* ==================================
    設定の読み込み

 * 役割: settings配下の読み込みを集約する
 * 副作用: なし
 * 依存: settings/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    ミックスイン

 * 役割: 再利用するミックスインを定義する
 * 副作用: なし
 * 依存: settings/tokens
 * 注意: 既存の呼び出しへの影響を確認

================================== */
/* ==================================
    ベースの読み込み

 * 役割: base配下の読み込みを集約する
 * 副作用: なし
 * 依存: base/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    基本設定

 * 役割: リセットや基本設定のスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 全体への影響が大きいため変更に注意

================================== */
html,
body {
  min-height: 100svh;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 1440px;
  overflow-x: hidden;
  background: #fcf9f8;
  color: #1c1b1b;
}
@media screen and (max-width: 992px) {
  body {
    min-width: 0;
  }
}

main {
  flex: 1;
}
main a:not([class]) {
  color: #06c;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
main a:not([class]):hover {
  text-decoration: underline;
  color: #004e9f;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    タイポグラフィ

 * 役割: タイポグラフィの基本スタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: フォント変更時は可読性を確認

================================== */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", "Work Sans", "Helvetica", "Yugothic", "Yu Gothic", "游ゴシック体", "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: decimal;
}
ol:last-child {
  margin-bottom: 0;
}
ol li {
  padding-left: 0.25rem;
}

ul {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  list-style-type: "–";
}
ul:last-child {
  margin-bottom: 0;
}
ul li {
  padding-left: 0.5rem;
}

dl {
  margin-bottom: 1.5rem;
}
dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
dl dd {
  margin-bottom: 0.5rem;
}
dl dd:last-child {
  margin-bottom: 0;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    リンク設定

 * 役割: リンクの基本スタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 全リンクの下線廃止。hover は opacity で統一

================================== */
a {
  text-decoration: none;
  color: #1c1b1b;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:link, a:visited {
  text-decoration: none;
  color: #1c1b1b;
}
a:hover, a:focus {
  opacity: 0.7;
  text-decoration: none;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    フォーム

 * 役割: フォームの基本スタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 要素の見た目変更時は全体を確認

================================== */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
input[type=url],
input[type=date],
input[type=time],
select,
textarea {
  width: 100%;
  padding: 0.25rem 0.5rem;
  border: solid 1px #c1c6d5;
  background-color: #fff;
  font-size: 1rem;
  color: #1c1b1b;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, outline-color 0.3s ease;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
input[type=number]:focus-visible,
input[type=password]:focus-visible,
input[type=search]:focus-visible,
input[type=url]:focus-visible,
input[type=date]:focus-visible,
input[type=time]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border: solid 1px #1c1b1b;
  outline: 2px solid #1c1b1b;
  outline-offset: 2px;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=url]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
select:disabled,
textarea:disabled {
  border-color: #c1c6d5;
  background-color: #f6f3f2;
  color: #727784;
  cursor: not-allowed;
}
input[type=text][readonly],
input[type=email][readonly],
input[type=tel][readonly],
input[type=number][readonly],
input[type=password][readonly],
input[type=search][readonly],
input[type=url][readonly],
input[type=date][readonly],
input[type=time][readonly],
select[readonly],
textarea[readonly] {
  border-color: #c1c6d5;
  background-color: #f6f3f2;
  color: #1c1b1b;
}
input[type=text]:invalid,
input[type=email]:invalid,
input[type=tel]:invalid,
input[type=number]:invalid,
input[type=password]:invalid,
input[type=search]:invalid,
input[type=url]:invalid,
input[type=date]:invalid,
input[type=time]:invalid,
select:invalid,
textarea:invalid {
  border-color: #ba1a1a;
}
input[type=text]:focus:not(:focus-visible),
input[type=email]:focus:not(:focus-visible),
input[type=tel]:focus:not(:focus-visible),
input[type=number]:focus:not(:focus-visible),
input[type=password]:focus:not(:focus-visible),
input[type=search]:focus:not(:focus-visible),
input[type=url]:focus:not(:focus-visible),
input[type=date]:focus:not(:focus-visible),
input[type=time]:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

select,
select::picker(select) {
  appearance: base-select;
}

option {
  padding: 0.25rem 0.5rem;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    画像設定

 * 役割: 画像要素の基本スタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: レイアウト崩れに注意

================================== */
img {
  max-width: 100%;
  height: auto;
}

/* ==================================
    レイアウトの読み込み

 * 役割: layouts配下の読み込みを集約する
 * 副作用: なし
 * 依存: layouts/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    レイアウト

 * 役割: レイアウト用クラスを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: レイアウト崩れに注意

================================== */
.l-container {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
  min-width: 1440px;
}
@media screen and (max-width: 768px) {
  .l-container {
    min-width: 0;
  }
}
.l-container--small {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.l-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.l-section--sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .l-section--sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.l-section--md {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .l-section--md {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.l-section--lg {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .l-section--lg {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.l-flow-heading {
  margin-bottom: 2rem;
}

.l-flow-cards {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.l-flow-cta-before {
  margin-bottom: 6rem;
}

.l-row {
  display: flex;
  flex-wrap: wrap;
}

.l-col-1 {
  flex: 0 0 8.3333333333%;
  width: 8.3333333333%;
  max-width: 8.3333333333%;
}

.l-col-2 {
  flex: 0 0 16.6666666667%;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

.l-col-3 {
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
}

.l-col-4 {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  max-width: 33.3333333333%;
}

.l-col-5 {
  flex: 0 0 41.6666666667%;
  width: 41.6666666667%;
  max-width: 41.6666666667%;
}

.l-col-6 {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
}

.l-col-7 {
  flex: 0 0 58.3333333333%;
  width: 58.3333333333%;
  max-width: 58.3333333333%;
}

.l-col-8 {
  flex: 0 0 66.6666666667%;
  width: 66.6666666667%;
  max-width: 66.6666666667%;
}

.l-col-9 {
  flex: 0 0 75%;
  width: 75%;
  max-width: 75%;
}

.l-col-10 {
  flex: 0 0 83.3333333333%;
  width: 83.3333333333%;
  max-width: 83.3333333333%;
}

.l-col-11 {
  flex: 0 0 91.6666666667%;
  width: 91.6666666667%;
  max-width: 91.6666666667%;
}

.l-col-12 {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 992px) {
  .l-col-tb-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .l-col-tb-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-col-tb-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .l-col-tb-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-col-tb-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .l-col-tb-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .l-col-tb-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .l-col-tb-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-col-tb-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .l-col-tb-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-col-tb-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .l-col-tb-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-col-sp-1 {
    flex: 0 0 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .l-col-sp-2 {
    flex: 0 0 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .l-col-sp-3 {
    flex: 0 0 25%;
    width: 25%;
    max-width: 25%;
  }
  .l-col-sp-4 {
    flex: 0 0 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .l-col-sp-5 {
    flex: 0 0 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .l-col-sp-6 {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
  }
  .l-col-sp-7 {
    flex: 0 0 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .l-col-sp-8 {
    flex: 0 0 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .l-col-sp-9 {
    flex: 0 0 75%;
    width: 75%;
    max-width: 75%;
  }
  .l-col-sp-10 {
    flex: 0 0 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .l-col-sp-11 {
    flex: 0 0 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .l-col-sp-12 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
/* ==================================
    ユーティリティの読み込み

 * 役割: utilities配下の読み込みを集約する
 * 副作用: なし
 * 依存: utilities/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ユーティリティ 表示制御

 * 役割: 表示制御ユーティリティを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 要素の可視性に注意

================================== */
.u-display-none {
  display: none !important;
}

@media screen and (min-width: 993px) {
  .u-display-pc-none {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .u-display-tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-display-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ユーティリティ タイポグラフィ

 * 役割: タイポグラフィ用ユーティリティを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 文字サイズ変更時は可読性を確認

================================== */
.u-text-small {
  font-size: 0.75rem;
}

.u-text-large {
  font-size: 1.25rem;
}

.u-text-muted {
  color: #727784;
}

.u-text-alert {
  color: #ba1a1a;
}

.u-text-thin {
  font-weight: 100;
}

.u-text-bold {
  font-weight: 600;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ユーティリティ エフェクト系

 * 役割: エフェクト用ユーティリティを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 視認性への影響に注意

================================== */
.u-hover-opacity {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.u-hover-opacity:hover, .u-hover-opacity:focus {
  opacity: 0.5;
}

.u-hover-zoom {
  display: block;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.u-hover-zoom:hover, .u-hover-zoom:focus {
  transform: scale(1.2);
}

/* ==================================
    ユーティリティ アニメーション

 * 役割: アニメーション用ユーティリティを定義する
 * 副作用: なし
 * 依存: なし
 * 注意: 動きの強さに注意

================================== */
@keyframes anime-shake {
  0%, 3%, 100% {
    transform: translateX(0);
  }
  95% {
    transform: translateX(-2px);
  }
  96% {
    transform: translateX(2px);
  }
  97% {
    transform: translateX(-4px);
  }
  98% {
    transform: translateX(4px);
  }
  99% {
    transform: translateX(0);
  }
}
.u-anime-shake {
  animation: anime-shake 4s ease-in-out infinite;
}

/* ==================================
    コンポーネントの読み込み

 * 役割: components配下の読み込みを集約する
 * 副作用: なし
 * 依存: components/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ボタンスタイル

 * 役割: ボタンコンポーネントのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: Stitch designMd のグラデーション CTA 仕様に準拠。hover は translateY + shadow で統一

================================== */
.c-button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-button-group {
    flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}

.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-width: 220px;
  padding: 0.75rem 2rem;
  border-radius: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  /* stylelint-disable-next-line order/properties-order */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-button:link, .c-button:visited {
  text-decoration: none;
}
.c-button:hover, .c-button:focus {
  opacity: 1;
  transform: translateY(-2px);
}
.c-button--primary {
  border: none;
  background: linear-gradient(135deg, #004e9f, #06c, #004e9f);
  background-position: 0% 50%;
  background-size: 200% 200%;
  box-shadow: 0 4px 6px -1px rgba(0, 78, 159, 0.2);
  color: #fff;
  transition: background-position 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-button--primary:link, .c-button--primary:visited {
  color: #fff;
}
.c-button--primary:hover, .c-button--primary:focus {
  background-position: 100% 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 78, 159, 0.3), 0 4px 6px -4px rgba(0, 78, 159, 0.3);
}
.c-button--primary:active {
  transform: scale(0.95);
}
.c-button--secondary {
  border: none;
  background: #fff;
  color: #06c;
}
.c-button--secondary:link, .c-button--secondary:visited {
  color: #06c;
}
.c-button--secondary:hover, .c-button--secondary:focus {
  background: #f6f3f2;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 102, 204, 0.1);
}
.c-button--outline {
  border: 1px solid rgba(193, 198, 213, 0.3);
  background: transparent;
  color: #06c;
}
.c-button--outline:link, .c-button--outline:visited {
  color: #06c;
}
.c-button--outline:hover, .c-button--outline:focus {
  border-color: rgba(0, 102, 204, 0.3);
  background: #d7e3ff;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 102, 204, 0.1);
}
.c-button--ghost {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #fff;
}
.c-button--ghost:link, .c-button--ghost:visited {
  color: #fff;
}
.c-button--ghost:hover, .c-button--ghost:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1);
}
.c-button--ghost:active {
  transform: scale(0.95);
}
.c-button--default {
  border: 1px solid #c1c6d5;
  background: #fff;
  color: #1c1b1b;
}
.c-button--default:link, .c-button--default:visited {
  color: #1c1b1b;
}
.c-button--default:hover, .c-button--default:focus {
  background: #f6f3f2;
  box-shadow: 0 0.25rem 0.75rem rgba(28, 27, 27, 0.1);
}
.c-button--large {
  padding: 1rem 4rem;
  font-size: 1.25rem;
}
.c-button--icon {
  gap: 0.75rem;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    トグルアイコン

 * 役割: トグルアイコンのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: アニメーションの見た目に注意

================================== */
.c-toggle-icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-toggle-icon {
    display: block;
    position: absolute;
    right: 1rem;
    z-index: 2;
    width: 25px;
    height: 25px;
    border: none;
    background: none;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .c-toggle-icon__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1c1b1b;
    transform: translateY(-50%);
  }
  .c-toggle-icon__line::before, .c-toggle-icon__line::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #1c1b1b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .c-toggle-icon__line::before {
    top: -9px;
  }
  .c-toggle-icon__line::after {
    top: 9px;
  }
}
@media screen and (max-width: 768px) {
  .c-toggle-icon.is-open .c-toggle-icon__line {
    background: transparent;
  }
  .c-toggle-icon.is-open .c-toggle-icon__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .c-toggle-icon.is-open .c-toggle-icon__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    スクロールトップボタン

 * 役割: スクロールトップボタンのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 表示位置の変更に注意

================================== */
.c-scroll-top {
  display: none;
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #1c1b1b;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    リスト

 * 役割: リストコンポーネントのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 入れ子表示の影響に注意

================================== */
.c-list-stack {
  padding: 0;
  list-style: none;
}
.c-list-stack li {
  display: flex;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 1px #c1c6d5;
}
@media screen and (max-width: 768px) {
  .c-list-stack li {
    flex-direction: column;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.c-list-stack li:first-child {
  border-top: solid 1px #c1c6d5;
}
.c-list-stack li > * {
  margin-right: 0.5rem;
}
.c-list-stack li > *:last-child {
  margin-right: 0;
}
.c-list-stack a {
  text-decoration: none;
}
.c-list-stack a:hover {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.c-list-stack a:hover:hover, .c-list-stack a:hover:focus {
  opacity: 0.5;
}

.c-list-card {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0;
  list-style: none;
}
.c-list-card a {
  display: block;
  text-decoration: none;
}
.c-list-card a:hover {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.c-list-card a:hover:hover, .c-list-card a:hover:focus {
  opacity: 0.5;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    セクションタイトル

 * 役割: 共通セクションタイトル（label-md + headline-md ペア）のスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 各ページの見出しセクションで使用

================================== */
.c-section-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    margin-bottom: 2rem;
  }
}
.c-section-title--center {
  text-align: center;
}

.c-section-title__label {
  margin-bottom: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #06c;
}

.c-section-title__heading {
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    エラー表示スタイル

 * 役割: フィールドエラーと通知エラーの表示スタイル
 * 副作用: なし
 * 依存: settings
 * 注意: 管理画面とフロントエンド共通

================================== */
.is-error {
  border-color: #ba1a1a;
  background-color: rgb(247, 195, 195);
}
.is-error.button, .is-error.c-button {
  background-color: transparent;
}

label.is-error {
  padding: 0.125rem 0.25rem;
}

.c-field-error-message {
  display: block;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  background-color: rgba(186, 26, 26, 0.1);
  font-size: 0.75rem;
  line-height: 1.4;
  color: #ba1a1a;
}

.c-error-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-error-list__item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid #ba1a1a;
  border-radius: 0 3px 3px 0;
  background-color: rgba(186, 26, 26, 0.05);
  font-size: 0.75rem;
  color: #ba1a1a;
}
.c-error-list__item::before {
  content: "!";
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #ba1a1a;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.c-success-message {
  padding: 0.75rem 1rem;
  border-left: 3px solid #28a745;
  border-radius: 0 3px 3px 0;
  background-color: rgba(40, 167, 69, 0.1);
  font-size: 0.75rem;
  color: #28a745;
}

.c-form-group.is-error .c-form-label {
  color: #ba1a1a;
}
.c-form-group.is-error .c-form-input,
.c-form-group.is-error .c-form-textarea,
.c-form-group.is-error .c-form-select {
  border-color: #ba1a1a;
}
.c-form-group.is-error .c-form-input:focus,
.c-form-group.is-error .c-form-textarea:focus,
.c-form-group.is-error .c-form-select:focus {
  border-color: #ba1a1a;
  box-shadow: 0 0 0 3px rgba(186, 26, 26, 0.25);
}

/* ==================================
    ナビゲーションの読み込み

 * 役割: nav配下の読み込みを集約する
 * 副作用: なし
 * 依存: components/nav/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    グローバルナビ

 * 役割: グローバルナビゲーションのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: SP画面ではドロワーメニューとして機能し、アイコンとフッターを表示

================================== */
.c-global-nav {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-global-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: 100vh;
    padding-top: 2rem;
    overflow-y: auto;
    background: #f6f3f2;
    transition: right 0.3s ease;
  }
}
@media screen and (max-width: 768px) {
  .c-global-nav.is-open {
    right: 0;
  }
}
.c-global-nav__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-global-nav__inner {
    flex-direction: column;
    align-items: stretch;
    min-height: calc(100vh - 60px - 1rem);
    gap: 2rem;
    padding: 0 1.5rem 4rem;
  }
}
.c-global-nav__title {
  margin-bottom: 0;
  margin-left: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: left;
  color: #06c;
}
.c-global-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .c-global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-global-nav__item {
    width: 100%;
  }
}
.c-global-nav__link {
  position: relative;
  padding-bottom: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: #1c1b1b;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-global-nav__link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #06c;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-global-nav__link:hover {
  opacity: 1;
  color: #06c;
}
.c-global-nav__link:hover::after {
  left: 0;
  width: 100%;
}
.c-global-nav__link.is-active {
  color: #06c;
}
.c-global-nav__link.is-active::after {
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-global-nav__link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 16px;
    border-left: 4px solid transparent;
    font-size: 1.25rem;
  }
  .c-global-nav__link::after {
    display: none;
  }
  .c-global-nav__link.is-active {
    border-left-color: #06c;
    background-color: transparent;
    color: #06c;
  }
}
.c-global-nav__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-global-nav__icon {
    display: inline-block;
    width: 32px;
    margin-right: 0.75rem;
    font-size: 1rem;
    text-align: center;
  }
}
.c-global-nav__cta {
  flex-shrink: 0;
  margin-left: 3rem;
}
@media screen and (max-width: 768px) {
  .c-global-nav__cta {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}
.c-global-nav__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 4rem;
}
.c-global-nav__bottom-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.c-global-nav__bottom-links a {
  font-size: 0.625rem;
  text-decoration: none;
  color: #727784;
}
.c-global-nav__bottom-links a:hover {
  text-decoration: underline;
}
.c-global-nav__copyright {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #727784;
}
@media screen and (max-width: 1200px) {
  .b-header--transparent .c-global-nav__link {
    color: #fff;
  }
  .b-header--transparent .c-global-nav__link:hover {
    color: rgba(255, 255, 255, 0.7);
  }
  .b-header--transparent .c-global-nav__link.is-active {
    color: #fff;
  }
  .b-header--transparent .c-global-nav__link.is-active::after {
    background-color: #fff;
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    パンくずリスト

 * 役割: パンくずナビのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 下線は廃止、hover は色変化で統一

================================== */
.c-breadcrumb-nav {
  font-size: 0.75rem;
}
.c-breadcrumb-nav__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.c-breadcrumb-nav__item {
  padding-left: 0;
  color: #fff;
}
.c-breadcrumb-nav__item + .c-breadcrumb-nav__item::before {
  content: ">";
  margin: 0 0.25rem;
}
.c-breadcrumb-nav__link:link, .c-breadcrumb-nav__link:visited {
  text-decoration: none;
  color: #fff;
}
.c-breadcrumb-nav__link:hover {
  text-decoration: none;
  color: #fff;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    フッターナビ

 * 役割: ボトムナビゲーションのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 固定表示時の重なりに注意

================================== */
.c-bottom-nav {
  padding: 3rem 0;
  background: rgb(254, 254, 254);
  font-size: 1rem;
}
.c-bottom-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.c-bottom-nav__link:link {
  text-decoration: none;
}
.c-bottom-nav__link {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.c-bottom-nav__link:hover, .c-bottom-nav__link:focus {
  opacity: 0.5;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ページネーション

 * 役割: ページネーションのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 状態クラスの変更に注意

================================== */
.c-pagination-nav {
  margin-top: 8rem;
}
.c-pagination-nav__list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.c-pagination-nav__item > a,
.c-pagination-nav__item > span,
.c-pagination-nav__item .c-pagination-nav__link,
.c-pagination-nav__item .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background-color: #fcf9f8;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: #727784;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-pagination-nav__item > a:hover, .c-pagination-nav__item > a.is-current, .c-pagination-nav__item > a.current,
.c-pagination-nav__item > span:hover,
.c-pagination-nav__item > span.is-current,
.c-pagination-nav__item > span.current,
.c-pagination-nav__item .c-pagination-nav__link:hover,
.c-pagination-nav__item .c-pagination-nav__link.is-current,
.c-pagination-nav__item .c-pagination-nav__link.current,
.c-pagination-nav__item .page-numbers:hover,
.c-pagination-nav__item .page-numbers.is-current,
.c-pagination-nav__item .page-numbers.current {
  background-color: #06c;
  color: #fff;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    記事ナビ

 * 役割: 投稿ナビのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: c-pagination-nav のデザインパターンに準拠

================================== */
.c-post-nav {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #c1c6d5;
}
.c-post-nav__list {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}
.c-post-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  background-color: #fcf9f8;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: #727784;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-post-nav__link:hover {
  background-color: #06c;
  color: #fff;
}
.c-post-nav__link--prev::before {
  content: "←";
  margin-right: 0.5rem;
}
.c-post-nav__link--next::after {
  content: "→";
  margin-left: 0.5rem;
}
.c-post-nav__link--archive {
  background-color: #06c;
  color: #fff;
}
.c-post-nav__link--disabled {
  opacity: 0.4;
  cursor: default;
}
.c-post-nav__link--disabled:hover {
  background-color: #fcf9f8;
  color: #727784;
}

/* ==================================
    ブロックの読み込み

 * 役割: blocks配下の読み込みを集約する
 * 副作用: なし
 * 依存: blocks/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    ヘッダー

 * 役割: ヘッダーブロックのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 常時不透明背景。ロゴは画像表示

================================== */
.b-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-width: 1440px;
  background-color: #fcf9f8;
  box-shadow: 0 1px 0 rgba(28, 27, 27, 0.04);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 992px) {
  .b-header {
    min-width: 0;
  }
}
.b-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  height: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .b-header__inner {
    height: 60px;
    padding: 0 1rem;
  }
}
.b-header__logo {
  flex-shrink: 0;
}
.b-header__logo-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.b-header__logo-link:hover {
  opacity: 0.8;
}
.b-header__logo-image {
  display: block;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .b-header__logo-image {
    height: 40px;
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    フッター

 * 役割: フッターブロックのスタイルを定義する（Stitch Final デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: 4カラム構成。ダーク背景。Stitch の Tonal Layering に準拠

================================== */
.b-footer {
  background: #1a1a1a;
  color: #fff;
}
.b-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 4rem;
  padding-top: 8rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .b-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.b-footer__info-logo {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.b-footer__info-company {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 0.75rem;
  font-weight: 600;
}
.b-footer__info-address {
  opacity: 0.6;
  font-size: 0.75rem;
  line-height: 1.8;
}
.b-footer__nav-title {
  margin-bottom: 1.5rem;
  opacity: 0.5;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.b-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .b-footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.75rem;
  }
}
.b-footer__nav-link {
  opacity: 0.7;
  font-size: 0.75rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.b-footer__nav-link:link, .b-footer__nav-link:visited {
  color: #fff;
}
.b-footer__nav-link:hover {
  opacity: 1;
}
.b-footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.625rem;
  color: #fff;
}
.b-footer__copyright-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .b-footer__copyright-inner {
    padding: 1rem 0;
  }
}
.b-footer__copyright-text {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    SNSリンク

 * 役割: ソーシャルリンクブロックのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: アイコン表示の崩れに注意

================================== */
.b-social-links {
  margin-bottom: 3rem;
  font-size: 1.5rem;
}
.b-social-links__list {
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.b-social-links__link:link {
  opacity: 1;
  transition: opacity 0.2s ease;
  padding: 0.5rem;
}
.b-social-links__link:link:hover, .b-social-links__link:link:focus {
  opacity: 0.5;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    タイトル

 * 役割: タイトルブロックのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 文字サイズ変更時の影響に注意

================================== */
.b-page-title {
  position: relative;
  border-bottom: 1px solid #c1c6d5;
  background-color: #1a1a1a;
  background-position: center;
  background-size: cover;
}
.b-page-title__inner {
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  min-height: inherit;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.b-page-title__content {
  margin-top: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .b-page-title__content {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }
}
.b-page-title__sub {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #06c;
}
.b-page-title__main {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.b-page-title__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .b-page-title__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.b-page-title__desc {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.b-page-title__date {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}

.b-block-title {
  margin-bottom: 3rem;
}
.b-block-title__jp {
  font-size: 1.5rem;
  font-weight: 600;
}
.b-block-title__en {
  font-size: 1rem;
  font-weight: 400;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    サイドバー

 * 役割: 汎用サイドバーブロックのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 表示幅変更時の影響に注意

================================== */
.b-sidebar {
  flex-shrink: 0;
  width: 320px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .b-sidebar {
    width: 100%;
  }
}
.b-sidebar__section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #c1c6d5;
}
.b-sidebar__title {
  display: inline-block;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid #06c;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: left;
  text-transform: uppercase;
  color: #1c1b1b;
}
.b-sidebar__categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.b-sidebar__categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(193, 198, 213, 0.5);
  font-size: 0.75rem;
}
.b-sidebar__categories-link {
  font-weight: 500;
  color: #1c1b1b;
  transition: color 0.3s ease;
}
.b-sidebar__categories-link:hover {
  color: #06c;
}
.b-sidebar__count {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #f6f3f2;
  font-size: 0.625rem;
  font-weight: 600;
  color: #06c;
}
.b-sidebar__recent {
  margin: 0;
  padding: 0;
  list-style: none;
}
.b-sidebar__recent li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(193, 198, 213, 0.5);
}
.b-sidebar__recent li time {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.625rem;
  color: #727784;
}
.b-sidebar__recent-link {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1c1b1b;
  transition: color 0.3s ease;
}
.b-sidebar__recent-link:hover {
  color: #06c;
}
.b-sidebar__archive-list {
  padding: 0;
  list-style: none;
}
.b-sidebar__archive-title {
  font-weight: 600;
}
.b-sidebar__cta {
  padding: 2rem;
  border-radius: 0.5rem;
  background-color: #004e9f;
  color: #fff;
}
.b-sidebar__cta h3 {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.b-sidebar__cta p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
  font-size: 0.75rem;
  line-height: 1.8;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    新着情報リスト

 * 役割: 新着情報リストのスタイル
 * 副作用: なし
 * 依存: settings
 * 注意: なし

================================== */
.b-news-list {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .b-news-list {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .b-news-list__date {
    font-size: 0.625rem;
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    お問い合わせフォーム

 * 役割: お問い合わせフォームのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: フォーム表示の変更に注意

================================== */
.b-contact-form {
  margin-bottom: 3rem;
}
.b-contact-form__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.b-contact-form__label {
  width: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #727784;
}
.b-contact-form__label .required {
  margin-left: 0.25rem;
  color: #ba1a1a;
}
.b-contact-form textarea {
  min-height: 150px;
  resize: none;
}
.b-contact-form input[type=text],
.b-contact-form input[type=email],
.b-contact-form input[type=tel],
.b-contact-form textarea,
.b-contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0.25rem;
  background-color: #f6f3f2;
  font-size: 1rem;
  color: #1c1b1b;
  transition: border-color 0.3s ease;
}
.b-contact-form input[type=text]:focus,
.b-contact-form input[type=email]:focus,
.b-contact-form input[type=tel]:focus,
.b-contact-form textarea:focus,
.b-contact-form select:focus {
  border-color: #06c;
  outline: none;
}
.b-contact-form input[type=text]::placeholder,
.b-contact-form input[type=email]::placeholder,
.b-contact-form input[type=tel]::placeholder,
.b-contact-form textarea::placeholder,
.b-contact-form select::placeholder {
  opacity: 0.7;
  color: #727784;
}
.b-contact-form__agreement {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.b-contact-form__error-message {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #ba1a1a;
}
.b-contact-form--confirm .b-contact-form__row {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c1c6d5;
}
.b-contact-form--confirm .c-contact-confirm-value {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #1c1b1b;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    CTA（Call To Action）ブロック

 * 役割: サイト共通のCTAセクションのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: `_page-top.scss` 等に個別記述されていたCTAを統合したもの
================================== */
.b-cta {
  display: block;
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  background-color: #06c;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .b-cta {
    padding: 4rem 0;
  }
}
.b-cta__bg-text {
  position: absolute;
  right: -8rem;
  bottom: -1.5rem;
  opacity: 0.1;
  font-size: 20rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 768px) {
  .b-cta__bg-text {
    font-size: 8rem;
  }
}
.b-cta__inner {
  position: relative;
  z-index: 1;
}
.b-cta__title {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.b-cta__desc {
  margin-bottom: 3rem;
  opacity: 0.9;
  font-size: 1rem;
  color: #d7e3ff;
}

/* ==================================
    ページの読み込み

 * 役割: pages配下の読み込みを集約する
 * 副作用: なし
 * 依存: pages/*
 * 注意: 読み込み順で上書きに影響

================================== */
/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    トップページ

 * 役割: トップページのスタイルを定義する（Stitch Final デザイン忠実版）
 * 副作用: なし
 * 依存: settings
 * 注意: 5セクション構成（Hero / Service / News / Message / CTA）

================================== */
.p-top-hero {
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #1a1a1a;
}
.p-top-hero .vegas-content-scrollable {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-top-hero .vegas-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(28, 27, 27, 0.6), rgba(28, 27, 27, 0.3), transparent);
}
.p-top-hero__content {
  z-index: 10;
  color: #fff;
}
.p-top-hero__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  background-color: #06c;
  font-size: 0.625rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  padding: 0.25rem 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.p-top-hero__title {
  max-width: 640px;
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.p-top-hero__title-accent {
  color: #d7e3ff;
}
.p-top-hero__desc {
  max-width: 640px;
  margin-bottom: 3rem;
  opacity: 0.85;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-top-hero__desc {
    font-size: 1rem;
  }
}
.p-top-hero__action {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top-hero__action {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-top-news {
  background-color: #fcf9f8;
  padding-top: 8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-top-news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-news .c-button-group {
    margin-bottom: 0;
  }
}

.p-top-service {
  background-color: #f6f3f2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top-service {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-top-service__divider {
  width: 4rem;
  height: 0.25rem;
  margin: 0 auto;
  background-color: #06c;
}
.p-top-service__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}
@media screen and (max-width: 768px) {
  .p-top-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-service__card {
  display: block;
  position: relative;
  height: 500px;
  overflow: hidden;
  background-color: #1a1a1a;
  text-decoration: none;
  color: #fff;
  grid-column: span 2;
}
.p-top-service__card:nth-child(4) {
  grid-column: 1/4;
}
.p-top-service__card:nth-child(5) {
  grid-column: 4/7;
}
@media screen and (max-width: 768px) {
  .p-top-service__card {
    height: 300px;
    grid-column: span 1;
  }
  .p-top-service__card:first-child {
    grid-column: span 2;
  }
  .p-top-service__card:nth-child(4), .p-top-service__card:nth-child(5) {
    grid-column: span 1;
  }
}
.p-top-service__card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
  inset: 0;
  will-change: transform;
}
.p-top-service__card:hover .p-top-service__card-image {
  transform: scale(1.1);
}
.p-top-service__card-overlay {
  position: absolute;
  background: linear-gradient(to top, rgba(28, 27, 27, 0.9), rgba(28, 27, 27, 0.4), rgba(28, 27, 27, 0.4));
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.7s ease-out;
  inset: 0;
}
.p-top-service__card:hover .p-top-service__card-overlay {
  opacity: 0.6;
}
.p-top-service__card-content {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .p-top-service__card-content {
    padding: 1rem;
  }
}
.p-top-service__card-title {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.p-top-service__card-desc {
  margin-bottom: 2rem;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #fff;
}
.p-top-service__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-top-service__card:hover .p-top-service__card-link {
  gap: 1rem;
}

.p-top-message {
  background-color: #f6f3f2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-top-message {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-top-message__inner {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-top-message__inner {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-message__img {
  flex: none;
  width: 40%;
  max-width: 400px;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-message__img {
    order: 2;
    width: 100%;
    max-width: none;
  }
}
.p-top-message__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 27, 27, 0.1);
  aspect-ratio: 4/5;
}
@media screen and (max-width: 768px) {
  .p-top-message__img img {
    aspect-ratio: 16/9;
  }
}
.p-top-message__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-top-message__content {
    display: contents;
  }
}
.p-top-message__title {
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}
.p-top-message__desc {
  margin-bottom: 4rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-top-message__desc {
    order: 3;
  }
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    お知らせ一覧ページ

 * 役割: お知らせ一覧ページのスタイルを定義する（Stitch final_4 デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: ヒーロー + カテゴリフィルタ + カードグリッド + ページネーション

================================== */
.p-archive {
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-archive {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-archive__date {
    font-size: 0.625rem;
  }
}
.p-archive__inner {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-archive__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-archive__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-archive__grid {
    grid-template-columns: 1fr;
  }
}
.p-archive__card {
  border: 1px solid #c1c6d5;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fcf9f8;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.p-archive__card:hover {
  box-shadow: 0 0.75rem 2rem rgba(28, 27, 27, 0.08);
  transform: translateY(-2px);
}
.p-archive__card-link {
  display: block;
  color: inherit;
  transition: color 0.3s ease;
}
.p-archive__card-link:hover {
  opacity: 1;
}
.p-archive__card-image {
  overflow: hidden;
  background-color: #fff;
  aspect-ratio: 16/9;
}
.p-archive__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  will-change: transform, opacity;
}
.p-archive__card:hover .p-archive__card-image img {
  opacity: 0.7;
  transform: scale(1.03);
}
.p-archive__card-body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  padding: 2rem;
}
.p-archive__card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.p-archive__card-badge {
  padding: 2px 0.5rem;
  border-radius: 0.25rem;
  background-color: rgba(0, 102, 204, 0.1);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06c;
}
.p-archive__card-date {
  font-size: 0.625rem;
  font-weight: 500;
  color: #727784;
}
.p-archive__card-title {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1c1b1b;
  transition: color 0.3s ease;
}
.p-archive__card:hover .p-archive__card-title {
  color: #06c;
}
.p-archive__card-excerpt {
  display: -webkit-box;
  margin-bottom: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #727784;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    お知らせ詳細ページ

 * 役割: お知らせ詳細ページのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 2カラム（メインコンテンツ + サイドバー）

================================== */
.p-single__inner {
  display: flex;
  gap: 6rem;
  padding-top: 6rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-single__inner {
    flex-direction: column;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}
.p-single__article {
  flex: 1;
  min-width: 0;
}
.p-single__thumb {
  margin-bottom: 3rem;
}
.p-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.p-single__body {
  margin-bottom: 8rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #1c1b1b;
  /* stylelint-disable-next-line no-descending-specificity */
}
@media screen and (max-width: 768px) {
  .p-single__body {
    margin-bottom: 4rem;
  }
}
.p-single__body img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
}
.p-single__body blockquote {
  margin: 3rem 0;
  padding: 2rem 3rem;
  border-left: 4px solid #06c;
  border-radius: 0.25rem;
  background-color: #f6f3f2;
  font-size: 1rem;
  line-height: 1.8;
  color: #1c1b1b;
}
.p-single__body h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  font-weight: 800;
  color: #1c1b1b;
}
.p-single__body h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-single__body p {
  margin-bottom: 1.5rem;
}
.p-single__body ul,
.p-single__body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.p-single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #c1c6d5;
}
.p-single__tags-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #727784;
}
.p-single__tag {
  padding: 0.25rem 0.75rem;
  border: 1px solid #c1c6d5;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  color: #727784;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.p-single__tag:hover {
  border-color: #06c;
  color: #06c;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    お問い合わせページ

 * 役割: お問い合わせページのスタイルを定義する（Stitch final_2 デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: ヒーロー + 2カラム（電話情報 + フォーム）構成

================================== */
.p-contact__inner {
  display: flex;
  gap: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-contact__inner {
    flex-direction: column;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-contact__info {
  display: flex;
  flex: 0 0 40%;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__info {
    flex: none;
    order: 2;
    width: 100%;
  }
}
.p-contact__form-wrap {
  flex: 1;
  min-width: 0;
  padding: 6rem;
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 4px 6px -1px rgba(28, 27, 27, 0.05);
}
@media screen and (max-width: 768px) {
  .p-contact__form-wrap {
    order: 1;
    padding: 3rem 2rem;
  }
}
.p-contact__urgent-card {
  padding: 4rem;
  border-radius: 0.5rem;
  background-color: #f6f3f2;
}
@media screen and (max-width: 768px) {
  .p-contact__urgent-card {
    padding: 2rem;
  }
}
.p-contact__urgent {
  margin-bottom: 1.5rem;
}
.p-contact__urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #c1c6d5;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1c1b1b;
}
.p-contact__info-title {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1c1b1b;
}
.p-contact__info-desc {
  margin-bottom: 2rem;
  font-size: 0.75rem;
  line-height: 1.8;
  color: #727784;
}
.p-contact__phone {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #06c;
  transition: opacity 0.3s ease;
}
.p-contact__phone:hover {
  opacity: 0.7;
}
.p-contact__hours {
  margin-bottom: 4rem;
  font-size: 0.75rem;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-contact__hours {
    margin-bottom: 2rem;
  }
}
.p-contact__hours strong {
  font-weight: 600;
  color: #1c1b1b;
}
.p-contact__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-contact__feature {
  display: flex;
  gap: 1.5rem;
}
.p-contact__feature > i {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(193, 198, 213, 0.3);
  border-radius: 0.25rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(28, 27, 27, 0.05);
  font-size: 1rem;
  color: #06c;
}
.p-contact__feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-contact__feature p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #727784;
}
.p-contact__image {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(28, 27, 27, 0.1);
  aspect-ratio: 16/9;
}
.p-contact__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    エラーページ

 * 役割: エラーページのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: 文言変更時の見た目に注意

================================== */
.p-error {
  text-align: center;
}
.p-error__title {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.p-error__title strong {
  display: block;
  font-size: 8.75rem;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    会社概要ページ

 * 役割: 会社概要ページのスタイルを定義する（Stitch final_5 デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: 5セクション構成（Hero / Banner / Message / Info+Map / Safety）

================================== */
.p-about-message {
  background-color: #fcf9f8;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-about-message {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-about-message__inner {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-about-message__inner {
    flex-direction: column;
    gap: 0;
  }
}
.p-about-message__image {
  flex: 0 0 clamp(240px, 30%, 340px);
}
@media screen and (max-width: 768px) {
  .p-about-message__image {
    flex: none;
    order: 2;
    width: 100%;
    max-width: 160px;
    margin-bottom: 2rem;
  }
}
.p-about-message__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-about-message__content {
    display: contents;
  }
}
.p-about-message__title {
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}
.p-about-message__desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-about-message__desc {
    order: 3;
  }
}
.p-about-message__name {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #c1c6d5;
}
@media screen and (max-width: 768px) {
  .p-about-message__name {
    order: 4;
  }
}
.p-about-message__name-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #727784;
}
.p-about-message__name-value {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}

.p-about-info {
  background-color: #f6f3f2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-about-info {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-about-info__grid {
  display: flex;
  gap: 6rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-about-info__grid {
    flex-direction: column;
    gap: 3rem;
  }
}
.p-about-info__table-wrap {
  flex: 7 1 0;
}
.p-about-info__table {
  width: 100%;
  border-collapse: collapse;
}
.p-about-info__table th,
.p-about-info__table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid #c1c6d5;
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}
.p-about-info__table th {
  width: clamp(120px, 25%, 160px);
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  color: #1c1b1b;
}
@media screen and (max-width: 768px) {
  .p-about-info__table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.p-about-info__table td {
  color: #727784;
}
.p-about-info__table td br {
  display: block;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-about-info__table td {
    display: block;
    padding-top: 0.5rem;
  }
}
.p-about-info__map {
  flex: 5 1 0;
  min-width: clamp(300px, 32%, 420px);
}
@media screen and (max-width: 768px) {
  .p-about-info__map {
    flex: none;
    width: 100%;
    min-width: 0;
  }
}
.p-about-info__map-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  background: #fff;
}
.p-about-info__map-embed {
  flex: 1;
  width: 100%;
  min-height: clamp(260px, 24vw, 340px);
  border-radius: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-about-info__map-embed {
    flex: none;
    min-height: 0;
    aspect-ratio: 16/9;
  }
}
.p-about-info__map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.p-about-info__map-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #c1c6d5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #06c;
  transition: opacity 0.3s ease;
  /* stylelint-disable-next-line order/properties-order */
  align-self: flex-start;
}
.p-about-info__map-link-text {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.p-about-info__map-link-icon {
  transition: transform 0.3s ease;
}
.p-about-info__map-link:hover {
  opacity: 0.7;
}
.p-about-info__map-link:hover .p-about-info__map-link-icon {
  transform: translateX(0.5rem);
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    事業内容ページ

 * 役割: 事業内容ページのスタイルを定義する（Stitch final_6 デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: ページヒーロー + 5サービス（交互レイアウト＋サブカード）+ CTA

================================== */
.p-service__section {
  background-color: #fcf9f8;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-service__section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-service__section--alt {
  background-color: #f6f3f2;
}
.p-service__item {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-service__item {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.p-service__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-service__item--reverse {
    flex-direction: column;
  }
}
.p-service__item-content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-service__item-content {
    display: contents;
  }
}
.p-service__item-image {
  flex: 1;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service__item-image {
    order: 2;
    margin-bottom: 1.5rem;
  }
}
.p-service__item-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.p-service__item-number {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06c;
}
.p-service__item-title {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}
.p-service__item-divider {
  width: 4rem;
  height: 3px;
  margin-bottom: 2rem;
  background: #06c;
}
.p-service__item-desc {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-service__item-desc {
    order: 3;
    margin-bottom: 1rem;
  }
}
.p-service__sub-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-service__sub-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    order: 4;
    gap: 1rem;
    margin-top: 0;
  }
}
.p-service__sub-card {
  padding: 2rem;
  border: 1px solid #c1c6d5;
  border-radius: 0.5rem;
  background-color: #fcf9f8;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-service__sub-card {
    padding: 1rem;
  }
}
.p-service__sub-card-icon {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #06c;
}
@media screen and (max-width: 768px) {
  .p-service__sub-card-icon {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
  }
}
.p-service__sub-card-title {
  margin-bottom: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-service__sub-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #727784;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    採用情報ページ

 * 役割: 採用情報ページのスタイルを定義する（Stitch final_1 デザイン準拠）
 * 副作用: なし
 * 依存: settings
 * 注意: ヒーロー + ビジョン + 文化カード + 募集要項 + 選考プロセス + CTA

================================== */
.p-recruit-vision {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-vision {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-recruit-vision__inner {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-recruit-vision__inner {
    flex-direction: column;
    gap: 0;
  }
}
.p-recruit-vision__image {
  flex: 0 0 clamp(240px, 30%, 340px);
}
@media screen and (max-width: 768px) {
  .p-recruit-vision__image {
    flex: none;
    order: 2;
    width: 100%;
  }
}
.p-recruit-vision__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 27, 27, 0.15);
  aspect-ratio: 3/4;
}
@media screen and (max-width: 768px) {
  .p-recruit-vision__image img {
    margin-bottom: 1.5rem;
    aspect-ratio: 16/9;
  }
}
.p-recruit-vision__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-recruit-vision__content {
    display: contents;
  }
}
.p-recruit-vision__title {
  margin-bottom: 2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: #1c1b1b;
}
.p-recruit-vision__desc {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-recruit-vision__desc {
    order: 3;
  }
}

.p-recruit-culture {
  background-color: #f6f3f2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-culture {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-recruit-culture__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-recruit-culture__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.p-recruit-culture__card {
  padding: 3rem;
  border: 1px solid #c1c6d5;
  border-radius: 0.5rem;
  background-color: #fcf9f8;
}
@media screen and (max-width: 768px) {
  .p-recruit-culture__card {
    padding: 2rem;
  }
}
.p-recruit-culture__card-icon {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #06c;
}
.p-recruit-culture__card-title {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-recruit-culture__card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #727784;
}

.p-recruit-openings {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-openings {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-recruit-openings__item {
  margin-bottom: 3rem;
  padding: 3rem;
  border: 1px solid #c1c6d5;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-openings__item {
    margin-bottom: 1.5rem;
    padding: 2rem;
  }
}
.p-recruit-openings__category {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid #06c;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #06c;
}
.p-recruit-openings__title {
  margin-bottom: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-recruit-openings__detail {
  margin: 0;
}
.p-recruit-openings__detail-row {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(193, 198, 213, 0.5);
}
@media screen and (max-width: 768px) {
  .p-recruit-openings__detail-row {
    gap: 0;
    padding: 0.5rem 0;
  }
}
.p-recruit-openings__detail-term {
  flex: 0 0 120px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1c1b1b;
}
.p-recruit-openings__detail-desc {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #727784;
}

.p-recruit-process {
  background-color: #f6f3f2;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-recruit-process {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-recruit-process__grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: process-step;
}
@media screen and (max-width: 768px) {
  .p-recruit-process__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.p-recruit-process__step {
  padding: 3rem;
  border-radius: 0.5rem;
  background-color: #fcf9f8;
  counter-increment: process-step;
}
@media screen and (max-width: 768px) {
  .p-recruit-process__step {
    padding: 2rem;
  }
}
.p-recruit-process__step::before {
  content: "Step " counter(process-step);
  display: block;
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #06c;
}
.p-recruit-process__step-title {
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1c1b1b;
}
.p-recruit-process__step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #727784;
}

/* ==================================
    全体スタイル読み込み

 * 役割: 全体スタイルの読み込みを統合する
 * 副作用: なし
 * 依存: settings/base/utilities/components/blocks/pages/extensions
 * 注意: 追加時は読み込み順に注意

================================== */
/* ==================================
    プライバシーポリシー

 * 役割: プライバシーポリシーページのスタイルを定義する
 * 副作用: なし
 * 依存: settings
 * 注意: エディトリアル法律文書スタイル（左ボーダー見出し + カスタムカウンタ番号リスト）

================================== */
.p-privacy-policy {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.p-privacy-policy__intro {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 2px solid #06c;
  font-size: 1rem;
  line-height: 1.8;
  color: #727784;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__intro {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.p-privacy-policy__section {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__section {
    margin-bottom: 2rem;
  }
}
.p-privacy-policy__section:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__heading {
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #06c;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1c1b1b;
}
.p-privacy-policy__text {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #727784;
}
.p-privacy-policy__text:last-child {
  margin-bottom: 0;
}
.p-privacy-policy__text a {
  font-weight: 600;
  text-decoration: underline;
  color: #06c;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-privacy-policy__text a:hover {
  opacity: 0.7;
}
.p-privacy-policy__list {
  margin: 1rem 0;
  padding-left: 3rem;
  list-style: none;
  counter-reset: policy-item;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__list {
    padding-left: 1rem;
  }
}
.p-privacy-policy__list > li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #727784;
  counter-increment: policy-item;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy__list > li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
  }
}
.p-privacy-policy__list > li::before {
  content: counter(policy-item) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #06c;
}
.p-privacy-policy__list ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}
.p-privacy-policy__list ul li {
  margin-bottom: 0.25rem;
}
.p-privacy-policy__list ul li::before {
  content: none;
}

/* ==================================
    拡張の読み込み

 * 役割: 拡張スタイルの読み込みを集約する
 * 副作用: なし
 * 依存: extensions/*
 * 注意: 読み込み順で上書きに影響

================================== */

/*# sourceMappingURL=style.css.map */
