/* 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #d32f2f;
    --secondary-red: #f44336;
    --light-red: #ffebee;
    --dark-red: #b71c1c;
    --text-dark: #212121;
    --text-light: #757575;
    --background-light: #fafafa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    /* レスポンシブ時に高さを自動調整 */
}

.logo {
    display: flex;
    align-items: baseline;
    cursor: pointer;
    transition: var(--transition);
    padding: 6px 10px;
    border-radius: 6px;
    /* 完全な透明背景 */
    background: transparent !important;
    background-color: transparent !important;
    /* コンテナレベルでの背景処理 */
    isolation: isolate;
    /* 白い背景を確実に除去 */
    box-shadow: none;
    border: none;
}

.logo:hover {
    background: rgba(211, 47, 47, 0.05);
    transform: translateY(-1px);
}

.logo-image {
    height: 32px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    /* 透明背景PNG用の完全な透明化設定 */
    background: transparent !important;
    background-color: transparent !important;
    /* 不要なブレンドモードを削除 */
    mix-blend-mode: normal;
    /* 影を除去し、鮮明な表示設定のみ */
    filter: contrast(1.05) saturate(1.1);
    /* 高品質レンダリング */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 完全な透明度 */
    opacity: 1;
    /* 白い背景を確実に除去 */
    box-shadow: none;
    border: none;
}

/* 高解像度ディスプレイでのロゴ最適化 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        /* Retina対応で鮮明表示 */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        -ms-interpolation-mode: nearest-neighbor;
        filter: contrast(1.02) saturate(1.05);
    }
}

/* ロゴの色彩強化 */
.logo-image {
    /* 赤色の彩度とコントラストを向上（影なし） */
    filter: contrast(1.08) 
            saturate(1.2) 
            hue-rotate(0deg);
}

/* ロゴテキストの基本スタイル */
.logo-text {
    margin-left: 10px;
    font-weight: 500;
    color: var(--text-dark);
    background: transparent !important;
    background-color: transparent !important;
    font-size: 1.2rem;
    line-height: 1.5;
    transition: var(--transition);
}

/* ロゴ全体の透明背景を強制 */
.logo * {
    background: transparent !important;
    background-color: transparent !important;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav a:hover {
    color: var(--primary-red);
}

/* ヘッダーのレスポンシブ対応 - 画面幅が狭い時の調整 */
@media (max-width: 1200px) {
    .header {
        /* 2段レイアウトに対応するため高さを自動調整 */
        height: auto;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 0;
        gap: 1rem;
        min-height: auto;
    }
    
    /* 1段目：ロゴ（左）とお問い合わせボタン（右） */
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .cta-button {
        order: 2;
        flex: 0 0 auto;
    }
    
    /* 2段目：ナビゲーション（中央揃え、全幅） */
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .hero {
        padding-top: 110px; /* 1200px以下での2段レイアウト時のヘッダー高さ */
    }
}

@media (max-width: 1000px) {
    .nav ul {
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .logo-image {
        height: 28px;
        max-width: 200px;
    }
    
    .cta-button {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .hero {
        padding-top: 120px; /* 1000px以下での調整 */
    }
}

@media (max-width: 900px) {
    .header-content {
        padding: 10px 0;
    }
    
    .nav {
        margin-top: 0.25rem;
    }
    
    .nav ul {
        gap: 0.25rem;
    }
    
    .nav a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .logo-image {
        height: 26px;
        max-width: 180px;
    }
    
    .cta-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .hero {
        padding-top: 115px; /* 900px以下での調整 */
    }
}

/* お知らせ一覧セクション */
.announcements {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fafbff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.announcements::before {
    display: none;
}

@keyframes gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcements .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* お知らせセクションの赤いアンダーラインを無効化 */
.announcements .section-title::after {
    display: none;
}

.announcements .section-title i {
    color: #667eea;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.announcements-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.announcement-item {
    background: white;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.announcement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    z-index: 0;
}

.announcement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

.announcement-content {
    position: relative;
    z-index: 1;
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-type.important {
    background: #e74c3c;
    color: white;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.announcement-type.info {
    background: #3498db;
    color: white;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.announcement-type.service {
    background: #27ae60;
    color: white;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.announcement-type.holiday {
    background: #f39c12;
    color: white;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.announcement-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.announcement-date i {
    font-size: 0.8rem;
}

.announcement-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.announcement-text {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
}

/* お知らせ内のリンクスタイル */
.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    padding: 8px 16px;
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    background: var(--white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.announcement-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.announcement-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.announcement-link:hover::after {
    transform: translateX(3px);
}

.announcement-empty {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px dashed #dee2e6;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-empty i {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 20px;
    display: block;
}

.announcement-empty p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

/* 新着バッジ */
.announcement-item.new {
    border-left-color: #ff6b6b;
    position: relative;
}

.announcement-item.new::after {
    content: 'NEW';
    position: absolute;
    top: -5px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-4px); }
    60% { transform: translateY(-2px); }
}

/* モバイルメニュー（初期状態では非表示） */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(211, 47, 47, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
    margin: 3px 0;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.mobile-nav li {
    margin: 0;
}

.mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.mobile-cta {
    background: var(--light-red);
    color: var(--primary-red);
}

.mobile-nav a.mobile-cta {
    font-weight: 600;
    margin: 1rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    background: var(--primary-red);
    color: var(--white);
    border: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        height: 70px;
        min-height: 70px;
        padding: 0;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        /* クリック時の レイアウト崩れを防ぐ */
        overflow: hidden;
    }
    
    .logo {
        margin-bottom: 0;
        padding: 6px 10px;
        background: transparent !important;
        background-color: transparent !important;
        /* ロゴを中央に配置 - より安定した配置方法 */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        /* クリック時の位置ずれを防ぐ */
        transition: none;
        z-index: 100;
    }
    
    /* モバイルではホバー効果を無効化 */
    .logo:hover {
        background: transparent !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .logo a {
        display: block;
        outline: none;
        text-decoration: none;
    }
    
    .logo a:hover {
        transform: none !important;
    }
    
    .logo a:focus,
    .logo a:active {
        outline: none;
        transform: none;
        position: static;
    }
    
    .logo-image {
        height: 32px;
        max-width: 220px;
        width: auto;
        background: transparent !important;
        background-color: transparent !important;
        mix-blend-mode: normal;
        filter: contrast(1.05) saturate(1.1);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        opacity: 1;
        box-shadow: none;
        border: none;
    }
    
    /* デスクトップナビゲーションを非表示 */
    .nav {
        display: none !important;
    }
    
    .nav ul {
        display: none !important;
    }
    
    .nav a {
        display: none !important;
    }
    
    /* モバイルメニューボタンを左端に配置 */
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    /* モバイルナビゲーションを表示 */
    .mobile-nav {
        display: block;
    }
    
    /* CTAボタンをモバイルで非表示（モバイルメニュー内にあるため） */
    .header-content .cta-button {
        display: none;
    }
    
    .announcements {
        padding: 3rem 0;
    }
    
    .announcements .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        gap: 6px;
        width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .announcements .section-title i {
        font-size: 1.3rem;
    }
    
    .announcement-item {
        padding: 20px;
        margin: 0 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .announcements-content {
        padding: 0 15px;
    }
    
    .announcement-list {
        max-width: 100%;
    }
    
    .announcement-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .announcement-title {
        font-size: 1.1rem;
    }
    
    .announcement-text {
        font-size: 0.95rem;
    }
    
    .announcement-empty {
        padding: 40px 20px;
    }
    
    .announcement-empty i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* 480px以下の画面でのヘッダー調整 */
    .header-content {
        height: 70px !important;
        min-height: 70px !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .logo-image {
        height: 28px;
        max-width: 180px;
    }
    
    /* ロゴの位置を480px以下でも安定化 */
    .logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        transition: none !important;
    }
    
    /* 480px以下でもホバー効果を完全無効化 */
    .logo:hover {
        background: transparent !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .logo a:hover {
        transform: none !important;
    }
    
    /* ロゴ画像のホバー効果も無効化 */
    .logo-image:hover {
        transform: none !important;
    }
    
    .logo a:focus,
    .logo a:active {
        outline: none !important;
        transform: none !important;
    }
    
    /* ロゴクリック時の追加安定化 */
    .logo:focus-within {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* ナビゲーションを確実に非表示 */
    .nav {
        display: none !important;
    }
    
    .nav ul {
        display: none !important;
    }
    
    .nav a {
        display: none !important;
    }
    
    /* モバイルメニューボタンのサイズ調整 */
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        left: 10px;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .announcements .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .announcements .section-title i {
        font-size: 1.2rem;
    }
    
    .announcement-type {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .announcement-date {
        font-size: 0.8rem;
    }
    
    .announcement-title {
        font-size: 1rem;
    }
    
    .announcement-text {
        font-size: 0.9rem;
    }
}

.cta-button {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

/* メインビジュアル */
.hero {
    margin-top: 0;
    padding-top: 70px; /* 固定ヘッダーの高さ分のパディング */
    position: relative;
}

/* 画像コンテナ（ナビバー直下、高さを小さく） */
.hero-image-container {
    width: 100%;
    height: 35vh;
    min-height: 280px;
    max-height: 400px;
    position: relative;
    overflow: hidden;
}

/* ヒーロー画像スライダー */
.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

/* コンテンツエリア */
.hero-content-section {
    background: linear-gradient(135deg, var(--light-red) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: var(--primary-red);
    text-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

/* ヒーローセクションの装飾要素 */
.hero-decorations-left,
.hero-decorations-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-decorations-left {
    left: -2rem;
}

.hero-decorations-right {
    right: -2rem;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.decoration-triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.decoration-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 0;
    animation-delay: 0s;
}

.decoration-2 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 0;
    animation-delay: 2s;
}

.decoration-3 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 40px solid var(--primary-red);
    top: 60px;
    left: 20px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.decoration-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--primary-red);
    opacity: 0.1;
    top: 40%;
    left: 15%;
    animation: rotate 8s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 実績数値 */
.achievements {
    background: var(--primary-red);
    color: var(--white);
    padding: 4rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* 情シス支援サービス専用 余白調整 */
.jisys .section-title {
    /* トップイメージと題名の間を広げる（上の余白を増やす） */
    margin-top: 3.5rem;
    /* 題名と下コンテンツの間を狭める（下の余白を減らす） */
    margin-bottom: 0.5rem;
}

.jisys {
    /* セクション上部の余白をやや拡大（他セクションに影響なし） */
    padding-top: 2rem;
}

/* タイトルの下線とテキスト間も少し詰める */
.jisys .section-title::after {
    margin: 0.5rem auto 0;
}

/* タイトル直後の最初のコンテンツブロックの上余白を縮小 */
.jisys .container > .technology:first-of-type {
    /* 直前ブロックの下側余白を縮小 */
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* システム開発ベンダー・大企業様向け セクション調整 */
.enterprise {
    padding-top: 4rem; /* 他セクションと揃う程度の上余白に調整 */
}

.enterprise .section-title {
    margin-top: 0; /* 見出しの個別余白は打ち消し、パディングで管理 */
}

/* 2つ目の technology ブロック（= コラボレートにお任せください）の上余白を縮小 */
.jisys .technology + .technology {
    padding-top: 1rem;
}

/* 「コラボレートにお任せください」の見出しのみ強調＆中央寄せ */
.jisys .technology + .technology > h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* サービス */
.services {
    padding: 6rem 0;
    background: var(--background-light);
}

/* 大企業向け（enterprise）セクション内の services の上側だけを縮小 */
.enterprise .services {
    padding-top: 2rem;
    /* グレー背景を画面いっぱいに広げる */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* 情シス支援サービスメニュー（情シスセクション限定の調整） */
.jisys .services {
    /* グレー背景の上側が広いので上だけ縮小 */
    padding-top: 2rem;
    /* 下側のグレー背景を無くすため、内側の余白はゼロにし外側の余白で調整 */
    padding-bottom: 0;
    margin-bottom: 2rem;
}

/* 見出しテキストだけを強調＆中央寄せ（カード内のh3には影響しないよう直下のみ） */
.jisys .services > h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-icon {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1.5rem;
    box-shadow: var(--shadow);
}

/* タブ機能共通スタイル */
.service-tabs, .tech-tabs, .portfolio-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    margin-bottom: -2px;
}

.tab-button.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

.tab-button:hover {
    color: var(--primary-red);
}

/* タブ切替UI */
.service-tabs, .tech-tabs, .portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.tab-button {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: var(--text-light);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Noto Sans JP', sans-serif;
}

.tab-button.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.tab-button:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.tab-button.active:hover {
    color: white;
}

/* コンテンツ表示・非表示 */
.service-content, .tech-content, .portfolio-content {
    display: none;
}

.service-content.active, .tech-content.active, .portfolio-content.active {
    display: block;
}

/* 技術・強み */
.technology {
    padding: 6rem 0;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--light-red);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tech-tag:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: scale(1.05);
}

/* 開発実績 */
.portfolio {
    padding: 6rem 0;
    background: var(--background-light);
}

/* 大企業向けセクションの「大規模システム実績」専用調整 */
.enterprise .portfolio {
    /* グレー背景の上側を狭くする */
    padding-top: 2rem;
    /* グレー背景を画面いっぱいに広げる */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.enterprise .portfolio > h3 {
    /* 見出しだけを強調＆中央寄せ（カード内のh3には影響しない） */
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

/* enterpriseセクション内の技術紹介を見やすく改善 */
.enterprise .tech-intro-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.enterprise .tech-intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.enterprise .tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.enterprise .tech-category {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enterprise .tech-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.enterprise .tech-category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.enterprise .tech-category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.enterprise .tech-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.enterprise .tech-category .category-desc {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.enterprise .tech-tags {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.enterprise .tech-tags:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.enterprise .tech-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin: 0.2rem 0.3rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s ease;
}

.enterprise .tech-tag:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.portfolio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.portfolio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-scale {
    color: var(--primary-red);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tech span {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 選ばれる理由 */
.reasons {
    padding: 6rem 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.reason-card {
    text-align: center;
    padding: 2rem;
}

.reason-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.reason-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.reason-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.reason-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reason-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* お問い合わせ */
.contact {
    padding: 6rem 0;
    background: var(--background-light);
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-image {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

/* フォーム */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

/* reCAPTCHA スタイル */
.recaptcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 2rem 0;
}

.recaptcha-note {
    color: #6c757d;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.recaptcha-note i {
    color: #667eea;
    font-size: 0.9rem;
}

/* reCAPTCHAのレスポンシブ対応 */
@media (max-width: 768px) {
    .recaptcha-container {
        margin: 1.5rem 0;
    }
    
    .recaptcha-note {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

/* reCAPTCHA送信ボタンの無効化スタイル */
.btn-primary:disabled {
    background: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

/* お問い合わせ確認モーダル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 24px 30px;
    text-align: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-header i {
    color: #ffeaa7;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px;
    max-height: 50vh;
    overflow-y: auto;
}

.confirmation-message {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.confirmation-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.detail-item label {
    font-weight: 600;
    color: #333;
    min-width: 120px;
    flex-shrink: 0;
}

.detail-item span,
.message-content {
    color: #555;
    line-height: 1.5;
    word-break: break-word;
}

.detail-item.message-item {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.message-content {
    white-space: pre-wrap;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    min-height: 80px;
}

.modal-footer {
    padding: 20px 30px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #e0e0e0;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.modal-footer .btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.modal-footer .btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .detail-item label {
        min-width: auto;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .modal-footer .btn-secondary,
    .modal-footer .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .modal-footer {
        padding: 12px 15px;
    }
}

/* フッター */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #bdbdbd;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
}

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #424242;
    padding-top: 1rem;
    text-align: center;
    color: #bdbdbd;
}

/* 画像の読み込み効果 */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

img.lazy {
    filter: blur(5px);
}

/* 画像ホバー効果の統一 */
.service-image img,
.portfolio-image img,
.reason-image img,
.tech-hero-image img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* 画像の品質向上 */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
    }
    
    .logo {
        margin-bottom: 1rem;
        padding: 6px 10px;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .logo-image {
        height: 28px;
        max-width: 240px;
        width: auto;
        background: transparent !important;
        background-color: transparent !important;
        mix-blend-mode: normal;
        filter: contrast(1.05) saturate(1.1);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        opacity: 1;
        box-shadow: none;
        border: none;
    }
    
    .nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 120px; /* 2段レイアウト時のヘッダー高さ分 */
    }
    
    .hero-image-container {
        height: 25vh;
        min-height: 200px;
        max-height: 300px;
    }
    
    .hero-decorations-left,
    .hero-decorations-right {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-hero-image {
        order: -1;
    }
    
    .services-grid,
    .portfolio-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
        margin: 0;
    }
    
    .contact-info-image {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 4px 8px;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .logo-image {
        height: 24px;
        max-width: 200px;
        width: auto;
        background: transparent !important;
        background-color: transparent !important;
        mix-blend-mode: normal;
        filter: contrast(1.05) saturate(1.1);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        opacity: 1;
        box-shadow: none;
        border: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 80px; /* 480px以下でのヘッダー高さ分 */
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .portfolio-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        font-size: 16px; /* iOS のズーム防止 */
    }
    
    .contact-info-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    
    .contact-method i {
        align-self: flex-start;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.portfolio-card,
.reason-card {
    animation: fadeInUp 0.6s ease-out;
}

/* スクロール時の滑らかなアニメーション */
html {
    scroll-behavior: smooth;
}

/* クライアントロゴ */
.client-logos {
    margin-top: 3rem;
    text-align: center;
}

.client-logos-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

/* 会社概要 */
.company {
    padding: 6rem 0;
    background: var(--background-light);
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.company-message {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.company-message-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.company-message-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.company-message-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.company-message-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--background-light);
    text-align: right;
}

.signature p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.company-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.company-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.company-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.company-table td {
    padding: 1rem;
    vertical-align: top;
}

/* 会社情報テーブルの値（ラベル以外）を薄い文字色に統一 */
.company .company-table td:not(.label) {
    color: var(--text-light);
}

.company-table .label {
    font-weight: 600;
    color: var(--text-dark);
    width: 150px;
    background: var(--background-light);
}

.company-table td ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-table td ul li {
    padding: 0.25rem 0;
}

.company-table td ul li::before {
    content: '•';
    color: var(--primary-red);
    margin-right: 0.5rem;
}

/* 会社情報テーブルの箇条書き「•」も薄い文字色に */
.company .company-table td ul li::before {
    color: var(--text-light);
}

/* プライバシーポリシーページ */
.privacy-page {
    margin-top: 70px;
    padding: 4rem 0;
    background: var(--white);
}

.breadcrumb {
    background: var(--background-light);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--primary-red);
    text-decoration: none;
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
}

.breadcrumb-nav .current {
    color: var(--text-dark);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.policy-footer {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* レスポンシブ対応 - 会社概要 */
@media (max-width: 768px) {
    .company-message {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .company-message-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .company-table .label {
        width: 120px;
        font-size: 0.9rem;
    }
    
    .company-table td {
        padding: 0.75rem;
    }
}

/* レスポンシブ対応 - プライバシーポリシー */
@media (max-width: 768px) {
    .privacy-content {
        padding: 0 1rem;
    }
    
    .breadcrumb {
        padding: 0.5rem 0;
    }
    
    .breadcrumb-nav {
        font-size: 0.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section p {
        font-size: 0.9rem;
    }
    
    .policy-footer {
        padding: 1.5rem;
    }
}

/* 中小企業向け特別サービススタイル */
.service-card.featured {
    position: relative;
    border: 3px solid #ff5722;
    background: linear-gradient(135deg, #fff3e0 0%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
}

.service-card.featured::before {
    content: "緊急対応";
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff5722;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-text {
    color: #ff5722;
    font-weight: 600;
    background: #fff3e0;
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0.5rem 0;
}

.service-price.emergency {
    background: #ff5722;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 1rem;
}

/* 地域限定サービス */
.regional-service {
    background: linear-gradient(135deg, #e8f5e8 0%, #ffffff 100%);
    border: 2px solid #4caf50;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.regional-info h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.regional-info p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.coverage-area {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.area {
    background: #4caf50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 技術タグの拡張 */
.tech-tag.advanced {
    background: #1976d2;
    color: white;
    border: 1px solid #0d47a1;
}

.tech-category.enterprise {
    border-left-color: #1976d2;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

/* 中小企業向け強み */
.sme-strengths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.strength-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid #4caf50;
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.strength-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.strength-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.strength-item ul {
    list-style: none;
    text-align: left;
}

.strength-item li {
    padding: 0.3rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.strength-item li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* よくある困りごと */
.common-problems {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.common-problems h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.problem-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.problem-item i {
    font-size: 2rem;
    color: #ff5722;
    margin-bottom: 1rem;
}

.problem-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.problem-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.solution {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* 実績バッジとメトリクス */
.portfolio-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.portfolio-badge.large { background: #2196f3; }
.portfolio-badge.international { background: #9c27b0; }
.portfolio-badge.cutting-edge { background: #ff5722; }
.portfolio-badge.fintech { background: #795548; }
.portfolio-badge.success { background: #4caf50; }
.portfolio-badge.popular { background: #ff9800; }
.portfolio-badge.rescue { background: #f44336; }
.portfolio-badge.consultation { background: #607d8b; }

.portfolio-card {
    position: relative;
    border-left: 4px solid #e0e0e0;
    transition: var(--transition);
}

.portfolio-card.enterprise {
    border-left-color: #1976d2;
}

.portfolio-card.sme {
    border-left-color: #4caf50;
}

.portfolio-metrics {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-result {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.result-item {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.result-item i {
    font-size: 0.8rem;
}

.portfolio-support {
    text-align: center;
    margin-top: 1rem;
}

.portfolio-support span {
    background: var(--light-red);
    color: var(--primary-red);
    padding: 0.3rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* お客様の声 */
.customer-voices {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.customer-voices h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.voice-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #4caf50;
    position: relative;
}

.voice-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: #4caf50;
    line-height: 1;
}

.voice-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.voice-author {
    text-align: right;
}

.company {
    font-weight: 600;
    color: var(--primary-red);
    display: block;
}

.position {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-tabs, .tech-tabs, .portfolio-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .sme-strengths {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .voices-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-metrics, .portfolio-result {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coverage-area {
        justify-content: center;
    }
    
    .regional-service {
        padding: 1.5rem;
    }
    
    .strength-item {
        padding: 1.5rem;
    }
    
    .customer-voices {
        padding: 2rem;
    }
    
    .service-price.emergency {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .regional-info h4 {
        font-size: 1.2rem;
    }
    
    .area {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }
    
    .strength-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ロゴサイズ調整 */
@media (max-width: 480px) {
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo-c {
        font-size: 1.1rem;
    }
    
    .logo .logo-text {
        font-size: 1rem;
        background: transparent !important;
        background-color: transparent !important;
    }
}

/* ロゴテキストの基本スタイル */
.logo-text {
    margin-left: 10px;
    font-weight: 600;
    color: #333;
    background: transparent !important;
    background-color: transparent !important;
    font-size: 1.1rem;
}

/* ロゴ全体の透明背景を強制 */
.logo * {
    background: transparent !important;
    background-color: transparent !important;
}

/* ホバー時の効果強化 */
.logo:hover .logo-image {
    filter: contrast(1.1) saturate(1.15);
    transform: translateY(-0.5px) scale(1.02);
}

/* =====================================
   情シス支援サービス セクション
   ===================================== */

.jisys .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================
   Kintone伴走支援サービス セクション
   ===================================== */

.kintone {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
    padding: 80px 0;
}

.kintone .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* サービス概要 */
.kintone-intro {
    margin-bottom: 80px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-text h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.intro-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.benefit-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 伴走支援の流れ */
.support-flow-section {
    margin-bottom: 80px;
}

.support-flow-section h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 40px;
}

.flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.flow-arrow {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
}

/* 料金プラン */
.pricing-section {
    margin-bottom: 80px;
}

.pricing-section h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.recommendation-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.recommendation-note i {
    color: #856404;
    font-size: 1.2rem;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.recommended {
    border: 3px solid #ffc107;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffc107;
    color: #856404;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.plan-header h4 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.plan-price {
    text-align: center;
    color: #e74c3c;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
}

.plan-features {
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item i {
    color: #667eea;
}

.plan-description {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* サービス内容 */
.services-detail {
    margin-bottom: 80px;
}

.services-detail h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-category {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #667eea;
}

.category-header i {
    color: #667eea;
    font-size: 1.5rem;
}

.category-header h4 {
    color: #333;
    font-size: 1.3rem;
}

.category-header .note {
    font-size: 0.8rem;
    color: #666;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.service-icon {
    flex-shrink: 0;
}

.service-icon i {
    color: #667eea;
    font-size: 1.3rem;
}

.service-content h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* カスタマイズセクション */
.customization-section {
    margin-bottom: 80px;
}

.customization-header {
    text-align: center;
    margin-bottom: 40px;
}

.customization-header h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
}

.customization-header p {
    color: #666;
    font-size: 1.1rem;
}

.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.customization-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.customization-examples h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.customization-examples ul {
    list-style: none;
    padding: 0;
}

.customization-examples li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.customization-examples li i {
    color: #27ae60;
    font-size: 1rem;
}

/* 支援体制 */
.support-system {
    margin-bottom: 80px;
}

.support-system h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

.support-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.support-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.support-option {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    justify-content: center;
}

.option-header.full-support {
    background: #e8f5e8;
    color: #27ae60;
}

.option-header.partial-support {
    background: #e8f4fd;
    color: #2980b9;
}

.option-header i {
    font-size: 1.5rem;
}

.option-header h4 {
    font-size: 1.3rem;
    margin: 0;
}

.option-content h5 {
    color: #333;
    margin-bottom: 10px;
}

.option-content ul {
    list-style: none;
    padding: 0;
}

.option-content li {
    padding: 5px 0;
    color: #666;
}

.split-work {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.customer-work,
.our-work {
    padding: 15px;
    border-radius: 8px;
}

.customer-work {
    background: #fff3cd;
}

.our-work {
    background: #d4edda;
}

.support-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.support-note i {
    color: #856404;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 導入事例 */
.case-studies {
    margin-bottom: 80px;
}

.case-studies h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.case-content {
    padding: 25px;
}

.case-content h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.case-industry {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.result-tag {
    background: #667eea;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* お客様の声 */
.testimonials {
    margin-bottom: 60px;
}

.testimonials h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.3;
}

.testimonial-content p {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author .company {
    color: #333;
    font-weight: 600;
}

.testimonial-author .position {
    color: #666;
    font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .intro-content,
    .customization-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .support-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flow-container {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .kintone {
        padding: 60px 0;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .intro-content,
    .customization-content {
        padding: 25px;
    }
    
    .support-flow-section h3,
    .pricing-section h3,
    .services-detail h3,
    .customization-header h3,
    .support-system h3,
    .case-studies h3,
    .testimonials h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .flow-container {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .plan-price {
        font-size: 1.6rem;
    }
}

/* Kintone伴走支援サービス */
.kintone {
    background: linear-gradient(135deg, #f8fafe 0%, #f1f7ff 100%);
    padding: 80px 0;
}

.kintone .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
}

/* 伴走支援フロー */
.kintone-value {
    margin-bottom: 60px;
}

.support-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.flow-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.flow-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.value-description {
    text-align: center;
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.value-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-point {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid #667eea;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-point h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature h4 {
    color: #2980b9;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* 料金プラン */
.kintone-pricing {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.kintone-pricing h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.pricing-description {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
}

.pricing-recommendation {
    background: #fff3cd;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border: 1px solid #ffeaa7;
    text-align: center;
}

.pricing-table {
    overflow-x: auto;
    margin: 30px 0;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pricing-table th {
    background: #667eea;
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.plan-name {
    font-weight: 600;
    background: #f8f9ff;
    color: #667eea;
}

.recommended {
    position: relative;
    background: #fff3cd !important;
    border: 2px solid #ffc107;
}

.recommended::before {
    content: "オススメ";
    position: absolute;
    top: -12px;
    right: 15px;
    background: #ffc107;
    color: #856404;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

/* 価格表内のおすすめ行の控えめな強調（レイアウト非影響） */
.kintone-pricing .pricing-table table tr.is-recommended {
    background: transparent;
}

/* 2列目（打合せ/作業）セルのみを強調 */

/* 2〜4列目を一体的に強調（メニュー名列は除外） */
.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(2),
.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(3),
.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(4) {
    background: #fffaf0;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(2) {
    border-left: 2px solid #ffc107;
    position: relative;
}

.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(4) {
    border-right: 2px solid #ffc107;
}

.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(1) {
    position: relative;
}

.kintone-pricing .pricing-table table tr.is-recommended td:nth-child(1)::after {
    content: "オススメ";
    position: absolute;
    top: -10px;
    right: 10px;
    background: #ffc107;
    color: #856404;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* サービス内容 */
.kintone-services {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.kintone-services h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.service-category {
    background: #f8f9ff;
    padding: 30px;
    border-radius: var(--border-radius);
    border-top: 4px solid #667eea;
}

.service-category h4 {
    color: #667eea;
    margin-bottom: 25px;
    font-size: 1.4rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

/* 基本サービスとオプションサービスの区別デザイン */
.service-category.basic-service {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-top: 4px solid #27ae60;
}

.service-category.basic-service h4 {
    color: #27ae60;
    border-bottom: 2px solid #27ae60;
}

.service-category.basic-service h4 i {
    margin-right: 10px;
    color: #27ae60;
}

.service-category.option-service {
    background: linear-gradient(135deg, #fff3e0 0%, #fef7ed 100%);
    border-top: 4px solid #ff8c00;
}

.service-category.option-service h4 {
    color: #ff8c00;
    border-bottom: 2px solid #ff8c00;
}

.service-category.option-service h4 i {
    margin-right: 10px;
    color: #ff8c00;
}

.service-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

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

.service-item h5 {
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    line-height: 1.4;
    order: 1;
}

.service-item h5 i {
    margin-right: 8px;
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.service-category.basic-service .service-item h5 i {
    color: #27ae60;
}

.service-category.option-service .service-item h5 i {
    color: #ff8c00;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    order: 2;
}

/* カスタマイズについて */
.kintone-customization {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.kintone-customization h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.customization-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #667eea;
    background: #f8f9ff;
    padding: 20px;
    border-radius: var(--border-radius);
}

.customization-examples {
    background: #f8f9ff;
    padding: 25px;
    border-radius: var(--border-radius);
}

.customization-examples h4 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.customization-examples ul {
    padding-left: 25px;
    line-height: 1.8;
}

.customization-examples li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* 多様な支援体制 */
.kintone-support {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 60px 0;
}

.kintone-support h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.kintone-support > p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
}

.support-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.support-type {
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
}

.support-type:first-child {
    background: #e8f5e8;
    border: 2px solid #27ae60;
}

.support-type:last-child {
    background: #e8f4fd;
    border: 2px solid #2980b9;
}

.support-type h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.support-type:first-child h4 {
    color: #27ae60;
}

.support-type:last-child h4 {
    color: #2980b9;
}

.support-content {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: left;
}

.support-content strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.support-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.support-content li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.customer-work, .our-work {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 10px;
    border-radius: 5px;
    background: #f8f9fa;
}

.support-point {
    background: #fff3cd;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid #ffeaa7;
    margin-top: 30px;
}

.support-point p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .support-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .flow-item {
        padding: 15px 10px;
        font-size: 0.85rem;
    }
    
    .value-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .support-types {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kintone-pricing,
    .kintone-services,
    .kintone-customization,
    .kintone-support {
        padding: 25px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-flow {
        grid-template-columns: 1fr;
    }
    
    .flow-item {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .kintone-pricing h3,
    .kintone-services h3,
    .kintone-customization h3,
    .kintone-support h3 {
        font-size: 1.6rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    
    .plan-name {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
}

/* Kintone 循環サイクル図式 */
.support-flow-cycle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
}

.support-flow-cycle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cycle-top {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cycle-middle {
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 2;
    margin: 15px 0;
}

.cycle-bottom {
    display: flex;
    position: relative;
    z-index: 2;
}

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

.center-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    border: 4px solid white;
    min-width: 220px;
    position: relative;
    z-index: 3;
}

.support-flow-cycle .flow-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 25px;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    min-width: 140px;
    border: 3px solid white;
    position: relative;
    cursor: pointer;
}

.support-flow-cycle .flow-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* 循環を示す矢印 */
.cycle-top .flow-item::after {
    content: '↗';
    position: absolute;
    bottom: -50px;
    left: -70px;
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cycle-top .flow-item::before {
    content: '↘';
    position: absolute;
    bottom: -50px;
    right: -70px;
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cycle-middle .flow-item.right::after {
    /* 運用改善支援の下の矢印を削除 */
    display: none;
}

.cycle-bottom .flow-item::after {
    content: '↖';
    position: absolute;
    top: -50px;
    left: -50px;
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cycle-bottom .flow-item::before {
    content: '↙';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cycle-message {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 25px 50px;
    border-radius: 50px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(253, 203, 110, 0.4);
    border: 4px solid white;
    position: relative;
    z-index: 2;
}

.cycle-message p {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .support-flow-cycle {
        padding: 35px 20px;
        gap: 20px;
    }
    
    .cycle-top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .cycle-middle {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .center-box {
        min-width: 180px;
        padding: 20px 25px;
        font-size: 1.1rem;
    }
    
    .support-flow-cycle .flow-item {
        min-width: 120px;
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    /* モバイルでは矢印を非表示（レイアウトが複雑になるため） */
    .cycle-top .flow-item::after,
    .cycle-top .flow-item::before,
    .cycle-middle .flow-item.right::after,
    .cycle-bottom .flow-item::after,
    .cycle-bottom .flow-item::before {
        display: none;
    }
    
    .cycle-message {
        padding: 20px 30px;
    }
    
    .cycle-message p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .support-flow-cycle {
        padding: 25px 15px;
        gap: 15px;
    }
    
    .center-box {
        min-width: 150px;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .support-flow-cycle .flow-item {
        min-width: 100px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .cycle-message {
        padding: 15px 25px;
    }
    
    .cycle-message p {
        font-size: 1rem;
    }
}
