/* ====================================
   リセット & ベーススタイル
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ====================================
   カラー変数（ロゴの茶色をベース）
   ==================================== */
:root {
    --primary-color: #4A3728;
    --primary-dark: #31241A;
    --primary-light: #6A5340;
    --accent-color: #C5A880;
    --text-dark: #2A2A2A;
    --text-light: #666666;
    --bg-light: #F9F8F6;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.06);
}

/* ====================================
   共通コンポーネント
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-gray {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 68, 35, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ====================================
   ヒーローセクション
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero_bright.png') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 248, 246, 0.6) 100%);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.hero-logo img {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.hero-title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.8;
}

.pc-only {
    display: inline;
}

.sp-only {
    display: none;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-cta .btn {
    min-width: 260px;
    padding: 18px 48px;
    font-size: 1.05rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 40px;
}

/* 極端に高さが低い場合のみ非表示 */
@media (max-height: 600px) {
    .hero-scroll {
        display: none;
    }
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* アニメーション */
.fade-in {
    animation: fadeInUp 1s ease 0.3s both;
}

.fade-in-delay {
    animation: fadeInUp 1s ease 0.6s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease 0.9s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   ナビゲーション
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-logo img {
    height: 36px;
    transition: opacity 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.04em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-contact {
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(107, 68, 35, 0.3);
}

.btn-nav-contact::after {
    display: none;
}

.btn-nav-contact:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.4);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ====================================
   会社概要セクション
   ==================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-light), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px var(--shadow);
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.5;
}

/* ====================================
   サービスセクション
   ==================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-image {
    width: 100%;
    height: 180px;
    background: var(--bg-light);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    flex: 1;
}

.service-note {
    display: inline-block;
    margin-top: 15px;
    padding: 4px 12px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(74, 55, 40, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(74, 55, 40, 0.2);
    align-self: center;
}

/* ====================================
   強みセクション
   ==================================== */
.strengths-intro-wrap {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.strengths-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.strengths-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.strength-item {
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--primary-color);
    border-left: none;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) {
    .strength-item {
        flex-direction: row;
        align-items: center;
    }

    .strength-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.strength-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.2;
    z-index: 0;
}

@media (min-width: 768px) {
    .strength-item:nth-child(even) .strength-number {
        left: auto;
        right: 20px;
    }
}

.strength-text {
    flex: 1;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.strength-image {
    width: 100%;
    height: 300px;
}

@media (min-width: 768px) {
    .strength-image {
        width: 45%;
        height: 100%;
        min-height: 350px;
    }
}

.strength-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-text h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.strength-text p {
    color: var(--text-light);
    line-height: 1.9;
}

/* ====================================
   お知らせセクション
   ==================================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-item:hover::before {
    transform: scaleY(1);
}

.news-date {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    min-width: 100px;
    font-family: 'Montserrat', sans-serif;
}

.news-title {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.news-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(0);
}

.news-loading,
.news-empty,
.news-error {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.news-loading i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

/* ====================================
   ブログセクション
   ==================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card__image::after {
    opacity: 1;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.blog-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: auto;
}

.blog-loading,
.blog-empty,
.blog-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.blog-loading i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

/* セクションフッター（もっと見るボタン） */
.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ====================================
   お問い合わせセクション
   ==================================== */
.contact-cta {
    max-width: 800px;
    margin: 0 auto;
}

.contact-box {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.contact-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-area {
    margin: 30px auto;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    max-width: 600px;
}

.contact-area h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-area p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.contact-button-wrapper {
    margin-top: 40px;
}

.contact-button-wrapper .btn {
    min-width: 300px;
}

/* ====================================
   フッター
   ==================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    align-items: start;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-area {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-area i {
    margin-right: 5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ====================================
   レスポンシブデザイン
   ==================================== */

/* タブレット */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo img {
        max-width: 320px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-title-line {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: inline;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo img {
        max-width: 280px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        margin-top: 30px;
        font-size: 0.75rem;
    }

    .scroll-line {
        height: 40px;
    }

    .navbar .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px var(--shadow);
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .news-date {
        min-width: auto;
    }

    .strength-item {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .strength-number {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .contact-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .contact-button-wrapper .btn {
        min-width: 100%;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-logo img {
        max-width: 240px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ====================================
   マーケティングCRO拡張スタイル
   ==================================== */
/* Hero Microcopy */
.hero-cta-micro {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(107, 68, 35, 0.1);
}

/* Trust Badges */
.trust-badges {
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 0;
}

.trust-badges-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.badge-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.badge-unit {
    font-size: 1rem;
    font-weight: 600;
    margin-left: 5px;
    color: var(--white);
    font-family: 'Noto Sans JP', sans-serif;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .trust-badges-inner {
        flex-direction: column;
        gap: 20px;
    }

    .badge-divider {
        width: 60px;
        height: 1px;
    }
}

/* Empathy Section */
.empathy-header {
    text-align: center;
    margin-bottom: 40px;
}

.empathy-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empathy-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.empathy-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-top: 5px solid var(--accent-color);
}

.empathy-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px dashed #e2e8f0;
}

.empathy-item:last-child {
    border-bottom: none;
}

.empathy-item i {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.5;
}

.empathy-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.empathy-item p strong {
    color: var(--primary-color);
    font-weight: 700;
    /* subtle highlight gradient */
    background: linear-gradient(transparent 60%, rgba(200, 169, 126, 0.3) 60%);
}

.empathy-bridge {
    text-align: center;
    margin-top: 40px;
}

.empathy-bridge i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.empathy-bridge p {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
}

.empathy-bridge p strong {
    color: var(--primary-color);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

@media (max-width: 768px) {
    .empathy-header h2 {
        font-size: 1.6rem;
    }

    .empathy-list {
        padding: 20px;
    }

    .empathy-item p {
        font-size: 1rem;
    }
}

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.case-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.case-industry {
    display: inline-block;
    background: rgba(107, 68, 35, 0.05);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.case-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 3.5rem;
}

.case-results {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

.result-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.result-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-unit {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    margin-left: 2px;
}

.cases-note {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-title {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Microcopy */
.contact-micro {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* Blog Placeholder (no featured image) */
.blog-card__placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.blog-card__placeholder::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.blog-card__placeholder::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.placeholder-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}