/* ==========================================
   デザインシステム & 変数定義
   ========================================== */
:root {
    --primary-color: #1e4d38;
    /* 深みのある和モダンなグリーン */
    --primary-light: #2d6a4f;
    /* やや明るめのグリーン */
    --accent-orange: #d97706;
    /* 温かみのあるオレンジ */
    --accent-bg-orange: #fef3c7;
    /* 薄いオレンジ背景 */
    --bg-color: #fbfbf9;
    /* 柔らかいオフホワイトの背景 */
    --bg-card: #ffffff;
    /* カードなどの白背景 */
    --text-color: #2c3e35;
    /* グリーンがかった濃いグレー */
    --text-muted: #6b7280;
    /* 補助テキスト用のグレー */
    --border-color: #e5e7eb;
    /* ボーダー用グレー */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(30, 77, 56, 0.08);
    --shadow-lg: 0 10px 25px rgba(30, 77, 56, 0.12);

    --font-primary: 'Noto Sans JP', sans-serif;
    --font-title: 'Zen Kaku Gothic New', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* レイアウトユーティリティ */
.sp-only {
    display: none !important;
}

br.sp-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

/* 1024px以下（タブレット・スマホ全般）でモバイル表示に切り替え */
@media (max-width: 1024px) {
    .sp-only {
        display: block !important;
    }

    .sp-only.mobile-header-actions {
        display: flex !important;
    }

    br.sp-only {
        display: inline !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* ==========================================
   ヘッダーナビゲーションバナー
   ========================================== */
.header-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    padding: 0 20px;
}

.banner-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

.banner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.banner-company-name-img {
    height: 24px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
}

.banner-menu-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.banner-nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.banner-nav-links a {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
}

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

.banner-nav-links a:hover {
    color: var(--primary-light);
}

.banner-nav-links a:hover::after {
    width: 100%;
}

.banner-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.banner-phone {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.banner-phone:hover {
    color: var(--accent-orange);
}

.banner-cta-group {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* 共通ボタンスタイル（トンマナ・寸法・シャドウ・フォント完全統一） */
.banner-btn,
.banner-line-btn,
.banner-instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 0.82rem;
    height: 38px;
    padding: 0 16px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1;
    box-sizing: border-box;
}

.banner-btn svg,
.banner-line-btn svg,
.banner-instagram-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* LINEボタンスタイル */
.banner-btn.line,
.banner-line-btn {
    background-color: #06c755;
    box-shadow: 0 3px 8px rgba(6, 199, 85, 0.2);
}

.banner-btn.line:hover,
.banner-line-btn:hover {
    background-color: #05b04b;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(6, 199, 85, 0.35);
    color: #ffffff !important;
}

/* Instagramボタンスタイル */
.banner-btn.instagram,
.banner-instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 3px 8px rgba(225, 48, 108, 0.25);
}

.banner-btn.instagram:hover,
.banner-instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(225, 48, 108, 0.4);
    color: #ffffff !important;
    filter: brightness(1.08);
}

/* モバイルヘッダーアクション（TEL ＋ ハンバーガー） */
.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color) !important;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(30, 77, 56, 0.08);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.mobile-phone-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 77, 56, 0.2);
}

.mobile-phone-svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* モダン・ハンバーガーボタン */
.hamburger-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #f0f5f2;
    border: 1.5px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.hamburger-btn:hover {
    background-color: #e2ece5;
    border-color: #d1dfd6;
}

.hamburger-bar {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* 開いたときの×アニメーション */
.hamburger-btn.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* モバイルドロワーメニュー */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    transition: visibility 0.3s ease;
}

.mobile-drawer.is-open {
    visibility: visible;
}

.mobile-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 32, 22, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-drawer.is-open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.mobile-drawer-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-title);
    letter-spacing: 0.05em;
}

.drawer-close-btn {
    background: #f1f5f2;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.drawer-close-btn:hover {
    background: #e2e8e4;
    color: var(--primary-color);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #f8faf8;
    border: 1px solid #e7eee9;
}

.drawer-nav-item:hover,
.drawer-nav-item.active {
    background: #eaf3ed;
    border-color: #c5ded0;
}

.drawer-nav-item:hover .nav-item-arrow,
.drawer-nav-item.active .nav-item-arrow {
    transform: translateX(3px);
    color: var(--primary-color);
}

.nav-item-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.drawer-nav-item.active .nav-item-icon-box {
    background: var(--primary-color);
    color: #ffffff;
}

.nav-item-label {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
}

.drawer-nav-item.active .nav-item-label {
    color: var(--primary-color);
}

.nav-item-arrow {
    color: #a0b2a7;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-drawer-contact {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-contact-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.drawer-phone-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1b4d36 0%, #2b6e4f 100%);
    color: #ffffff !important;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(27, 77, 54, 0.2);
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.drawer-phone-card:hover {
    transform: translateY(-2px);
}

.drawer-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    flex-shrink: 0;
}

.drawer-phone-info {
    display: flex;
    flex-direction: column;
}

.drawer-phone-num {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.drawer-phone-sub {
    font-size: 0.72rem;
    color: #c7eedb;
    margin-top: 2px;
}

.drawer-sns-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.drawer-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.drawer-btn.line {
    background-color: #06c755;
}

.drawer-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* タブレット〜スマホ対応（ヘッダーバナー 1024px以下） */
@media (max-width: 1024px) {
    .header-banner {
        height: 64px;
    }

    .banner-container {
        padding: 0 16px;
    }

    .banner-logo-area {
        gap: 8px;
    }

    .banner-logo {
        width: 36px;
        height: 36px;
        padding: 2px;
    }

    .banner-company-name-img {
        height: 22px;
        max-width: 150px;
    }
}

/* スマホ小型画面（480px以下） */
@media (max-width: 480px) {
    .header-banner {
        height: 60px;
    }

    .banner-container {
        padding: 0 10px;
    }

    .banner-logo-area {
        gap: 6px;
    }

    .banner-logo {
        width: 30px;
        height: 30px;
    }

    .banner-company-name-img {
        height: 18px;
        max-width: 120px;
    }

    .mobile-phone-btn {
        height: 36px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .hamburger-btn {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================
   ヘッダー / ヒーローエリア
   ========================================== */
.hero-section {
    padding: 60px 0 40px 0;
    text-align: center;
    background: linear-gradient(180deg, #f0f4f1 0%, var(--bg-color) 100%);
}

.hero-brand-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-brand-mark {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.hero-brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.hero-catch-card {
    margin: 36px auto 0 auto;
    padding: 32px 28px 28px 28px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
    border: 1px solid rgba(22, 101, 52, 0.12);
    max-width: 900px;
}

.hero-catch-card .hero-title {
    margin-bottom: 12px;
}

.hero-catch-card .hero-subtitle {
    margin-bottom: 0;
}

.hero-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

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

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(217, 119, 6, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-orange);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
    padding-bottom: 8px;
}

.hero-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* 画像に重なるキャッチコピー（帯デザイン・薄め黄緑透け感） */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(135, 195, 45, 0.45) 0%, rgba(100, 165, 30, 0.55) 100%);
    padding: 10px 24px;
    color: #ffffff;
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay-text {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.overlay-text.sub {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffd8a8;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

.overlay-text.main {
    font-family: var(--font-title);
    font-size: 1.65rem;
    font-weight: 900;
    margin-top: 2px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   紹介・ロゴエリア
   ========================================== */
.intro-section {
    padding: 60px 0;
    text-align: center;
}

.logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.logo-wrapper:hover {
    transform: rotate(10deg);
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(30, 77, 56, 0.12);
}

.company-name-img {
    height: 50px;
    width: auto;
    max-width: 90%;
    margin: 0 auto 12px auto;
    display: block;
    object-fit: contain;
}

.company-sub-catch {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 36px;
    letter-spacing: 0.05em;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 40px auto;
}

.info-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
}

.info-value.address {
    font-size: 0.95rem;
}

.info-value.hours {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.info-fax {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.info-sub-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 600;
}

.info-value.tel {
    font-size: 1.4rem;
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
}

.info-value.tel:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* 詳細会社概要カード（テーブル形式） */
.company-profile-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: left;
}

.company-profile-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-profile-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 24px;
    background-color: var(--accent-orange);
    border-radius: 3px;
}

.company-profile-list {
    display: flex;
    flex-direction: column;
}

.profile-row {
    display: flex;
    align-items: flex-start;
    padding: 16px 8px;
    border-bottom: 1px solid #eef2ef;
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-row dt {
    width: 170px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.profile-row dd {
    flex: 1;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.profile-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-bullets li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.profile-bullets li:last-child {
    margin-bottom: 0;
}

.profile-bullets li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 900;
}

.table-link {
    color: var(--primary-color);
    font-weight: 700;
    border-bottom: 1px dashed var(--primary-color);
    transition: color 0.3s;
}

.table-link:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* フッター営業時間 */
.footer-business-hours {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    font-size: 0.85rem;
    color: #a7f3d0;
    margin-bottom: 8px;
}

/* ==========================================
   コンテンツエリア1: プチ事前相談
   ========================================== */
.section-bg {
    background-color: #f3f6f4;
}

.consultation-section {
    padding: 80px 0;
}

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

.speech-bubble-wrapper {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.speech-bubble {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    position: relative;
}

.speech-bubble.accent {
    background-color: var(--accent-orange);
    color: #ffffff;
}

.speech-bubble.accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--accent-orange) transparent transparent;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 16px;
}

.section-title.text-green {
    color: var(--primary-color);
}

.section-lead {
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.consultation-content {
    max-width: 760px;
    margin: 0 auto;
}

.topic-box {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-left: 8px solid var(--accent-orange);
}

.topic-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 24px;
    text-align: center;
}

.topic-list {
    list-style: none;
}

.topic-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.topic-list li:last-child {
    margin-bottom: 0;
}

.star-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-right: 12px;
    line-height: 1.5;
}

.list-text {
    flex: 1;
}

/* ==========================================
   コンテンツエリア2: 総合窓口
   ========================================== */
.window-section {
    padding: 80px 0;
}

.window-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
    align-items: center;
}

.window-menu-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.window-menu-list {
    list-style: none;
}

.window-menu-list li {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: #f4f7f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.window-menu-list li:hover {
    transform: translateX(5px);
    background-color: #eaf1ed;
}

.window-menu-list li:last-child {
    margin-bottom: 0;
}

/* 吹き出し風デザインのカード群 */
.bubble-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bubble-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid;
    position: relative;
    transition: transform 0.3s ease;
}

.bubble-card:hover {
    transform: translateY(-3px);
}

.bubble-card:nth-child(1) {
    border-color: var(--accent-orange);
    background-color: #fffbeb;
}

.bubble-card:nth-child(2) {
    border-color: var(--primary-light);
    background-color: #f0fdf4;
}

.bubble-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
}

.bubble-text.orange-text {
    color: #b45309;
}

.bubble-text.green-text {
    color: var(--primary-color);
    text-align: center;
}

/* CTAエリア */
.call-to-action {
    text-align: center;
    margin-top: 60px;
}

.cta-message {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
    display: inline-block;
    padding: 12px 32px;
    border-bottom: 4px solid var(--accent-orange);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ==========================================
   フッター
   ========================================== */
.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 60px 0 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.footer-company-name-img {
    height: 32px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    margin-bottom: 8px;
    display: block;
}

.footer-company-name {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-representative {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #d1fae5;
}

.footer-license {
    font-size: 0.85rem;
    color: #a7f3d0;
}

.footer-contact-area {
    text-align: right;
}

.footer-address {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #e6f4ea;
}

.footer-communication {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-phone {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

.footer-phone:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.footer-fax {
    font-size: 1rem;
    color: #d1fae5;
}

.footer-sns-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.footer-sns-btn {
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.footer-sns-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-sns-btn.line {
    background-color: #06c755;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-sns-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    color: #ffffff;
}

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

.copyright {
    font-size: 0.85rem;
    color: #a7f3d0;
}

/* ==========================================
   レスポンシブデザイン (タブレット & モバイル)
   ========================================== */
@media (max-width: 992px) {
    .hero-image {
        height: 400px;
    }

    .overlay-text.main {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {

    /* ヒーロー */
    .hero-section {
        padding: 24px 0 24px 0;
    }

    .hero-brand-area {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-brand-mark {
        height: 48px;
    }

    .hero-brand-logo {
        height: 30px;
    }

    .hero-catch-card {
        margin-top: 24px;
        padding: 20px 16px 16px 16px;
        border-radius: 14px;
    }

    .hero-title {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .hero-image {
        height: 280px;
    }

    .hero-overlay {
        padding: 6px 12px;
    }

    .overlay-text {
        font-size: 0.75rem;
        margin-bottom: 1px;
    }

    .overlay-text.sub {
        font-size: 0.85rem;
    }

    .overlay-text.main {
        font-size: 1.05rem;
        margin-top: 1px;
    }

    /* 紹介情報 */
    .company-name-img {
        height: 38px;
        max-width: 85%;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .info-card {
        padding: 16px;
    }

    /* 会社概要詳細テーブル (スマホ) */
    .company-profile-card {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .company-profile-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .profile-row {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .profile-row dt {
        width: 100%;
        font-size: 0.88rem;
    }

    .profile-row dd {
        font-size: 0.88rem;
    }

    /* 相談セクション */
    .consultation-section {
        padding: 45px 0;
    }

    .section-title {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    .topic-box {
        padding: 20px 16px;
    }

    .topic-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }

    .topic-list li {
        font-size: 0.9rem;
    }

    /* 総合窓口 */
    .window-section {
        padding: 45px 0;
    }

    .window-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .window-menu-card {
        padding: 18px 16px;
    }

    .window-menu-list li {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .bubble-card {
        padding: 18px 16px;
    }

    .bubble-text {
        font-size: 0.9rem;
    }

    .cta-message {
        font-size: 1.3rem;
    }

    /* フッター */
    .footer {
        padding: 35px 0 0 0;
    }

    .footer-company-name-img {
        height: 26px;
        max-width: 220px;
        margin: 0 auto 8px auto;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-logo-area {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact-area {
        text-align: center;
    }

    .footer-business-hours {
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 10px;
    }

    .footer-communication {
        align-items: center;
    }

    .footer-phone {
        font-size: 1.3rem;
    }

    .footer-sns-area {
        justify-content: center;
        margin-top: 12px;
    }
}

/* ==========================================
   スクロール連動フェードイン演出（JS用）
   ========================================== */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   サブページ（会社概要ページ）スタイル
   ========================================== */
.subpage-header {
    background: linear-gradient(180deg, #edf4f0 0%, var(--bg-color) 100%);
    padding: 40px 0 24px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 700;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

.subpage-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.subpage-lead {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 4px;
}

.company-page-section {
    padding: 60px 0;
}

.company-message-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.company-catch-sub {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0 16px 0;
}

.company-greeting-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* 事務所風景カード＆カルーセルスライダー */
.office-showcase-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 48px;
    max-width: 960px;
    margin: 40px auto 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: left;
}

.office-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin-top: 20px;
}

.office-carousel {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background-color: #f4f6f4;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    z-index: 2;
}

.office-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* バッジ */
.carousel-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(22, 101, 52, 0.85);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 3;
    letter-spacing: 0.05em;
}

/* ナビゲーション矢印ボタン */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

/* インジケータードット */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--accent-orange);
    box-shadow: 0 2px 6px rgba(217, 119, 6, 0.4);
}

/* ==========================================
   トップページ NEWS ダイジェストセクション
   ========================================== */
.top-news-section {
    background-color: #ffffff;
    padding: 36px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-news-inner {
    max-width: 960px;
    margin: 0 auto;
}

.top-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.top-news-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.top-news-title .font-en {
    font-size: 1.1rem;
    color: var(--accent-orange);
    letter-spacing: 0.08em;
}

.top-news-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.top-news-more:hover {
    color: var(--accent-orange);
}

.top-news-list {
    display: flex;
    flex-direction: column;
}

.top-news-item {
    display: flex;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px solid #eef2ef;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s;
    cursor: pointer;
}

.top-news-item:hover {
    background-color: #f8faf8;
}

.top-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 240px;
    flex-shrink: 0;
}

.top-news-date {
    font-size: 0.88rem;
    color: #64748b;
    font-weight: 500;
}

.top-news-category {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    background-color: #e2e8f0;
    color: #475569;
}

.top-news-category.cat-お知らせ {
    background-color: #e0f2fe;
    color: #0369a1;
}

.top-news-category.cat-成約事例 {
    background-color: #fef3c7;
    color: #b45309;
}

.top-news-txt {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-news-arrow {
    color: #94a3b8;
    margin-left: 8px;
    font-size: 1.1rem;
}

/* ==========================================
   お知らせ一覧ページ (news.html) スタイル
   ========================================== */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4d34 100%);
    padding: 48px 0;
    color: #ffffff;
    text-align: center;
}

.page-header-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.page-header-title .font-en {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #a7f3d0;
}

.breadcrumb-bar {
    background-color: #f1f5f2;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li+li::before {
    content: "›";
    margin-right: 8px;
    color: #94a3b8;
}

.breadcrumb-list a {
    color: var(--primary-color);
    font-weight: 500;
}

.news-page-container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    padding: 48px 0 80px 0;
}

/* カテゴリーフィルターボタン */
.news-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    background-color: #f1f5f2;
    border-color: var(--primary-light);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* お知らせリスト */
.news-list-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.news-list-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #eef2ef;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.news-list-item:hover {
    background-color: #f8faf8;
}

.news-item-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 250px;
    flex-shrink: 0;
}

.news-item-date {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.news-item-category {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    background-color: #e2e8f0;
    color: #475569;
}

.news-item-category.cat-お知らせ {
    background-color: #e0f2fe;
    color: #0369a1;
}

.news-item-category.cat-成約事例 {
    background-color: #fef3c7;
    color: #b45309;
}

.news-item-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.5;
}

.news-item-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 12px;
    font-weight: bold;
}

/* サイドバー */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 8px;
}

.sidebar-category-link {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.sidebar-category-link:hover,
.sidebar-category-link.active {
    background-color: #eef5f1;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-widget {
    background-color: #f8faf8;
    border-color: #d1fae5;
}

.widget-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
}

.widget-tel-btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 1.1rem;
}

.widget-form-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* 記事詳細モーダル */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.news-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.news-modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.news-modal-overlay.is-active .news-modal-content {
    transform: translateY(0);
}

.news-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.news-modal-close:hover {
    color: var(--text-color);
}

.news-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-modal-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.4;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #eef2ef;
}

.news-modal-body {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #334155;
    white-space: pre-wrap;
}

/* レスポンシブ (スマホ表示) */
@media (max-width: 768px) {
    .news-page-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 60px 0;
    }

    .top-news-meta,
    .news-item-meta {
        width: 100%;
        margin-bottom: 6px;
    }

    .top-news-item,
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
    }

    .news-item-title {
        font-size: 0.95rem;
    }

    .news-modal-content {
        padding: 24px 20px;
    }
}


.office-showcase-desc .showcase-lead {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.office-showcase-desc .showcase-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* 戻るボタン */
.back-to-home-area {
    text-align: center;
    margin-top: 48px;
}

.back-to-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(30, 77, 56, 0.2);
}

.back-to-home-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 77, 56, 0.3);
}

/* ナビゲーションのアクティブ表示 */
.banner-nav-links a.active {
    color: var(--accent-orange);
}

.banner-nav-links a.active::after {
    width: 100%;
}

/* ==========================================
   アットホーム (at home) 連携スタイル
   ========================================== */

/* PCヘッダーのピル型ナビボタン */
.banner-nav-links a.nav-athome-pill {
    color: var(--accent-orange) !important;
    background-color: rgba(217, 119, 6, 0.09);
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    border: 1px solid rgba(217, 119, 6, 0.25);
    transition: all 0.25s ease;
}

.banner-nav-links a.nav-athome-pill::after {
    display: none;
}

.banner-nav-links a.nav-athome-pill:hover {
    background-color: var(--accent-orange);
    color: #ffffff !important;
    border-color: var(--accent-orange);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(217, 119, 6, 0.25);
}

/* スマホドロワーのナビリンク */
.athome-nav-item {
    background-color: rgba(217, 119, 6, 0.05);
}

.athome-nav-item .athome-icon-box {
    background-color: rgba(217, 119, 6, 0.12);
    color: var(--accent-orange);
}

.athome-nav-item .nav-item-label {
    color: var(--accent-orange);
    font-weight: 700;
}

/* トップページ中盤の特設コーナー */
.top-athome-section {
    padding: 40px 0;
    background-color: #f8faf8;
}

.athome-showcase-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.06);
    border: 1px solid rgba(22, 101, 52, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.athome-showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(22, 101, 52, 0.1);
}

.athome-card-content {
    flex: 1;
}

.athome-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(22, 101, 52, 0.08);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.athome-badge-icon {
    color: var(--primary-color);
}

.athome-card-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.athome-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.athome-card-action {
    flex-shrink: 0;
}

.athome-btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.athome-btn-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 24px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #9a3412 100%);
}

.btn-arrow-icon {
    transition: transform 0.3s ease;
}

.athome-btn-link:hover .btn-arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .subpage-title {
        font-size: 1.7rem;
    }

    .office-showcase-card {
        padding: 24px 16px;
    }

    .office-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-viewport {
        height: 220px;
    }

    .top-athome-section {
        padding: 20px 0;
    }

    .athome-showcase-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 18px;
        gap: 16px;
    }

    .athome-badge {
        margin-bottom: 6px;
    }

    .athome-card-title {
        font-size: 1.3rem;
        margin-bottom: 0;
    }

    .athome-card-desc {
        display: none;
    }

    .athome-card-action {
        width: 100%;
    }

    .athome-btn-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}