@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ - Customized for Studio Blue [PC] v2.1
    Version: 2.1.0
    Author: LOOS WEB STUDIO & Studio Blue [PC] 40_Coder
    Author URI: https://loos-web-studio.com/
    License: GNU General Public License
*/

/* ===================================================
   PC_Gem System Design v2.1 (Full Integrated Version)
   =================================================== */

/* -------------------------------------------
   Base Variables (Studio Blue Identity)
   ------------------------------------------- */
:root {
    --pc-color-main: #0b3c5d;      /* 信頼のネイビー */
    --pc-color-accent: #328af1;    /* 清潔なブルー */
    --pc-color-alert: #d93025;     /* 警告のレッド */
    --pc-color-bg-gray: #f7f9fa;   /* 背景用ライトグレー */
    --pc-color-text: #333333;      /* 基本文字色 */
    --pc-border-radius: 4px;       /* 角丸設定 */
    --pc-font-stack: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

body {
    font-family: var(--pc-font-stack);
    color: var(--pc-color-text);
}

/* -------------------------------------------
   1. 結論・要約ボックス (.pc-box-summary)
   ------------------------------------------- */
.pc-box-summary {
    background-color: var(--pc-color-bg-gray);
    border-left: 5px solid var(--pc-color-main);
    padding: 1.5em;
    margin: 2em 0;
    border-radius: var(--pc-border-radius);
}
.pc-box-summary-title {
    font-weight: 700;
    color: var(--pc-color-main);
    display: flex;
    align-items: center;
    margin-bottom: 0.8em;
    font-size: 1.1em;
}
.pc-box-summary-title::before {
    content: "💡";
    margin-right: 10px;
    font-size: 1.2em;
}

/* -------------------------------------------
   2. 警告・リスクボックス (.pc-box-alert)
   ------------------------------------------- */
.pc-box-alert {
    background-color: #fff2f0;
    border: 1px solid #ffccc7;
    padding: 1.5em;
    margin: 2em 0;
    border-radius: var(--pc-border-radius);
}
.pc-box-alert-title {
    font-weight: 700;
    color: var(--pc-color-alert);
    display: flex;
    align-items: center;
    margin-bottom: 0.8em;
}
.pc-box-alert-title::before {
    content: "⚠️";
    margin-right: 10px;
    font-size: 1.2em;
}

/* -------------------------------------------
   3. メリット・推奨ボックス (.pc-box-check)
   ------------------------------------------- */
.pc-box-check {
    background-color: #f0f7ff;
    border: 1px solid #bae0ff;
    padding: 1.5em;
    margin: 2em 0;
    border-radius: var(--pc-border-radius);
}
.pc-box-check-title {
    font-weight: 700;
    color: var(--pc-color-accent);
    display: flex;
    align-items: center;
    margin-bottom: 0.8em;
}
.pc-box-check-title::before {
    content: "✔️";
    margin-right: 10px;
    font-size: 1.2em;
}

/* -------------------------------------------
   4. シンプルスペック表 (.pc-spec-table)
   ------------------------------------------- */
.pc-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.95em;
    border: 1px solid #e0e0e0;
}
.pc-spec-table th, 
.pc-spec-table td {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}
.pc-spec-table th {
    background-color: #fafafa;
    width: 30%;
    font-weight: 700;
    color: var(--pc-color-main);
    white-space: nowrap;
}
@media screen and (max-width: 480px) {
    .pc-spec-table th, .pc-spec-table td {
        display: block;
        width: 100%;
    }
    .pc-spec-table th {
        background-color: var(--pc-color-bg-gray);
        border-bottom: none;
    }
}

/* -------------------------------------------
   5. コンバージョンボタン (.pc-btn-cta)
   ------------------------------------------- */
.pc-btn-cta {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 3em auto;
    padding: 18px;
    background-color: var(--pc-color-alert);
    color: #ffffff !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(217, 48, 37, 0.3);
    transition: all 0.3s ease;
    line-height: 1.4;
}
.pc-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(217, 48, 37, 0.4);
    background-color: #c52b21;
}
.pc-btn-sub-text {
    display: block;
    font-size: 0.75em;
    margin-top: 5px;
    opacity: 0.9;
    font-weight: normal;
}

/* -------------------------------------------
   6. ロジック強化リスト (.pc-list-good / .pc-list-bad)
   ------------------------------------------- */
ul.pc-list-good, ul.pc-list-bad {
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
}
ul.pc-list-good li, ul.pc-list-bad li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
    line-height: 1.6;
}
/* Good: チェック */
ul.pc-list-good li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 2px;
}
/* Bad: バツ */
ul.pc-list-bad li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 2px;
}

/* -------------------------------------------
   7. シンプル2カラム (.pc-flex-box)
   ------------------------------------------- */
.pc-flex-box {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 2em 0;
    align-items: flex-start;
}
.pc-flex-box > * {
    flex: 1 1 300px;
}

/* -------------------------------------------
   8. 見出しデザインの強制 (H2/H3 Override)
   ------------------------------------------- */
body .post_content h2 {
    border: none;
    background: none;
    padding: 0.6em 0.8em;
    border-left: 6px solid var(--pc-color-main);
    border-bottom: 1px solid #eee;
    color: var(--pc-color-main);
    font-size: 1.6em;
    margin-top: 3em;
    margin-bottom: 1.5em;
}
body .post_content h3 {
    border: none;
    background: none;
    padding: 0.4em 0;
    border-bottom: 2px solid var(--pc-color-accent);
    color: #444;
    font-size: 1.4em;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
}
body .post_content h2::before, body .post_content h2::after,
body .post_content h3::before, body .post_content h3::after {
    display: none;
}

/* ===================================================
   PC_Gem Top Page & Parts Design
   =================================================== */

/* ヒーローセクション */
.pc-hero {
    background: linear-gradient(135deg, var(--pc-color-main) 0%, #164e78 100%);
    color: #ffffff;
    padding: 4em 2em;
    border-radius: var(--pc-border-radius);
    text-align: center;
    margin-bottom: 3em;
    box-shadow: 0 10px 20px rgba(11, 60, 93, 0.2);
}
.pc-hero h2 {
    color: #ffffff !important;
    border: none !important;
    font-size: 2em !important;
    margin-bottom: 0.8em !important;
}

/* ナビゲーションカード（グリッドレイアウト統合版） */
.pc-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 3em;
}
.pc-nav-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--pc-color-accent);
    padding: 20px;
    border-radius: var(--pc-border-radius);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: var(--pc-color-text);
}
.pc-nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.pc-nav-card-icon {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    font-size: 2.4em;
    text-align: center;
    margin-right: 15px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1));
}
.pc-nav-card-title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-weight: 700;
    font-size: 1.1em;
    color: var(--pc-color-main);
    margin-bottom: 4px;
}
.pc-nav-card-desc {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
}

/* プロモーションカード (ID: 674) */
.pc-promo-box {
    background: #ffffff;
    border: 2px solid var(--pc-color-main);
    border-radius: 8px;
    overflow: hidden;
    margin: 3em 0;
    box-shadow: 0 10px 25px rgba(11, 60, 93, 0.1);
}
.pc-promo-label {
    background: var(--pc-color-main);
    color: #ffffff;
    padding: 8px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}
.pc-promo-content {
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    gap: 30px;
    align-items: center;
}
.pc-promo-image {
    flex: 1 1 300px;
    text-align: center;
}
.pc-promo-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
    transition: transform 0.3s;
}
.pc-promo-image img:hover {
    transform: scale(1.03);
}
.pc-promo-info {
    flex: 1 1 300px;
}
.pc-promo-title {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--pc-color-text);
    margin-bottom: 10px;
    line-height: 1.3;
}
.pc-promo-copy {
    color: var(--pc-color-accent);
    font-weight: 700;
    margin-bottom: 1.2em;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.pc-promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.pc-promo-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    font-size: 0.95em;
}
.pc-promo-list li::before {
    content: "✔";
    color: var(--pc-color-main);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* 記事リスト（トップページ）の調整 */
.pc-box-summary .p-postList__item {
    box-shadow: none;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.pc-box-summary .p-postList__item:hover {
    border-color: var(--pc-color-accent);
    transform: translateY(-2px);
}
.pc-box-summary .p-postList__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}
.pc-box-summary .p-postList__thumb {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* ===================================================
   Header & Navigation (Restored & Optimized)
   =================================================== */

/* 1. ヘッダー全体の引き締め */
.l-header {
    border-bottom: 3px solid var(--pc-color-main);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 2. サイトタイトル（テキストロゴ化） */
.c-logo a, .pc-site-logo-text {
    font-family: var(--pc-font-stack);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--pc-color-main);
    text-decoration: none;
}
.c-headLogo__desc {
    color: #666;
    font-size: 0.75em;
    margin-bottom: 5px;
}

/* 3. PCグローバルナビメニューの装飾 */
.l-header__gnav .menu-item > a {
    color: #333;
    font-weight: 700;
    transition: color 0.3s, background 0.3s;
}
.l-header__gnav .menu-item > a:hover {
    color: var(--pc-color-main);
    background: #f7f9fa;
    border-radius: 4px;
}
/* カレント（現在地）表示 */
.l-header__gnav .current-menu-item > a {
    color: var(--pc-color-main);
    border-bottom: 2px solid var(--pc-color-accent);
}

/* 4. ヘッダーボタン（SWELL設定でボタンがある場合） */
.c-headBtn {
    background-color: var(--pc-color-alert) !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: none !important;
}