/* ============================================================
   基本設定・変数
   ============================================================ */
:root {
    --main-color: #f39c12;
    --accent-color: #e74c3c;
    --bg-color: #f4f7f6;
    --text-color: #2c3e50;
    --header-height: 80px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding-top: var(--header-height);
    line-height: 1.8;
}

/* --- ヘッダー設定 --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--main-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover { color: var(--main-color); }

.nav-highlight {
    background: var(--main-color);
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 5px;
}

/* ============================================================
   インデックス（トップページ）用
   ============================================================ */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
}

.btn-main {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.counter-section {
    max-width: 1000px;
    margin: -60px auto 60px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.counter-item .value { font-size: 1.8rem; font-weight: 900; color: var(--accent-color); }
.counter-item .value.earn { color: #2ecc71; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.profile-area {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 80px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ============================================================
   モッピーLP専用スタイル (反映されない場合はここをチェック)
   ============================================================ */
.lp-container { background: #fff; }

.lp-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1570710891163-6d3b5c47248b?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.lp-hero .badge {
    background: var(--main-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.lp-hero h1 { font-size: 2.8rem; margin: 20px 0; line-height: 1.3; }
.lp-hero .highlight { color: var(--main-color); }

.mile-comparison {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.comp-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    width: 280px;
    text-align: center;
    border: 2px solid #eee;
}

.comp-item .value { font-size: 2rem; font-weight: 900; color: var(--accent-color); display: block; }

.catch-phrase {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main-color);
    text-align: center;
    margin: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item { text-align: center; padding: 20px; }
.feature-item i { font-size: 2.5rem; color: var(--main-color); margin-bottom: 15px; }

.cta-section {
    background: #fffcf0;
    padding: 80px 20px;
    border-radius: 30px;
    text-align: center;
    border: 3px dashed var(--main-color);
    margin-bottom: 50px;
}

.cta-box h2 { font-size: 2.2rem; margin-bottom: 20px; }
.banner-wrapper { margin: 30px 0; }

/* フッター */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}