:root {
    --primary: #007aff; /* 信頼のブルー */
    --accent: #ff4b2b;
    --text-main: #2c3e50;
    --text-sub: #5a6c7d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: "Inter", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

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

/* ヒーローエリア */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(circle at top right, #eef2f7, var(--white));
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: #e1f0ff;
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
}

h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.sub-copy { font-size: 1.5rem; color: var(--text-sub); margin-bottom: 30px; }
.lead { font-size: 1.1rem; max-width: 700px; margin: 0 auto 40px; }

/* ボタン */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 15px rgba(0,122,255,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,122,255,0.4); }
.btn-secondary { border: 2px solid #ddd; color: var(--text-main); margin-left: 15px; }

/* 各セクション */
section { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 60px; }

/* 共感ゾーン */
.problem { background-color: var(--bg-light); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; }
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }

/* デバイス画像セクション */
.device-showcase { text-align: center; margin-bottom: 60px; }
.main-device-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.spec-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.spec-item strong { display: block; color: var(--primary); font-size: 1.2rem; margin-bottom: 5px; }

/* コンセプト */
.highlight-box {
    background: var(--text-main);
    color: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.highlight-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }

/* 未来・3D */
.future { text-align: center; background: linear-gradient(to bottom, var(--white), var(--bg-light)); }

/* 最終CTA */
.final-cta { text-align: center; padding: 120px 0; }
.btn-large { font-size: 1.2rem; }

footer { background: #eee; padding: 40px 0; text-align: center; color: var(--text-sub); }

/* スマホ対応 */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .btn-secondary { margin-left: 0; margin-top: 15px; width: 80%; }
    .spec-grid { grid-template-columns: 1fr; }
}

/* デバイス紹介セクションの調整 */
.device {
    background-color: var(--white); /* 画像に合わせて背景を白に */
}

.device-main-visual {
    text-align: center;
    margin-bottom: 50px;
}

.spec-infographic {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* 軽い影をつけて、背景の白と馴染ませつつ存在感を出す */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.spec-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.highlight-item h4 {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    margin-bottom: 15px;
}