/* =====================================================
   スマホ横スクロール防止 - 最優先
   ===================================================== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    font-family: "Noto Sans JP", sans-serif;
}

body {
    position: relative;
}

/* すべてのセクションで横スクロール防止 */
* {
    max-width: 100%;
}

/* コンテナの幅制限 */
.pn-container,
.pn-hero-section,
section {
    overflow-x: hidden;
}
/* =====================================================
   トップページ専用CSS - 最適化版
   common.cssとの競合を回避
   ===================================================== */

/* =====================================================
   リセット・ベーススタイル（トップページ専用）
   ===================================================== */
.pn-toppage * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#smooth-wrapper {
    font-family: "Noto Sans JP", sans-serif;
}

h2 {
    color: #092a6d;
    margin: 4rem 1rem 1rem 1rem;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}
.subtitle {
    color: #4a4a4a;
    text-align: center;
    margin: 0 0 4rem 0;
}

/* =====================================================
   ヒーローセクション
   ===================================================== */
.pn-hero-section {
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* 背景画像は動画のフォールバック用に残す */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url(/wp-content/themes/novelty_owltech/img/pn_hero_banner.jpg);
    background-size: cover;
    background-position: center;
}

/* 背景動画ラッパー */
.pn-hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* 背景動画 */
.pn-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* 動画の上に暗く網目がかったオーバーレイ */
.pn-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.3) 3px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.3) 3px), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* スマホでは動画を非表示にして背景画像のみ表示 */
@media (max-width: 768px) {
    .pn-hero-video-wrapper {
        display: none;
    }
}

/* 下方向に白フェード */
.pn-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    z-index: 2;
}

.pn-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.pn-hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
}

.pn-hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.pn-hero-highlight {
    color: #d4a017;
}

.pn-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pn-hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.pn-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pn-hero-feature-icon {
    font-size: 1.5rem;
}

.pn-hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.pn-hero-primary-btn {
    background-color: #0c3387;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.pn-hero-primary-btn:hover {
    background-color: #0a286c;
}

.pn-hero-secondary-btn {
    background-color: #eaf1fb;
    color: #0c3387;
    /* border: 1px dashed #0C3387; */
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    /* margin: 1.5rem; */
}

.pn-hero-secondary-btn:hover {
    background-color: #dce8f8;
}

.pn-hero-note {
    font-size: 0.9rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    color: #000000;
}

/* =====================================================
   コンテナ（トップページ専用）
   ===================================================== */
.pn-container {
    max-width: 84rem;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* =====================================================
   セクション共通スタイル（トップページ専用）
   ===================================================== */
.pn-section {
    padding: 4rem 0;
}

.pn-section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.pn-section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* =====================================================
   製品ラインナップセクション
   ===================================================== */
.pn-products-section {
    background-color: #f8f9fa;
}

.pn-product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pn-product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.pn-product-card:hover {
    transform: translateY(-5px);
}

.pn-product-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.pn-product-card-title {
    font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #0c3387;
}

.pn-product-card-description {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: auto;
    flex-grow: 1;
}

.pn-product-card-btn {
    margin: 0 1.5rem 1.5rem;
    background-color: #fff;
    color: #0a2540;
    border: 2px solid #0a2540;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.pn-product-card-btn:hover {
    background-color: #0a2540;
    color: #fff;
}

.pn-catalog-button {
    display: block;
    margin: 0 auto;
    background-color: #fff;
    color: #0a2540;
    border: 2px solid #0a2540;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pn-catalog-button:hover {
    background-color: #0a2540;
    color: #fff;
}

/* 製品一覧ボタンの中央寄せ（全箇所対応） */
.pn-products-section .pn-hero-secondary-btn {
    display: block;
    margin: 3rem auto 2rem auto;
    width: fit-content;
}

/* =====================================================
   製品カテゴリ一覧
   ===================================================== */
.pn-product-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    justify-items: center;
    margin-bottom: 3rem;
}

.pn-category-card {
    text-align: center;
    cursor: pointer;
}

.pn-category-card-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.pn-category-card:hover .pn-category-card-img {
    transform: scale(1.05);
}

.pn-category-card-label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

/* =====================================================
   利用シーンセクション - 統一感改善版
   ===================================================== */
.pn-usage-scenes-section {
    background-color: #fff;
    padding: 4rem 0;
}

.pn-usage-scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pn-usage-scene-card {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* 初期状態: 非表示 */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

/* スクロール表示アニメーション */
.pn-usage-scene-card.pn-scene-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pn-usage-scene-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 背景画像レイヤー */
.pn-usage-scene-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.pn-usage-scene-card:hover .pn-usage-scene-image {
    transform: scale(1.1);
}

/* 個別背景画像 */
.pn-usage-scene-school .pn-usage-scene-image {
    background-image: url("/wp-content/themes/pnbo26/img/usage-scene-school.jpg");
}

.pn-usage-scene-contract .pn-usage-scene-image {
    background-image: url("/wp-content/themes/pnbo26/img/usage-scene-contract.jpg");
}

.pn-usage-scene-member .pn-usage-scene-image {
    background-image: url("/wp-content/themes/pnbo26/img/usage-scene-member.jpg");
}

.pn-usage-scene-company .pn-usage-scene-image {
    background-image: url("/wp-content/themes/pnbo26/img/usage-scene-company.jpg");
}

/* オーバーレイ */
.pn-usage-scene-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.35), rgba(10, 37, 64, 0.85));
    transition: background 0.3s ease;
}

.pn-usage-scene-card:hover .pn-usage-scene-overlay {
    background: linear-gradient(to bottom, rgba(10, 37, 64, 0.65), rgba(10, 37, 64, 0.75));
}

/* アイコン */
.pn-usage-scene-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pn-usage-scene-card:hover .pn-usage-scene-icon {
    transform: scale(1.1) translateY(-4px);
}

/* タイトル */
.pn-usage-scene-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 説明文 */
.pn-usage-scene-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 矢印アイコン */
.pn-usage-scene-arrow {
    font-size: 1.5rem;
    color: #d4a017;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.pn-usage-scene-card:hover .pn-usage-scene-arrow {
    transform: translateX(8px);
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */
@media (max-width: 768px) {
    .pn-usage-scene-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-usage-scene-card {
        height: 240px;
    }

    .pn-usage-scene-overlay {
        padding: 2rem 1.5rem;
    }

    .pn-usage-scene-title {
        font-size: 1.4rem;
    }

    .pn-usage-scene-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .pn-usage-scene-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pn-usage-scene-card {
        height: 220px;
    }

    .pn-usage-scene-overlay {
        padding: 1.5rem 1.2rem;
    }

    .pn-usage-scene-title {
        font-size: 1.25rem;
    }

    .pn-usage-scene-description {
        font-size: 0.9rem;
    }
}

/* =====================================================
   業種別セクション - 統一感改善版
   ===================================================== */
.pn-industry-types-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.pn-industry-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pn-industry-type-card {
    position: relative;
    display: block;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* 初期状態: 表示 */
    opacity: 1;
    transform: translateY(0) scale(1);
}

.pn-industry-type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 背景画像レイヤー */
.pn-industry-type-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.pn-industry-type-card:hover .pn-industry-type-image {
    transform: scale(1.1);
}

/* 個別背景画像 */
.pn-industry-type-construction .pn-industry-type-image {
    background-image: url("/wp-content/themes/pnbo26/img/top-industry_construction.jpg");
}

.pn-industry-type-service .pn-industry-type-image {
    background-image: url("/wp-content/themes/pnbo26/img/top-industry_service.jpg");
}

.pn-industry-type-finance .pn-industry-type-image {
    background-image: url("/wp-content/themes/pnbo26/img/top-industry_finance.jpg");
}

.pn-industry-type-education .pn-industry-type-image {
    background-image: url("/wp-content/themes/pnbo26/img/top-industry_study.jpg");
}

/* オーバーレイ */
.pn-industry-type-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(212, 160, 23, 0.8), rgba(184, 138, 20, 0.85));
    transition: background 0.3s ease;
}

.pn-industry-type-card:hover .pn-industry-type-overlay {
    background: linear-gradient(to bottom, rgba(212, 160, 23, 0.7), rgba(184, 138, 20, 0.75));
}

/* アイコン */
.pn-industry-type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pn-industry-type-card:hover .pn-industry-type-icon {
    transform: scale(1.15) translateY(-4px);
}

/* タイトル */
.pn-industry-type-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 説明文 */
.pn-industry-type-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 矢印アイコン */
.pn-industry-type-arrow {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.pn-industry-type-card:hover .pn-industry-type-arrow {
    transform: translateX(8px);
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */
@media (max-width: 768px) {
    .pn-industry-type-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-industry-type-card {
        height: 200px;
    }

    .pn-industry-type-overlay {
        padding: 1.5rem 1.2rem;
    }

    .pn-industry-type-title {
        font-size: 1.4rem;
    }

    .pn-industry-type-description {
        font-size: 0.9rem;
    }

    .pn-industry-type-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pn-industry-type-card {
        height: 180px;
    }

    .pn-industry-type-overlay {
        padding: 1.25rem 1rem;
    }

    .pn-industry-type-title {
        font-size: 1.25rem;
    }

    .pn-industry-type-description {
        font-size: 0.85rem;
    }
}

/* タブレット */
@media (min-width: 769px) and (max-width: 1024px) {
    .pn-industry-type-card {
        height: 220px;
    }

    .pn-industry-type-title {
        font-size: 1.5rem;
    }
}

/* =====================================================
   ご利用案内セクション - タイムライン形式
   ===================================================== */
.pn-guide-section {
    background-color: #fff;
    padding: 4rem 0;
}

.pn-guide-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* タイムライン中央の線 */
.pn-guide-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e0e0e0 0%, #d4a017 50%, #e0e0e0 100%);
    transform: translateX(-50%);
    z-index: 0;
}

/* 各ステップ */
.pn-guide-step {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

/* 最後のステップはマージンなし */
.pn-guide-step-final {
    margin-bottom: 0;
}

/* ステップ番号(中央) */
.pn-guide-step-number {
    grid-column: 2;
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.pn-guide-number {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* ステップコンテンツ */
.pn-guide-step-content {
    grid-column: 3;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* 偶数ステップは左側に表示 */
.pn-guide-step:nth-child(even) .pn-guide-step-content {
    grid-column: 1;
}

.pn-guide-step-content:hover {
    border-color: #d4a017;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ステップヘッダー */
.pn-guide-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* アイコン */
.pn-guide-step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eaf1fb 0%, #dce8f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c3387;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* タイトル */
.pn-guide-step-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0c3387;
    margin: 0;
    flex: 1;
    min-width: 150px;
}

/* 期間表示 */
.pn-guide-step-duration {
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
}

/* ステップ本文 */
.pn-guide-step-body {
    color: #666;
    line-height: 1.8;
}

.pn-guide-step-body p {
    margin: 0;
}

/* リンクスタイル */
.pn-guide-link {
    color: #0c3387;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.pn-guide-link:hover {
    color: #d4a017;
}

/* 注意書き */
.pn-guide-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eaf1fb 0%, #dce8f8 100%);
    border-left: 4px solid #0c3387;
    border-radius: 8px;
}

.pn-guide-note p {
    margin: 0;
    color: #0c3387;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pn-guide-note i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ご利用案内 - 詳しくボタン */
.pn-guide-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.pn-guide-detail-btn:hover {
    background: linear-gradient(135deg, #0a286c 0%, #082056 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 51, 135, 0.4);
}

.pn-guide-detail-btn-icon {
    transition: transform 0.3s ease;
}

.pn-guide-detail-btn.pn-expanded .pn-guide-detail-btn-icon {
    transform: rotate(180deg);
}

/* アコーディオン: 閉じているときは簡易表示のみ、開いているときは全文表示 */
.pn-guide-accordion.is-collapsed .pn-guide-full {
    display: none;
}

.pn-guide-accordion:not(.is-collapsed) .pn-guide-summary {
    display: none;
}

/* 簡易表示（Step1〜3 ヘッダーのみ）でヘッダーの下余白を詰める */
.pn-guide-timeline-summary .pn-guide-step-header {
    margin-bottom: 0;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット以下 */
@media (max-width: 1024px) {
    .pn-guide-timeline::before {
        left: 30px;
    }

    .pn-guide-step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .pn-guide-step-number {
        grid-column: 1;
        grid-row: 1;
    }

    .pn-guide-step-content {
        grid-column: 2;
        grid-row: 1;
    }

    .pn-guide-step:nth-child(even) .pn-guide-step-content {
        grid-column: 2;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pn-guide-timeline {
        padding: 1.5rem 0;
    }

    .pn-guide-timeline::before {
        left: 25px;
    }

    .pn-guide-step {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .pn-guide-step-number {
        width: 50px;
        height: 50px;
    }

    .pn-guide-number {
        font-size: 1.3rem;
    }

    .pn-guide-step-content {
        padding: 1.25rem;
    }

    .pn-guide-step-header {
        gap: 0.75rem;
    }

    .pn-guide-step-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .pn-guide-step-title {
        font-size: 1.1rem;
        min-width: auto;
        flex-basis: 100%;
    }

    .pn-guide-step-duration {
        font-size: 0.8rem;
        padding: 0.3rem 0.85rem;
    }

    .pn-guide-step-body {
        font-size: 0.95rem;
    }

    .pn-guide-note {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .pn-guide-note p {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .pn-guide-note i {
        font-size: 1.1rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-guide-timeline::before {
        left: 20px;
    }

    .pn-guide-step-number {
        width: 40px;
        height: 40px;
    }

    .pn-guide-number {
        font-size: 1.1rem;
    }

    .pn-guide-step-content {
        padding: 1rem;
    }

    .pn-guide-step-title {
        font-size: 1rem;
    }

    .pn-guide-step-body {
        font-size: 0.9rem;
    }
}

/* =====================================================
   ギフトラッピングセクション - 統一感改善版
   ===================================================== */
.pn-wrapping-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.pn-wrapping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ラッピングカード */
.pn-wrapping-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pn-wrapping-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* 画像リンク */
.pn-wrapping-image-link {
    display: block;
    position: relative;
    cursor: pointer;
}

/* 画像ラッパー */
.pn-wrapping-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

/* 画像 */
.pn-wrapping-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pn-wrapping-image-link:hover .pn-wrapping-image {
    transform: scale(1.1);
}

/* オーバーレイ */
.pn-wrapping-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.pn-wrapping-image-link:hover .pn-wrapping-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* ズームアイコン */
.pn-wrapping-zoom-icon {
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.pn-wrapping-image-link:hover .pn-wrapping-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* コンテンツエリア */
.pn-wrapping-content {
    padding: 2rem;
}

/* タイトル */
.pn-wrapping-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0c3387;
    margin: 0 0 1rem 0;
}

/* 説明文 */
.pn-wrapping-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

/* お問い合わせボタン */
.pn-wrapping-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.pn-wrapping-contact-btn:hover {
    background: linear-gradient(135deg, #b88a14 0%, #a07812 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.4);
}

/* =====================================================
   モーダルスタイル
   ===================================================== */
.pn-wrapping-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* モーダル画像 */
.pn-wrapping-modal-image {
    height: 100%;
    min-height: 300px;
}

.pn-wrapping-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* モーダルコンテンツ */
.pn-wrapping-modal-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* モーダルタイトル */
.pn-wrapping-modal-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0c3387;
    margin: 0 0 1rem 0;
}

/* モーダルテキスト */
.pn-wrapping-modal-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0 0 2rem 0;
}

/* モーダルフッター */
.pn-wrapping-modal-footer {
    border-top: 2px dashed #e0e0e0;
    padding-top: 1.5rem;
}

/* モーダル注意書き */
.pn-wrapping-modal-note {
    font-size: 0.9rem;
    color: #999;
    margin: 0 0 1rem 0;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .pn-wrapping-grid {
        gap: 2rem;
    }

    .pn-wrapping-modal {
        grid-template-columns: 1fr;
    }

    .pn-wrapping-modal-image {
        min-height: 250px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pn-wrapping-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-wrapping-image-wrapper {
        height: 240px;
    }

    .pn-wrapping-content {
        padding: 1.5rem;
    }

    .pn-wrapping-title {
        font-size: 1.25rem;
    }

    .pn-wrapping-description {
        font-size: 0.95rem;
    }

    .pn-wrapping-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .pn-wrapping-modal-content {
        padding: 1.5rem;
    }

    .pn-wrapping-modal-title {
        font-size: 1.4rem;
    }

    .pn-wrapping-modal-text {
        font-size: 0.95rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-wrapping-image-wrapper {
        height: 200px;
    }

    .pn-wrapping-content {
        padding: 1.25rem;
    }

    .pn-wrapping-title {
        font-size: 1.15rem;
    }

    .pn-wrapping-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .pn-wrapping-modal-image {
        min-height: 200px;
    }

    .pn-wrapping-modal-content {
        padding: 1.25rem;
    }
}

/* =====================================================
   FAQセクション - 統一感改善版
   ===================================================== */
.pn-faq-section {
    background-color: #fff;
    padding: 4rem 0;
}

.pn-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ項目 */
.pn-faq-item {
    margin-bottom: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.pn-faq-item:hover {
    border-color: #d4a017;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 質問ボタン */
.pn-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.pn-faq-question:hover {
    background: #f8f9fa;
}

.pn-faq-item.active .pn-faq-question {
    background: linear-gradient(135deg, #eaf1fb 0%, #dce8f8 100%);
}

/* Qアイコン */
.pn-faq-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 質問テキスト */
.pn-faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
}

/* トグルアイコン */
.pn-faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.pn-faq-item.active .pn-faq-toggle {
    background: #0c3387;
    color: #fff;
    transform: rotate(180deg);
}

/* 回答エリア */
.pn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease-out,
        padding 0.4s ease-out;
    background: #f8f9fa;
}

.pn-faq-item.active .pn-faq-answer {
    max-height: 500px;
}

/* 回答コンテンツ */
.pn-faq-answer-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
}

/* Aアイコン */
.pn-faq-answer-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

/* 回答テキスト */
.pn-faq-answer-content p {
    flex: 1;
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* FAQ CTA エリア */
.pn-faq-note {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.pn-faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(12, 51, 135, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pn-faq-cta-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition:
        width 0.6s ease,
        height 0.6s ease;
}

.pn-faq-cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.pn-faq-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(12, 51, 135, 0.4);
}

.pn-faq-cta-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.pn-faq-cta-button:hover .pn-faq-cta-icon {
    transform: scale(1.2) rotate(10deg);
}

.pn-faq-cta-text {
    position: relative;
    z-index: 1;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .pn-faq-question {
        padding: 1.25rem 1.5rem;
    }

    .pn-faq-answer-content {
        padding: 1.25rem 1.5rem;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pn-faq-item {
        margin-bottom: 1.25rem;
    }

    .pn-faq-question {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .pn-faq-icon,
    .pn-faq-answer-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .pn-faq-question-text {
        font-size: 1rem;
    }

    .pn-faq-toggle {
        width: 28px;
        height: 28px;
    }

    .pn-faq-answer-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .pn-faq-answer-content p {
        font-size: 0.95rem;
    }

    .pn-faq-note {
        margin-top: 2rem;
    }

    .pn-faq-cta-button {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }

    .pn-faq-cta-icon {
        font-size: 1.2rem;
    }

    .pn-faq-note-title {
        font-size: 1rem;
    }

    .pn-faq-note-text {
        font-size: 0.95rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-faq-question {
        padding: 1rem;
        gap: 0.5rem;
    }

    .pn-faq-icon,
    .pn-faq-answer-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .pn-faq-question-text {
        font-size: 0.95rem;
    }

    .pn-faq-toggle {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }

    .pn-faq-answer-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .pn-faq-answer-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .pn-faq-cta-button {
        padding: 1.15rem 1.75rem;
        font-size: 1rem;
    }

    .pn-faq-cta-icon {
        font-size: 1.1rem;
    }
}

/* =====================================================
   お問い合わせセクション（フッター内）
   ===================================================== */
.pn-contact-section {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    color: #fff;
}

.pn-contact-title,
.pn-contact-subtitle {
    color: #fff;
}

.pn-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pn-contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.pn-contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pn-contact-card-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pn-contact-card-phone,
.pn-contact-card-email {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.pn-contact-card-hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pn-form-button {
    display: block;
    margin: 0 auto;
    background-color: #d4a017;
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pn-form-button:hover {
    background-color: #b88a14;
}

.pn-contact-note {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
}

/* =====================================================
   ローディング画面
   ===================================================== */
.pn-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition:
        opacity 0.5s,
        visibility 0.5s;
}

.pn-loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.pn-loading-content {
    text-align: center;
}

.pn-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #d4a017;
    border-radius: 50%;
    animation: pnLoadingSpin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes pnLoadingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pn-loading-content p {
    color: #666;
    font-weight: bold;
}

/* =====================================================
   オウルテックが選ばれる3つの理由セクション
   ===================================================== */
.pn-reasons-section {
    padding: 3rem 0 6rem;
    overflow: visible;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.pn-reasons-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-reasons-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 37, 64, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pn-reason-card {
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    background: #ffffff;
}

.pn-reason-header {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pn-reason-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.pn-reason-card01 .pn-reason-header {
    background-image: url("/wp-content/themes/pnbo26/img/owl_scene00.jpg");
}

.pn-reason-card02 .pn-reason-header {
    background-image: url("/wp-content/themes/pnbo26/img/owl_scene01.jpg");
}

.pn-reason-card03 .pn-reason-header {
    background-image: url("/wp-content/themes/pnbo26/img/owl_scene03.jpg");
}

.pn-reason-header-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.pn-reason-label {
    color: #fff;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.pn-reason-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

.pn-reason-body {
    padding: 2.5rem 2rem;
    background: #ffffff;
}

.pn-reason-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* =====================================================
   .pn-reason-point の蛍光ペン風下線エフェクト
   ※ style_toppage.css の 2390行目付近を以下に差し替え
   ===================================================== */

.pn-reason-point {
    font-weight: bold;
    font-size: 2em;
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* 蛍光ペン風の下線（初期状態は非表示） */
.pn-reason-point::after {
    content: "";
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: 0.15em;
    height: 0.35em;
    background: linear-gradient(104deg, rgba(255, 235, 59, 0) 0.9%, rgba(255, 235, 59, 0.8) 2.4%, rgba(255, 235, 59, 0.65) 5.8%, rgba(255, 235, 59, 0.6) 93%, rgba(255, 235, 59, 0.5) 96%, rgba(255, 255, 255, 0) 98%);
    border-radius: 50% 20% 45% 20%;
    transform: rotate(-1.5deg);
    z-index: -1;
    opacity: 0;
    transform-origin: left center;
    animation: pnHighlighterDraw 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-play-state: paused;
}

/* カードが表示されたら下線アニメーション開始 */
.pn-reason-card.pn-visible .pn-reason-point::after,
.pn-reason-card.pn-immediate .pn-reason-point::after {
    animation-play-state: running;
}

/* 蛍光ペンで引く描画アニメーション */
@keyframes pnHighlighterDraw {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* ホバー時に少し強調 */
.pn-reason-card:hover .pn-reason-point::after {
    background: linear-gradient(104deg, rgba(255, 235, 59, 0) 0.9%, rgba(255, 235, 59, 0.9) 2.4%, rgba(255, 235, 59, 0.75) 5.8%, rgba(255, 235, 59, 0.7) 93%, rgba(255, 235, 59, 0.6) 96%, rgba(255, 255, 255, 0) 98%);
    transform: rotate(-1.5deg) translateY(-1px);
    transition: all 0.3s ease;
}

.pn-reason-point {
    font-weight: bold;
    font-size: 2em;
}

.pn-reason-card.pn-visible {
    opacity: 1;
    transform: translateY(0);
}

.pn-reason-card.pn-immediate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.pn-reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pn-reason-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a017 0%, #b88a14 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pn-reason-card:hover::after {
    transform: scaleX(1);
}

/* =====================================================
   メーカー × デザイナー × 品質 セクション
   ===================================================== */
.pn-maker-strength-section {
    background-color: #f8f9fa;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.pn-maker-strength-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 37, 64, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-maker-strength-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-maker-strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pn-maker-strength-image {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pn-maker-strength-image.pn-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.pn-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pn-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.pn-maker-strength-image:hover .pn-image-wrapper img {
    transform: scale(1.05);
}

.pn-image-decoration {
    position: absolute;
    border-radius: 16px;
    z-index: -1;
}

.pn-decoration-01 {
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #d4a017;
    opacity: 0.3;
}

.pn-decoration-02 {
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #0a2540;
    opacity: 0.2;
}

.pn-maker-strength-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.pn-maker-strength-content.pn-animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.pn-content-inner {
    padding: 2rem 0;
    text-align: center;
}

.pn-maker-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.pn-maker-title {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.pn-maker-highlight {
    color: #d4a017;
    position: relative;
    display: inline-block;
}

.pn-maker-highlight::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a017 0%, #b88a14 100%);
    border-radius: 2px;
}

.pn-maker-emphasis {
    font-size: 1.2em;
    color: #0a2540;
    font-weight: 800;
}

.pn-maker-cta {
    margin-top: 2rem;
    text-align: center;
}

.pn-maker-button {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    color: #fff;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.pn-maker-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 37, 64, 0.4);
}

.pn-button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.pn-maker-button:hover .pn-button-arrow {
    transform: translateX(5px);
}

/* =====================================================
   固定CTAボタン
   ===================================================== */
.pn-fixed-cta-container {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.pn-fixed-cta-container.pn-cta-visible {
    opacity: 1;
    visibility: visible;
}

.pn-fixed-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    aspect-ratio: 1;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    padding: 1rem;
}

.pn-fixed-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.pn-fixed-cta-example {
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
}

.pn-fixed-cta-contact {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
}

.pn-cta-icon-wrapper {
    margin-bottom: 0.25rem;
}

.pn-cta-icon {
    font-size: 1.8rem;
    display: inline-block;
}

.pn-cta-icon-example {
    animation: pnSwingAnimation 2s ease-in-out infinite;
}

@keyframes pnSwingAnimation {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.pn-cta-icon-contact {
    animation: pnBounceAnimation 1.5s ease-in-out infinite;
}

@keyframes pnBounceAnimation {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */
@media (max-width: 768px) {
    /* ヒーロー */
    .pn-hero-title {
        font-size: 2rem;
    }

    .pn-hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .pn-hero-cta-buttons {
        flex-direction: column;
    }

    /* 製品カテゴリ */
    .pn-product-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }

    .pn-category-card-img {
        width: 150px;
        height: 150px;
    }

    /* 利用シーン・業種別 */
    .pn-usage-scene-grid,
    .pn-industry-type-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-usage-scene-button {
        height: 240px;
    }

    .pn-industry-type-button {
        height: 180px;
    }

    .pn-usage-scene-title,
    .pn-industry-type-title {
        font-size: 1.5rem;
    }

    .pn-usage-scene-description {
        font-size: 0.95rem;
    }

    /* 理由セクション */
    .pn-reasons-section {
        padding: 2rem 0 4rem;
        margin-top: -40px;
    }

    .pn-reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-reason-header {
        height: 160px;
    }

    .pn-reason-body {
        padding: 2rem 1.5rem;
    }

    .pn-reason-title {
        font-size: 1.25rem;
    }

    .pn-reason-text {
        font-size: 0.9rem;
    }

    .pn-reasons-section::before,
    .pn-reasons-section::after {
        width: 200px;
        height: 200px;
    }

    /* メーカー強み */
    .pn-maker-strength-section {
        padding: 3rem 0;
    }

    .pn-maker-strength-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pn-maker-strength-image,
    .pn-maker-strength-content {
        transform: none;
    }

    .pn-maker-strength-image.pn-animate-visible,
    .pn-maker-strength-content.pn-animate-visible {
        transform: none;
    }

    .pn-maker-title {
        font-size: 1.5rem;
        line-height: 1.5;
    }

    .pn-maker-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .pn-decoration-01,
    .pn-decoration-02 {
        display: none;
    }

    .pn-maker-strength-section::before,
    .pn-maker-strength-section::after {
        width: 250px;
        height: 250px;
    }

    /* ロゴティッカー */
    :root {
        --gap: 24px;
        --scroll-speed: 30s;
    }

    .pn-logo-ticker-item-img {
        height: var(--logo-height-mobile);
    }

    .pn-logo-ticker::before,
    .pn-logo-ticker::after {
        width: 50px;
    }

    /* 固定CTA */
    .pn-fixed-cta-container {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 0.75rem;
    }

    .pn-fixed-cta-btn {
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
    }

    .pn-cta-icon {
        font-size: 1.5rem;
    }
}

/* タブレット */
@media (min-width: 769px) and (max-width: 1024px) {
    .pn-reasons-section {
        margin-top: -60px;
        padding: 2rem 0 5rem;
    }

    .pn-reasons-grid {
        gap: 2rem;
    }

    .pn-reason-body {
        padding: 2rem 1.5rem;
    }

    .pn-reason-title {
        font-size: 1.3rem;
    }

    .pn-maker-strength-section {
        padding: 4rem 0;
    }

    .pn-maker-strength-grid {
        gap: 3rem;
    }

    .pn-maker-title {
        font-size: 1.75rem;
    }

    .pn-maker-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .pn-usage-scene-button {
        height: 260px;
    }

    .pn-industry-type-button {
        height: 200px;
    }

    .pn-fixed-cta-container {
        right: 1rem;
    }

    .pn-fixed-cta-btn {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .pn-reasons-section {
        padding: 1.5rem 0 3.5rem;
        margin-top: -30px;
    }

    .pn-reason-header {
        height: 140px;
    }

    .pn-reason-body {
        padding: 1.5rem 1.2rem;
    }

    .pn-reason-label {
        font-size: 0.8rem;
    }

    .pn-reason-title {
        font-size: 1.15rem;
    }
}

/* =====================================================
   製品カード・カテゴリカードのスクロールアニメーション
   ※ style_toppage.css の最後に追加してください
   ===================================================== */

/* 製品カードの初期状態 */
.pn-product-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 製品カードの表示状態 */
.pn-product-card.pn-product-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* カテゴリカードの初期状態 */
.pn-category-card {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* カテゴリカードの表示状態 */
.pn-category-card.pn-category-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ホバー時は通常の動きを維持 */
.pn-product-card.pn-product-visible:hover {
    transform: translateY(-5px) scale(1);
}

.pn-category-card.pn-category-visible:hover .pn-category-card-img {
    transform: scale(1.05);
}

/* =====================================================
   導入実績セクション - 統一感改善版
   ===================================================== */
.pn-case-studies-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

/* =====================================================
   ロゴティッカー
   ===================================================== */
:root {
    --logo-height-desktop: 150px;
    --logo-height-mobile: 56px;
    --gap: 32px;
    --scroll-speed: 40s;
}

.pn-logo-ticker {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 20px 0;
    position: relative;
    margin-bottom: 3rem;
}

.pn-logo-ticker::before,
.pn-logo-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pn-logo-ticker::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.pn-logo-ticker::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.pn-logo-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: var(--gap);
    animation: pnLogoScroll var(--scroll-speed) linear infinite;
    will-change: transform;
}

.pn-logo-ticker:hover .pn-logo-ticker-track {
    animation-play-state: paused;
}

.pn-logo-ticker-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pn-logo-ticker-item:hover {
    transform: scale(1.1);
}

.pn-logo-ticker-item-img {
    height: var(--logo-height-desktop);
    width: auto;
    display: block;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.pn-logo-ticker-item:hover .pn-logo-ticker-item-img {
    filter: grayscale(0%) opacity(1);
}

@keyframes pnLogoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   導入事例カードグリッド
   ===================================================== */
.pn-case-studies-grid {
    margin-bottom: 3rem;
}

.swiper_achievements {
    position: relative;
    padding: 0 50px;
}

/* 導入事例カード */
.pn-case-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    height: 100%;
}

.pn-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* カード画像 */
.pn-case-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.pn-case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pn-case-card:hover .pn-case-card-image img {
    transform: scale(1.1);
}

/* カードコンテンツ */
.pn-case-card-content {
    padding: 1.5rem;
}

/* カテゴリ表示 */
.pn-case-card-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem 0;
    flex-wrap: wrap;
}

.pn-case-card-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.pn-case-card-term {
    display: inline-block;
    background: linear-gradient(135deg, #eaf1fb 0%, #dce8f8 100%);
    color: #0c3387;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* カードタイトル */
.pn-case-card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 矢印 */
.pn-case-card-arrow {
    display: inline-block;
    color: #d4a017;
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.pn-case-card:hover .pn-case-card-arrow {
    transform: translateX(5px);
}

/* Swiperページネーション */
.swiper-paginations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.swiper-pagination {
    position: static;
    width: auto;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1rem;
    color: #0c3387;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #0c3387;
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
    color: #fff;
}

/* CTA */
.pn-case-studies-cta {
    text-align: center;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .swiper_achievements {
        padding: 0 40px;
    }

    .pn-case-card-image {
        height: 220px;
    }
}

/* スマホ */
@media (max-width: 768px) {
    :root {
        --gap: 24px;
        --scroll-speed: 30s;
    }

    .pn-logo-ticker-item-img {
        height: var(--logo-height-mobile);
    }

    .pn-logo-ticker::before,
    .pn-logo-ticker::after {
        width: 50px;
    }

    .swiper_achievements {
        padding: 0 20px;
    }

    .pn-case-card-image {
        height: 200px;
    }

    .pn-case-card-content {
        padding: 1.25rem;
    }

    .pn-case-card-title {
        font-size: 1rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 0.9rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-case-card-image {
        height: 180px;
    }

    .pn-case-card-content {
        padding: 1rem;
    }

    .pn-case-card-title {
        font-size: 0.95rem;
    }
}

/* =====================================================
   お問い合わせセクション(フッター内) - 統一感改善版
   ===================================================== */
.pn-contact-section {
    background: linear-gradient(135deg, #0a2540 0%, #0d3a5f 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* 装飾的な背景要素 */
.pn-contact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-contact-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.pn-contact-section .pn-container {
    position: relative;
    z-index: 1;
}

.pn-contact-section .pn-section-title,
.pn-contact-section .pn-section-subtitle {
    color: #fff;
}

.pn-contact-section .pn-section-subtitle {
    opacity: 0.9;
}

/* お問い合わせ方法グリッド */
.pn-contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* お問い合わせカード */
.pn-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pn-contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* カードアイコン */
.pn-contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
    transition: transform 0.3s ease;
}

.pn-contact-card:hover .pn-contact-card-icon {
    transform: scale(1.1) translateY(-4px);
}

/* カードタイトル */
.pn-contact-card-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 1rem 0;
}

/* 電話番号 */
.pn-contact-card-phone {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.pn-contact-card-phone a {
    color: #d4a017;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pn-contact-card-phone a:hover {
    color: #fff;
}

/* 営業時間 */
.pn-contact-card-hours {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.pn-contact-card-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* フォームボタン */
.pn-contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.pn-contact-card-btn:hover {
    background: linear-gradient(135deg, #b88a14 0%, #a07812 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.pn-contact-card-btn i {
    transition: transform 0.3s ease;
}

.pn-contact-card-btn:hover i {
    transform: translateX(4px);
}

/* 注意書き */
.pn-contact-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #d4a017;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
}

.pn-contact-note i {
    font-size: 1.5rem;
    color: #d4a017;
    flex-shrink: 0;
}

.pn-contact-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* =====================================================
   フッターリンク
   ===================================================== */
.pn-footer-links {
    background: #0a2540;
    padding: 2rem 0;
    text-align: center;
}

.pn-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pn-footer-list li {
    margin: 0;
}

.pn-footer-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.pn-footer-list a:hover {
    color: #d4a017;
}

.pn-footer-list img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.pn-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .pn-contact-methods {
        gap: 1.5rem;
    }

    .pn-contact-card {
        padding: 2rem 1.5rem;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pn-contact-section {
        padding: 3rem 0;
    }

    .pn-contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pn-contact-card {
        padding: 2rem 1.5rem;
    }

    .pn-contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .pn-contact-card-title {
        font-size: 1.2rem;
    }

    .pn-contact-card-phone {
        font-size: 1.8rem;
    }

    .pn-contact-card-hours {
        font-size: 0.95rem;
    }

    .pn-contact-note {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .pn-contact-note i {
        font-size: 1.3rem;
    }

    .pn-contact-note p {
        font-size: 0.95rem;
    }

    .pn-footer-list {
        flex-direction: column;
        gap: 1rem;
    }

    .pn-copyright {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-contact-card {
        padding: 1.5rem 1.25rem;
    }

    .pn-contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .pn-contact-card-title {
        font-size: 1.1rem;
    }

    .pn-contact-card-phone {
        font-size: 1.6rem;
    }

    .pn-contact-card-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   選ばれる理由 - 展開機能スタイル
   ※ style_toppage.css の最後に追加
   ===================================================== */

/* 詳しくボタン */
.pn-reason-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.pn-reason-expand-btn:hover {
    background: linear-gradient(135deg, #0a286c 0%, #082056 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 51, 135, 0.4);
}

/* アイコン回転アニメーション */
.pn-reason-expand-icon {
    transition: transform 0.3s ease;
}

.pn-reason-expand-btn.pn-expanded .pn-reason-expand-icon {
    transform: rotate(180deg);
}

/* 展開テキスト切り替え */
.pn-reason-expand-btn.pn-expanded .pn-reason-expand-text::after {
    content: "閉じる";
}

.pn-reason-expand-btn:not(.pn-expanded) .pn-reason-expand-text::after {
    content: "詳しく";
}

.pn-reason-expand-text {
    display: none;
}

.pn-reason-expand-text::after {
    display: inline;
}

/* 展開コンテンツ */
.pn-reason-expand-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.pn-reason-expand-content.pn-expanded {
    max-height: 800px;
    opacity: 1;
    margin-top: 1.5rem;
}

/* 展開コンテンツ内の画像 */
.pn-reason-expand-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 展開コンテンツ内のテキスト */
.pn-reason-expand-text-content {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0c3387;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 1024px) {
    .pn-reason-expand-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .pn-reason-expand-text-content {
        font-size: 0.9rem;
        padding: 0.875rem;
    }
}

/* スマホ */
@media (max-width: 768px) {
    .pn-reason-expand-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin-top: 1.25rem;
    }

    .pn-reason-expand-content {
        margin-top: 0;
    }

    .pn-reason-expand-content.pn-expanded {
        max-height: 1000px;
        margin-top: 1.25rem;
    }

    .pn-reason-expand-text-content {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* 極小画面 */
@media (max-width: 480px) {
    .pn-reason-expand-btn {
        font-size: 0.85rem;
        padding: 0.65rem 0.875rem;
    }

    .pn-reason-expand-content.pn-expanded {
        max-height: 1200px;
    }

    .pn-reason-expand-text-content {
        font-size: 0.8rem;
        line-height: 1.7;
    }
}

/* =====================================================
   スマホ専用: 画面下部追従CTAボタン
   ===================================================== */
.pn-mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: pnSlideUp 0.4s ease;
}

@keyframes pnSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.pn-mobile-sticky-cta-inner {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.pn-mobile-sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.pn-mobile-sticky-cta-primary {
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.4);
}

.pn-mobile-sticky-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.6);
}

.pn-mobile-sticky-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.pn-mobile-sticky-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* スマホのみ表示 */
@media (max-width: 768px) {
    .pn-mobile-sticky-cta {
        display: block;
    }

    /* 既存の固定CTAをスマホで非表示 */
    .pn-fixed-cta-container {
        display: none !important;
    }
}

/* =====================================================
   ご利用案内 - 3ステップ概要
   ===================================================== */

.pn-quick-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin: 2.5rem auto 0;
    max-width: 860px;
}

.pn-quick-step {
    flex: 1;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pn-quick-step:hover {
    border-color: #d4a017;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pn-quick-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.pn-quick-step-label {
    display: inline-block;
    background: linear-gradient(135deg, #d4a017 0%, #b88a14 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.pn-quick-step-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #0c3387;
    margin: 0 0 0.75rem;
}

.pn-quick-step-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* 矢印 */
.pn-quick-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    color: #d4a017;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* CTAエリア */
.pn-quick-cta-wrap {
    text-align: center;
    margin: 2rem auto 2.5rem;
}

.pn-quick-cta-catchcopy {
    font-size: 1.25rem;
    font-weight: bold;
    color: #0c3387;
    margin: 0 0 1rem;
    letter-spacing: 0.03em;
}

.pn-quick-cta-btn {
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
}

/* 詳しく見るボタン */
.pn-guide-toggle-wrap {
    text-align: center;
    margin: 1.5rem 0 0;
}

.pn-guide-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #0c3387 0%, #0a286c 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(12, 51, 135, 0.3);
}

.pn-guide-toggle-btn:hover {
    background: linear-gradient(135deg, #0a286c 0%, #082056 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 51, 135, 0.4);
}

.pn-guide-toggle-btn-icon {
    transition: transform 0.3s ease;
}

/* アコーディオン開閉 */
.pn-guide-accordion-wrap {
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 2rem;
}

.pn-guide-accordion-wrap.is-hidden {
    display: none;
}

/* =====================================================
   レスポンシブ対応
   ===================================================== */

/* タブレット */
@media (max-width: 768px) {
    .pn-quick-steps {
        flex-direction: column;
        gap: 1rem;
        max-width: 480px;
    }

    .pn-quick-step-arrow {
        transform: rotate(90deg);
        padding: 0;
        font-size: 1.2rem;
    }

    .pn-quick-step {
        padding: 1.5rem 1.25rem;
    }

    .pn-quick-step-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .pn-quick-cta-catchcopy {
        font-size: 1.1rem;
    }
}

/* スマホ */
@media (max-width: 480px) {
    .pn-quick-step-title {
        font-size: 1.05rem;
    }

    .pn-quick-step-desc {
        font-size: 0.85rem;
    }

    .pn-quick-cta-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.75rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* =====================================================
   メーカーの強みセクション - 会社概要リンク
   ===================================================== */

.pn-maker-company-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
    transition:
        opacity 0.25s ease,
        letter-spacing 0.25s ease;
    letter-spacing: 0.02em;
    padding: 20px;
}

.pn-maker-company-link::after {
    content: "›";
    font-size: 1.1rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.pn-maker-company-link:hover {
    opacity: 1;
    letter-spacing: 0.05em;
}

.pn-maker-company-link:hover::after {
    transform: translateX(3px);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .pn-maker-company-link {
        font-size: 0.85rem;
    }
}
