@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ============================================
   リニューアル共通スタイル（2026-07-05）
   配色: 深緑 #2e6b4f / 薄緑 #eef5f0 / オレンジ #e8a020（行動ボタン専用）
   ============================================ */
:root {
  --arh-green: #2e6b4f;
  --arh-green-dark: #1f4d38;
  --arh-bg: #eef5f0;
  --arh-orange: #e8a020;
  --arh-orange-dark: #c9880f;
  --arh-text: #333333;
}

/* 本文の可読性（40〜60代スマホ読者基準） */
body { font-size: 16px; line-height: 1.9; color: var(--arh-text); }

/* --- ボタン --- */
.arh-btn-tel, .arh-btn-form {
  display: inline-block; padding: 0.9em 1.6em; border-radius: 8px;
  font-weight: bold; text-decoration: none; text-align: center;
  min-width: 240px; font-size: 1.05rem; line-height: 1.4;
}
.arh-btn-tel { background: #fff; color: var(--arh-green); border: 2px solid var(--arh-green); }
.arh-btn-tel:hover { background: var(--arh-bg); color: var(--arh-green); }
.arh-btn-tel .arh-btn-small, .arh-btn-form .arh-btn-small { display: block; font-size: 0.75rem; font-weight: normal; }
.arh-btn-form { background: var(--arh-orange); color: #fff; border: 2px solid var(--arh-orange); box-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.arh-btn-form:hover { background: var(--arh-orange-dark); border-color: var(--arh-orange-dark); color: #fff; }
.arh-btn-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 1.2em; }

/* --- ヘッダー内CTA（ヘッダー内部ウィジェット / Task13） --- */
.arh-headBox { display: flex; align-items: center; gap: 12px; }
.arh-headBox .arh-btn-tel, .arh-headBox .arh-btn-form { min-width: 0; padding: 0.55em 1.1em; font-size: 0.92rem; }

/* --- ヒーロー（フル幅・立山稜線シルエット） --- */
body { overflow-x: hidden; } /* フル幅化(100vw)のスクロールバー分のはみ出し対策 */
.top #content.l-content, .home .l-content { padding-top: 0; } /* トップはヒーローを最上部から開始（SWELLインラインCSSの .top #content{padding-top:2em} をID込み詳細度で上書き） */
.arh-hero {
  position: relative; width: 100vw; margin-left: calc(50% - 50vw);
  overflow: hidden; text-align: center;
  background:
    linear-gradient(172deg, rgba(28,34,31,0.62) 0%, rgba(24,30,27,0.58) 50%, rgba(12,18,15,0.8) 100%),
    url("/wp-content/uploads/2026/07/photo-hero.jpg") center 30% / cover no-repeat,
    linear-gradient(172deg, #35745c 0%, #24533f 55%, #16382a 100%);
  padding: clamp(56px, 8vw, 104px) 24px clamp(110px, 15vw, 190px);
}
.arh-hero::before { /* 上空の柔らかい光 */
  content: ""; position: absolute; left: -20%; right: -20%; top: -40%; height: 90%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(244,249,246,0.15), transparent 70%);
  pointer-events: none;
}
.arh-hero__ridge { position: absolute; left: 0; right: 0; bottom: -1px; pointer-events: none; }
.arh-hero__ridge svg { display: block; width: 100%; height: auto; }
.arh-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.arh-hero__eyebrow {
  display: inline-block; color: #f4f9f6; font-size: 0.85rem; letter-spacing: 0.18em; font-weight: 600;
  border: 1px solid rgba(244,249,246,0.45); border-radius: 999px; padding: 6px 20px; margin: 0 0 1.6em;
}
.arh-hero .arh-hero__catch {
  color: #fff; font-size: clamp(1.7rem, 4.6vw, 3rem); font-weight: 700; line-height: 1.6;
  letter-spacing: 0.06em; margin: 0 0 0.7em; padding: 0; text-shadow: 0 2px 14px rgba(10,25,18,0.35);
  background: none; border: none;
}
.arh-hero .arh-hero__catch .arh-accent { color: #f0b446; }
.arh-hero__sub { color: rgba(255,255,255,0.92); font-size: clamp(0.95rem, 2.4vw, 1.1rem); margin: 0 0 1.5em; }
.arh-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 2em; padding: 0; list-style: none; }
.arh-hero__chips li {
  background: rgba(244,249,246,0.12); border: 1px solid rgba(244,249,246,0.32);
  color: #f4f9f6; border-radius: 999px; padding: 7px 18px; font-size: 0.88rem; font-weight: 600;
}
.arh-hero__chips li::before { content: "✓ "; color: #f0b446; font-weight: 700; }
.arh-hero .arh-btn-tel, .arh-hero .arh-btn-form {
  font-size: 1.12rem; padding: 0.95em 2em; border-radius: 12px;
  box-shadow: 0 6px 20px rgba(10,25,18,0.3); transition: transform 0.15s ease;
}
.arh-hero .arh-btn-form { background: linear-gradient(180deg, #eda92e, #d8930f); border-color: transparent; }
.arh-hero .arh-btn-tel { border-width: 0; }
.arh-hero .arh-btn-tel:hover, .arh-hero .arh-btn-form:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: no-preference) {
  .arh-hero__inner > * { animation: arhRise 0.7s ease-out backwards; }
  .arh-hero__inner > *:nth-child(2) { animation-delay: 0.08s; }
  .arh-hero__inner > *:nth-child(3) { animation-delay: 0.16s; }
  .arh-hero__inner > *:nth-child(4) { animation-delay: 0.24s; }
  .arh-hero__inner > *:nth-child(5) { animation-delay: 0.32s; }
}
@keyframes arhRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* --- CTA帯（共通パターン） --- */
.arh-cta { background: var(--arh-green); border-radius: 12px; padding: 40px 24px; text-align: center; color: #fff; }
.arh-cta__title { font-size: 1.4rem; font-weight: bold; margin: 0 0 0.6em; color: #fff; }
.arh-cta__text { font-size: 1rem; margin: 0 auto 0.5em; max-width: 640px; color: #fff; }
.arh-cta__tel { font-size: 1.6rem; font-weight: bold; color: #fff; }
.arh-cta a.arh-btn-tel { background: #fff; }

/* --- カード（施工メニュー・実績・ピックアップ） --- */
.arh-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.arh-card { background: #fff; border: 1px solid #dde8e1; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.arh-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.arh-card__body { padding: 16px; }
.arh-card__title { font-size: 1.1rem; font-weight: bold; color: var(--arh-green); margin: 0 0 0.4em; }
.arh-card__text { font-size: 0.92rem; margin: 0; }
.arh-card a { text-decoration: none; color: inherit; }
.arh-card__label { display: inline-block; background: var(--arh-bg); color: var(--arh-green); font-size: 0.78rem; font-weight: bold; padding: 2px 10px; border-radius: 999px; margin-bottom: 6px; }

/* --- 選ばれる理由 --- */
.arh-reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; counter-reset: reason; }
.arh-reason { background: #fff; border-top: 4px solid var(--arh-green); border-radius: 0 0 12px 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 24px 20px; }
.arh-reason__num { color: var(--arh-orange); font-size: 0.85rem; font-weight: bold; letter-spacing: 0.1em; }
.arh-reason__title { font-size: 1.15rem; font-weight: bold; color: var(--arh-green); margin: 0.2em 0 0.5em; }
.arh-reason__text { font-size: 0.95rem; margin: 0; }

/* --- 施工の流れ --- */
.arh-flow { display: grid; gap: 12px; max-width: 720px; margin: 0 auto; }
.arh-flow__step { background: #fff; border: 1px solid #dde8e1; border-left: 6px solid var(--arh-green); border-radius: 8px; padding: 16px 20px; position: relative; }
.arh-flow__step strong { color: var(--arh-green); display: block; font-size: 1.05rem; }
.arh-flow__step span { font-size: 0.92rem; }

/* --- FAQ --- */
.arh-faq details { background: #fff; border: 1px solid #dde8e1; border-radius: 8px; margin-bottom: 12px; padding: 0; }
.arh-faq summary { cursor: pointer; font-weight: bold; padding: 16px 20px; color: var(--arh-green); font-size: 1rem; }
.arh-faq details p { padding: 0 20px 16px; margin: 0; font-size: 0.95rem; }

/* --- 概要表 --- */
.arh-table { width: 100%; border-collapse: collapse; }
.arh-table th, .arh-table td { border: 1px solid #dde8e1; padding: 12px 16px; text-align: left; font-size: 0.95rem; }
.arh-table th { background: var(--arh-bg); color: var(--arh-green); width: 30%; font-weight: bold; }

/* --- ヘッダー内CTA（大ボタンの流用を等高・コンパクトに調整） --- */
.arh-headBox { display: flex; align-items: stretch; gap: 10px; }
.arh-headBox .arh-btn-tel,
.arh-headBox .arh-btn-form {
  min-width: 0; width: auto; padding: 0.35em 1.1em; font-size: 1rem;
  display: flex; flex-direction: column; justify-content: center;
  white-space: nowrap; line-height: 1.35; border-radius: 6px;
}
.arh-headBox .arh-btn-small { font-size: 0.7rem; }
@media (max-width: 959px) {
  .arh-headBox { display: none; } /* スマホは画面下の固定ボタンが担当 */
}

/* ============================================
   全体品質向上パス（2026-07-06）
   ============================================ */

/* --- 下層ページのタイトル帯: 山写真＋稜線シルエットでトップFVと統一 --- */
.l-topTitleArea {
  --ttl-photo: url("/wp-content/uploads/2026/07/photo-hero.jpg");
  position: relative;
  min-height: clamp(190px, 24vw, 280px);
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(172deg, rgba(28,34,31,0.68) 0%, rgba(12,18,15,0.84) 100%),
    var(--ttl-photo) center 35% / cover no-repeat,
    linear-gradient(168deg, #35745c 0%, #24533f 60%, #1b4433 100%);
}
/* ページ別のタイトル帯写真（トップFVとの重複を避ける） */
.page-id-55 .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-works-05.jpg"); }
.page-id-674 .l-topTitleArea, .parent-pageid-674 .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-works-01.jpg"); }
.page-id-53 .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-naisou-2.jpg"); }
.page-id-59 .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-works-04.jpg"); }
.blog .l-topTitleArea, .archive .l-topTitleArea, .single .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-gaiheki-2.jpg"); }
.page-id-587 .l-topTitleArea { --ttl-photo: url("/wp-content/uploads/2026/07/photo-works-06.jpg"); }
.l-topTitleArea::before { display: none; } /* SWELLのドットテクスチャを無効化 */
.l-topTitleArea__img { display: none !important; }
.l-topTitleArea :is(h1, .c-pageTitle) {
  color: #fff; font-weight: 700; letter-spacing: 0.12em;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding-bottom: 0;
}
.l-topTitleArea :is(h1, .c-pageTitle)::before {
  color: #f0b446; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; content: "";
}
.page-id-55 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Service"; }
.page-id-674 .l-topTitleArea :is(h1, .c-pageTitle)::before, .page-child-674 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Works"; }
.page-id-53 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "About"; }
.page-id-59 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Contact"; }
.page-id-587 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Recruit"; }
.page-id-3 .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Privacy Policy"; }
.blog .l-topTitleArea :is(h1, .c-pageTitle)::before, .archive .l-topTitleArea :is(h1, .c-pageTitle)::before { content: "Column"; }

/* コラム一覧・アーカイブ: タイトル帯が出ないテンプレートのため h1 自体を帯化 */
.blog #content.l-content, .archive #content.l-content { padding-top: 0; }
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle {
  width: 100vw; margin: 0 0 40px calc(50% - 50vw);
  min-height: clamp(190px, 24vw, 280px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-weight: 700; letter-spacing: 0.12em;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  padding: 0 24px; border: none;
  background:
    linear-gradient(172deg, rgba(28,34,31,0.62) 0%, rgba(12,18,15,0.78) 100%),
    url("/wp-content/uploads/2026/07/photo-gaiheki-2.jpg") center 30% / cover no-repeat,
    linear-gradient(168deg, #35745c 0%, #24533f 60%, #1b4433 100%);
}
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle .c-pageTitle__inner { border: none; padding: 0; }
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle::before {
  content: "Column"; color: #f0b446; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
}
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle::after { display: none; } /* SWELL既定の下線を無効化 */

/* --- コンテンツ内の見出しデザイン --- */
.post_content h2 { position: relative; padding: 0.2em 0 0.55em; border-bottom: 1px solid #dde8e1; letter-spacing: 0.05em; }
.post_content h2::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 64px; height: 3px; border-radius: 2px; background: var(--arh-green); }
.post_content h3 { position: relative; padding-left: 14px; }
.post_content h3::before { content: ""; position: absolute; left: 0; top: 0.3em; bottom: 0.3em; width: 4px; border-radius: 2px; background: var(--arh-green); }

/* --- トップページ用セクション帯 --- */
.arh-section { width: 100vw; margin-left: calc(50% - 50vw); padding: clamp(64px, 8vw, 104px) 24px; }
.arh-section--alt { background: #f2f7f4; }
.arh-section--dark { background: linear-gradient(172deg, #24533f, #16382a); color: #fff; }
.arh-section--dark p { color: rgba(255,255,255,0.88); }
.arh-section__inner { max-width: 1080px; margin: 0 auto; }
.arh-section__head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.arh-eyebrow { display: block; color: var(--arh-green); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 10px; }
.arh-section--dark .arh-eyebrow, .arh-cta .arh-eyebrow { color: #f0b446; }
.post_content h2.arh-section__title, .arh-section__title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: 0.06em; line-height: 1.5; margin: 0; padding: 0; border: 0; }
.post_content h2.arh-section__title::after { display: none; }
.arh-section--dark .arh-section__title { color: #fff; }
.arh-section__lead { color: #5a6660; font-size: 0.98rem; margin: 14px 0 0; }
.arh-section--dark .arh-section__lead { color: rgba(255,255,255,0.8); }
.arh-section .wp-block-latest-posts { max-width: 1080px; margin-left: auto; margin-right: auto; }

/* --- カード強化 --- */
.arh-cards { gap: 26px; }
.arh-card { border: 1px solid #e3ede7; border-radius: 16px; box-shadow: 0 10px 30px rgba(22,56,42,0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.arh-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(22,56,42,0.14); }
.arh-card img { height: 165px; }
.arh-card > a { display: flex; flex-direction: column; height: 100%; }
.arh-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.arh-card__text { line-height: 1.7; }
.arh-card__more { display: inline-block; margin-top: auto; padding-top: 12px; color: var(--arh-green); font-size: 0.88rem; font-weight: 700; }
.arh-card__more::after { content: " →"; }

/* --- 理由カード強化 --- */
.arh-reasons { gap: 26px; }
.arh-reason { border: 1px solid #e3ede7; border-top: none; border-radius: 16px; box-shadow: 0 10px 30px rgba(22,56,42,0.08); padding: 28px 24px; position: relative; overflow: hidden; }
.arh-reason::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--arh-green); }

/* --- 施工の流れ（番号つきステップ） --- */
.arh-flow { gap: 0; }
.arh-flow__step { display: flex; gap: 18px; align-items: stretch; background: transparent; border: none; border-radius: 0; padding: 0 0 26px; position: relative; }
.arh-flow__num { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 50%; background: var(--arh-green); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1.02rem; position: relative; top: 10px; z-index: 1; } /* margin-topはSWELLの:first-childリセットに潰されるためtopで位置合わせ */
.arh-flow__step::before { content: ""; position: absolute; left: 21px; top: 54px; bottom: 0; width: 2px; background: #cfe0d6; }
.arh-flow__step:last-child { padding-bottom: 0; }
.arh-flow__step:last-child::before { display: none; }
.arh-flow__body { flex: 1; background: #fff; border: 1px solid #e3ede7; border-radius: 12px; padding: 16px 20px; box-shadow: 0 4px 14px rgba(22,56,42,0.05); }
.arh-flow__body strong { display: block; color: var(--arh-green); font-size: 1.05rem; margin-bottom: 2px; }
.arh-flow__body span { font-size: 0.92rem; }

/* --- FAQ（Q表示・開閉インジケーター付き） --- */
.arh-faq { max-width: 860px; margin: 0 auto; }
.arh-faq details { border: 1px solid #e3ede7; border-radius: 12px; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(22,56,42,0.05); overflow: hidden; }
.arh-faq summary { display: flex; align-items: center; gap: 14px; padding: 17px 48px 17px 18px; position: relative; list-style: none; }
.arh-faq summary::-webkit-details-marker { display: none; }
.arh-faq summary::before { content: "Q"; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; background: var(--arh-green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-family: georgia, serif; }
.arh-faq summary::after { content: "＋"; position: absolute; right: 18px; color: var(--arh-green); font-weight: 700; }
.arh-faq details[open] summary::after { content: "−"; }
.arh-faq details p { padding: 2px 20px 18px 62px; }

/* --- CTA帯の視認性・押しやすさ最適化 --- */
.arh-cta .arh-cta__tel { font-size: clamp(1.8rem, 5.5vw, 2.3rem); letter-spacing: 0.02em; margin: 0.4em 0 0.15em; }
.arh-cta .arh-cta__tel a { font-weight: 700; }
.arh-cta .arh-btn-row { margin-top: 2em; }
.arh-cta .arh-btn-form { font-size: 1.12rem; padding: 1em 2.6em; min-width: 0; width: auto; }
@media (max-width: 599px) {
  .arh-cta .arh-btn-form { width: min(100%, 320px); }
  .arh-cta .arh-cta__text { font-size: 0.92rem; }
}

/* --- CTA帯（フル幅・ダークバンド化） --- */
.post_content > .arh-cta:last-child { margin-bottom: -96px !important; } /* CTAで終わるページはSWELLのコンテンツ下余白(96px)を相殺し白い隙間をなくす（SWELL側が!important指定のため対抗） */
.arh-cta { width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; padding: clamp(56px, 8vw, 88px) 24px clamp(120px, 15vw, 170px); background: linear-gradient(172deg, #2e6b4f, #1f4d38); position: relative; overflow: hidden; }
.arh-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 0%, rgba(244,249,246,0.1), transparent 70%); pointer-events: none; }
.arh-cta > * { position: relative; }
.arh-cta__ridge { position: absolute !important; left: 0; right: 0; bottom: -1px; pointer-events: none; }
.arh-cta__ridge svg { display: block; width: 100%; height: auto; }
.arh-cta__title { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }

/* --- アウトラインボタン --- */
.arh-btn-line { display: inline-block; border: 2px solid var(--arh-green); color: var(--arh-green); border-radius: 999px; padding: 0.7em 2.4em; font-weight: 700; text-decoration: none; transition: background 0.15s ease, color 0.15s ease; }
.arh-btn-line:hover { background: var(--arh-green); color: #fff; }
.arh-section--dark .arh-btn-line { border-color: #fff; color: #fff; }
.arh-section--dark .arh-btn-line:hover { background: #fff; color: var(--arh-green); }

/* --- Instagramアイコンを公式カラー（グラデーションタイル＋白ロゴ）に --- */
.c-iconList__item.-instagram .c-iconList__link {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  border-radius: 24%;
  width: 2em; height: 2em; display: flex; align-items: center; justify-content: center;
}
.c-iconList__item.-instagram .c-iconList__icon { color: #fff !important; }
.arh-ig {
  display: inline-block; line-height: 1;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff; border-radius: 24%; padding: 0.24em; font-size: 1.05em; vertical-align: -0.15em;
}

/* --- お問い合わせフォームの送信ボタン（ブランド仕様） --- */
.wpforms-form button[type="submit"] {
  background: var(--arh-orange) !important; border: none !important; color: #fff !important;
  font-weight: 700 !important; font-size: 1.08rem !important;
  padding: 0.95em 3em !important; border-radius: 10px !important;
  box-shadow: 0 4px 14px rgba(22,56,42,0.18);
  display: block; width: min(100%, 340px); margin: 10px auto 0;
  transition: background 0.15s ease;
}
.wpforms-form button[type="submit"]:hover { background: var(--arh-orange-dark) !important; }

/* --- フッター（ダークグリーン化） --- */
.l-footer { background: #0f2419; color: rgba(255,255,255,0.85); }
.l-footer__widgetArea { background: transparent; color: rgba(255,255,255,0.85); }
.l-footer a { color: rgba(255,255,255,0.85); }
.l-footer a:hover { color: #fff; }
.l-footer :is(.c-widget__title, .widgettitle) { color: #fff; }
.l-footer .c-copyright, .l-footer small { color: rgba(255,255,255,0.55); }

/* ============================================
   デザイン仕上げパス（2026-07-06）
   ============================================ */

/* --- 見出しタイポグラフィ（Zen Old Mincho） --- */
.arh-section__title, .arh-hero .arh-hero__catch, .arh-cta__title,
.l-topTitleArea :is(h1, .c-pageTitle),
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle,
.post_content h2, .post_content h3,
.arh-reason__title, .arh-flow__body strong {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.arh-eyebrow, .arh-reason__num,
.l-topTitleArea :is(h1, .c-pageTitle)::before,
:is(.blog, .archive) .l-mainContent__inner > h1.c-pageTitle::before {
  font-family: "Zen Old Mincho", georgia, serif;
}

/* --- 写真の統一トーン（彩度を抑えた落ち着いたグレーディング） --- */
.arh-card img, .post_content .wp-block-image img {
  filter: saturate(0.85) contrast(1.02) sepia(0.08) hue-rotate(18deg) brightness(1.01);
}

/* --- 施工メニュー・実績詳細の本文画像サイズを統一（16:9トリミング・角丸） --- */
:is(.page-id-55, .page-id-674, .parent-pageid-674) .post_content .wp-block-image img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 14px;
}

/* --- 理由カードのアイコン --- */
.arh-reason__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--arh-bg); margin-bottom: 14px; }
.arh-reason__icon svg { width: 30px; height: 30px; stroke: var(--arh-green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --- FAQ開閉アイコンの視認性 --- */
.arh-faq summary::after { font-size: 1.3rem; font-weight: 400; line-height: 1; }

/* --- 脱・テンプレ装飾（2026-07-06） --- */
/* 肩書き: 枠囲み→明朝＋左右罫線 */
.arh-hero__eyebrow {
  border: none; border-radius: 0; padding: 0;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: #f0c987; font-family: "Zen Old Mincho", serif; font-weight: 700; letter-spacing: 0.3em;
}
.arh-hero__eyebrow::before, .arh-hero__eyebrow::after {
  content: ""; width: 30px; height: 1px; background: rgba(240, 201, 135, 0.65);
}
/* 安心チップ: ピル→縦罫線区切りのテキスト列 */
.arh-hero__chips { gap: 0; }
.arh-hero__chips li { background: none; border: none; border-radius: 0; padding: 2px 18px; }
.arh-hero__chips li + li { border-left: 1px solid rgba(244, 249, 246, 0.35); }
/* 理由: 白カード＋緑バー→罫線区切りの編集レイアウト */
.arh-reasons { gap: 0; }
.arh-reason {
  background: transparent; border: none; border-radius: 0; box-shadow: none;
  padding: 8px 26px 0; position: relative;
}
.arh-reason::before { display: none; }
.arh-reason + .arh-reason { border-left: 1px solid #d9e6de; }
.arh-reason__num {
  position: absolute; top: calc(8px + 28px - 0.5em); right: 22px; /* アイコン円(56px)の中心に数字の中心を揃える */
  font-family: "Zen Old Mincho", georgia, serif; font-size: 2.4rem; font-weight: 700;
  color: #d4e4da; letter-spacing: 0; line-height: 1;
}
@media (max-width: 959px) {
  .arh-reason { padding: 20px 8px; }
  .arh-reason + .arh-reason { border-left: none; border-top: 1px solid #d9e6de; }
  .arh-reason__num { top: calc(20px + 28px - 0.5em); right: 12px; }
}

/* --- 実績ピックアップのモザイク構成（1枚大＋2枚小） --- */
.arh-cards--mosaic { grid-template-columns: 1.55fr 1fr; }
.arh-cards--mosaic .arh-card:first-child { grid-row: span 2; }
.arh-cards--mosaic .arh-card:first-child img { height: 100%; min-height: 340px; flex: 1; }
.arh-cards--mosaic .arh-card:first-child .arh-card__body { flex: 0 0 auto; } /* 余白は画像側に集約 */
@media (max-width: 959px) {
  .arh-cards--mosaic { grid-template-columns: 1fr; }
  .arh-cards--mosaic .arh-card:first-child { grid-row: auto; }
  .arh-cards--mosaic .arh-card:first-child img { height: 165px; min-height: 0; flex: none; }
}

/* --- WebP配信の<picture>ラップがカードレイアウトに影響しないように --- */
.arh-card picture, .post_content picture { display: block; }
.arh-cards--mosaic .arh-card:first-child picture { flex: 1; display: flex; min-height: 340px; }
@media (max-width: 959px) {
  .arh-cards--mosaic .arh-card:first-child picture { display: block; min-height: 0; flex: none; }
}

/* --- ヒーロー背景のWebP版（対応ブラウザのみ・非対応はJPEGのまま） --- */
@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .arh-hero {
    background:
      linear-gradient(172deg, rgba(28,34,31,0.62) 0%, rgba(24,30,27,0.58) 50%, rgba(12,18,15,0.8) 100%),
      image-set(url("/wp-content/uploads/2026/07/photo-hero.webp") type("image/webp"), url("/wp-content/uploads/2026/07/photo-hero.jpg") type("image/jpeg")) center 30% / cover no-repeat,
      linear-gradient(172deg, #35745c 0%, #24533f 55%, #16382a 100%);
  }
}

/* --- 施工実績: ビフォーアフター資料画像のレイアウト --- */
.arh-jisseki { margin: 44px 0; }
.arh-jisseki__head { margin-bottom: 18px; }
.arh-jisseki__head .arh-jisseki__title { margin-top: 12px; }
.arh-jisseki__meta { color: #5a6660; font-size: 0.9rem; margin: 6px 0 0; }
.arh-jisseki__imglink { display: block; }
.arh-jisseki__imglink img {
  width: 100%; height: auto; display: block;
  border-radius: 14px; border: 1px solid #e3ede7;
  box-shadow: 0 8px 24px rgba(22, 56, 42, 0.10);
}
.arh-jisseki__note { text-align: center; color: #8a948e; font-size: 0.8rem; margin: 10px 0 0; }
@media (max-width: 599px) {
  /* スマホは資料の文字を読みやすくするため画面幅いっぱいに */
  .arh-jisseki__imglink { width: 100vw; margin-left: calc(50% - 50vw); }
  .arh-jisseki__imglink img { border-radius: 0; border-left: none; border-right: none; }
}

/* --- SP固定フッターメニューのブランド化 --- */
#fix_bottom_menu { background: #16382a; box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.2); }
#fix_bottom_menu .menu_list { padding: 0; align-items: stretch; }
#fix_bottom_menu .menu_list li {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 5px 0 6px; min-height: 50px;
}
#fix_bottom_menu .menu_list li > a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; width: 100%; height: 100%;
}
#fix_bottom_menu .menu_list li, #fix_bottom_menu a, #fix_bottom_menu span, #fix_bottom_menu i { color: #fff !important; opacity: 1 !important; }
#fix_bottom_menu .menu_list li span { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }
#fix_bottom_menu .menu_list li + li { border-left: 1px solid rgba(255, 255, 255, 0.16); }
#fix_bottom_menu .menu_list li:last-child { background: var(--arh-orange); }

/* --- 補助 --- */
.arh-badge { display: inline-block; background: var(--arh-orange); color: #fff; font-size: 0.8rem; font-weight: bold; padding: 3px 12px; border-radius: 999px; }
.arh-section-note { font-size: 0.85rem; color: #777; }
.arh-sec-alt { background: var(--arh-bg); }
/* 透過ヘッダー時にメニュー・検索アイコンも白にする（SWELLの-t-fffの取りこぼし）。
   スクロール後は白背景ヘッダーになるため除外（白×白で消えるのを防ぐ） */
html:not([data-scrolled="true"]) .l-header.-transparent .c-iconBtn { color: #fff; }

/* スマホのみ有効になる改行（キャッチコピーの折り返し制御用） */
.arh-br-sp { display: none; }
@media (max-width: 599px) { .arh-br-sp { display: inline; } }

/* --- 日本語の読みやすい改行（文節単位。対応ブラウザのみ・非対応環境では従来どおり） --- */
.arh-section__title, .arh-section__lead, .arh-hero .arh-hero__catch, .arh-hero__sub,
.arh-card__title, .arh-card__text, .arh-reason__title, .arh-reason__text,
.arh-cta__title, .arh-cta__text, .arh-faq summary, .arh-faq details p,
.arh-flow__body strong, .arh-flow__body span { word-break: auto-phrase; }
.arh-section__title, .arh-hero .arh-hero__catch, .arh-cta__title { text-wrap: balance; }
.arh-section__lead, .arh-hero__sub, .arh-cta__text, .arh-faq details p { text-wrap: pretty; }

/* 下層ページ・記事本文・フォーム・フッターにも文節改行を適用 */
.post_content :is(p, li, dt, dd, th, td, figcaption, h1, h2, h3, h4),
.l-topTitleArea :is(h1, .c-pageTitle),
.p-postList__title, .p-postList__excerpt,
.l-footer, .c-widget,
.wpforms-container :is(label, legend, .wpforms-field-description) { word-break: auto-phrase; }
.post_content :is(h1, h2, h3, h4), .l-topTitleArea :is(h1, .c-pageTitle), .p-postList__title { text-wrap: balance; }
.post_content p { text-wrap: pretty; }

@media (max-width: 599px) {
  .arh-btn-tel, .arh-btn-form { width: min(100%, 340px); min-width: 0; margin-inline: auto; }
  .arh-hero { padding-top: 76px; }
  .arh-hero__eyebrow { font-size: 0.72rem; padding: 5px 15px; letter-spacing: 0.14em; margin-bottom: 1.1em; }
  .arh-hero .arh-hero__catch { font-size: 1.58rem; letter-spacing: 0.03em; margin-bottom: 0.9em; }
  .arh-hero__sub { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.6em; }
  .arh-hero__chips { gap: 7px; margin-bottom: 1.7em; }
  .arh-hero__chips li { font-size: 0.76rem; padding: 5px 12px; }
  .arh-hero .arh-btn-row { gap: 10px; }
  .arh-hero .arh-btn-tel, .arh-hero .arh-btn-form { font-size: 1.02rem; padding: 0.85em 1.5em; }
  .arh-card img { height: 150px; }
}
