/* ================================================
   特集記事 共通CSS
   /assets/css/special-article.css
   ================================================ */

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: #f1f5f9;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
}

.glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 記事本文のスタイル */
.article-body p {
    margin-bottom: 1.5em;
    line-height: 1.8;
    color: #334155;
    font-size: 1rem;
}
.article-body strong {
    background: linear-gradient(transparent 70%, #ffedd5 70%);
    padding: 0 2px;
    font-weight: 700;
    color: #1a202c;
}
.article-body mark {
    background: linear-gradient(transparent 60%, #E0F2FE 60%);
    color: inherit;
    padding: 0 2px;
    font-weight: 700;
}

/* 見出しスタイル */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e4a6b;
    margin-top: 2rem;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 1rem;
}
.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 28px;
    background-color: #1BACE8;
    border-radius: 4px;
}

/* リストスタイル */
.feature-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #475569;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231BACE8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* スクロール調整 */
html {
    scroll-padding-top: 100px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.25rem;
    }
}
