/* ===========================================================
   オーケー企画 Ver2 - Main Stylesheet
   =========================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2c3540;
    background: #fff;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .85; }
h1, h2, h3, h4 { line-height: 1.4; margin: 0; font-weight: 700; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Variables ---------- */
:root {
    --primary: #1a3a5c;       /* 落ち着いたネイビー */
    --primary-dark: #102640;
    --primary-light: #2d5a8c;
    --accent: #e8732a;        /* 温かみのあるオレンジ */
    --accent-dark: #c25c1a;
    --accent-light: #f4a466;
    --text: #2c3540;
    --text-muted: #6b7785;
    --bg: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #1a2330;
    --border: #e1e6ed;
    --shadow-sm: 0 2px 8px rgba(26, 58, 92, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 58, 92, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 58, 92, 0.16);
    --radius: 8px;
    --radius-lg: 20px; /* v3完全踏襲 --r-lg */
    --container: 1200px;
    --header-h: 80px;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 768px) { .container { padding: 0 16px; } }

/* ---------- Typography helpers ---------- */
.section { padding: 96px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); color: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #1A6FAF; /* v3 c-primary-light 踏襲 */
    margin-bottom: 8px;
    text-transform: uppercase;
}
.section-title {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--primary);
    margin-bottom: 16px;
}
/* h2直下に accent 色のラインを追加 (v3 .section-header__line 踏襲) */
.section-header .section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #E8702A; /* v3 c-accent 踏襲 */
    margin: 16px auto 0;
    border-radius: 2px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
}
.section-foot { text-align: center; margin-top: 48px; }
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 36px; }
    .sp-hide { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 115, 42, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); opacity: 1; }
.btn-outline {
    border: 2px solid currentColor;
    color: #fff;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 14px 32px;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; opacity: 1; }
.btn-block { width: 100%; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn-header { padding: 10px 20px; font-size: 14px; }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 100;
    height: var(--header-h);
    transition: box-shadow .3s;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: auto; }
.brand-text { font-weight: 900; color: var(--primary); font-size: 18px; }
.global-nav .nav-list { display: flex; gap: 28px; }
.global-nav .nav-list a {
    font-size: 14px; font-weight: 500; color: var(--text);
    position: relative; padding: 8px 0;
}
.global-nav .nav-list a::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--accent);
    transition: width .25s;
}
.global-nav .nav-list a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    color: var(--primary);
}
.phone-meta { display: flex; flex-direction: column; line-height: 1.2; }
.phone-label { font-size: 11px; color: var(--text-muted); }
.phone-number { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 17px; }
.menu-toggle { display: none; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    position: absolute; left: 8px; width: 24px; height: 2px;
    background: var(--primary); transition: transform .3s;
}
.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }
.menu-toggle.is-open .hamburger { background: transparent; }
.menu-toggle.is-open .hamburger::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .hamburger::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
    .header-phone { display: none; }
    .menu-toggle { display: block; }

    .global-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        max-height: 0; overflow: hidden;
        transition: max-height .35s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .global-nav.is-open { max-height: 80vh; }
    .global-nav .nav-list { flex-direction: column; gap: 0; padding: 16px 24px; }
    .global-nav .nav-list a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); }
}

/* ===========================================================
   1. Hero
   =========================================================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex; align-items: center;
    margin-top: var(--header-h);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.85) 0%, rgba(26, 58, 92, 0.55) 60%, rgba(26, 58, 92, 0.4) 100%);
}
.hero-inner { position: relative; z-index: 2; color: #fff; padding: 64px 0; }
.hero-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    font-size: 13px; letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-lead {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.9;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    max-width: 640px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ===========================================================
   2. Trust Badges
   =========================================================== */
.badges {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
}
.badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
.badge-item {
    text-align: center;
    padding: 16px;
}
.badge-num {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.badge-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .badges-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .badges-grid .badge-item:last-child { grid-column: span 2; }
}

/* ===========================================================
   3. Service Gate
   =========================================================== */
.service-gate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sg-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid var(--border);
}
.sg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); opacity: 1; }
.sg-image {
    height: 200px;
    background-size: cover; background-position: center;
    position: relative;
}
.sg-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(26,58,92,0.4) 0%, transparent 50%);
}
.sg-body { padding: 24px; }
.sg-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    border-radius: 99px;
    margin-bottom: 8px;
    font-weight: 700;
}
.sg-body h3 {
    font-size: 20px; color: var(--primary); margin-bottom: 8px;
}
.sg-body p {
    font-size: 14px; color: var(--text-muted); margin: 0 0 16px;
    line-height: 1.7;
}
.sg-link {
    color: var(--accent);
    font-weight: 700; font-size: 14px;
}
.sg-highlight { border: 2px solid var(--accent); }
@media (max-width: 768px) {
    .service-gate-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   4. Concerns
   =========================================================== */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.concern-card {
    background: #fff;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s;
}
.concern-card:hover { transform: translateY(-4px); }
.concern-icon { font-size: 40px; margin-bottom: 12px; }
.concern-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.concern-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }
.concerns-cta {
    text-align: center;
    font-size: clamp(18px, 2.4vw, 24px);
    color: var(--primary);
    font-weight: 700;
    padding: 24px;
}
.concerns-cta strong { color: var(--accent); font-size: 1.2em; }
@media (max-width: 768px) {
    .concerns-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   5. Reasons (USP)
   =========================================================== */
.reasons-grid { display: grid; gap: 40px; }
.reason-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.reason-item:nth-child(even) { direction: rtl; }
.reason-item:nth-child(even) > * { direction: ltr; }
.reason-image {
    height: 320px;
    border-radius: var(--radius-lg);
    background-size: cover; background-position: center;
    box-shadow: var(--shadow-md);
}
.reason-body { padding: 0 16px; }
.reason-num {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 56px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.reason-body h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--primary);
    margin-bottom: 16px;
}
.reason-body p { font-size: 15px; line-height: 1.9; color: var(--text); margin: 0; }
@media (max-width: 768px) {
    .reason-item { grid-template-columns: 1fr; gap: 20px; }
    .reason-item:nth-child(even) { direction: ltr; }
    .reason-image { height: 220px; }
}

/* ===========================================================
   6. Works gallery
   =========================================================== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.work-card {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s;
}
.work-card:hover { transform: scale(1.02); opacity: 1; }
.work-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.work-card:hover .work-image img { transform: scale(1.08); }
.work-cat {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px;
    background: rgba(26, 58, 92, 0.92);
    color: #fff;
    font-size: 11px;
    border-radius: 99px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .works-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   7. Insurance
   =========================================================== */
.insurance {
    background: linear-gradient(135deg, #fdf6f0 0%, #fbeee1 100%);
    overflow: hidden;
}
.insurance-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}
.insurance-text .section-eyebrow { color: var(--accent-dark); }
.insurance-text .section-title { text-align: left; }
.insurance-lead { line-height: 1.9; margin: 16px 0 24px; }
.insurance-points {
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
}
.insurance-points li {
    padding: 8px 0;
    font-weight: 500;
    color: var(--primary);
}
.insurance-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.insurance-actions .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(255,255,255,0.6);
}
.insurance-actions .btn-outline:hover { background: var(--primary); color: #fff; }
.insurance-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .insurance-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   8. Flow
   =========================================================== */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}
.flow-step {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--accent);
}
.step-num {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 12px;
}
.flow-step h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.flow-step p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.7; }
@media (max-width: 768px) {
    .flow-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   9. Blog
   =========================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    display: block;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); opacity: 1; }
.blog-image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    border-radius: 99px;
    font-weight: 700;
}
.blog-body { padding: 20px; }
.blog-meta {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.blog-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   10. FAQ
   =========================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%);
    font-size: 24px; color: var(--accent);
    font-weight: 400;
    transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
    margin: 0; padding: 0 24px 24px;
    color: var(--text);
    line-height: 1.9;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ===========================================================
   11. Contact
   =========================================================== */
.contact { background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%); }
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}
.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 {
    font-size: clamp(24px, 3.4vw, 32px);
    color: var(--primary);
    margin-bottom: 12px;
}
.contact-header p { color: var(--text-muted); margin: 0; }

.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.channel {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: border-color .25s, transform .25s;
}
.channel:hover { transform: translateY(-2px); }
.channel-phone:hover { border-color: var(--primary); }
.channel-dm:hover { border-color: #DD2A7B; }
.channel-form:hover { border-color: var(--accent); }
.channel-icon { font-size: 32px; }
.channel h3 { font-size: 16px; color: var(--primary); margin: 12px 0 4px; }
.channel-hours { font-size: 12px; color: var(--text-muted); margin: 0 0 16px; }
.channel-cta {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
}
.channel-cta-dm {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    padding: 10px 24px;
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(221, 42, 123, 0.30);
}
.channel-cta-form {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
}

.contact-form-wrap { padding-top: 32px; border-top: 1px solid var(--border); }
.form-heading {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}
.dummy-form .form-group { margin-bottom: 20px; }
.dummy-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dummy-form label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 6px;
}
.dummy-form .required {
    display: inline-block;
    padding: 1px 8px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 700;
}
.dummy-form input, .dummy-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font: inherit;
    background: var(--bg-light);
    transition: border-color .2s;
}
.dummy-form input:focus, .dummy-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}
.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    background: #fff8ee;
    border: 1px dashed var(--accent-light);
    padding: 8px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
@media (max-width: 768px) {
    .contact-card { padding: 32px 20px; }
    .contact-channels { grid-template-columns: 1fr; }
    .dummy-form .form-row { grid-template-columns: 1fr; }
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
    background: var(--bg-dark);
    color: #c7cdd6;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-logo {
    height: 48px;
    background: #fff;
    padding: 8px 16px;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 16px;
}
.footer-desc { font-size: 13px; line-height: 1.9; color: #9ba5b3; margin: 0; }
.footer-heading {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-list li, .footer-list a {
    font-size: 13px;
    line-height: 2;
    color: #9ba5b3;
}
.footer-list a:hover { color: #fff; opacity: 1; }
.footer-meta dt {
    font-size: 11px;
    color: #6b7785;
    margin-top: 8px;
}
.footer-meta dd {
    font-size: 13px;
    margin: 0;
    color: #c7cdd6;
}
.footer-meta a { color: var(--accent-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 12px; color: #6b7785; margin: 0; }
.footer-legal { display: flex; justify-content: center; gap: 24px; margin: 0 0 12px; padding: 0; list-style: none; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: #9aa6b5; }
.footer-legal a:hover { color: #fff; opacity: 1; }
.biz-info { width: 100%; border-collapse: collapse; margin: 16px 0 32px; }
.biz-info th, .biz-info td { border-bottom: 1px solid var(--border); padding: 12px 16px; text-align: left; vertical-align: top; }
.biz-info th { background: var(--bg-light); width: 30%; font-weight: 600; color: var(--primary); }
@media (max-width: 768px) { .biz-info th, .biz-info td { display: block; width: 100%; border-bottom: none; padding: 8px 12px; } .biz-info th { background: var(--bg-light); border-radius: 4px; } .biz-info td { padding-bottom: 16px; border-bottom: 1px solid var(--border); } }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===========================================================
   Floating CTA (SP)
   =========================================================== */
.floating-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    z-index: 90;
    border-top: 1px solid var(--border);
}
.fc-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 4px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-right: 1px solid var(--border);
}
.fc-btn:last-child { border-right: none; }
.fc-icon { font-size: 22px; line-height: 1; margin-bottom: 2px; }
.fc-phone { background: linear-gradient(180deg, #fff 0%, #fdf6f0 100%); }
.fc-instagram { color: #E1306C; }
.fc-form { background: var(--primary); color: #fff; }
@media (max-width: 1024px) {
    .floating-cta { display: grid; }
    body { padding-bottom: 70px; }
}

/* ===========================================================
   v3 PORT: 共通CSS変数追補
   =========================================================== */
:root {
    --c-instagram: #E1306C;
    --t-base: 0.25s;
    --t-slow: 0.5s;
    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --shadow-glow: 0 0 24px rgba(232, 115, 42, 0.4);
}

/* ===========================================================
   v3 PORT: 角丸統一
   =========================================================== */
.work-image, .work-card, .blog-image, .blog-card,
.ig-cell, .works-archive-grid figure, .reason-image,
.concern-card, .post-eyecatch img {
    border-radius: var(--radius-lg) !important;
}
.work-card { overflow: hidden; }
/* sg-image はカード側 (.sg-card overflow:hidden) で切り抜くため独自角丸を設定しない */
.sg-image { border-radius: 0 !important; }
/* gallery__tag を a 化したときのスタイル統一 */
a.gallery__tag {
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
a.gallery__tag:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    opacity: 1;
}

/* ===========================================================
   v3 PORT: trust-bar (信頼バッジ帯)
   =========================================================== */
.trust-bar {
    background: var(--primary);
    color: #fff;
    padding: 28px 0;
}
.trust-bar__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    flex-wrap: wrap;
}
.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.trust-bar__number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}
.trust-bar__label {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.05em;
}
.trust-bar__suffix {
    font-size: 0.7em;
    margin-left: 2px;
}
@media (max-width: 768px) {
    .trust-bar__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 24px;
    }
    .trust-bar__item { padding: 4px 0; }
}

/* ===========================================================
   v3 PORT: Hero (FV) - フルハイト + 3ボタンCTA
   =========================================================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    margin-top: 0;
    padding-top: var(--header-h);
}
.hero-inner { max-width: 760px; }
/* 共通: 全 .cta-group に flex を適用（火災保険等で gap が効かない致命バグの修正） */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn--phone {
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: background .25s, transform .2s;
}
.btn--phone:hover { background: var(--primary-dark); transform: translateY(-2px); opacity: 1; }
/* ダーク背景下（FV / 火災保険 / .bg-dark）では outline-primary 相当に揃える（デバイス問わず適用）
   サイドバーの「電話で相談」と同じトーン: 白塗り + ネイビー枠 + ネイビー文字 / ホバーで反転 */
.hero .btn--phone,
.section.insurance.v3 .btn--phone,
.bg-dark .btn--phone {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;     /* border 2px ぶん相殺して他CTAと整列 */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.hero .btn--phone:hover,
.section.insurance.v3 .btn--phone:hover,
.bg-dark .btn--phone:hover {
    background: var(--primary);
    color: #fff;
}
.btn--primary {
    background: var(--accent);
    color: #fff;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(232, 115, 42, 0.35);
    transition: background .25s, transform .2s;
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); opacity: 1; box-shadow: var(--shadow-glow); }
.btn--dm {
    background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: #fff;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 4px 16px rgba(221, 42, 123, 0.30);
    transition: filter .25s, transform .2s, box-shadow .25s;
}
.btn--dm:hover { filter: brightness(1.05); transform: translateY(-2px); opacity: 1; box-shadow: 0 6px 20px rgba(221, 42, 123, 0.40); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

/* ===========================================================
   v3 PORT: Insurance (ダーク・4ステップ・3ボタンCTA)
   =========================================================== */
.section.insurance.v3 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 96px 0;
}
.insurance__inner {
    max-width: 980px;
    margin: 0 auto;
}
.insurance__header {
    text-align: center;
    margin-bottom: 24px;
}
.insurance__header h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(24px, 3.4vw, 32px);
    font-weight: 800;
    color: #fff;
}
.insurance__lead {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 48px;
    opacity: 0.92;
    text-align: center;
}
.insurance__lead strong { color: var(--accent-light); }
.insurance__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.insurance__step {
    text-align: center;
    padding: 28px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    transition: transform .25s, background .25s;
}
.insurance__step:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-4px); }
.insurance__step-num {
    width: 44px; height: 44px;
    margin: 0 auto 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
}
.insurance__step h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}
.insurance__step p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0;
}
.insurance__cta {
    text-align: center;
}
.insurance__cta p {
    margin-bottom: 24px;
    opacity: 0.92;
    font-size: 15px;
}
.insurance .cta-group {
    justify-content: center;
    gap: 24px;
}
.insurance .cta-group > a.btn--phone,
.insurance .cta-group > a.btn--primary,
.insurance .cta-group > a.btn--dm {
    flex: 0 0 auto;
    padding: 16px 28px;
    justify-content: center;
    white-space: nowrap;     /* 改行禁止 */
    min-width: 220px;        /* 短文ボタンも適度な幅を確保 */
}

/* SP: 2列 + 下段フル幅 (v3踏襲) */
@media (max-width: 768px) {
    .cta-group {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }
    .cta-group > a.btn--phone,
    .cta-group > a.btn--primary,
    .cta-group > a.btn--dm {
        flex: 1 1 calc(50% - 4px);
        min-width: 0;
        max-width: none;
        text-align: center;
        justify-content: center;
        padding: 14px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    .cta-group > a:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 14px 24px;
    }
    .cta-group > a.btn--dm {
        white-space: nowrap;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .insurance__steps { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   v3 PORT: Flow (横並び + 繋ぎ線)
   =========================================================== */
.section.flow.v3 {
    background: var(--bg-light);
    padding: 96px 0;
}
.flow__steps {
    display: flex;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.flow__step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}
.flow__step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: 0;
    width: 50%;
    height: 2px;
    background: var(--border);
}
.flow__step:last-child::after { display: none; }
.flow__step::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--border);
}
.flow__step:first-child::before { display: none; }
.flow__step-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.2);
}
.flow__step:nth-child(2) .flow__step-icon { background: var(--primary-light); }
.flow__step:nth-child(3) .flow__step-icon { background: var(--primary-light); }
.flow__step:last-child .flow__step-icon { background: var(--accent); }
.flow__step-content h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}
.flow__step-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 768px) {
    .flow__steps { flex-direction: column; gap: 24px; }
    .flow__step::before, .flow__step::after { display: none; }
}

/* ===========================================================
   v3 PORT: Contact (ダークグラデ + 白いカード)
   =========================================================== */
.section.contact.v3 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 96px 0;
}
.section.contact.v3 .contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .section.contact.v3 .contact-card { padding: 32px 20px; }
}

/* ===========================================================
   v3 PORT: アニメーション
   =========================================================== */
/* JS有効時のみフェードイン（無効/未実行時は常に表示 → カードが永久不可視になる事故を防ぐ） */
.js .animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
/* 一覧グリッドのカードはスクロール演出を外し常時表示（不揃い防止・SEO実用ページ） */
.js .gallery__grid .animate-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
}
.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ===========================================================
   v3 PORT: SP固定フッター (floating-bar)
   =========================================================== */
.floating-cta { display: none !important; }  /* 旧floating-cta は無効化 */
.floating-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    padding: 8px;
    gap: 8px;
}
.floating-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 4px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: transform .15s;
}
.floating-bar__btn:hover { transform: translateY(-2px); opacity: 1; }
.floating-bar__btn--phone { background: var(--primary); }
.floating-bar__btn--form  { background: var(--accent); }
.floating-bar__btn--dm  { background: linear-gradient(45deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
@media (max-width: 1024px) {
    .floating-bar { display: flex; }
    body { padding-bottom: 70px; }
}

/* v3 PORT: SVGアイコン共通 */
.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: currentColor;
}

/* ===========================================================
   v3 PORT: Works Gallery (施工事例ギャラリー)
   =========================================================== */
.gallery {
    background: var(--bg-light);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
    background: #ddd;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); opacity: 1; }
.gallery__item:hover { opacity: 1; }
.gallery__caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: #fff;
}
.gallery__tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.gallery__caption p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}
.gallery__area {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.85;
}
@media (max-width: 1024px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   Contact Form 7 装飾
   =========================================================== */
.cf7-grid { display: grid; gap: 18px; max-width: 640px; margin: 24px auto 0; }
.cf7-grid p { margin: 0; }
.cf7-grid label { display: block; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.cf7-grid .req {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.05em;
}
.cf7-grid input[type="text"],
.cf7-grid input[type="email"],
.cf7-grid input[type="tel"],
.cf7-grid select,
.cf7-grid textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.cf7-grid input:focus,
.cf7-grid select:focus,
.cf7-grid textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 115, 42, 0.15);
}
.cf7-grid input::placeholder,
.cf7-grid textarea::placeholder { color: #aab3bf; }
.cf7-grid textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.cf7-grid select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231a3a5c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px 8px; padding-right: 40px; }
.cf7-grid select::-ms-expand { display: none; }
.cf7-grid .wpcf7-list-item { margin: 0; display: inline-flex; align-items: center; gap: 8px; }
.cf7-grid .wpcf7-list-item-label { font-size: 14px; color: var(--text-muted); }
.cf7-grid .wpcf7-acceptance label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.cf7-grid .wpcf7-acceptance input { width: 18px; height: 18px; margin: 0; accent-color: var(--accent); }
.cf7-grid .wpcf7-submit, .cf7-grid input[type="submit"] {
    width: 100%;
    padding: 18px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232, 115, 42, 0.35);
    transition: background .2s, transform .2s, box-shadow .2s;
}
.cf7-grid .wpcf7-submit:hover, .cf7-grid input[type="submit"]:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 115, 42, 0.45); }
.cf7-grid .wpcf7-submit:disabled, .cf7-grid input[type="submit"]:disabled { background: #cdd5e0; box-shadow: none; cursor: not-allowed; transform: none; }
.cf7-grid .wpcf7-spinner { display: none; }
.wpcf7 form .wpcf7-response-output { margin: 20px 0 0; padding: 14px 18px; border-radius: var(--radius); font-size: 14px; }
.wpcf7 form.sent .wpcf7-response-output { border-color: #2bb673; background: #ecf9f3; color: #1d7d52; }
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output { border-color: #d64242; background: #fdecec; color: #a01919; }
.wpcf7-not-valid-tip { color: #d64242; font-size: 13px; margin-top: 6px; font-weight: 500; }
@media (max-width: 768px) {
    .cf7-grid { padding: 0 4px; }
    .cf7-grid input, .cf7-grid select, .cf7-grid textarea { font-size: 16px; /* iOS auto-zoom 防止 */ }
}
@media (max-width: 600px) {
    .gallery__grid { grid-template-columns: 1fr; }
}

/* ---------- works フィルタ（v3 風） ---------- */
.works-filter { margin: 0 auto 48px; }
.works-filter__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: #fff;
    border-radius: 99px;
    font-weight: 700;
    font-size: 14px;
    transition: all .2s var(--ease-out);
}
.filter-btn:hover, .filter-btn.is-active {
    background: var(--primary);
    color: #fff;
    opacity: 1;
}

/* ===========================================================
   SP表示の調整 (ヤヤフィードバック反映)
   =========================================================== */
@media (max-width: 1024px) {
    /* ヘッダーCTA（無料見積/Instagram DM）は固定フッターと重複するため非表示 */
    .header-cta { display: none; }
    /* ブランド名はロゴ＋テキストで表示 */
    .brand-text { display: inline-block; font-size: 15px; }
    .brand-logo { height: 36px; }
    /* FV: 左右パディング・余白調整 */
    .hero-inner { padding: 32px 20px; }
    .hero-lead { margin-bottom: 24px; }
    /* FV CTA: 縦一列・中央揃え */
    .hero-actions.cta-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions.cta-group > a {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* 固定フッター: 初期非表示、ヒーロー通過後にスライドイン */
    .floating-bar {
        display: flex;
        transform: translateY(100%);
        transition: transform .35s var(--ease-out);
    }
    .floating-bar.is-visible {
        transform: translateY(0);
    }
    body { padding-bottom: 0; }
    body.fb-visible { padding-bottom: 70px; }
}

/* 固定フッターのSVGアイコン白色強制 */
.floating-bar__btn .btn__icon { fill: #fff; }

/* ===========================================================
   主なサービス: 6セル目「すべてのサービス」カード
   =========================================================== */
.sg-card.sg-more {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    text-align: center;
}
.sg-card.sg-more:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-color: var(--accent);
}
.sg-more-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.sg-more-icon {
    width: 64px; height: 64px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform .25s var(--ease-out);
}
.sg-card.sg-more:hover .sg-more-icon {
    transform: translateX(4px);
}
.sg-more-inner h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}
.sg-more-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin: 0;
}
