@charset "UTF-8";

:root {
    --main-blue: #00558c;
    --sub-blue: #46b8d2;
    --accent-red: #d61820;
    --light-bg: #f0f7fb;
    --char-l-blue: #a5e6ff;
    --char-l-green: #b3ffb3;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    background-color: var(--light-bg);
    line-height: 1.6;
}

.lp-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.font-mincho {
    font-family: 'Shippori Mincho', serif;
}

/* ヒーローセクション */
.hero-section {
    background-color: white;
    text-align: center;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.rogo-img {
    width: 60%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 1em auto;
}

.hero-content {
    background-color: var(--main-blue);
    color: white;
    padding: 20px;
}

.hero-tag {
    background: white;
    color: var(--main-blue);
    display: inline-block;
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.3;
}

.c-p {
    color: #ff4d4d;
}

.c-int {
    color: #ffffff;
}

.c-ku {
    color: var(--char-l-blue);
}

.c-ra {
    color: var(--char-l-green);
}

.c-default {
    color: #ffffff;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* セクション共通 */
.section-campaign {
    padding: 30px 15px;
    text-align: center;
    background: white;
}

.section-title {
    font-weight: bold;
    color: var(--main-blue);
    border-bottom: 2px solid var(--sub-blue);
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 1.4rem;
}

.welcome-box {
    border: 2px dashed var(--sub-blue);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    background: #fffdf0;
    position: relative;
}

.welcome-box::before {
    content: "✨";
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.5rem;
}

.welcome-box::after {
    content: "✨";
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.5rem;
}

.welcome-points {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-red);
    display: block;
    line-height: 1;
    margin: 5px 0;
}

/* サポート情報 */
.support-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--sub-blue);
    margin-bottom: 25px;
    text-align: left;
}

.support-tag {
    background: var(--sub-blue);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.step-badge {
    background: var(--main-blue);
    color: white;
    padding: 1px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

/* メリットリスト */
.merit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    text-align: left;
}

.merit-icon {
    background: var(--main-blue);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: bold;
}

/* 移行・比較 */
.migration-box {
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    margin-top: 30px;
}

.compare-table {
    width: 100%;
    font-size: 0.8rem;
    background: white;
    border-collapse: collapse;
    margin-top: 10px;
}

.compare-table th,
.compare-table td {
    border: 1px solid #ddd;
    padding: 8px 5px;
    text-align: center;
}

.compare-table th {
    background: #f4f4f4;
    color: var(--main-blue);
}

.good {
    color: var(--accent-red);
    font-weight: bold;
    background-color: #fff9f9;
}

/* 固定CTA */
.cta-area {
    padding: 12px 15px;
    text-align: center;
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #eee;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.btn-register-main {
    background: var(--accent-red);
    color: white !important;
    text-decoration: none;
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
}