@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/* ==================================================
    1. 基本設定・変数
    ================================================== */
:root {
    --ps-blue: #00175A;
    --ps-silver: #E5E4E2;
    --ps-text: #333333;
    --ps-bg: #F9F9F9;
    --ps-accent-gold: #C5A059;
}

/* ==================================================
    2. 記事本文のデザイン（タイポグラフィ・装飾）
    ================================================== */

/* --- 記事全体の設定 (余白と中央寄せの確定) --- */
.platinum-sky-article {
    /* タイポグラフィ */
    color: var(--ps-text);
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.9;
    letter-spacing: 0.05em;
    font-size: 16px; /* 基本サイズ */
    
    /* レイアウト修正: 余白と中央寄せをここで定義 */
    width: 100%;
    max-width: 800px; /* PCでの本文最大幅 */
    box-sizing: border-box;
    margin: 0 auto;   /* 中央寄せを確定 */
    padding: 0 20px;  /* ★スマホ/PC共通の余白: 左右20pxを基本とする */
}

/* --- 見出し (H2) --- */
.platinum-sky-article h2 {
    /* ★塗りつぶし問題と下線スタイルを確定 */
    color: var(--ps-blue);
    font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
    font-size: 28px;
    font-weight: bold; 
    
    border-bottom: 2px solid var(--ps-blue); /* 下線スタイルを確定 */
    background: none !important; /* ★塗りつぶしを確実に解除 */
    
    padding-bottom: 15px;
    margin-top: 60px;
    margin-bottom: 30px;

    /* ★改行問題の修正: インラインスタイルを上書き */
    display: block !important;
    white-space: normal !important; 
    line-height: 1.5;
}

/* --- 見出し (H3) --- 
   ★修正点：左の線を細くし、色も薄くして大人しくする
*/
.platinum-sky-article h3 {
  color: var(--ps-text); /* 文字色はそのまま（H2より薄い色を避ける） */
  font-size: 20px; /* ★サイズを22pxから20pxに縮小 */
  
  /* ★左側の線を細く、色を薄くする */
  border-left: 3px solid #cccccc; /* 6px→3px、PS Blue→薄いグレー */
  
  padding-left: 15px;
  margin-top: 40px;
  margin-bottom: 20px;
  background: none;
  font-weight: bold; /* フォントの太さを強調 */
}

.platinum-sky-article p {
    margin-bottom: 1.5em;
    font-size: 16px;
}

/* 画像の影 */
.platinum-sky-article img {
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ==================================================
    3. カスタムボックス・ボタン
    ================================================== */

/* --- Reference Box (明細) --- */
.ps-reference-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: 4px solid var(--ps-blue);
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.ps-reference-title {
    display: block;
    font-weight: bold;
    color: var(--ps-blue);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-family: sans-serif;
}
.ps-reference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ps-reference-list li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #eee;
}
.ps-total-value {
    margin-top: 15px;
    font-weight: bold;
    text-align: right;
    color: var(--ps-blue);
    font-size: 1.1em;
}

/* --- Disclaimer Box (注釈) --- */
.ps-disclaimer-box {
    background-color: #f8f8f8;
    border-left: 4px solid #999;
    padding: 20px;
    margin: 30px 0;
    font-size: 0.9em;
    color: #666;
}
.ps-disclaimer-title {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #444;
}

/* --- Hint Box (補足) --- */
.ps-hint-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--ps-accent-gold);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 4px 4px 0;
}
.ps-hint-title {
    display: block;
    font-weight: bold;
    color: var(--ps-text);
    margin-bottom: 10px;
}
.ps-hint-box p {
    margin-bottom: 5px;
    font-size: 0.95em;
    line-height: 1.6;
}
.ps-hint-box a {
    color: var(--ps-blue);
    text-decoration: none;
    font-weight: bold;
}
.ps-hint-box a:hover {
    text-decoration: underline;
}

/* --- CTA Button (誘導ボタン) --- */
.ps-cta-container {
    text-align: center;
    margin: 60px 0;
}
.ps-cta-button {
    display: inline-block;
    background: var(--ps-blue);
    background: linear-gradient(135deg, #00175A 0%, #002663 100%);
    color: #fff !important;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 15px rgba(0, 23, 90, 0.3);
    transition: all 0.3s ease;
}
.ps-cta-button:hover {
    background: #002663;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 23, 90, 0.4);
    color: var(--ps-silver) !important;
}

/* --- Lead Text (導入文) --- */
.ps-lead {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin: 40px 0;
    color: var(--ps-blue);
    line-height: 1.6;
}

/* ==================================================
    4. Platinum Sky オリジナルシェアボタン
    ================================================== */
.ps-share-area {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
    clear: both;
}
.ps-share-title {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 25px;
    display: block;
}
.ps-share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* アイテム（隙間削除・密着設定） */
.ps-share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 60px;
    gap: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.ps-share-item br {
    display: none !important;
}

/* ボタン本体 */
.ps-share-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: #fff !important;
    border: 1px solid #00175A !important;
    color: #00175A;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    font-size: 26px;
    cursor: pointer;
    padding: 0;
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif;
    margin: 0 0 0 0 !important; /* 余白完全リセット */
    position: relative;
    z-index: 10;
}
.ps-share-btn:hover {
    background-color: #00175A !important;
    color: #E5E4E2 !important;
    border-color: #00175A !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 23, 90, 0.2) !important;
}

/* アイコン微調整 */
.ps-share-line { font-size: 32px; }
.ps-share-line i { vertical-align: middle; margin-top: -2px; }
.ps-share-btn svg { width: 20px; height: 20px; fill: currentColor; vertical-align: middle; margin-top: -2px; }

/* ラベル文字（位置引き上げ） */
.ps-share-label {
    font-size: 11px !important;
    color: #00175A;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-family: sans-serif;
    display: block;
    line-height: 1.2 !important;
    background: transparent !important;
    margin-top: 6px !important; /* ボタンとの距離 */
    padding: 0 !important;
}

/* ツールチップ (PCのみ) */
.ps-tooltip { position: relative; }
.ps-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
    font-weight: normal;
    line-height: 1.4;
}
.ps-tooltip::after {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
}
@media (hover: hover) {
    .ps-tooltip:hover::before,
    .ps-tooltip:hover::after { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .ps-tooltip:hover::after { transform: translateY(0); margin-bottom: -9px; }
}

/* ==================================================
    5. トップページ専用CSS
    ================================================== */
.platinum-sky-top {
    width: 100%;
    margin: 0 auto;
}
/* ヒーローエリア */
.ps-hero-section {
    position: relative;
    width: 100%;
    height: 500px; /* PC */
    overflow: hidden;
    margin-bottom: 60px;
    background-color: #000;
}
/* スライド */
.ps-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: psFade 30s infinite;
}
.ps-slide:nth-child(1) { animation-delay: 0s; }
.ps-slide:nth-child(2) { animation-delay: 5s; }
.ps-slide:nth-child(3) { animation-delay: 10s; }
.ps-slide:nth-child(4) { animation-delay: 15s; }
.ps-slide:nth-child(5) { animation-delay: 20s; }
.ps-slide:nth-child(6) { animation-delay: 25s; }
@keyframes psFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    25% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}
/* キャッチコピー */
.ps-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.ps-hero-sub {
    color: #E5E4E2;
    font-size: 14px;
    letter-spacing: 0.3em;
    margin-bottom: 15px;
    font-family: sans-serif;
    text-transform: uppercase;
}
.ps-hero-title {
    font-size: 42px;
    color: #fff;
    font-family: "Shippori Mincho", serif;
    line-height: 1.4;
    margin: 0;
    border: none;
}
/* コンテンツエリア */
.platinum-sky-top > div:not(.ps-hero-section) {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ボス記事誘導 */
.ps-feature-box {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    border-radius: 2px;
}
.ps-feature-label {
    background: #00175A;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.1em;
}
.ps-feature-box h3 {
    color: #00175A;
    margin-top: 10px;
    font-size: 24px;
    border: none;
}
.ps-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #00175A 0%, #002663 100%);
    color: #fff !important;
    padding: 15px 50px;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 25px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}
.ps-btn-primary:hover { opacity: 0.9; }
/* グリッド */
.ps-section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    border: none;
    font-family: serif;
    font-style: italic;
}
.ps-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.ps-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.ps-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.ps-card-body { padding: 20px; }
.ps-card-body h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00175A;
}
.ps-card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}
.ps-link-text {
    color: #00175A;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}
/* プロフィール */
.ps-profile-section {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #eee;
    background-color: #fff;
    margin-bottom: 40px;
}
.ps-btn-secondary {
    display: inline-block;
    border: 1px solid #333;
    color: #333;
    padding: 10px 30px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 14px;
}

/* ==================================================
    6. サイト全体のレイアウト構造（2カラム・ワイド）
    ================================================== */

/* 共通：左の隙間を消す */
.main {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* --- PC表示 (1024px以上) --- */
@media screen and (min-width: 1024px) {
    /* PC用スライド表示 */
    .ps-slider-mobile { display: none; }
    .ps-slider-pc { display: block; }

    /* コンテンツ大枠：フレックスで横並び・ワイド化 */
    .content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 0 !important;
        max-width: 1400px !important;
        margin: 0 auto;
    }

    /* 記事エリア：サイドバー(400px)を引いた残り */
    .main {
        width: calc(100% - 400px) !important;
        float: none !important;
        margin-right: 0 !important;
        border: none !important;
        padding-right: 40px !important; /* 文字とサイドバーの隙間 */
    }

    /* サイドバー：ワイド化 */
    .sidebar {
        width: 400px !important;
        float: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    /* ★記事内側：余白をリセットし、中央寄せの本文幅を維持 */
    .platinum-sky-article {
        padding: 0 0 0 0 !important; /* PCでは .main の幅内で中央寄せを機能させるためリセット */
        margin: 0 auto !important; /* 中央寄せを再適用 */
    }

    /* ★修正点：H1タイトルの位置調整 (PC) */
    .entry-title,
    .article-header h1,
    .platinum-sky-article h1 {
        margin-left: 0 !important;
        padding-left: 20px !important; 
        padding-right: 20px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }
}

/* --- スマホ表示 (768px以下) --- */
@media screen and (max-width: 768px) {
    /* スマホ用スライド表示 */
    .ps-hero-section { height: 350px; }
    .ps-slider-pc { display: none; }
    .ps-slider-mobile { display: block; }
    .ps-hero-title { font-size: 28px; }

    /* 1カラムに戻す */
    .content {
        display: block !important;
    }
    .main {
        width: 100% !important;
        padding-right: 0 !important;
    }
    /* ★記事内側：スマホの余白を確定 */
    .platinum-sky-article {
        padding: 0 15px !important;
    }
    
    /* グリッド1列 */
    .ps-grid-container {
        grid-template-columns: 1fr;
    }
    .ps-reference-list li {
        flex-direction: column;
    }
    .platinum-sky-article h2 {
        font-size: 24px;
    }

    /* シェアボタン微調整 */
    .ps-share-buttons { gap: 10px; }
    .ps-share-btn { 
        width: 45px !important; 
        height: 45px !important; 
        min-width: 45px !important; 
        min-height: 45px !important; 
        font-size: 20px; 
    }
    .ps-share-line { font-size: 28px; }
    .ps-share-label { 
        font-size: 10px !important; 
        margin-top: 4px !important;
    }
    
    /* H1調整 */
    .entry-title,
    .platinum-sky-article h1 {
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 24px !important;
    }
}

/* ============================================
    Platinum Sky グローバルメニュー (高さ修正版)
    ============================================ */

/* 1. メニューバーの箱（親）設定 */
#navi,
.navi-bg,
#navi .navi-in {
    background-color: #00175A !important; /* Deep Blue */
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    
    /* ★重要：親要素の余計な余白を消して、子の高さに合わせる */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
    min-height: 60px !important; /* 最低限の高さを確保 */
}

/* 2. メニューリストの配置 */
#navi ul.menu-header,
#navi .navi-in > ul {
    display: flex !important;
    justify-content: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important; /* 高さを親に合わせる */
}

/* 3. メニュー項目（ここを修正） */
#navi ul.menu-header > li,
#navi .navi-in > ul > li {
    display: block !important;
    float: none !important;
    height: 100% !important; /* リスト自体の高さを確保 */
}

#navi ul.menu-header > li > a,
#navi .navi-in > ul > li > a {
    color: #E5E4E2 !important; /* プラチナシルバー */
    font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
    font-weight: normal !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-decoration: none !important;
    background: none !important;
    
    /* ★ここが修正点：縦の余白を増やして帯全体をカバーする */
    display: block !important;
    padding: 22px 25px !important; /* 18px → 22px に増やしました */
    line-height: 1.2 !important;      /* 行間を固定 */
}

/* 4. ホバー時の動き */
#navi ul.menu-header > li > a:hover,
#navi .navi-in > ul > li > a:hover {
    color: #FFFFFF !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* 5. スマホメニュー */
.mobile-menu-buttons,
.menu-button {
    background-color: #00175A !important;
}
.mobile-menu-buttons .menu-icon,
.menu-button-in {
    color: #E5E4E2 !important;
}

/* --- カテゴリー選択セクション（左右交互） --- */
.ps-category-section {
    margin-bottom: 60px;
}
.ps-category-link {
    display: flex;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ps-category-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.ps-category-img {
    width: 55%; /* 画像を大きめに */
    height: 350px;
}
.ps-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ps-category-content {
    width: 45%;
    padding: 40px;
    box-sizing: border-box;
}
.ps-category-content h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 26px !important;
    color: var(--ps-blue) !important;
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
}
.ps-category-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}
.ps-text-link {
    color: var(--ps-blue);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px solid var(--ps-blue);
    padding-bottom: 2px;
}

/* 逆向き（画像右、文字左）にするクラス */
.ps-reverse .ps-category-link {
    flex-direction: row-reverse;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .ps-category-link, 
    .ps-reverse .ps-category-link {
        flex-direction: column; /* スマホは全部縦並び */
    }
    .ps-category-img, 
    .ps-category-content {
        width: 100%;
    }
    .ps-category-img {
        height: 200px;
    }
    .ps-category-content {
        padding: 30px 20px;
    }
}

/* ============================================
    Lounge Index (目次ページ) 専用スタイル
    ============================================ */

/* --- 1. ページタイトルエリア --- */
.ps-index-hero {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
}
.ps-index-sub {
    color: var(--ps-accent-gold);
    font-size: 14px;
    letter-spacing: 0.2em;
    font-family: sans-serif;
    margin-bottom: 15px;
}
.ps-index-hero h1 {
    font-family: "Shippori Mincho", serif;
    font-size: 36px !important;
    color: var(--ps-blue);
    margin-bottom: 20px !important;
    border: none !important;
    padding: 0 !important;
}
.ps-index-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* --- 2. センチュリオン特集 (Premium Hero Style) --- */
.ps-index-featured {
    margin-bottom: 80px; /* 下のセクションとの間隔 */
}

/* リンク全体枠 */
.ps-featured-link {
    display: block;
    text-decoration: none;
    background-color: var(--ps-blue); /* Deep Blue背景 */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 23, 90, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ps-featured-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 23, 90, 0.25);
}

/* 写真エリア */
.ps-featured-img-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.ps-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ps-featured-link:hover .ps-featured-img-wrap img {
    transform: scale(1.08); /* ズームエフェクト */
}

/* テキストエリア */
.ps-featured-text-box {
    padding: 40px 50px;
    color: #fff;
    text-align: center;
    position: relative;
}
.ps-featured-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ps-featured-icon {
    color: var(--ps-accent-gold);
    font-size: 18px;
}
.ps-featured-label {
    color: var(--ps-accent-gold);
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: bold;
}
.ps-featured-text-box h3 {
    font-family: "Shippori Mincho", serif;
    font-size: 32px !important;
    color: #fff !important;
    margin: 0 0 20px 0 !important;
    border: none !important;
    line-height: 1.3;
}
.ps-featured-text-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.ps-btn-gate {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--ps-accent-gold);
    color: var(--ps-accent-gold);
    font-size: 14px;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
.ps-featured-link:hover .ps-btn-gate {
    background-color: var(--ps-accent-gold);
    color: var(--ps-blue);
}

/* --- 3. カテゴリー選択セクション（左右交互レイアウト） --- */
/* (既にセクション5で定義済みのため、重複部分は削除) */
/* .ps-category-section のメディアクエリはセクション5で定義済みのものと統一 */

/* --- スマホ対応 --- */
@media screen and (max-width: 768px) {
    /* センチュリオン特集 */
    .ps-featured-img-wrap {
        height: 250px;
    }
    .ps-featured-text-box {
        padding: 30px 20px;
    }
    .ps-featured-text-box h3 {
        font-size: 24px !important;
    }
    
    /* カテゴリーセクション */
    .ps-category-link, 
    .ps-reverse .ps-category-link {
        flex-direction: column;
    }
    .ps-category-img, 
    .ps-category-content {
        width: 100%;
    }
    .ps-category-img {
        height: 200px;
    }
    .ps-category-content {
        padding: 30px 20px;
    }
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
