.elementor-5750 .elementor-element.elementor-element-0530399{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-f6ffbf3 *//* Google Fontsから日本語フォントを読み込む場合 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/* --- 全体のスタイル --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.winter-86-article {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* --- ヘッダーと見出し --- */
.article-header h1 {
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 0.5em;
    text-align: center;
}

.article-lead {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 2em;
}

h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #34495e;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #5a7a99;
    margin-top: 2em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
}

.section-icon {
    font-size: 1.2em;
    margin-right: 0.5em;
}

h3 {
    font-size: 1.4em;
    color: #34495e;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    padding-left: 0.8em;
    border-left: 5px solid #5a7a99;
}

strong {
    color: #d35400;
    font-weight: 700;
}

/* --- 画像 --- */
.main-visual {
    margin: 2em 0;
}

.main-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-visual figcaption {
    font-size: 0.9em;
    color: #777;
    text-align: center;
    margin-top: 0.8em;
}

/* --- テーブル --- */
.table-container {
    overflow-x: auto; /* スマホで表がはみ出た場合にスクロールさせる */
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
th, td {
    padding: 1em;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
th {
    background-color: #5a7a99;
    color: white;
    font-weight: 700;
}
td {
    background-color: #fdfdfd;
}
.check-mark { color: #27ae60; font-weight: bold; margin-right: 0.5em; }
.cross-mark { color: #c0392b; font-weight: bold; margin-right: 0.5em; }


/* --- タイヤ紹介カード --- */
.tire-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    margin-top: 1.5em;
}
.tire-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.tire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}
.tire-card-header {
    background-color: #f4f7f9;
    padding: 1em 1.5em;
    border-bottom: 1px solid #e0e0e0;
}
.tire-brand {
    font-size: 0.9em;
    color: #555;
    display: block;
}
.tire-name {
    margin: 0;
    font-size: 1.3em;
    color: #2c3e50;
}
.tire-card-body {
    padding: 1.5em;
}
.tire-catchcopy {
    font-weight: 700;
    color: #3498db;
    font-size: 1.1em;
    margin-top: 0;
}
.tire-description {
    font-size: 0.95em;
    line-height: 1.7;
}

/* --- 運転のコツ リスト --- */
.tips-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5em;
}
.tips-list li {
    display: flex;
    align-items: flex-start;
    background-color: #fdfdfd;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 1em;
}
.tip-number {
    font-size: 2em;
    font-weight: 700;
    color: #5a7a99;
    margin-right: 1em;
    line-height: 1;
}
.tip-content h4 {
    margin: 0 0 0.5em 0;
    border-left: none;
    padding-left: 0;
    font-size: 1.2em;
}
.tip-content p {
    margin: 0;
    font-size: 0.95em;
}

/* --- フッター --- */
.article-footer {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}
.article-footer h3 {
    border: none;
    padding: 0;
}

/* --- レスポンシブ対応 (スマホ用) --- */
@media (max-width: 768px) {
    .winter-86-article {
        /* 変更点: 左右の余白を減らして幅を広く見せる */
        margin: 0; /* 左右の余白をなくし、画面幅いっぱいに */
        padding: 2em 1em; /* 上下の余白は維持しつつ、左右の余白を調整 */
        border-radius: 0; /* スマホ表示では角丸をなくし、より広く見せる */
        box-shadow: none; /* スマホでは影をなくしてスッキリさせる */
    }
    .article-header h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.2em;
    }
    .tip-number {
        font-size: 1.5em;
        margin-right: 0.8em;
    }
}/* End custom CSS */