/* カスタムスタイルのハブファイル */

/* 各モジュールのインポート */
@import url('custom-styles-header.css');
@import url('custom-styles-navigation.css');
@import url('custom-styles-hero.css');
@import url('custom-styles-content.css');
@import url('custom-styles-responsive.css');
@import url('custom-styles-accessibility.css');

/* グローバルスタイル */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003d82;
}

/* アニメーション用のクラス */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* サイトのメインコンテンツエリア */
.site-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* メインコンテンツラッパー */
.main-content-wrapper {
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-bottom: 2rem;
}

/* フッターのスタイル */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
}

.site-footer .site-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #ddd;
}

.site-footer .footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.site-footer .footer-widget {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1rem;
}

.site-footer .footer-widget h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.site-footer .footer-widget ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-widget ul li {
    margin-bottom: 0.5rem;
}

/* コピーライトセクション */
.site-footer .site-info {
    border-top: 1px solid #555;
    padding-top: 1rem;
}

/* 会社概要ページのスタイル */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-page .entry-title {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.about-page h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.business-list {
    list-style-type: none;
    padding-left: 0;
}

.business-list li {
    margin-bottom: 0.5rem;
    padding-left: 25px;
    position: relative;
}

.business-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0056b3;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.info-table th, .info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.info-table th {
    background-color: #0056b3;
    color: #ffffff;
    font-weight: bold;
    width: 30%;
}

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

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .site-footer .footer-widgets {
        flex-direction: column;
    }

    .site-footer .footer-widget {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-page {
        padding: 20px 10px;
    }

    .about-page .entry-title {
        font-size: 2rem;
    }

    .about-page h2 {
        font-size: 1.5rem;
    }

    .info-table th, .info-table td {
        padding: 10px;
    }
}

/* 印刷用スタイル */
@media print {
    .hero-section,
    .site-header {
        display: none;
    }
    
    .site-footer {
        display: none;
    }
    
    .main-content-wrapper {
        margin-top: 0;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
    }

    .about-page {
        max-width: 100%;
    }

    .info-table {
        box-shadow: none;
        border: 1px solid #000;
    }

    .info-table th {
        background-color: #fff;
        color: #000;
    }
}