
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Helvetica Neue", Arial, sans-serif; line-height: 1.6; color: #333; background: #f0f2f5; }
.container { max-width: 960px; margin: 0 auto; }
ul { list-style: none; }
a { text-decoration: none; }

/* 見出し */
h2, .section-title { font-size: 2rem; font-weight: bold; text-align: center; margin-bottom: 3rem; color: #333; }

/* ランキングカード */
.ranking-list { display: flex; flex-direction: column; gap: 40px; }
.ranking-card { background: #fff; border: 1px solid #ddd; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); overflow: hidden; }

/* ヘッダー */
.ranking-card__head { display: flex; align-items: center; background: #f9f9f9; padding: 15px 20px; border-bottom: 1px solid #eee; position: relative; }
.ranking-card__head-rank { 
    font-weight: bold; font-size: 1rem; color: #fff; padding: 5px 10px; border-radius: 4px; margin-right: 15px; 
}
.rank-1 { background: linear-gradient(45deg, #e6b980, #eacda3); color: #856404; }
.rank-2 { background: linear-gradient(45deg, #c0c0c0, #e0e0e0); color: #555; }
.rank-3 { background: linear-gradient(45deg, #cd7f32, #e8c3a9); color: #5c3a1e; }
.rank-other { background: #666; }

.ranking-card__head-hgroup { flex: 1; }
.ranking-card__head-title { font-size: 1.4rem; font-weight: bold; margin: 0; color: #333; }
.ranking-card__head-stars { font-size: 0.9rem; color: #666; margin-top: 5px; }
.ranking-card__head-stars span { color: #fbbf24; font-size: 1.1rem; margin-right: 5px; }

/* ボディ */
.ranking-card__body { padding: 20px; }

/* ボディヘッド（画像とポイント） */
.ranking-card__bodyhead { display: flex; gap: 20px; margin-bottom: 20px; }
.ranking-card__bodyhead-img { width: 40%; flex-shrink: 0; }
.banner-img { width: 100%; border-radius: 6px; display: block; }
.no-image { width: 100%; height: 150px; background: #eee; display: flex; align-items: center; justify-content: center; color: #999; font-weight: bold; border-radius: 6px; }
.ranking-card__bodyhead-content { flex: 1; }

/* おすすめポイント */
.ranking-card__point { background: #fff9e6; border: 2px solid #ffeeba; border-radius: 8px; padding: 15px; }
.ranking-card__point-title { color: #d35400; font-weight: bold; font-size: 1rem; margin-bottom: 10px; border-bottom: 1px dashed #e6dcb5; padding-bottom: 5px; }
.ranking-card__point-lists li { margin-bottom: 5px; font-size: 0.9rem; font-weight: bold; color: #444; }

/* スペックテーブル */
.rateTable { width: 100%; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.rateTable__row { display: grid; grid-template-columns: 40% 60%; border-bottom: 1px solid #ddd; min-height: 50px; align-items: center; }
.rateTable__row:last-child { border-bottom: none; }
.rateTable__label { background: #f5f5f5; color: #666; font-size: 0.85rem; padding: 12px 15px; text-align: left; font-weight: normal; border-right: 1px solid #ddd; }
.rateTable__value { font-weight: bold; color: #333; font-size: 0.95rem; padding: 12px 15px; text-align: right; }

/* 口コミ */
.ranking-card__voiceTrigger { display: block; width: 100%; padding: 10px; background: #f0f0f0; border: none; border-radius: 4px; color: #555; font-weight: bold; cursor: pointer; text-align: center; margin-bottom: 10px; transition: background 0.2s; }
.ranking-card__voiceTrigger:hover { background: #e0e0e0; }
.ranking-card__voices { display: none; background: #f9f9f9; padding: 15px; border-radius: 8px; margin-bottom: 20px; }
.ranking-card__voices.open { display: block; animation: fadeIn 0.3s ease; }
.voice-item { display: flex; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.voice-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.voice-icon { width: 40px; height: 40px; background: #ddd; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.voice-item__title { font-weight: bold; font-size: 0.95rem; color: #d35400; margin-bottom: 5px; }
.voice-item__text { font-size: 0.9rem; line-height: 1.5; color: #555; }

/* FAQ アコーディオン */
.faq-accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { margin-bottom: 1rem; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; background: #fff; }
.accordion-button { 
    width: 100%; 
    padding: 1.25rem 1.5rem; 
    background: #f9fafb; 
    border: none; 
    text-align: left; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 1rem; 
    font-weight: 600; 
    color: #1f2937;
    transition: background 0.2s;
}
.accordion-button:hover { background: #f3f4f6; }
.accordion-icon { 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #3b82f6; 
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.accordion-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease; 
    background: #fff;
}
.accordion-content.active { border-top: 1px solid #e5e7eb; }
.accordion-content p { 
    padding: 1.25rem 1.5rem; 
    margin: 0; 
    color: #000; 
    line-height: 1.6;
    text-align: left;
}

/* ボタン */
.ranking-card__btn { display: block; width: 100%; max-width: 400px; margin: 0 auto; background: linear-gradient(to bottom, #ff7e5f, #feb47b); color: #fff; font-weight: bold; font-size: 1.1rem; padding: 15px; border-radius: 50px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.2s; }
.ranking-card__btn:hover { transform: translateY(2px); opacity: 0.9; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* スマホ対応 */
@media (max-width: 768px) {
    .ranking-card__bodyhead { flex-direction: column; }
    .ranking-card__bodyhead-img { width: 100%; }
    .rateTable__row { min-height: 45px; }
    .rateTable__label { font-size: 0.8rem; padding: 10px 12px; }
    .rateTable__value { font-size: 0.9rem; padding: 10px 12px; }
}

/* その他の既存CSS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; text-align: center; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
#lp-header { width: 100%; box-sizing: border-box; }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; position: relative; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-site-name { font-size: 1.2rem; font-weight: 700; white-space: nowrap; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: inherit; text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: #333; border-radius: 2px; transition: 0.3s; }
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.btn { display: inline-block; padding: 1rem 2rem; text-decoration: none; border-radius: 8px; font-weight: 600; margin-top: 1rem; transition: opacity 0.3s; text-align: center; }
.btn:hover { opacity: 0.9; }
.merits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.merit-item { padding: 2rem; background: #f9fafb; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.q { font-weight: 600; margin-bottom: 0.5rem; color: #1f2937; }
.a { color: #6b7280; }
.review-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.review-item { padding: 2rem; background: #f9fafb; border-radius: 12px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.profile-img { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 1rem; object-fit: cover; }
.stars { color: #fbbf24; font-size: 1.2rem; margin-bottom: 1rem; }
.name { font-weight: 600; margin-top: 1rem; color: #6b7280; }
.flow-list { display: grid; gap: 3rem; margin-top: 2rem; }
.flow-item { text-align: center; }
.step-num { background: #3b82f6; color: white; padding: 0.5rem 1.5rem; border-radius: 50px; display: inline-block; margin-bottom: 1rem; font-weight: 600; }
.step-img { max-width: 200px; margin: 1rem auto; display: block; }
.points { list-style: none; padding: 0; margin: 1.5rem 0; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
.points li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.points li:before { content: "✓"; position: absolute; left: 0; color: #3b82f6; font-weight: bold; }
