﻿/*
 * 全てをbox-sizing: border-box;に設定することで、paddingやborderが原因の横幅はみ出しを完全に解消します。
 */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.7;
    text-rendering: optimizeSpeed;
    overflow-x: hidden; 
}
/* モバイルメニュー展開時、背景のスクロールを止めるためのクラス */
.no-scroll {
    overflow: hidden;
}

a {
    color: #1A0DAB;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%; 
    height: auto;
    display: block;
}

/* --- ヘッダー --- */
.header {
    background-color: #fff;
    padding: 0 5%;
    border-bottom: 1px solid #eee;
    position: sticky; 
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center !important; 
    min-height: 65px; 
}

/* ロゴ画像表示のためのスタイル */
.site-title {
    text-align: center;
    flex-grow: 1; 
}
.site-title a {
    text-decoration: none;
    line-height: 1; 
    display: inline-block; 
}
.logo-img {
    height: 60px !important; 
    width: auto !important;
    display: block;
    margin: 0 auto; 
    position: relative; 
    top: 8px; 
}

/* PC用ナビゲーション (モバイルでは非表示) */
.header-nav {
    display: none; 
}
.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0; 
    display: flex; 
    gap: 20px; 
}
.header-nav li {
    margin: 0;
    padding: 0;
    line-height: 0;
}
.header-nav li a {
    display: block;
    padding: 0 5px; 
    color: #333;
    font-weight: bold; 
    white-space: nowrap; 
    line-height: 1.2;
}


/* ハンバーガーメニューアイコン */
.hamburger-menu {
    display: block; 
    cursor: pointer;
    width: 30px;
    height: 21px;
    position: relative;
    transition: all 0.4s;
}
.hamburger-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.4s;
}
.hamburger-menu span:nth-child(1) { top: 0; }
.hamburger-menu span:nth-child(2) { top: 9px; }
.hamburger-menu span:nth-child(3) { bottom: 0; }
.hamburger-menu.active span:nth-child(1) { transform: translateY(9px) rotate(-45deg); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: translateY(-9px) rotate(45deg); }

/* --- モバイル用全画面ナビゲーション --- */
.mobile-nav {
    display: none; 
    position: fixed;
    top: 70px; 
    left: 0;
    width: 100%;
    height: calc(100% - 70px); 
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 99;
    overflow-y: auto;
}
.mobile-nav.open {
    display: block; 
}
.mobile-nav ul {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}
.mobile-nav ul li:first-child {
    padding-top: 60px !important; 
}
.mobile-nav li {
    text-align: center;
    padding: 15px 0; 
    border-bottom: 1px solid #eee;
}
.mobile-nav li:last-child {
    border-bottom: none;
}
.mobile-nav a {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    display: block;
    padding: 10px 0;
}

/* --- メインビジュアル --- */
.main-visual {
    width: 100%;
    max-height: 500px; 
    overflow: hidden;
}

/* --- メインコンテナ (ワンカラム向け調整) --- */
.container {
    /* 最大幅をPCで広めに設定 */
    max-width: 1000px; 
    margin: 40px auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column; 
    gap: 30px;
}

/* --- パンくずリスト --- */
.breadcrumb-area {
    background-color: #f0f0f0; 
    padding: 10px 5%;
    border-bottom: 1px solid #ddd;
}
.container-small {
    max-width: 1000px; 
    margin: 0 auto;
}
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; 
    font-size: 0.9em;
}
.breadcrumb-list li {
    margin-right: 5px;
    color: #666;
    white-space: nowrap;
}
.breadcrumb-list li:not(:last-child)::after {
    content: ">";
    margin-left: 5px;
}
.breadcrumb-list li a {
    color: #1A0DAB;
}
.breadcrumb-list li strong {
    font-weight: normal; 
    color: #333;
}


/* --- タイトル調整 --- */
.page-title {
    font-size: 1.7em; 
    margin-top: 0;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #800020; 
    color: #1a1a1a;
}

/* --- メインコンテンツ & サイドバー (ワンカラム化) --- */
.main-content {
    width: 100%; 
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* サイドバー要素は非表示にする */
.sidebar {
    display: none;
}

/* ワンカラム用のフル幅設定 */
.main-content-full {
    flex: none; /* Flexboxの比率を解除 */
    width: 100%; /* 全幅を使用 */
    max-width: none; /* 最大幅の制限を解除 (containerで制限) */
}

/* サイドバーのコンテンツを流用する場合のスタイル */
.sidebar-content .widget {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 5px;
}

/* プロフィールウィジェットのスタイル (再利用) */
.widget h3 {
    margin-top: 0;
    border-bottom: 2px solid #800020;
    padding-bottom: 10px;
    font-size: 18px;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 5px 0; border-bottom: 1px dotted #ccc; }
.widget ul li:last-child { border-bottom: none; }
.profile-img { max-width: 100px; border-radius: 50%; display: block; margin: 10px auto; }
.profile-name { text-align: center; font-weight: bold; font-size: 1.1em; }
.profile-link { display: block; text-align: center; margin-top: 15px; font-weight: bold; }


/* --- フッター --- */
.footer {
    background-color: #800020; 
    color: #fff;
    text-align: center;
    padding: 30px 5%; 
    margin-top: 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* フッター内のリンクエリアの調整 (中央寄せ、小文字化) */
.footer-links {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px; 
    flex-wrap: wrap; 
}

.footer-nav-list li {
    margin: 0;
    padding: 0;
}

.footer-nav-list a {
    color: #fff;
    font-size: 0.85em; 
    display: inline-block; 
    white-space: nowrap; 
    padding: 5px 0; 
}

/* フッター内のバナーエリア */
.footer-banners {
    display: flex;
    flex-direction: column; 
    gap: 15px;
    align-items: center; 
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-banner-link {
    display: block;
    max-width: 250px; 
    width: 100%;
}
.footer-banner-img {
    border: 1px solid #fff;
    transition: opacity 0.3s;
}
.footer-banner-link:hover .footer-banner-img {
    opacity: 0.8;
}

/* コピーライト */
.copyright {
    margin: 0;
    font-size: 0.8em;
    opacity: 0.8;
}

/* ----------------------------------- */
/* --- PC表示用のスタイル (769px以上) --- */
/* ----------------------------------- */
@media (min-width: 769px) {
    /* ヘッダー: PCナビを表示、ハンバーガーを非表示 */
    .header-nav {
        display: block; 
    }
    .hamburger-menu {
        display: none; 
    }
    .mobile-nav {
        display: none !important; 
    }
    
    /* ヘッダー固定を解除 */
    .header {
        position: static !important; 
        top: auto !important;
    }
    
    /* PCナビの調整 */
    .header-nav ul {
        display: flex; 
        gap: 20px; 
    }
    .site-title {
        text-align: left; 
        flex-grow: 0; 
    }
    .logo-img {
        margin: 0; 
    }

    /* メインコンテナ: ワンカラムのため横並び設定を上書き */
    .container {
        flex-direction: column; /* 縦並びを維持 */
    }
    
    /* メインコンテンツ幅は100%を維持し、最大幅は container で制御 */
    .main-content {
        flex: none; 
    }

    /* PC時のフッター調整 */
    .footer-nav-list {
        gap: 30px; 
    }
    .footer-banners {
        flex-direction: row; 
        justify-content: center; 
        gap: 30px;
    }
    .copyright {
        text-align: center;
    }
    
    /* ページのタイトルをPCで大きく表示し直す */
    .page-title {
        font-size: 2em;
    }
}


/* --- Flexboxによる 1:2 カラムレイアウトの再現 (ワンカラムでも使用) --- */
.flex-row {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px; 
    margin-bottom: 40px; 
}

.flex-col-2-3 {
    flex: 2; 
    min-width: 300px; 
}

.flex-col-1-3 {
    flex: 1; 
    min-width: 200px; 
}

/* モバイル表示では縦並びに戻す */
@media (max-width: 768px) {
    .flex-row {
        flex-direction: column; 
        gap: 20px;
    }
    .flex-col-1-3, .flex-col-2-3 {
        flex: none; 
        width: 100%;
        min-width: auto;
    }
}

/* カスタムボタンのデザイン (再利用) */
.custom-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    background-color: #007bff; 
    color: white;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.custom-button:hover {
    background-color: #0056b3;
    text-decoration: none;
}