@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');

/* ---- Complete Reset ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* Remove all default styles */
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, form, fieldset, legend, pre, blockquote, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ---- Container ---- */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Top Navigation ---- */
.top-navigation {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo {
    margin-left: 50px;
    display: flex;
    align-items: center;
}

.top-logo .logo-link img {
    height: 36px;
    width: auto;
}

.top-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.top-nav-list li {
    margin: 0;
}

.top-nav-list a {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 8px 12px;
    display: block;
}

.top-nav-list a:hover {
    color: #1976d2;
}

/* ナビゲーションの無料ダウンロードボタン */
.top-nav-list a[href*="dl_hakusho2024-2025"] {
    background: #1976d2;
    color: white !important;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-nav-list a[href*="dl_hakusho2024-2025"]:hover {
    background: #1565c0;
    color: white !important;
    transform: translateY(-2px);
}

/* ---- Business Header ---- */
.business-header {
    background: #E0F2FE;
    padding: 30px 0 15px;
    border-radius: 0 0 30px 30px;
    margin-bottom: 0;
}

.business-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.header-left-section {
    flex: 1;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-tag {
    background: transparent;
    color: #333;
    padding: 5px 0 10px 0;
    font-size: 18px;
    font-weight: 300;
    display: block;
    margin-bottom: 24px;
    border: none;
    border-bottom: 2px solid #1976d2;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

.business-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 52px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.05em;
}

.business-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.header-right-section {
    flex: 1;
    max-width: 500px;
}

.business-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.business-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Report Preview Styles ---- */
.report-preview {
    position: relative;
    width: 500px;
    height: 280px;
    margin: 0 auto;
}

/* 3番目の画像（一番下） */
.report-sample-images .sample-img:nth-child(2) {
    position: absolute;
    top: 60px;
    left: 240px;
    width: 195px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: white;
    padding: 4px;
    transform: rotate(0deg);
    z-index: 1;
}

/* 2番目の画像（中間） */
.report-sample-images .sample-img:nth-child(1) {
    position: absolute;
    top: 20px;
    left: 140px;
    width: 195px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: white;
    padding: 4px;
    transform: rotate(0deg);
    z-index: 2;
}

/* 1番目の画像（一番上・紫色の表紙） */
.report-main-image {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 195px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: white;
    padding: 4px;
    transform: rotate(0deg);
    z-index: 3;
}

.report-main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.report-sample-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.sample-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ホバー効果は削除 */

/* ---- Utilization Section Styles ---- */
.utilization-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.utilization-block {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4f8;
}

.utilization-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.utilization-title {
    font-size: 20px;
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 15px;
    line-height: 1.4;
}

.utilization-content {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ---- Flow Section Styles ---- */
.flow-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.flow-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b6b;
    display: inline-block;
    padding-bottom: 5px;
}

.flow-note {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 8px 0 15px 0;
    font-style: italic;
}

.flow-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: white;
    border-radius: 50px;
    padding: 15px 36px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #d4691a;
    width: 650px;
    margin: 0 auto;
    min-height: 72px;
}

.step-number {
    background: #d4691a;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    flex-shrink: 0;
    margin: 0;
}

.step-content {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    width: 100%;
}

/* 矢印は削除 */

.logo-link {
    display: inline-block;
    margin-top: 20px;
}

.logo-link img {
    height: 50px;
    width: auto;
}

/* ---- Header CTA Section ---- */
.header-cta-section {
    margin-top: 5px;
    text-align: center;
}

/* ---- Stats Banner ---- */
.stats-banner {
    background: #1976d2;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 10px 0 !important;
}

.stats-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.stats-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 10px 40px !important;
    min-height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.stats-decoration-left,
.stats-decoration-right,
.stats-decoration-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: url('../images/globe.svg') no-repeat center;
    background-size: contain;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    z-index: 1;
}

.stats-decoration-left {
    left: -10px;
}

.stats-decoration-right {
    right: -10px;
}

.stats-decoration-center {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* 統計項目間のセパレーター */
.stats-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 10px;
    flex-shrink: 0;
}

.stats-globe-decoration {
    width: 80px;
    height: 80px;
    background: url('../images/globe.svg') no-repeat center;
    background-size: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stats-label {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.3;
    margin-bottom: 4px;
    display: block;
    white-space: nowrap;
}

.stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffeb3b;
    line-height: 1.1;
    display: block;
    margin: 5px 0;
    white-space: nowrap;
}

.stats-description {
    font-size: 16px;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.3;
    display: block;
    white-space: nowrap;
}

.stats-note {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}



.header-cta-section .button-container {
    justify-content: center;
}

.header-cta-section .cta-button {
    background: #1976d2;
    color: white;
    border: none;
}

/* ヘッダーボタンのホバー効果は削除 */

.header-cta-section .cta-button-secondary {
    background: transparent;
    border: 2px solid #1976d2;
    color: #1976d2;
}

/* セカンダリボタンのホバー効果も削除 */

.header-nav-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.header-nav-bottom ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-nav-bottom li {
    margin: 0;
}

.header-nav-bottom a {
    color: #666;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 10px 15px;
    display: block;
}

.header-nav-bottom a:hover {
    color: #1976d2;
}

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.9;
}

/* ---- CTA Buttons ---- */
.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: white;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* ---- Content Sections ---- */
.content-section {
    padding: 40px 0 20px 0;
}

.bg-light {
    background: #f8f9fa;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6b6b;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description-compact {
    margin-bottom: 30px;
}

.contact-info {
    display: block;
    margin-bottom: 10px;
}

/* ---- Feature Cards ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c5aa0;
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

.feature-description ul {
    text-align: left;
    list-style: disc;
    padding-left: 20px;
}

.feature-description li {
    margin-bottom: 8px;
}

/* ---- Process Steps ---- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c5aa0;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* ---- Modern Table ---- */
.modern-table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 60px 0;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    border: none;
    width: 200px;
}

.modern-table td {
    padding: 15px 30px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tr:nth-child(even) {
    background: #fafafa;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, #1976d2, #42a5f5, #e8f4f8);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 30px;
}

.cta-section .section-title::after {
    background: rgba(255,255,255,0.4);
}

.cta-section .section-description {
    color: rgba(255,255,255,0.95);
}

.cta-section .cta-button {
    background: #1976d2;
    color: white;
    margin: 30px 10px 0;
    font-weight: 600;
    border: 2px solid white;
}

.cta-section .cta-button:hover {
    background: #1565c0;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}

.cta-section .cta-button-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    margin: 30px 10px 0;
}

.cta-section .cta-button-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* ---- Button Container ---- */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Utility Classes ---- */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 30px;
}

.mb-medium {
    margin-bottom: 40px;
}

.mb-small {
    margin-bottom: 20px;
}

.text-highlight {
    color: #ff6b6b;
    font-weight: 600;
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .business-header-content {
        gap: 40px;
    }
    
    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Top Navigation Mobile */
    .top-nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .top-nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-nav-list a {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    /* Stats Banner Mobile */
    .stats-banner {
        padding: 30px 0;
    }
    
    .stats-banner-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .stats-item {
        padding: 25px 15px;
        min-height: 120px;
    }
    
    .stats-number {
        font-size: 28px;
    }
    
    .stats-label,
    .stats-description {
        font-size: 14px;
    }
    
    .stats-decoration-left,
    .stats-decoration-right {
        display: none;
    }

    /* Business Header Mobile */
    .business-header {
        padding: 30px 0 15px;
    }
    
    .business-header-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .report-preview {
        width: 450px;
        height: 240px;
    }
    
    .report-main-image {
        top: -15px;
        left: 20px;
        width: 137px;
        transform: rotate(0deg);
    }
    
    .report-sample-images .sample-img:nth-child(1) {
        top: 45px;
        left: 100px;
        width: 137px;
        transform: rotate(0deg);
    }
    
    .report-sample-images .sample-img:nth-child(2) {
        top: 105px;
        left: 180px;
        width: 137px;
        transform: rotate(0deg);
    }
    
    .header-cta-section {
        margin-top: 15px;
        padding-top: 10px;
    }
    
    .utilization-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .utilization-block {
        padding: 25px;
    }
    
    .utilization-title {
        font-size: 18px;
    }
}

/* 小さなモバイル画面用 */
@media (max-width: 600px) {
    .utilization-blocks {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .utilization-block {
        padding: 20px;
    }
    
    .utilization-content {
        font-size: 15px;
    }
    
    .flow-section {
        margin: 30px 0;
        padding: 20px;
    }
    
    .flow-title {
        font-size: 20px;
    }
    
    .flow-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .flow-step {
        flex-direction: row;
        text-align: center;
        border-radius: 50px;
        padding: 10px 25px;
        gap: 15px;
        justify-content: center;
        min-height: 50px;
        width: 90%;
        max-width: 400px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin: 0;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .header-cta-section .cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
    }
    
    .stats-separator {
        margin: 15px 10px;
    }
    
    .stats-globe-decoration {
        width: 60px;
        height: 60px;
    }
    
    .header-left-section,
    .header-right-section {
        max-width: 100%;
    }
    
    .business-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    
    .header-nav-bottom ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-nav-bottom a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Hero Section Mobile */
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Content Mobile */
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modern-table th,
    .modern-table td {
        padding: 12px 20px;
    }
    
    .modern-table th {
        font-size: 16px;
        width: auto;
        display: block;
        text-align: center;
    }
    
    .modern-table td {
        display: block;
        text-align: center;
    }
    
    /* CTA Buttons Mobile */
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
        margin: 10px 5px;
        display: block;
        width: calc(100% - 10px);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .business-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* 小さなモバイル画面用 */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .modern-table th,
    .modern-table td {
        padding: 12px 15px;
    }
}

/* キャッシュ更新用 - 2024年12月19日 */