/* ==========================================================================
   soleil-static-pages.css
   固定ページ共通コンポーネントスタイル
   配置: /wp-content/themes/issue_tcd106-child/css/
   読込: is_page() のみ
   プレフィックス: .sol- （既存CSSとのバッティング回避）
   ========================================================================== */

/* --------------------------------------------------------------------------
   STRENGTHS: .strengths-list
   チェックアイコン付きリスト。事務所の強み・実績アピール等に使用。
   元: top.css の .page-id-272 スコープを汎用化
   -------------------------------------------------------------------------- */

/* リストリセット */
.strengths-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* 各項目 */
.strength-item {
  position: relative;
  list-style: none !important;
  padding: 16px 0 16px 44px;
  border-bottom: 1px dashed #761A31;
  font-size: 20px !important;
  line-height: 1.6;
  font-weight: 500;
}

/* チェックマークアイコン */
.strength-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 28px;
  height: 28px;
  background: url("https://health-beauty-soleil.jp/wp-content/uploads/2025/05/check-icon.png")
              no-repeat center/contain;
}

/* サブテキスト */
.strength-sub {
  display: block;
  margin-top: 8px;
  font-size: 14px !important;
  color: #555;
  line-height: 1.4;
}


/* --------------------------------------------------------------------------
   STRENGTHS: .strengths
   事務所の強みセクション。チェックアイコン付きリスト。
   ※ トップページは top.css の .page-id-272 .strengths で管理。
   ※ こちらは下層ページ用のコピー（page-id セレクタなし）。
   -------------------------------------------------------------------------- */

/* 全体 */
.strengths {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px;
}

/* ヒーロー画像 */
.strengths p {
  max-width: 1100px !important;
}

.strengths-hero {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

/* リストリセット */
.strengths-list {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* 各項目 */
.strength-item {
  position: relative;
  padding: 16px 0 16px 44px;
  border-bottom: 1px dashed #761A31;
  font-size: 20px !important;
  line-height: 1.6;
  font-weight: 500;
  list-style: none !important;
}

/* チェックマークアイコン */
.strength-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 28px;
  height: 28px;
  background: url("https://health-beauty-soleil.jp/wp-content/uploads/2025/05/check-icon.png")
              no-repeat center/contain;
}

/* サブテキスト */
.strength-sub {
  display: block;
  margin-top: 8px;
  font-size: 14px !important;
  color: #555;
  line-height: 1.4;
}


/* --------------------------------------------------------------------------
   LIST: .sol-list
   チェックマーク付きリスト。サービス紹介・特徴一覧等に使用。
   -------------------------------------------------------------------------- */
ul.sol-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1.5em 0;
}

ul.sol-list > li {
  position: relative;
  list-style: none !important;
  padding: 0.6em 0 0.6em 1.8em;
  border-bottom: 1px solid #eee;
  font-size: 1.05em;
  line-height: 1.7;
}

ul.sol-list > li:last-child {
  border-bottom: none;
}

ul.sol-list > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.6em;
  color: #b8860b;
  font-weight: bold;
  font-size: 1.1em;
}

/* リスト内の補足テキスト */
.sol-list .sol-sub {
  display: block;
  font-size: 0.85em;
  color: #777;
  margin-top: 0.2em;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   LINK: .sol-link-arrow
   矢印付きの内部リンク。セクション末尾の誘導リンク等に使用。
   -------------------------------------------------------------------------- */
a.sol-link-arrow,
a.sol-link-arrow:visited,
a.sol-link-arrow:link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  padding: 0.2em 0;
  font-size: 0.95em;
  font-weight: 600;
  color: #333 !important;
  text-decoration: none !important;
  border: none !important;
  transition: color 0.2s ease;
}

a.sol-link-arrow::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #b8860b;
  border-right: 2px solid #b8860b;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

a.sol-link-arrow:hover {
  color: #b8860b !important;
}

a.sol-link-arrow:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}

/* sol-link-arrow を含む p のマージン・行間を詰める */
p:has(> .sol-link-arrow) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 2.2;
}
