/* ==========================================================================
   ピラーページ 完全統合CSS - すべてのスタイルを1つに
   header、hero、content、すべて含む - モバイル最適化版
   ========================================================================== */

/* ===== ヘッダー ===== */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-description {
    text-align: center;
    padding: 20px 0 10px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%);
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    color: white;
    text-decoration: none;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.psite-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    display: none;
}

.psite-title a {
    color: var(--main-color);
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* ハンバーガーメニューの横線 - 修正版 */
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

#nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

#nav li {
    margin: 0;
}

#nav a {
    display: block;
    padding: 12px 18px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

#nav a:hover,
#nav a.active {
    background: linear-gradient(135deg, var(--main-color), var(--sub-color));
    color: white;
}

/* ===== ヒーローセクション ===== */
.pillar-hero {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.pillar-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pillar-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.pillar-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

/* hero-page0 ~ hero-page11 の個別スタイル */
.hero-page0,
.hero-page1,
.hero-page2,
.hero-page3,
.hero-page4,
.hero-page5,
.hero-page6,
.hero-page7,
.hero-page8,
.hero-page9,
.hero-page10,
.hero-page11 {
    position: relative;
    z-index: 1;
}

.pillar-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.pillar-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pillar-hero-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.pillar-hero-message {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 32px;
    opacity: 0.95;
    color: white;
    line-height: 1.5;
}

.pillar-hero-description {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-hero-image {
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-height: 48px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    flex-shrink: 0;
}

/* ===== コンテンツセクション ===== */
.content-section {
    padding: 80px 0;
    position: relative;
    border-top: 1px solid #E8EDF2;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-section:nth-child(odd) {
    background: #FFFFFF;
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, #F8F9FA 0%, #F3F4F6 100%);
}

.content-section.bg-light {
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(74,144,226,0.15) 20%, 
        rgba(74,144,226,0.25) 50%, 
        rgba(74,144,226,0.15) 80%, 
        transparent
    );
}

/* ===== タイポグラフィ ===== */
.content-section h2 {
    font-weight: 800;
    color: #2C3E50;
    letter-spacing: 0.5px;
    position: relative;
}



.heading-center {
    text-align: center;
    margin-bottom: 30px;
    color: var(--main-color);
}

.content-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #34495E;
    margin-top: 56px;
    margin-bottom: 28px;
    line-height: 1.5;
    padding-left: 18px;
    border-left: 5px solid var(--main-color);
}

.heading-main-color {
    color: var(--main-color);
    margin-top: 50px;
    margin-bottom: 25px;
}

.heading-main-large {
    margin-top: 0;
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.heading-main-xlarge {
    margin-top: 0;
    color: var(--main-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.content-section h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #34495E;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.heading-sub-color {
    color: var(--sub-color);
    margin-top: 50px;
    margin-bottom: 25px;
}

.heading-accent-color {
    color: var(--accent-color);
    margin-top: 50px;
    margin-bottom: 25px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 20px;
}

.body-text {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #374151;
}

.body-text-large-margin {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
    color: #374151;
}

.body-text-xlarge-margin {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #374151;
}

.body-text-with-top-margin {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 24px;
    margin-bottom: 20px;
    color: #374151;
}

.intro-text-large {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 32px;
    color: #1F2937;
    font-weight: 500;
}

.text-small {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 16px;
}

/* ===== リスト ===== */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin: 28px 0;
}

.styled-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.list-standard {
    list-style: disc;
    padding-left: 28px;
    margin: 24px 0;
}

.list-standard li {
    margin-bottom: 14px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.list-small {
    list-style: disc;
    padding-left: 24px;
    margin: 20px 0;
}

.list-small li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4B5563;
}

.list-tight {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.list-tight li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

/* ===== ハイライトボックス ===== */
.highlight-box {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-left: 5px solid var(--main-color);
    padding: 32px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    border-left: none;
}

.highlight-box h4 {
    color: var(--main-color);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 14px;
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 16px;
}

.highlight-box ul,
.highlight-box ol {
    margin: 20px 0;
    padding-left: 24px;
}

.highlight-box li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #374151;
}

.important-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border-left: 5px solid var(--accent-color);
    padding: 32px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.important-box h3,
.important-box h4 {
    color: var(--accent-color);
}

/* ===== マージンユーティリティ ===== */
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

/* ===== ステップ表示 ===== */
.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.step {
    display: flex;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--main-color);
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--sub-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 0;
    border-left: none;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 14px;
}

.step-content ul,
.step-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.step-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #374151;
}

/* ===== カード ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--main-color);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 0;
    border-left: none;
}

.card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #34495E;
    margin-top: 24px;
    margin-bottom: 14px;
}

.card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.card ul,
.card ol {
    margin: 16px 0;
    padding-left: 24px;
}

.card li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #374151;
}

/* カード内のアイコン */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* ===== アイコンカード ===== */
.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.icon-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--main-color);
}

.icon-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.icon-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.icon-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 16px 0;
    padding-left: 0;
    border-left: none;
}

.icon-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0;
}

/* ===== テーブル ===== */
.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.content-section th {
    background: linear-gradient(135deg, var(--main-color), var(--sub-color));
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05rem;
}

.content-section td {
    padding: 18px 20px;
    border-bottom: 1px solid #E5E7EB;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

.content-section tr:last-child td {
    border-bottom: none;
}

.content-section tbody tr:hover {
    background: #F9FAFB;
}

/* ===== ボタン ===== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--main-color), var(--sub-color));
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-secondary:hover {
    background: var(--main-color);
    color: white;
}

/* ===== 目次 ===== */
.table-of-contents {
    background: white;
    border: 2px solid var(--main-color);
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--main-color);
}

.toc-icon {
    font-size: 1.8rem;
}

.toc-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--main-color);
    border: none !important;
    padding: 0 !important;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 14px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #374151;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.toc-list li a:hover {
    background: linear-gradient(90deg, rgba(74, 144, 226, 0.08), transparent);
    border-left-color: var(--main-color);
    padding-left: 24px;
}

.toc-list li a::before {
    content: '📌';
    font-size: 1.2rem;
}

/* ===== CTA セクション ===== */
.cta-section {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--sub-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin: 80px 0 0 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    border: none;
}

.cta-section h2::after {
    display: none;
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.benefit-item span {
    font-size: 1.05rem;
    font-weight: 600;
}

.cta-section .btn {
    font-size: 1.15rem;
    padding: 18px 48px;
}

/* ===== フッター ===== */
footer {
    background: #1F2937;
    color: #D1D5DB;
    padding: 40px 0 20px;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== 懸念事項カード ===== */
.concern-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.concern-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.concern-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.concern-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.concern-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 0;
    margin-bottom: 14px;
}

.concern-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 0;
}

/* ===== カテゴリーカード ===== */
.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.category-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--main-color);
}

.category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 20px 0;
    padding-left: 0;
    border-left: none;
}

.category-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 16px;
}

.category-card ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 0 0;
}

.category-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

.category-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== 比較テーブル ===== */
.comparison-table {
    overflow-x: auto;
    margin: 48px 0;
}

.comparison-table table {
    width: 100%;
    min-width: 600px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    background: #F3F4F6;
    font-weight: 700;
    color: #1F2937;
}

/* ===== 統計情報 ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.stat {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--main-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-color);
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    font-size: 1.05rem;
    color: #6B7280;
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-item {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--main-color);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question::before {
    content: 'Q';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--main-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    padding-left: 44px;
}

/* ===== チェックリスト ===== */
.checklist {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.checklist li {
    position: relative;
    padding: 18px 18px 18px 60px;
    margin-bottom: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    transition: all 0.3s ease;
}

.checklist li:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--main-color), var(--sub-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== アクションアイテム ===== */
.action-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 48px 0;
}

.action-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--sub-color);
    transition: all 0.3s ease;
}

.action-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.action-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
}

.action-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 12px 0;
    padding-left: 0;
    border-left: none;
}

.action-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin: 0;
}

/* ===== アラートボックス ===== */
.alert {
    padding: 24px 28px;
    border-radius: 12px;
    margin: 32px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.alert-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.alert-info {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-left: 5px solid #3B82F6;
}

.alert-info .alert-icon {
    color: #3B82F6;
}

.alert-warning {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-left: 5px solid #F59E0B;
}

.alert-warning .alert-icon {
    color: #F59E0B;
}

.alert-success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-left: 5px solid #10B981;
}

.alert-success .alert-icon {
    color: #10B981;
}

.alert-danger {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-left: 5px solid #EF4444;
}

.alert-danger .alert-icon {
    color: #EF4444;
}

/* ===== タイムライン ===== */
.timeline {
    position: relative;
    padding: 40px 0;
    margin: 48px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--main-color), var(--sub-color));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 48px;
}

.timeline-marker {
    position: absolute;
    left: 16px;
    top: 0;
    width: 28px;
    height: 28px;
    background: white;
    border: 4px solid var(--main-color);
    border-radius: 50%;
}

.timeline-content {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--main-color);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 16px 0;
    padding-left: 0;
    border-left: none;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 12px;
}

/* ===== 問題カード ===== */
.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.problem-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #EF4444;
    transition: all 0.3s ease;
}

.problem-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #EF4444;
    margin: 0 0 14px 0;
    padding-left: 0;
    border-left: none;
}

.problem-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 0;
}

/* ===== NGカード ===== */
.ng-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.ng-card {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #DC2626;
    transition: all 0.3s ease;
}

.ng-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.ng-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
    color: #DC2626;
}

.ng-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #DC2626;
    margin: 0 0 14px 0;
    padding-left: 0;
    border-left: none;
}

.ng-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #991B1B;
    margin-bottom: 0;
}

/* ===== 動画セクション ===== */
.video-section {
    margin: 60px 0;
}

.video-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 48px;
    margin-bottom: 32px;
    padding-left: 18px;
    border-left: 5px solid var(--main-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #EF4444;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-duration {
    display: inline-block;
    background: var(--main-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.video-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    line-height: 1.5;
}

.video-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 12px;
}

.video-author {
    font-size: 0.9rem;
    color: #9CA3AF;
    font-style: italic;
}

/* ===== 外部リンクセクション ===== */
.external-links {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 48px 40px;
    border-radius: 12px;
    margin: 60px 0;
    border-left: 5px solid var(--main-color);
}

.external-links h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 28px;
    padding-left: 0;
    border-left: none;
}

.external-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 36px;
    margin-bottom: 20px;
}

.external-links ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.external-links li {
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
}

.external-links li::before {
    content: '🔗';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3rem;
}

.external-links a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.external-links a:hover {
    border-bottom-color: var(--main-color);
}

.external-links p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4B5563;
    margin: 8px 0 0 32px;
}

/* ===== アコーディオンセクション（モバイル用） ===== */
.accordion-section {
    margin: 0;
    border: none;
}

.accordion-section-header {
    width: 100%;
    color:#454545;
    border: none;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom:0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-section-header:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accordion-section-header h2 {
    margin: 0;
    padding: 0;
    border: none;
    color:#454545;
    font-size: inherit;
    line-height: 1.4;
}

.accordion-section-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-section.active .accordion-section-toggle {
    transform: rotate(180deg);
}

.accordion-section-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.desktop-only {
    display: block;
}

/* ===== モバイル対応（768px以下） ===== */
@media (max-width: 768px) {
    /* ヘッダー */
    header .container {
        padding: 0 16px;
    }
    
    .header-wrapper {
        padding: 10px 0;
    }
    
    .psite-title {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    #nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    #nav.open {
        right: 0;
    }
    
    #nav ul {
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
    }
    
    #nav li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
    }
    
    #nav a {
        padding: 16px;
        border-radius: 0;
    }
    
    /* オーバーレイ */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* ヒーロー */
    .pillar-hero {
        padding: 60px 0;
    }
    
    .pillar-hero .container,
    .pillar-hero-content {
        padding: 0 16px;
    }
    
    /* コンテンツ */
    .content-section {
        padding: 48px 0;
    }
    
    .content-section .container {
        padding: 0 16px;
    }
    
    /* カード・グリッド */
    .cards,
    .icon-cards,
    .category-cards,
    .concern-cards,
    .problem-cards,
    .ng-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* ステップ */
    .step {
        flex-direction: column;
        padding: 24px;
    }
    
    .step-number {
        align-self: flex-start;
    }
    
    /* テーブル */
    .content-section table {
        font-size: 0.9rem;
    }
    
    .content-section th,
    .content-section td {
        padding: 12px 14px;
    }
    
    /* タイムライン */
    .timeline::before {
        left: 14px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 0;
        width: 28px;
        height: 28px;
    }
    
    /* アコーディオン */
    .accordion-section-header {
    }
    
    .accordion-section-content {
        max-height: 0;
    }
    
    .accordion-section.active .accordion-section-content {
        max-height: 5000px;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* 外部リンク */
    .external-links {
        padding: 32px 24px;
    }
    
    /* アクションアイテム */
    .action-item {
        flex-direction: column;
        padding: 20px;
    }
    
    .action-icon {
        align-self: flex-start;
    }
    
    /* 統計 */
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* CTA */
    .cta-benefits {
        flex-direction: column;
        align-items: stretch;
    }
    
    .benefit-item {
        justify-content: center;
    }
    
    /* 目次 */
    .table-of-contents {
        padding: 24px 20px;
    }
    
    .toc-list li a {
        font-size: 0.95rem;
        padding: 12px 14px;
    }
}

/* ===== 小さいモバイル（480px以下） ===== */
@media (max-width: 480px) {
    .pillar-hero {
        padding: 40px 0;
    }
    
    .content-section {
        padding:0;
    }
    
    .card,
    .icon-card,
    .category-card,
    .concern-card,
    .problem-card,
    .ng-card {
        padding: 20px;
    }
    
    .step {
        padding: 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content,
    .faq-item {
        padding: 20px;
    }
    
    .action-item {
        padding: 18px;
    }
    
    .highlight-box,
    .important-box {
        padding: 24px;
    }
    
    .external-links {
        padding: 28px 20px;
    }
    
    .accordion-section-header {
        padding: 14px 16px;
    }
    
    .accordion-section-toggle {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
}

/* デスクトップ（769px以上） */
@media (min-width: 769px) {
    /* アコーディオンヘッダーを表示 */
    .accordion-section-header {
        display: flex !important;
        padding: 24px;
        cursor: pointer;
    }
    
    .accordion-section-header h2 {
        font-size: 1.8rem;
    }
    
    .accordion-section-toggle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    /* 初期状態は閉じる */
    .accordion-section-content {
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    /* 開いた状態 */
    .accordion-section-content.expanded {
        max-height: 10000px !important;
        overflow: visible !important;
    }
    
    /* desktop-onlyは非表示 */
    .desktop-only {
        display: none !important;
    }
}

/* ==========================================================================
   モバイル文字サイズ完全修正版（rem禁止・pxのみ）
   このCSSをnew-style.cssの最後に追加してください
   ========================================================================== */

@media (max-width: 768px) {
    /* ===== ヘッダー ===== */
    .site-title {
        font-size: 16px !important;
        line-height: 1.3;
    }
    
    .site-title a {
        font-size: 16px !important;
    }
    
    .psite-title {
        display: block;
        font-size: 13px !important;
    }
    
    .psite-title a {
        font-size: 13px !important;
    }
    
    /* ===== ヒーローセクション ===== */
    .pillar-hero {
        padding: 30px 0 !important;
    }
    
    .pillar-label {
        font-size: 16px !important;
        padding: 8px 16px !important;
        width: auto !important;
        height: auto !important;
        line-height: 1.4 !important;
    }
    
    .pillar-hero-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
        line-height: 1.4;
    }
    
    .pillar-hero-message {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        line-height: 1.5;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .pillar-hero-description {
        font-size: 12px !important;
        line-height: 1.6;
    }
    
    /* ===== イントロセクション ===== */
    .intro-text-large {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        line-height: 1.7;
    }
    
    /* ===== 全体の本文 ===== */
    .content-section p {
        font-size: 13px !important;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .body-text,
    .body-text-large-margin,
    .body-text-xlarge-margin,
    .body-text-with-top-margin {
        font-size: 13px !important;
        line-height: 1.7;
    }
    
    .text-small {
        font-size: 12px !important;
    }
    
    /* ===== 見出し ===== */
    .content-section h2 {
        font-size: 17px !important;
        margin-bottom:0;
        line-height: 1.4;
    }
    
    .content-section h3 {
        font-size: 15px !important;
        margin-top: 24px !important;
        margin-bottom: 16px !important;
        line-height: 1.4;
    }
    
    .content-section h4 {
        font-size: 14px !important;
        margin-bottom: 12px !important;
        line-height: 1.4;
    }
    
    .heading-main-large,
    .heading-main-xlarge {
        font-size: 15px !important;
    }
    
    .heading-main-color,
    .heading-sub-color,
    .heading-accent-color {
        font-size: 15px !important;
    }
    
    /* ===== カード ===== */
    .concern-card h4 {
        font-size: 14px !important;
        margin-bottom: 8px;
    }
    
    .concern-card p {
        font-size: 12px !important;
        line-height: 1.6;
    }
    
    .card h3 {
        font-size: 15px !important;
        margin-bottom: 12px;
    }
    
    .card h4 {
        font-size: 14px !important;
    }
    
    .card p {
        font-size: 12px !important;
        line-height: 1.6;
    }
    
    .card .mb-15,
    .card .text-small {
        font-size: 12px !important;
    }
    
    .category-card h3,
    .problem-card h3,
    .ng-card h3 {
        font-size: 15px !important;
    }
    
    /* ===== リスト ===== */
    .styled-list li,
    .list-standard li,
    .list-small li,
    .list-tight li {
        font-size: 13px !important;
        line-height: 1.7;
    }
    
    /* ===== ハイライトボックス ===== */
    .highlight-box h3 {
        font-size: 15px !important;
        margin-top: 0;
        margin-bottom: 12px;
    }
    
    .highlight-box h4 {
        font-size: 14px !important;
        margin-bottom: 10px;
    }
    
    .highlight-box p {
        font-size: 13px !important;
        line-height: 1.7;
    }
    
    .highlight-box li {
        font-size: 13px !important;
    }
    
    /* ===== ステップ表示 ===== */
    .step-number {
        font-size: 16px !important;
        min-width: 50px;
        height: 50px;
        line-height: 50px;
    }
    
    .step h3,
    .step-content h3 {
        font-size: 15px !important;
        margin-bottom: 10px;
    }
    
    .step p,
    .step-content p,
    .step li {
        font-size: 12px !important;
        line-height: 1.6;
    }
    
    /* ===== 目次 ===== */
    .toc-header h2 {
        font-size: 15px !important;
        margin: 0;
    }
    
    .toc-list li a {
        font-size: 13px !important;
        padding: 10px 12px;
    }
    
    /* ===== アコーディオンヘッダー ===== */
    .accordion-section-header {
        padding: 14px 16px !important;
    }
    
    .accordion-section-header h2 {
        font-size: 14px !important;
        line-height: 1.4;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    
    .accordion-section-toggle {
        width: 26px !important;
        height: 26px !important;
        font-size: 14px !important;
    }
    
    /* ===== 動画セクション ===== */
    .video-section h3 {
        font-size: 15px !important;
    }
    
    .video-section h4 {
        font-size: 14px !important;
    }
    
    .video-description {
        font-size: 12px !important;
    }
    
    .video-duration,
    .video-author {
        font-size: 11px !important;
    }
    
    /* ===== その他 ===== */
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
    
    .trust-badge {
        font-size: 12px !important;
    }
    
    .action-item h3 {
        font-size: 15px !important;
    }
    
    .action-item p {
        font-size: 12px !important;
    }
    
    /* CTAセクション */
    .cta-section h2 {
        font-size: 18px !important;
    }
    
    .cta-description {
        font-size: 13px !important;
    }
    
    .benefit-item span {
        font-size: 13px !important;
    }
}

/* ===== 480px以下でさらに縮小 ===== */
@media (max-width: 480px) {
    .site-title {
        font-size: 15px !important;
    }
    
    .site-title a {
        font-size: 15px !important;
    }
    
    .psite-title {
        font-size: 12px !important;
    }
    
    .psite-title a {
        font-size: 12px !important;
    }
    
    .pillar-hero-title {
        font-size: 17px !important;
    }
    
    .pillar-hero-message {
        font-size: 13px !important;
    }
    
    .pillar-hero-description {
        font-size: 11px !important;
    }
    
    .intro-text-large {
        font-size: 13px !important;
    }
    
    .content-section p {
        font-size: 12px !important;
    }
    
    .content-section h2 {
        font-size: 16px !important;
    }
    
    .content-section h3 {
        font-size: 14px !important;
    }
    
    .content-section h4 {
        font-size: 13px !important;
    }
    
    .accordion-section-header h2 {
        font-size: 13px !important;
    }
    
    .card p,
    .concern-card p {
        font-size: 11px !important;
    }
    
    .step p,
    .step-content p {
        font-size: 11px !important;
    }
}


/* 緊急修正：PCでアコーディオンを閉じた状態にする */
.accordion-section-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease !important;
}

.accordion-section-content.expanded {
    max-height: 10000px !important;
    overflow: visible !important;
    transition: max-height 0.6s ease !important;
}

.accordion-section-header {
    display: flex !important;
    cursor: pointer !important;
}

.desktop-only {
    display: none !important;
}

@media (min-width: 769px) {
    .accordion-section-content {
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    .accordion-section-content.expanded {
        max-height: 10000px !important;
        overflow: visible !important;
    }
}


.sectiontable{
    padding: 5%;
    background-color: #dedede;
}
p.sectiontabletop{
background-color: #25b6b9;
    padding-left: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
}


