@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');
/*
    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
*/

/* =====================================================
   Phase 1: CSS変数 + タイポグラフィ + カラーシステム (2026-05)
   ===================================================== */
:root {
  --font-serif: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', serif;
  --font-sans: 'Zen Kaku Gothic New', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  --color-main: #2B2B2B;
  --color-sub: #F5F2EA;
  --color-accent: #7A8B5C;
  --color-text: #3D3D3D;
  --color-border: #E5E0D5;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
  --space-2xl: 160px;
}

h1, h2, h3 {
  font-family: var(--font-serif) !important;
  font-weight: 500;
  letter-spacing: 0.05em;
}
body, p {
  font-family: var(--font-sans) !important;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* =====================================================
   Override: ページヒーローセクション 縮小 + eyebrow非表示
   対象: 内部ページのみ（HOME は除外）
   ===================================================== */
.page-template-default .luna-page-hero { min-height: 10vh !important; padding: 20px 20px !important; }
.page-template-default .luna-page-hero__eyebrow { display: none !important; }
.page-template-default .luna-page-hero__title { font-size: clamp(22px, 4vw, 40px) !important; }
.page-template-default .luna-page-hero__sub { margin-top: 8px !important; }
.page-template-default .post_content .luna-page-hero:first-child { margin-top: -128px !important; }
.admin-bar.page-template-default .post_content .luna-page-hero:first-child { margin-top: -96px !important; }

/* fix_header 非表示 */
html.luna-header-transparent #fix_header { display: none !important; }

/* トップページ FV padding 除去 */
.home #content { padding-top: 0 !important; }

/* Scroll Animation */
.js-fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js-fade-only { opacity: 0; transition: opacity 1.0s ease; }
.js-slide-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js-slide-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js-fade-up.is-visible,.js-fade-only.is-visible,.js-slide-left.is-visible,.js-slide-right.is-visible { opacity: 1; transform: translate(0, 0); }

/* フッター copyright リンク文字色 */
.l-footer .copyright a { color: #aaaaaa !important; text-decoration: underline !important; }
.l-footer .copyright a:hover { color: #ffffff !important; }

/* =====================================================
   育咲ホーム — 施工事例 アーカイブ・詳細 CSS
   ===================================================== */

/* --- コンテナ共通 --- */
.ik-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- アーカイブ・詳細ページ サイドバー非表示 --- */
body.post-type-archive-works .l-main,
body.single-works .l-main {
    width: 100% !important;
    max-width: 100% !important;
}
body.post-type-archive-works .l-sidebar,
body.single-works .l-sidebar {
    display: none !important;
}

/* --- アーカイブ ヒーロー --- */
.ik-archive-hero {
    background: #1a2b3c;
    color: #F0EDE8;
    padding: 64px 24px 56px;
    text-align: center;
}
.ik-archive-hero__title {
    font-size: clamp(24px, 4vw, 40px);
    font-family: var(--font-serif);
    font-weight: 400;
    color: #F0EDE8;
    margin: 8px 0 12px;
}
.ik-archive-hero__sub {
    font-size: 15px;
    color: rgba(240,237,232,0.8);
    margin: 0;
}

/* --- 詳細 ヒーロー --- */
.ik-single-hero {
    background: #1a2b3c;
    color: #F0EDE8;
    padding: 64px 24px 56px;
    text-align: center;
}
/* ヒーロー 画像オーバーレイ型 */
.ik-single-hero--photo {
    background-color: #1a2b1c;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 110px 24px 96px;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ik-single-hero--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,20,10,0.55) 0%, rgba(10,20,10,0.78) 100%);
    pointer-events: none;
}
.ik-single-hero--photo .ik-single-hero__inner {
    position: relative;
    z-index: 1;
}
.ik-single-hero__catch {
    font-size: 14px;
    letter-spacing: 0.12em;
    color: rgba(240,237,232,0.75);
    margin: 0 0 8px;
}
.ik-single-hero__title {
    font-size: clamp(24px, 3.5vw, 40px);
    font-family: var(--font-serif);
    font-weight: 400;
    color: #F0EDE8;
    margin: 0 0 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.ik-single-hero__tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* --- eyebrow --- */
.ik-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: rgba(240,237,232,0.6);
    margin: 0 0 4px;
    text-transform: uppercase;
}

/* --- フィルター --- */
.ik-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 32px 0 24px;
}
.ik-filter__btn {
    padding: 6px 16px;
    border: 1px solid #7A8B5C;
    border-radius: 999px;
    font-size: 13px;
    color: #7A8B5C;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.ik-filter__btn:hover,
.ik-filter__btn.is-active {
    background: #1a2b3c;
    color: #fff;
}
.ik-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    background: rgba(122,139,92,0.12);
    color: #7A8B5C;
    border-radius: 9px;
    padding: 0 4px;
    margin-left: 2px;
    vertical-align: middle;
    line-height: 1;
}
.ik-filter__btn.is-active .ik-filter__count,
.ik-filter__btn:hover .ik-filter__count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* --- 施工事例グリッド --- */
.ik-archive-main {
    padding: 0 0 80px;
    background: #FAFAF8;
}
.ik-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 48px;
}
@media (max-width: 900px) {
    .ik-works-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 600px) {
    .ik-works-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* --- カード --- */
.ik-works-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ik-works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ik-works-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.ik-works-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e4de;
}
.ik-works-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ik-works-card:hover .ik-works-card__img {
    transform: scale(1.04);
}
.ik-works-card__img--noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 13px;
}
.ik-works-card__tags {
    position: absolute;
    bottom: 8px;
    left: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.ik-works-card__tag {
    background: rgba(26,43,60,0.85);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
}
.ik-works-card__body {
    padding: 16px;
}
.ik-works-card__title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px;
    line-height: 1.5;
    font-family: var(--font-serif);
}
.ik-works-card__catch {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px;
    line-height: 1.5;
}
.ik-works-card__specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
}
.ik-works-card__specs li {
    font-size: 12px;
    color: #888;
}
.ik-works-card__specs li::before {
    content: '';
}

/* --- 詳細ページ --- */
.ik-single-main {
    background: #FAFAF8;
    padding: 0 0 80px;
}
.ik-single-mainimg {
    margin-bottom: 48px;
}
.ik-single-mainimg__img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}
.ik-single-spec {
    margin-bottom: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ik-single-spec__title {
    font-size: 18px;
    font-family: var(--font-serif);
    color: #1e1a14;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c8a96e;
    letter-spacing: 0.06em;
}
/* 物件データ 2カラム豪華グリッド */
.ik-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #c8a96e;
    border: 1px solid #c8a96e;
    border-radius: 4px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ik-spec-item {
    background: #fdf9f4;
    padding: 14px 20px 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.ik-spec-item::before {
    content: none;
}
.ik-spec-item dt {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9a7242;
    font-weight: 700;
    margin: 0;
    border-left: 2px solid #c8a96e;
    padding-left: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}
.ik-spec-item dd {
    font-size: 16px;
    font-weight: 700;
    color: #1e1a14;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-serif);
}
@media (max-width: 600px) {
    .ik-spec-grid { grid-template-columns: 1fr; }
}
.ik-spec-table {
    width: 100%;
    border-collapse: collapse;
}
.ik-spec-table th,
.ik-spec-table td {
    padding: 10px 12px;
    font-size: 14px;
    border-bottom: 1px solid #f0ede8;
    vertical-align: top;
}
.ik-spec-table th {
    width: 120px;
    color: #666;
    font-weight: normal;
    white-space: nowrap;
}
.ik-spec-table td {
    color: #333;
}
.ik-single-content {
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}
.ik-single-kodawari {
    margin-bottom: 48px;
    padding: 36px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ik-single-kodawari__title {
    font-size: 18px;
    font-family: var(--font-serif);
    color: #2B2B2B;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c8a96e;
}
/* こだわりポイント: 写真+テキスト横並び */
.ik-kodawari-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.ik-kodawari-photo {
    flex: 0 0 44%;
    max-width: 44%;
}
.ik-kodawari-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.ik-kodawari-layout .ik-single-kodawari__text {
    flex: 1;
    padding-top: 4px;
}
.ik-single-kodawari__text {
    font-size: 15px;
    line-height: 2.1;
    color: #444;
}
@media (max-width: 640px) {
    .ik-kodawari-layout { flex-direction: column; }
    .ik-kodawari-photo { flex: none; max-width: 100%; }
    .ik-kodawari-photo img { height: 220px; }
}

/* --- 前後ナビ --- */
.ik-single-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.ik-single-nav__btn {
    flex: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: border-color 0.2s;
}
.ik-single-nav__btn:hover { border-color: #7A8B5C; }
.ik-single-nav__btn--next { text-align: right; }
.ik-single-nav__label { display: block; font-size: 12px; color: #888; margin-bottom: 4px; }
.ik-single-nav__title { display: block; font-size: 14px; }
.ik-single-back { text-align: center; margin-top: 16px; }

/* --- CTA セクション --- */
.ik-cta-section {
    background: #2B2B2B;
    padding: 72px 24px;
    text-align: center;
}
.ik-cta-section .ik-eyebrow { color: rgba(240,237,232,0.6); }
.ik-cta-section__title {
    font-size: clamp(22px, 3vw, 36px);
    font-family: var(--font-serif);
    color: #F0EDE8;
    margin: 8px 0 12px;
    font-weight: 400;
}
.ik-cta-section__text {
    font-size: 15px;
    color: rgba(240,237,232,0.75);
    margin: 0 0 32px;
}

/* --- ボタン --- */
.ik-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 2px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.ik-btn--primary {
    background: #F0EDE8;
    color: #2B2B2B;
    border: 1px solid #F0EDE8;
}
.ik-btn--primary:hover {
    background: transparent;
    color: #F0EDE8;
}
.ik-btn--outline {
    background: transparent;
    color: #7A8B5C;
    border: 1px solid #7A8B5C;
}
.ik-btn--outline:hover {
    background: #7A8B5C;
    color: #fff;
}

/* --- ページネーション --- */
.ik-pagination {
    text-align: center;
    padding: 8px 0;
}
.ik-pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-radius: 2px;
}
.ik-pagination .page-numbers.current,
.ik-pagination .page-numbers:hover {
    background: #7A8B5C;
    color: #fff;
    border-color: #7A8B5C;
}
.ik-no-posts { text-align: center; padding: 48px; color: #888; }

/* ==============================
   Phase 3: ページコンテンツ追加CSS
   ============================== */

/* ページヒーロー */
.ik-page-hero .wp-block-cover__inner-container {
    text-align: center;
}

/* ABOUTページ h2 の margin-top をリセット（SWELLデフォルト84pxを打ち消し、padding-topで管理） */
.page-id-335 h2 {
    margin-top: 0 !important;
}

/* 会社概要テーブル */
.ik-company-table {
    margin-bottom: 0 !important;
}
.ik-company-table table {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
}
.ik-company-table th,
.ik-company-table td {
    padding: 14px 24px;
    border-bottom: 1px solid #7a8c6a !important;
    text-align: left;
    vertical-align: middle;
}
.ik-company-table tr:first-child th,
.ik-company-table tr:first-child td {
    border-top: 1px solid #7a8c6a !important;
}
.ik-company-table th {
    width: 150px;
    color: #2D5016;
    font-weight: 600;
    background: #c8ddb8 !important;
    border-right: 1px solid #7a8c6a !important;
}

/* コンセプトページ */
.ik-concept-no {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 0 !important;
}
/* コンセプトセクション内テキスト余白 */
.page-id-336 .wp-block-column > p {
    margin-top: 20px !important;
}
.page-id-336 .wp-block-column > h2 {
    margin-bottom: 20px !important;
}
/* コンセプトセクション 左右内側余白 */
.page-id-336 .wp-block-columns {
    padding-left: 48px !important;
    padding-right: 48px !important;
}
.ik-concept-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .ik-concept-img img {
        height: 250px;
    }
}

/* 家づくりの流れ ステップ */
.ik-flow-steps {
    max-width: 760px;
    margin: 0 auto;
}
.ik-flow-step {
    position: relative;
    padding: 32px 32px 32px 100px !important;
    border-left: 2px solid #7A8B5C;
    margin-bottom: 0 !important;
}
.ik-flow-step:not(:last-child) {
    margin-bottom: 0;
}
.ik-flow-step:last-child {
    border-left: 2px solid transparent;
}
.ik-flow-step::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 36px;
    width: 16px;
    height: 16px;
    background: #7A8B5C;
    border-radius: 50%;
}
.ik-step-num {
    position: absolute !important;
    left: 0;
    top: 32px;
    width: 80px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
    margin: 0 !important;
}
.ik-step-period {
    font-size: 0.85rem;
    margin-top: 8px !important;
}
@media (max-width: 600px) {
    .ik-flow-step {
        padding: 24px 16px 24px 80px !important;
    }
    .ik-step-num {
        width: 64px;
    }
}

/* FAQ */
.ik-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.ik-faq-item {
    border-bottom: 1px solid #e0dbd0;
    padding: 24px 0 !important;
}
.ik-faq-q {
    font-size: 1rem !important;
    color: #2B2B2B !important;
    margin-bottom: 12px !important;
    line-height: 1.6;
}
.ik-faq-a {
    margin: 0 !important;
    padding-left: 24px;
    border-left: 3px solid #e0dbd0;
    color: #555;
    font-size: 0.95rem;
}

/* レビューカード */
.ik-review-card p {
    line-height: 1.8;
}

/* ホームページ FV */
.ik-fv .wp-block-cover__inner-container {
    max-width: 900px;
    padding: 0 24px;
}

/* ホームページ ステップ（横並び） */

/* ==============================
   施工事例詳細 追加セクション（Phase 2）
   ============================== */

/* 共通セクション見出し */
/* 英語サブテキスト */
.ik-section-en {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #c8a96e;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 400;
}
.ik-single-section-title {
    font-size: 20px;
    font-family: var(--font-serif);
    color: #1e1a14;
    margin: 0 0 20px;
    padding-left: 14px;
    border-left: 3px solid #c8a96e;
    line-height: 1.4;
}

/* 家づくりのきっかけ */
.ik-single-trigger {
    margin-bottom: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ik-single-trigger__text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0;
}

/* ギャラリー マソンリーグリッド */
.ik-single-gallery {
    margin-bottom: 48px;
}
.ik-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 8px;
}
.ik-gallery-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* 1枚目：2列×2行分の大画面 */
.ik-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.ik-gallery-grid img {
    width: 100%;
    height: 200px;
    flex: none;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.4s ease;
}
/* 1枚目は2行分の高さ */
.ik-gallery-item:nth-child(1) img {
    height: 408px;
}
.ik-gallery-item:hover img {
    transform: scale(1.04);
}
.ik-gallery-cap {
    font-size: 12px;
    color: #666;
    margin: 6px 0 0;
    line-height: 1.5;
}
@media (max-width: 640px) {
    .ik-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .ik-gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* 仕様・素材 */
.ik-single-materials {
    margin-bottom: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ik-material-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}
.ik-material-badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #c8a96e;
    border-radius: 3px;
    font-size: 13px;
    color: #9a7242;
    background: #fdf9f4;
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.ik-single-materials__text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 0;
}

/* 施主様の声 大型クォート */
.ik-single-voice {
    margin-bottom: 48px;
}
.ik-voice-blockquote {
    position: relative;
    margin: 0;
    padding: 48px 40px 36px 64px;
    background: #f9f7f3;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-size: 16px;
    line-height: 2.1;
    color: #444;
    font-style: normal;
}
.ik-voice-blockquote::before {
    content: '\201C';
    font-family: Georgia, var(--font-serif);
    font-size: 90px;
    color: #c8a96e;
    opacity: 0.65;
    position: absolute;
    top: 4px;
    left: 16px;
    line-height: 1;
    pointer-events: none;
}

/* ==============================
   設計士コメント
   ============================== */
.ik-designer-section {
    margin-top: 48px;
}
.ik-designer-card {
    background: #f9f7f3;
    border-radius: 8px;
    padding: 32px 36px;
    border-left: 4px solid #7A8B5C;
}
/* 大型横並びレイアウト */
.ik-designer-card--wide {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    border-left: none;
    border-top: 3px solid #c8a96e;
    padding-top: 36px;
}
.ik-designer-card__left {
    flex: 0 0 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.ik-designer-card--wide .ik-designer-avatar__img,
.ik-designer-card--wide .ik-designer-avatar__default {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.ik-designer-card--wide .ik-designer-avatar__meta {
    align-items: center;
    gap: 6px;
}
.ik-designer-card--wide .ik-designer-name {
    font-size: 17px;
}
.ik-designer-card__right {
    flex: 1;
    padding-top: 4px;
}
.ik-designer-avatar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.ik-designer-avatar__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.ik-designer-avatar__default {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #1a2b3c;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ik-designer-avatar__default span {
    color: #fff;
    font-size: 26px;
    font-family: var(--font-serif);
    font-weight: 500;
}
.ik-designer-avatar__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ik-designer-role {
    font-size: 11px;
    color: #7A8B5C;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}
.ik-designer-name {
    font-size: 16px;
    font-family: var(--font-serif);
    color: #2a2a2a;
    font-weight: 500;
}
.ik-designer-comment {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0;
}
@media (max-width: 600px) {
    .ik-designer-card { padding: 24px 20px; }
    .ik-designer-card--wide { flex-direction: column; gap: 24px; }
    .ik-designer-card__left { flex: none; width: 100%; flex-direction: row; text-align: left; align-items: center; }
    .ik-designer-card--wide .ik-designer-avatar__img,
    .ik-designer-card--wide .ik-designer-avatar__default { width: 80px; height: 80px; }
    .ik-designer-avatar__meta { align-items: flex-start; }
    .ik-material-badge { font-size: 12px; padding: 4px 10px; }
}

/* ==============================
   Related Works セクション
   ============================== */

/* ik-single-back（2ボタン版）*/
.ik-single-back {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.ik-single-back .ik-btn {
    flex: 1 1 auto;
    text-align: center;
    min-width: 180px;
}

/* Related Works セクション */
.ik-related-section {
    background: #1c3012;
    padding: 72px 24px;
}
.ik-related-head {
    text-align: center;
    margin-bottom: 48px;
}
.ik-related-head__en {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.25em;
    color: rgba(240,237,232,0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.ik-related-head__ja {
    font-size: 22px;
    font-family: var(--font-serif);
    font-weight: 400;
    color: #F0EDE8;
    margin: 0;
}
.ik-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .ik-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ik-related-grid { grid-template-columns: 1fr; }
}
.ik-related-card {
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.25s ease;
}
.ik-related-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}
.ik-related-card__thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #2a401e;
}
.ik-related-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.ik-related-card:hover .ik-related-card__img {
    transform: scale(1.04);
}
.ik-related-card__noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,237,232,0.3);
    font-size: 24px;
}
.ik-related-card__body {
    padding: 16px;
}
.ik-related-card__tag {
    display: inline-block;
    font-size: 11px;
    color: rgba(240,237,232,0.6);
    border: 1px solid rgba(240,237,232,0.25);
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}
.ik-related-card__title {
    font-size: 14px;
    font-family: var(--font-serif);
    color: #F0EDE8;
    margin: 0 0 4px;
    line-height: 1.5;
    font-weight: 500;
}
.ik-related-card__catch {
    font-size: 12px;
    color: rgba(240,237,232,0.55);
    margin: 0;
    line-height: 1.5;
}

.ik-step-col {
    background: #fff;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    padding: 24px 16px !important;
    text-align: center;
}
.ik-step-col h4 {
    margin-bottom: 4px !important;
}

/* ホームページ 施工事例カード */
.ik-works-card {
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ik-works-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.ik-card-thumb {
    margin: 0 !important;
}
.ik-card-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px 8px 0 0 !important;
    display: block;
}

/* =====================================================
   カスタムヘッダーCTA（電話番号・営業時間・ボタン）
   ===================================================== */

/* コンテナ */
.ik-header-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    
    gap: 14px;
    padding-left: 20px;
    flex-shrink: 0;
}

/* 電話番号 + 営業時間 エリア */
.ik-header-cta__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

/* 電話番号 */
.ik-header-cta__tel {
    font-size: 33px;
    font-weight: 700;
    font-family: var(--font-sans);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.04em;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.ik-header-cta__tel:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* 営業時間 */
.ik-header-cta__hours {
    font-size: 11px;
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* ボタンエリア */
.ik-header-cta__btns {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* ボタン共通 */
.ik-header-cta__btn {
    display: inline-block;
    padding: 7px 14px;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* アウトラインボタン（ショールーム見学） */
.ik-header-cta__btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    background: transparent;
}
.ik-header-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

/* フィルボタン（無料お見積もり） */
.ik-header-cta__btn--fill {
    background: var(--color-accent);
    color: #fff;
    border: 1px solid var(--color-accent);
}
.ik-header-cta__btn--fill:hover {
    background: #8fa36d;
    border-color: #8fa36d;
    color: #fff;
}

/* ─── スクロール後（非透過ヘッダー） ─── */
html.luna-scrolled .ik-header-cta__tel {
    color: var(--color-main);
}
html.luna-scrolled .ik-header-cta__tel:hover {
    color: var(--color-accent);
}
html.luna-scrolled .ik-header-cta__hours {
    color: #888;
}
html.luna-scrolled .ik-header-cta__btn--outline {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}
html.luna-scrolled .ik-header-cta__btn--outline:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ─── 内部ページ（非FV・常に非透過） ─── */
body:not(.home) .ik-header-cta__tel {
    color: var(--color-main);
}
body:not(.home) .ik-header-cta__hours {
    color: #888;
}
body:not(.home) .ik-header-cta__btn--outline {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}
body:not(.home) .ik-header-cta__btn--outline:hover {
    background: var(--color-accent);
    color: #fff;
}
/* =====================================================
   パターンB: 白ヘッダー×緑インフォバー整理
   ===================================================== */

/* インフォバー: 明るいモスグリーンに変更 */
.l-header__bar {
    background: #7A8B5C !important;
    color: #fff !important;
}

/* 透明ヘッダー(FV上): 白背景に変更 */
@media (min-width: 960px) {
    .l-header.-transparent {
        background: rgba(255, 255, 255, 0.97) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
    }
    .l-header.-transparent .l-header__inner,
    .l-header.-transparent .c-gnav > li > a {
        color: #3d3d3d !important;
    }
    .l-header.-transparent .c-gnav > li > a::after {
        background: #7A8B5C !important;
    }
}

/* 電話番号: ダーク文字（スクロール前後共通） */
.ik-header-cta__tel {
    color: #2b2b2b !important;
}
.ik-header-cta__tel:hover {
    color: #7A8B5C !important;
}

/* 営業時間: グレー */
.ik-header-cta__hours {
    color: #888 !important;
}

/* アウトラインボタン（ショールーム見学）: 緑アウトライン */
.ik-header-cta__btn--outline {
    border: 1px solid #5a6b3e !important;
    color: #5a6b3e !important;
    background: transparent !important;
}
.ik-header-cta__btn--outline:hover {
    background: #5a6b3e !important;
    color: #fff !important;
}

/* フィルボタン（無料お見積もり）: 濃い緑に統一 */
.ik-header-cta__btn--fill {
    background: #5a6b3e !important;
    border-color: #5a6b3e !important;
}
.ik-header-cta__btn--fill:hover {
    background: #4a5e30 !important;
    border-color: #4a5e30 !important;
}

/* luna-scrolled 後も統一 */
html.luna-scrolled .ik-header-cta__tel {
    color: #2b2b2b !important;
}
html.luna-scrolled .ik-header-cta__btn--outline {
    border-color: #5a6b3e !important;
    color: #5a6b3e !important;
}
html.luna-scrolled .ik-header-cta__btn--outline:hover {
    background: #5a6b3e !important;
    color: #fff !important;
}

/* =====================================================
   パターンB: 白ヘッダー×緑インフォバー整理
   ===================================================== */

/* インフォバー: 明るいモスグリーンに変更 */
.l-header__bar {
    background: #7A8B5C !important;
    color: #fff !important;
}

/* 透明ヘッダー(FV上): 白背景に変更 */
@media (min-width: 960px) {
    .l-header.-transparent {
        background: rgba(255, 255, 255, 0.97) !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
    }
    .l-header.-transparent .l-header__inner,
    .l-header.-transparent .c-gnav > li > a {
        color: #3d3d3d !important;
    }
    .l-header.-transparent .c-gnav > li > a::after {
        background: #7A8B5C !important;
    }
}

/* 電話番号: ダーク文字（スクロール前後共通） */
.ik-header-cta__tel {
    color: #2b2b2b !important;
}
.ik-header-cta__tel:hover {
    color: #7A8B5C !important;
}

/* 営業時間: グレー */
.ik-header-cta__hours {
    color: #888 !important;
}

/* アウトラインボタン（ショールーム見学）: 緑アウトライン */
.ik-header-cta__btn--outline {
    border: 1px solid #5a6b3e !important;
    color: #5a6b3e !important;
    background: transparent !important;
}
.ik-header-cta__btn--outline:hover {
    background: #5a6b3e !important;
    color: #fff !important;
}

/* フィルボタン（無料お見積もり）: 濃い緑に統一 */
.ik-header-cta__btn--fill {
    background: #5a6b3e !important;
    border-color: #5a6b3e !important;
}
.ik-header-cta__btn--fill:hover {
    background: #4a5e30 !important;
    border-color: #4a5e30 !important;
}

/* luna-scrolled 後も統一 */
html.luna-scrolled .ik-header-cta__tel {
    color: #2b2b2b !important;
}
html.luna-scrolled .ik-header-cta__btn--outline {
    border-color: #5a6b3e !important;
    color: #5a6b3e !important;
}
html.luna-scrolled .ik-header-cta__btn--outline:hover {
    background: #5a6b3e !important;
    color: #fff !important;
}

/* ヘッダー幅をフル幅に（ロゴ左端・ボタン右端の実現） */
.l-header .l-container,
.l-fixHeader .l-container {
  max-width: 100%;
}

/* =====================================================
   Contact Form 7 スタイル（育咲ホーム）
   ===================================================== */

/* フォームコンテナ */
.page-id-334 .l-mainContent {
    max-width: 680px;
    margin: 0 auto;
}
.page-id-334 .wpcf7 {
    background: #faf9f7;
    border: 1px solid #e8e0d0;
    border-radius: 8px;
    padding: 40px 36px;
    margin-top: 32px;
}

/* ラベル共通 */
.wpcf7 label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.wpcf7 label .required {
    color: #c0392b;
    font-size: 12px;
}

/* 全フィールド共通 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    font-size: 15px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    border: 1px solid #d4c9b0 !important;
    border-radius: 4px !important;
    background: #fff !important;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: auto;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none !important;
    border-color: #8B6914 !important;
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.12) !important;
}

/* 各フィールドの間隔 */
.wpcf7 p {
    margin: 0 0 20px 0 !important;
}
.wpcf7 p:last-child {
    margin-bottom: 0 !important;
}

/* textarea */
.wpcf7 textarea {
    min-height: 160px !important;
    resize: vertical;
}

/* 送信ボタン */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    display: block !important;
    width: 100% !important;
    padding: 16px !important;
    background: #8B6914 !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    letter-spacing: 0.1em;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(139, 105, 20, 0.25);
}
.wpcf7 input[type="submit"]:hover {
    background: #6d5210 !important;
    transform: translateY(-1px);
}

/* デモ注意書き */
.cf7-demo-notice {
    background: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 10px 16px;
    font-size: 13px;
    color: #7a5f00;
    border-radius: 0 4px 4px 0;
    margin-bottom: 24px;
}

/* バリデーションエラー */
.wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}
.wpcf7-not-valid {
    border-color: #c0392b !important;
}

/* =====================================================
   デザイン改善 01: FAQ Q/A スタイル (page-id-338)
   ===================================================== */

#body_wrap.page-id-338 .ik-faq-q {
    background: #f2ede4 !important;
    border-left: 4px solid #3d5e3a !important;
    border-bottom: none !important;
    padding: 12px 16px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    border-radius: 0 4px 0 0;
}

#body_wrap.page-id-338 .ik-faq-a {
    padding: 14px 16px !important;
    border-left: 4px solid #e5dccb !important;
    border-bottom: 1px solid #e5dccb !important;
    margin-bottom: 28px !important;
    line-height: 1.8 !important;
    background: #fff;
    border-radius: 0 0 4px 0;
}

/* =====================================================
   デザイン改善 02: FLOW STEP スタイル (page-id-337)
   ===================================================== */

#body_wrap.page-id-337 .ik-step-num {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    color: #fff !important;
    background: #3d5e3a !important;
    display: inline-block !important;
    padding: 4px 12px !important;
    border-radius: 2px !important;
    margin-bottom: 10px !important;
}

/* 目安テキスト */
#body_wrap.page-id-337 .ik-step-num ~ p.has-text-color {
    font-size: 13px !important;
    color: #8B6914 !important;
    border-left: 2px solid #d4c9b0;
    padding-left: 10px !important;
    margin-top: 8px !important;
}

/* STEPコンテナの下区切り */
#body_wrap.page-id-337 .wp-block-group:not(.ik-section):not(.ik-cta-section) {
    border-bottom: 1px dashed #d4c9b0;
    padding-bottom: 8px;
    margin-bottom: 0 !important;
}

/* =====================================================
   デザイン改善 03: CONCEPT 01/02/03 (page-id-336)
   ===================================================== */

/* 大きな装飾数字 */
#body_wrap.page-id-336 .wp-block-column .wp-block-heading.has-text-color {
    font-size: 80px !important;
    font-family: 'Shippori Mincho', serif !important;
    line-height: 0.85 !important;
    margin-bottom: 8px !important;
    opacity: 0.15;
}

/* セクションタイトル（子どもが育つ家 等）*/
#body_wrap.page-id-336 .wp-block-column h2.wp-block-heading {
    font-size: 21px !important;
    border-bottom: 1px solid #d4c9b0 !important;
    padding-bottom: 10px !important;
    margin-bottom: 16px !important;
}

/* =====================================================
   デザイン改善 04: ABOUT テーブル + 見出し (page-id-335)
   ===================================================== */

#body_wrap.page-id-335 figure table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

#body_wrap.page-id-335 figure table th {
    background: #ddd5c5 !important;
    color: #3d5e3a !important;
    font-weight: 600 !important;
    text-align: left !important;
    padding: 12px 14px !important;
    border: 1px solid #bbb0a0 !important;
    white-space: nowrap !important;
    width: 110px !important;
}

#body_wrap.page-id-335 figure table td {
    padding: 12px 14px !important;
    border: 1px solid #bbb0a0 !important;
    vertical-align: top !important;
    background: #faf7f2 !important;
}

/* about の 01/02/03 カードデザイン */
#body_wrap.page-id-335 .wp-block-columns .wp-block-column {
    background: #ffffff !important;
    border-radius: 6px !important;
    padding: 24px 20px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07) !important;
    border-top: 3px solid #2D5016 !important;
}
/* カード内 h3 見出し */
#body_wrap.page-id-335 .wp-block-columns .wp-block-column h3.wp-block-heading {
    padding: 0 0 10px 0 !important;
    border-left: none !important;
    border-bottom: 1px solid #d8e8cc !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #2D5016 !important;
    margin-bottom: 12px !important;
}

/* =====================================================
   デザイン改善 05: 全ページ共通 CTA セクション
   ===================================================== */

/* CTA セクション背景を強化 */
.ik-cta-section {
    position: relative;
}

/* CTA ボタン（テキストリンク → ボタン調に） */
.ik-cta-section .wp-block-button__link,
.ik-cta-section .swell-block-btn__link {
    background: #8B6914 !important;
    color: #fff !important;
    border: 2px solid #8B6914 !important;
    padding: 14px 32px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s !important;
}

/* ホームページの会社紹介セクション改善 */
#body_wrap.page-id-6 .ik-about-section figure img {
    border-radius: 4px;
}

/* =====================================================
   トップページ以外のヒーロー画像を全幅に 2026-05-23
   ===================================================== */

#body_wrap:not(.home) {
  overflow-x: hidden !important;
}

#body_wrap:not(.home) .post_content .ik-page-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  position: relative !important;
}

/* =====================================================
   アーカイブヒーロー（works等）を全幅に 2026-05-23
   ===================================================== */

#body_wrap:not(.home) .ik-archive-hero {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  position: relative !important;
}

/* =====================================================
   worksアーカイブヒーロー 背景画像追加 2026-05-23
   ===================================================== */

.post-type-archive-works .ik-archive-hero {
  background-image: url('https://demo02-juutaku.wpdaikou.com/wp-content/uploads/2026/05/pexels-photo-1571460.jpeg');
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 64px 24px 56px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-type-archive-works .ik-archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,43,60,0.65) 0%, rgba(26,43,60,0.82) 100%);
  pointer-events: none;
}

.post-type-archive-works .ik-archive-hero .ik-archive-hero__inner {
  position: relative;
  z-index: 1;
}

/* contactページヒーロー グラデーションオーバーレイ 2026-05-23 */
.page-id-334 .ik-contact-hero {
  overflow: hidden;
}
.page-id-334 .ik-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,43,60,0.65) 0%, rgba(26,43,60,0.82) 100%);
  pointer-events: none;
  z-index: 1;
}
.page-id-334 .ik-contact-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

/* contactページヒーロー 画像差し替え 2026-05-23 */
.page-id-334 .ik-contact-hero .wp-block-cover__image-background {
  display: none !important;
}
.page-id-334 .ik-contact-hero {
  background-image: url('https://demo02-juutaku.wpdaikou.com/wp-content/uploads/2026/05/pexels-photo-7642026.jpeg') !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* ==========================================================
   育咲ホーム 品質グレードアップ CSS 2026-05-24
   ========================================================== */

/* Noto Serif JP (Google Fonts) 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600&display=swap');

/* --- セクション見出し: 明朝体で高級感演出 --- */
.ik-section-title,
.wp-block-cover__inner-container h1,
.wp-block-heading.ik-section-title {
  font-family: 'Noto Serif JP', 'Yu Mincho', 'ヒラギノ明朝 ProN', serif !important;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* --- FV h1 明朝体 + 間隔調整 --- */
.ik-fv h1,
.ik-fv .wp-block-heading {
  font-family: 'Noto Serif JP', 'Yu Mincho', serif !important;
  letter-spacing: 0.12em;
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

/* --- セクション余白を拡大（高級感の「間」） --- */
.ik-section {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* --- お客様の声セクション: フォント調整 --- */
.wp-block-group[style*="F5F0E8"] {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

/* --- 施工事例セクション見出し下余白 --- */
.ik-section-title + * {
  margin-top: 0;
}

/* --- ヘッダーロゴの折り返し防止 --- */
.l-header__logo,
.l-header__logo a,
.l-headerLogo,
.p-header__logo {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.l-header__logo .site-name,
.p-header__siteName {
  font-size: clamp(0.75rem, 1.5vw, 1rem) !important;
  white-space: nowrap;
}

/* --- STEPカード: 視覚的強化 --- */
.wp-block-column[style*="border:1px solid #e0dbd0"] {
  padding: 32px 20px !important;
  transition: box-shadow 0.2s;
}
.wp-block-column[style*="border:1px solid #e0dbd0"]:hover {
  box-shadow: 0 4px 24px rgba(45,80,22,0.12);
}

/* --- 施工事例カード hover 演出 --- */
.wp-block-column .wp-block-group[style*="border-radius:8px"] {
  transition: transform 0.25s, box-shadow 0.25s;
}
.wp-block-column .wp-block-group[style*="border-radius:8px"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* --- ヘッダーロゴ折り返し修正（SWELL実クラス適用） 2026-05-24 --- */
.l-header__logo {
  flex: none !important;
  min-width: max-content !important;
}
.c-headLogo,
.c-headLogo.-txt {
  width: max-content !important;
  flex-shrink: 0 !important;
}
.c-headLogo__link {
  white-space: nowrap !important;
  font-size: clamp(0.975rem, 1.8vw, 1.35rem) !important;
  max-width: none !important;
  overflow: visible !important;
  width: auto !important;
}

/* --- 本文タイポグラフィ強化 2026-05-24 --- */
body,
p,
.p-postContent,
.p-postContent p {
  font-size: clamp(16px, 1.1vw, 18px) !important;
  line-height: 1.9 !important;
  letter-spacing: 0.06em;
}

/* --- ヘッダーCTAボタン圧縮（ロゴ1.5倍対応）2026-05-24 --- */
.ik-header-cta__btns {
  gap: 4px !important;
}
.ik-header-cta__btn {
  padding-left: 8px !important;
  padding-right: 8px !important;
  font-size: 0.82rem !important;
}

/* ===== TOP PAGE: 家づくりの流れ タイムライン（縦型）2026-05-25 ===== */
.ik-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.ik-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #6a9f74 0%, rgba(106,159,116,0.12) 100%);
  transform: translateX(-50%);
}
.ik-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 64px;
  position: relative;
}
.ik-tl-item:last-child {
  margin-bottom: 0;
}
.ik-tl-content {
  flex: 1;
  position: relative;
}
.ik-tl-content.ik-tl-right {
  text-align: right;
  padding-right: 52px;
}
.ik-tl-content.ik-tl-left {
  text-align: left;
  padding-left: 52px;
}
.ik-tl-spacer {
  flex: 1;
}
.ik-tl-node {
  flex: 0 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ik-tl-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #4a7c59;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(74,124,89,0.15);
}
.ik-tl-item:last-child .ik-tl-circle {
  background: #eef4f0;
  border-color: #2D5016;
}
.ik-tl-bignum {
  display: block;
  font-family: 'Shippori Mincho', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(74,124,89,0.07);
  line-height: 1;
  position: absolute;
  top: -10px;
  pointer-events: none;
  user-select: none;
}
.ik-tl-right .ik-tl-bignum {
  right: 0;
}
.ik-tl-left .ik-tl-bignum {
  left: 0;
}
.ik-tl-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4a7c59;
  text-transform: uppercase;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.ik-tl-title {
  font-family: 'Shippori Mincho', Georgia, serif !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #2D5016 !important;
  margin: 0 0 12px !important;
  line-height: 1.45 !important;
  position: relative;
  z-index: 1;
}
.ik-tl-desc {
  font-size: 0.9rem !important;
  color: #666 !important;
  line-height: 1.85 !important;
  max-width: 300px;
  position: relative;
  z-index: 1;
  margin: 0 !important;
}
.ik-tl-right .ik-tl-desc {
  margin-left: auto !important;
  margin-right: 0 !important;
}
/* SPレイアウト: 左ライン固定・全コンテンツ右に流す */
@media (max-width: 767px) {
  .ik-timeline::before {
    left: 28px;
    transform: none;
  }
  .ik-tl-item {
    align-items: flex-start;
  }
  .ik-tl-content.ik-tl-right,
  .ik-tl-content.ik-tl-left {
    order: 2;
    flex: 1;
    text-align: left;
    padding-left: 16px;
    padding-right: 0;
  }
  .ik-tl-node {
    order: 1;
    flex: 0 0 56px;
  }
  .ik-tl-spacer {
    display: none;
  }
  .ik-tl-circle {
    width: 56px;
    height: 56px;
  }
  .ik-tl-bignum {
    display: none;
  }
  .ik-tl-right .ik-tl-desc {
    margin-left: 0 !important;
  }
}

/* ===== TOP PAGE: お客様の声 ダークグリーン背景型 2026-05-25 ===== */
.ik-voice {
  background: #2D5016;
  padding: 80px 0;
}
.ik-voice-inner {
  text-align: center;
  padding: 0 24px 40px;
}
.ik-voice-en {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  display: block;
}
.ik-voice-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  color: #d4e9d8;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.ik-voice-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}
.ik-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.ik-voice-card {
  background: rgba(255,255,255,0.96);
  border-radius: 4px;
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
}
.ik-voice-card::before {
  content: '\201C';
  font-family: 'Shippori Mincho', serif;
  font-size: 9rem;
  line-height: 0.9;
  color: rgba(74,124,89,0.10);
  position: absolute;
  top: -4px;
  right: 12px;
  pointer-events: none;
}
.ik-voice-accent {
  width: 40px;
  height: 3px;
  background: #4a7c59;
  margin-bottom: 24px;
}
.ik-voice-body {
  font-size: 0.93rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.ik-voice-footer {
  border-top: 1px solid #e5e0d8;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ik-voice-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2D5016;
  color: white;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ik-voice-name { font-size: 0.9rem; font-weight: 700; color: #2D5016; }
.ik-voice-loc  { font-size: 0.78rem; color: #888; margin-top: 2px; }

@media (max-width: 767px) {
  .ik-voice { padding: 56px 0; }
  .ik-voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  .ik-voice-card { padding: 28px 24px 24px; }
}
.ik-voice-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* ===== END: お客様の声 ===== */

/* =====================================================
   スマホ ヘッダー：透明防止 + 文字色保証
   data-scrolled の状態に関わらず常に白背景・ダークテキスト
   ===================================================== */
@media not all and (min-width: 960px) {
  .l-header[data-spfix="1"] {
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
  }
  .l-header[data-spfix="1"] .l-header__inner {
    color: #3d3d3d !important;
  }
}

/* =====================================================
   aboutページ「私たちの想い」カード — Pattern A
   シンプル強調型: 白カード + 大きな数字 + 薄緑アクセント
   ===================================================== */
.ik-about-cards {
  display: flex;
  gap: 24px;
  max-width: 940px;
  margin: 0 auto;
}
.ik-about-card {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 36px 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}
.ik-about-card__num {
  font-family: 'Georgia', 'Shippori Mincho', serif;
  font-size: 56px;
  color: #d4e8c2;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}
.ik-about-card__title {
  font-size: 16px;
  font-weight: bold;
  color: #2D5016;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #d4e8c2;
}
.ik-about-card__body {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}
@media (max-width: 767px) {
  .ik-about-cards {
    flex-direction: column;
    gap: 16px;
  }
  .ik-about-card {
    padding: 28px 24px 24px;
  }
  .ik-about-card__num {
    font-size: 44px;
  }
}
/* ===== END: aboutページ カード ===== */
