@charset "UTF-8";

:root {
    --mws-blue: #2563eb;
    --mws-blue-dark: #123c9c;
    --mws-pink: #f14970;
    --mws-gold: #f4b840;
    --mws-ink: #07152f;
    --mws-text: #26364f;
    --mws-muted: #64748b;
    --mws-line: #dbe7f6;
    --mws-soft: #f6f9ff;
    --mws-white: #ffffff;
}

.mws-page {
    background: #fff;
    color: var(--mws-text);
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
    overflow: hidden;
}

.mws-page * {
    box-sizing: border-box;
}

.mws-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.mws-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--mws-blue);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mws-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mws-pink), var(--mws-gold));
}

.mws-hero {
    position: relative;
    padding: clamp(56px, 7vw, 92px) 0 72px;
    background:
        linear-gradient(120deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.9) 42%, rgba(219,234,254,0.72) 100%),
        radial-gradient(circle at 88% 18%, rgba(241,73,112,0.22), transparent 34%),
        radial-gradient(circle at 10% 78%, rgba(37,99,235,0.18), transparent 30%);
}

.mws-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: center;
}

.mws-hero-copy h1 {
    margin: 0 0 22px;
    color: var(--mws-ink);
    font-size: clamp(2.25rem, 5.4vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.mws-lead {
    margin: 0 0 28px;
    color: var(--mws-text);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    line-height: 2;
}

.mws-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.mws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.mws-btn:hover {
    transform: translateY(-3px);
}

.mws-btn-primary {
    background: linear-gradient(135deg, var(--mws-blue), #38bdf8);
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.mws-btn-secondary {
    border: 2px solid var(--mws-line);
    background: rgba(255,255,255,0.72);
    color: var(--mws-ink);
}

.mws-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mws-hero-facts div {
    padding: 14px;
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.74);
}

.mws-hero-facts span {
    display: block;
    color: var(--mws-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.mws-hero-facts strong {
    display: block;
    color: var(--mws-ink);
    font-size: 1.04rem;
}

.mws-hero-visual {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(37,99,235,0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 30px 70px rgba(37,99,235,0.2);
    aspect-ratio: 16 / 9;
}

.mws-hero-visual img,
.mws-comic-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mws-section {
    padding: clamp(70px, 8vw, 110px) 0;
}

.mws-section-soft {
    background:
        linear-gradient(180deg, #fff 0%, var(--mws-soft) 100%);
}

.mws-section-head {
    max-width: 790px;
    margin: 0 auto 38px;
    text-align: center;
}

.mws-section-head h2 {
    margin: 0 0 16px;
    color: var(--mws-ink);
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0;
}

.mws-section-head p {
    margin: 0;
    color: var(--mws-muted);
}

.mws-comic-showcase {
    overflow: hidden;
    border: 1px solid var(--mws-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(15,23,42,0.1);
    aspect-ratio: 16 / 9;
}

.mws-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mws-feature-card,
.mws-price-card,
.mws-notice-box,
.mws-form-card {
    border: 1px solid var(--mws-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15,23,42,0.07);
}

.mws-feature-card {
    padding: 26px;
}

.mws-feature-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mws-blue), var(--mws-pink));
    color: #fff;
    font-weight: 900;
}

.mws-feature-card h3 {
    margin: 0 0 10px;
    color: var(--mws-ink);
    font-size: 1.16rem;
    font-weight: 900;
}

.mws-feature-card p {
    margin: 0;
    color: var(--mws-muted);
    font-size: 0.94rem;
}

.mws-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.mws-price-card {
    position: relative;
    padding: 30px;
}

.mws-featured-price {
    border-color: rgba(241,73,112,0.4);
    box-shadow: 0 26px 60px rgba(241,73,112,0.15);
}

.mws-plan-label {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--mws-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mws-price-card h3 {
    margin: 0 0 12px;
    color: var(--mws-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.mws-price {
    margin: 0 0 14px;
    color: var(--mws-pink);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
}

.mws-price span {
    font-size: 1rem;
}

.mws-price-card p:not(.mws-plan-label):not(.mws-price) {
    color: var(--mws-muted);
}

.mws-price-card ul,
.mws-notice-box ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.mws-price-card li,
.mws-notice-box li {
    position: relative;
    padding-left: 26px;
    color: var(--mws-text);
}

.mws-price-card li::before,
.mws-notice-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mws-blue), var(--mws-pink));
}

.mws-option-section {
    background: var(--mws-ink);
    color: #fff;
}

.mws-option-section .mws-section-head h2,
.mws-option-section .mws-section-head p {
    color: #fff;
}

.mws-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.mws-option-grid div {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
}

.mws-option-grid strong,
.mws-option-grid span {
    display: block;
}

.mws-option-grid strong {
    margin-bottom: 8px;
    color: #fff;
    font-weight: 900;
}

.mws-option-grid span {
    color: #bfdbfe;
    font-weight: 900;
}

.mws-note {
    margin: 26px 0 0;
    color: rgba(255,255,255,0.76);
    font-size: 0.92rem;
}

.mws-flow-section {
    background: #fff;
}

.mws-flow-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.mws-flow-list li {
    padding: 24px;
    border: 1px solid var(--mws-line);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}

.mws-flow-list span {
    display: block;
    margin-bottom: 12px;
    color: var(--mws-pink);
    font-weight: 900;
}

.mws-flow-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--mws-ink);
    font-size: 1.08rem;
}

.mws-flow-list p {
    margin: 0;
    color: var(--mws-muted);
    font-size: 0.92rem;
}

.mws-notice {
    background: var(--mws-soft);
}

.mws-notice-box {
    padding: clamp(28px, 5vw, 46px);
}

.mws-notice-box h2 {
    margin: 0 0 10px;
    color: var(--mws-ink);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 900;
}

.mws-contact {
    background:
        linear-gradient(135deg, rgba(37,99,235,0.08), rgba(241,73,112,0.08)),
        #fff;
}

.mws-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1.25fr);
    gap: clamp(28px, 5vw, 54px);
    align-items: start;
}

.mws-contact h2 {
    margin: 0 0 16px;
    color: var(--mws-ink);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.25;
}

.mws-contact p {
    color: var(--mws-muted);
}

.mws-form-card {
    padding: clamp(20px, 4vw, 34px);
}

@media (max-width: 1040px) {
    .mws-hero-grid,
    .mws-contact-grid {
        grid-template-columns: 1fr;
    }

    .mws-feature-grid,
    .mws-option-grid,
    .mws-flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .mws-container {
        width: min(100% - 28px, 1180px);
    }

    .mws-hero {
        padding-top: 42px;
    }

    .mws-actions,
    .mws-hero-facts {
        grid-template-columns: 1fr;
    }

    .mws-actions {
        flex-direction: column;
    }

    .mws-btn {
        width: 100%;
    }

    .mws-feature-grid,
    .mws-price-grid,
    .mws-option-grid,
    .mws-flow-list {
        grid-template-columns: 1fr;
    }
}
