:root {
    --page-bg: #FFF8FB;
    --surface: #FFFFFF;
    --surface-pink: #FFF0F6;
    --surface-purple: #F7F3FF;
    --surface-muted: #F8F4F6;
    --title: #32262D;
    --text: #51444C;
    --muted: #7C6D76;
    --soft: #A09199;
    --pink: #FF5D9E;
    --berry: #D94C83;
    --coral: #FF8EAC;
    --purple: #8C76E8;
    --deep-purple: #6753B5;
    --border: rgba(255, 93, 158, 0.15);
    --shadow: 0 14px 36px rgba(76, 48, 66, 0.08);
    --shadow-strong: 0 18px 46px rgba(217, 76, 131, 0.15);
    --gradient: linear-gradient(135deg, #FF8EAC 0%, #FF5D9E 52%, #8C76E8 100%);
    --footer: #30242B;
    --footer-text: #FFEAF2;
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 28px;
    --container: 1200px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 142, 172, 0.13), transparent 28rem),
        radial-gradient(circle at 90% 18%, rgba(140, 118, 232, 0.10), transparent 30rem),
        var(--page-bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
body.channels-open {
    overflow: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea,
select {
    font: inherit;
}
button {
    color: inherit;
}
a,
button {
    -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(103, 83, 181, 0.38);
    outline-offset: 3px;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--footer);
    color: white;
}
.skip-link:focus {
    top: 12px;
}
.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}
.notice-bar {
    position: relative;
    z-index: 42;
    background: #fff;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
}
.notice-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.notice-inner p {
    margin: 0;
}
.notice-links {
    display: flex;
    gap: 18px;
}
.notice-links a:hover {
    color: var(--berry);
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 248, 251, 0.94);
    border-bottom: 1px solid rgba(255, 93, 158, 0.11);
    backdrop-filter: blur(16px);
}
.nav-shell {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
}
.brand {
    display: inline-flex;
    align-items: center;
    min-width: 150px;
}
.brand img,
.footer-logo img {
    width: 168px;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}
.brand-text,
.footer-logo span {
    color: var(--title);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.04em;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}
.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.is-active {
    color: var(--berry);
    background: var(--surface-pink);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
    transform: translateY(-2px);
}
.button-primary {
    color: white;
    background: var(--gradient);
    box-shadow: 0 10px 24px rgba(217, 76, 131, 0.22);
}
.button-soft {
    color: var(--berry);
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(76, 48, 66, 0.05);
}
.mobile-channel-trigger,
.mobile-try {
    display: none;
}
main {
    display: block;
}
.section {
    padding: 82px 0;
}
.section-tight {
    padding: 54px 0;
}
.section-soft {
    background: linear-gradient(180deg, rgba(255, 240, 246, 0.76), rgba(247, 243, 255, 0.66));
    border-block: 1px solid rgba(255, 93, 158, 0.08);
}
.section-purple {
    background: var(--surface-purple);
}
.eyebrow {
    margin: 0 0 8px;
    color: var(--berry);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}
.section-heading h2,
.inner-hero h1,
.hero-copy h1 {
    margin: 0;
    color: var(--title);
    line-height: 1.16;
    letter-spacing: -0.045em;
}
.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
}
.section-heading p {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 17px;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: var(--berry);
    font-weight: 800;
}
.text-link::after {
    content: "→";
    transition: transform .2s ease;
}
.text-link:hover::after {
    transform: translateX(4px);
}
.hero {
    padding: 72px 0 62px;
}
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, .78fr) minmax(220px, .6fr);
    gap: 28px;
    align-items: stretch;
}
.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 0;
}
.hero-copy h1 {
    max-width: 650px;
    font-size: clamp(48px, 7vw, 84px);
}
.hero-copy .brand-line {
    display: block;
    margin-bottom: 14px;
    color: var(--berry);
    font-size: clamp(19px, 2.5vw, 28px);
    font-weight: 850;
    letter-spacing: 0;
}
.hero-copy > p {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(255,255,255,.9), transparent 20%),
        linear-gradient(160deg, #FFE1EC, #F7EFFF 58%, #E7E0FF);
    box-shadow: var(--shadow-strong);
}
.hero-visual::before,
.hero-visual::after,
.css-visual::before,
.css-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.hero-visual::before {
    width: 250px;
    height: 420px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%) rotate(-4deg);
    border: 11px solid #382D35;
    border-radius: 42px;
    background:
        linear-gradient(180deg, transparent 0 20%, rgba(255,255,255,.72) 20% 78%, transparent 78%),
        linear-gradient(145deg, #FFB7CF, #8C76E8);
    box-shadow: 0 26px 50px rgba(79, 54, 69, .22);
}
.hero-visual::after {
    width: 70px;
    height: 10px;
    left: 50%;
    top: calc(52% - 186px);
    transform: translateX(-50%) rotate(-4deg);
    border-radius: 999px;
    background: #382D35;
}
.hero-visual.has-image::before,
.hero-visual.has-image::after {
    display: none;
}
.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-side {
    display: grid;
    gap: 20px;
}
.hero-note {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.88);
    box-shadow: var(--shadow);
}
.hero-note::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -48px;
    bottom: -54px;
    border-radius: 50%;
    background: rgba(255, 93, 158, .12);
    pointer-events: none;
}
.hero-note:nth-child(2)::after {
    background: rgba(140, 118, 232, .12);
}
.hero-note .note-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--surface-pink);
    color: var(--berry);
    font-weight: 900;
}
.hero-note h2 {
    margin: 0;
    color: var(--title);
    font-size: 24px;
    line-height: 1.3;
}
.hero-note p {
    margin: 12px 0 0;
    color: var(--muted);
}
.topic-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}
.topic-chip {
    scroll-snap-align: start;
    min-height: 154px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: white;
    box-shadow: 0 10px 25px rgba(76, 48, 66, .05);
}
.topic-chip h3 {
    margin: 0;
    color: var(--title);
    font-size: 19px;
}
.topic-chip p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}
.magazine-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    gap: 20px;
}
.story-card {
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.story-card.featured {
    grid-row: span 2;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(0deg, rgba(48,36,43,.82), rgba(48,36,43,.08)),
        linear-gradient(145deg, #FFB6CD, #8C76E8);
    color: white;
}
.story-card.featured.has-image {
    background-size: cover;
    background-position: center;
}
.story-card.featured h3,
.story-card.featured p,
.story-card.featured .text-link {
    color: white;
}
.story-card h3 {
    margin: 0;
    color: var(--title);
    font-size: 23px;
    line-height: 1.35;
}
.story-card p {
    margin: 12px 0 0;
    color: var(--muted);
}
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.tag-list span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--surface-pink);
    color: var(--berry);
    font-size: 12px;
    font-weight: 800;
}
.featured .tag-list span {
    background: rgba(255,255,255,.18);
    color: white;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.info-card {
    position: relative;
    min-width: 0;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.info-card h3 {
    margin: 0;
    color: var(--title);
    font-size: 22px;
    line-height: 1.35;
}
.info-card p {
    margin: 12px 0 0;
    color: var(--muted);
}
.info-card ul,
.rich-copy ul,
.check-list,
.number-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.info-card li,
.rich-copy li,
.check-list li {
    position: relative;
    padding-left: 22px;
    margin-top: 8px;
    color: var(--text);
}
.info-card li::before,
.rich-copy li::before,
.check-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    color: var(--pink);
    font-weight: 900;
}
.circle-card {
    display: flex;
    flex-direction: column;
}
.circle-card .text-link {
    margin-top: auto;
    padding-top: 18px;
}
.timeline {
    position: relative;
    display: grid;
    gap: 18px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(var(--coral), var(--purple));
}
.timeline-item {
    position: relative;
    padding: 24px 24px 24px 72px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 28px;
    width: 18px;
    height: 18px;
    border: 7px solid var(--surface-pink);
    border-radius: 50%;
    background: var(--pink);
}
.timeline-item h3 {
    margin: 0;
    color: var(--title);
}
.timeline-item p {
    margin: 8px 0 0;
}
.topic-list {
    display: grid;
    gap: 14px;
}
.topic-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}
.topic-number {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    background: var(--surface-purple);
    color: var(--deep-purple);
    font-weight: 900;
}
.topic-row h3 {
    margin: 0;
    color: var(--title);
    font-size: 22px;
}
.topic-row p {
    margin: 8px 0 0;
    color: var(--muted);
}
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.split-panel {
    padding: 34px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.split-panel:nth-child(2) {
    background: var(--surface-purple);
}
.split-panel h3 {
    margin: 0;
    color: var(--title);
    font-size: 28px;
}
.split-panel p {
    margin: 14px 0 0;
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.feedback-card {
    padding: 26px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.feedback-card::before {
    content: "“";
    display: block;
    height: 36px;
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 54px;
    line-height: 1;
}
.feedback-card p {
    margin: 6px 0 0;
}
.faq-list {
    display: grid;
    gap: 12px;
}
.faq-list details {
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: 0 8px 22px rgba(76, 48, 66, .04);
}
.faq-list summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--title);
    font-weight: 850;
}
.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--berry);
    font-size: 24px;
}
.faq-list details[open] summary::after {
    content: "−";
}
.faq-list details p {
    margin: 0;
    padding: 0 0 22px;
    color: var(--muted);
}
.brand-story {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 30px;
    align-items: center;
}
.rich-copy {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.rich-copy h2,
.rich-copy h3 {
    margin: 0;
    color: var(--title);
}
.rich-copy h2 {
    font-size: clamp(30px, 4vw, 48px);
}
.rich-copy h3 {
    margin-top: 24px;
}
.rich-copy p {
    margin: 16px 0 0;
}
.css-visual {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(145deg, #FFE4EE, #F0EAFF);
}
.css-visual::before {
    width: 250px;
    height: 250px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--purple));
    box-shadow: 0 26px 50px rgba(103, 83, 181, .2);
}
.css-visual::after {
    width: 170px;
    height: 210px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    border: 7px solid white;
    border-radius: 28px;
    background: rgba(255,255,255,.45);
}
.css-visual.has-image::before,
.css-visual.has-image::after {
    display: none;
}
.css-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-hero {
    padding: 66px 0 46px;
}
.inner-hero-box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .45fr);
    gap: 30px;
    align-items: center;
    min-height: 360px;
    padding: 48px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,240,246,.96), rgba(247,243,255,.95));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.inner-hero-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255,93,158,.09);
    pointer-events: none;
}
.inner-hero h1 {
    font-size: clamp(42px, 6vw, 68px);
}
.inner-hero .intro {
    max-width: 800px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}
.inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.inner-hero-art {
    position: relative;
    z-index: 1;
    min-height: 220px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 30%, white 0 8%, transparent 9%),
        radial-gradient(circle at 72% 35%, rgba(255,255,255,.8) 0 7%, transparent 8%),
        linear-gradient(145deg, #FFAAC5, #8C76E8);
    box-shadow: 0 24px 40px rgba(103,83,181,.16);
}
.inner-hero-art::before,
.inner-hero-art::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.inner-hero-art::before {
    width: 82px;
    height: 118px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    border: 5px solid white;
    border-radius: 19px;
}
.inner-hero-art::after {
    width: 46px;
    height: 9px;
    left: 50%;
    top: calc(50% - 42px);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 999px;
    background: white;
}
.page-index {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: -18px;
    position: relative;
    z-index: 2;
}
.page-index a {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    font-weight: 800;
}
.page-index a::after {
    content: "↗";
    color: var(--berry);
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.content-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content-block {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.content-block h2,
.content-block h3 {
    margin: 0;
    color: var(--title);
    line-height: 1.3;
}
.content-block h2 {
    font-size: 30px;
}
.content-block h3 {
    font-size: 22px;
}
.content-block p {
    margin: 14px 0 0;
}
.content-block .lead {
    color: var(--muted);
}
.content-block.accent {
    background: linear-gradient(145deg, var(--surface-pink), white);
}
.content-block.purple {
    background: linear-gradient(145deg, var(--surface-purple), white);
}
.steps {
    counter-reset: step;
    display: grid;
    gap: 16px;
}
.step {
    counter-increment: step;
    position: relative;
    padding: 26px 26px 26px 82px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}
.step::before {
    content: counter(step);
    position: absolute;
    left: 24px;
    top: 24px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    background: var(--gradient);
    color: white;
    font-weight: 900;
}
.step h3 {
    margin: 0;
    color: var(--title);
}
.step p {
    margin: 8px 0 0;
}
.callout {
    padding: 28px 30px;
    border-left: 5px solid var(--pink);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: var(--surface-pink);
}
.callout h2,
.callout h3 {
    margin: 0;
    color: var(--title);
}
.callout p {
    margin: 10px 0 0;
}
.service-tip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: var(--radius-lg);
    color: white;
    background: linear-gradient(135deg, #D94C83, #6753B5);
    box-shadow: var(--shadow-strong);
}
.service-tip h2 {
    margin: 0;
    color: white;
    font-size: 30px;
}
.service-tip p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.86);
}
.service-tip .button {
    background: white;
    color: var(--deep-purple);
}
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.related-links a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: white;
    color: var(--berry);
    font-weight: 800;
}
.notice-list {
    display: grid;
    gap: 14px;
}
.notice-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
}
.notice-label {
    color: var(--berry);
    font-weight: 850;
}
.comparison {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}
.comparison table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}
.comparison th,
.comparison td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.comparison th {
    background: var(--surface-pink);
    color: var(--title);
}
.comparison tr:last-child td {
    border-bottom: 0;
}
.site-footer {
    position: relative;
    z-index: 2;
    padding: 66px 0 112px;
    background: var(--footer);
    color: var(--footer-text);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 34px;
}
.site-footer h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 16px;
}
.site-footer a {
    display: block;
    width: fit-content;
    margin-top: 9px;
    color: rgba(255,234,242,.78);
}
.site-footer a:hover {
    color: white;
}
.footer-brand p {
    max-width: 330px;
    margin: 16px 0 0;
    color: rgba(255,234,242,.72);
}
.footer-logo {
    display: inline-flex !important;
    align-items: center;
    margin: 0 !important;
}
.footer-logo span {
    color: white;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.11);
    color: rgba(255,234,242,.62);
    font-size: 13px;
}
.footer-bottom p {
    margin: 0;
    max-width: 760px;
}
.channel-overlay {
    position: fixed;
    inset: 0;
    z-index: 48;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(48,36,43,.34);
    transition: opacity .2s ease, visibility .2s ease;
}
.channel-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.desktop-channel-panel {
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    top: var(--channel-panel-top, 111px);
    max-height: calc(100vh - var(--channel-panel-top, 111px));
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    padding: 30px 0 34px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.desktop-channel-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.panel-heading,
.mobile-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.panel-heading h2,
.mobile-panel-heading h2 {
    margin: 0;
    color: var(--title);
    font-size: 28px;
}
.panel-close {
    min-width: 58px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: white;
    cursor: pointer;
    color: var(--berry);
    font-weight: 800;
}
.channel-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}
.channel-columns section {
    min-width: 0;
}
.channel-columns h3 {
    margin: 0 0 8px;
    color: var(--title);
    font-size: 16px;
}
.channel-columns a {
    display: block;
    padding: 11px 12px;
    border-radius: 13px;
}
.channel-columns a:hover {
    background: var(--surface-pink);
}
.channel-columns strong,
.channel-columns span {
    display: block;
}
.channel-columns strong {
    color: var(--title);
}
.channel-columns span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}
.mobile-channel-panel,
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 1080px) {
    .nav-shell {
        gap: 18px;
    }
    .main-nav a {
        padding-inline: 12px;
    }
    .nav-try {
        display: none;
    }
    .hero-layout {
        grid-template-columns: 1.05fr .78fr;
    }
    .hero-side {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, 1fr);
    }
    .footer-brand {
        grid-row: span 2;
    }
}
@media (max-width: 860px) {
    .main-nav {
        display: none;
    }
    .nav-shell {
        grid-template-columns: auto 1fr auto;
    }
    .brand {
        justify-self: center;
        min-width: auto;
    }
    .nav-actions {
        justify-self: end;
    }
    .hero-layout,
    .brand-story,
    .inner-hero-box {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        padding-bottom: 0;
    }
    .hero-visual {
        min-height: 460px;
    }
    .magazine-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .story-card.featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .card-grid,
    .card-grid.four,
    .feedback-grid,
    .content-grid.three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .page-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .channel-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-height: calc(100vh - 220px);
        overflow-y: auto;
        padding-right: 8px;
    }
}
@media (max-width: 760px) {
    .site-container {
        width: min(calc(100% - 32px), var(--container));
    }
    .notice-inner {
        min-height: 32px;
    }
    .notice-community {
        display: none;
    }
    .nav-shell {
        min-height: 64px;
        gap: 10px;
    }
    .brand-text {
        font-size: 20px;
    }
    .brand img {
        width: 132px;
        max-height: 38px;
    }
    .nav-actions {
        display: none;
    }
    .mobile-channel-trigger {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        gap: 7px;
        padding: 0 10px;
        border: 0;
        background: transparent;
        cursor: pointer;
        color: var(--title);
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
    }
    .menu-mark {
        position: relative;
        width: 19px;
        height: 14px;
        border-top: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
    }
    .menu-mark::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 5px;
        border-top: 2px solid currentColor;
        pointer-events: none;
    }
    .mobile-try {
        display: inline-flex;
        min-height: 44px;
        padding: 0 15px;
        font-size: 13px;
    }
    .section {
        padding: 60px 0;
    }
    .section-tight {
        padding: 42px 0;
    }
    .hero {
        padding: 50px 0 40px;
    }
    .hero-copy h1 {
        font-size: clamp(44px, 15vw, 68px);
    }
    .hero-copy > p {
        font-size: 16px;
    }
    .hero-visual {
        min-height: 430px;
    }
    .hero-side {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }
    .hero-note {
        flex: 0 0 86%;
        scroll-snap-align: start;
    }
    .topic-strip {
        margin-right: -16px;
        padding-right: 16px;
    }
    .magazine-grid,
    .card-grid,
    .card-grid.four,
    .feedback-grid,
    .content-grid,
    .content-grid.three,
    .split-layout,
    .page-index {
        grid-template-columns: 1fr;
    }
    .topic-row {
        grid-template-columns: 56px minmax(0, 1fr);
    }
    .topic-row .text-link {
        grid-column: 2;
    }
    .service-tip {
        grid-template-columns: 1fr;
    }
    .inner-hero {
        padding: 44px 0 28px;
    }
    .inner-hero-box {
        min-height: 0;
        padding: 30px 24px;
        border-radius: 28px;
    }
    .inner-hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }
    .inner-hero .intro {
        font-size: 16px;
    }
    .inner-hero-art {
        min-height: 180px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .site-footer {
        padding-bottom: 120px;
    }
    .desktop-channel-panel {
        display: none;
    }
    .mobile-channel-panel {
        position: fixed;
        z-index: 52;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        max-height: 85vh;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(105%);
        padding: 10px 18px calc(22px + env(safe-area-inset-bottom));
        border-radius: 28px 28px 0 0;
        background: white;
        box-shadow: 0 -20px 60px rgba(48,36,43,.2);
        transition: transform .26s ease, opacity .2s ease, visibility .2s ease;
        overscroll-behavior: contain;
    }
    .mobile-channel-panel.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .sheet-handle {
        width: 48px;
        height: 5px;
        margin: 0 auto 10px;
        border-radius: 999px;
        background: #E6DCE1;
    }
    .mobile-panel-heading {
        position: sticky;
        top: -10px;
        z-index: 2;
        padding: 10px 0 14px;
        background: white;
    }
    .mobile-panel-heading h2 {
        font-size: 22px;
    }
    .mobile-channel-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .mobile-channel-list a {
        min-height: 50px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-radius: 15px;
        background: var(--surface-pink);
        color: var(--title);
        font-weight: 800;
    }
    .mobile-bottom-nav {
        position: fixed;
        z-index: 35;
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: 64px;
        padding: 6px;
        border: 1px solid rgba(255,93,158,.15);
        border-radius: 22px;
        background: rgba(255,255,255,.96);
        box-shadow: 0 16px 42px rgba(76,48,66,.16);
        backdrop-filter: blur(14px);
    }
    .mobile-bottom-nav a {
        display: flex;
        min-height: 52px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        border-radius: 16px;
        color: var(--muted);
        font-size: 12px;
    }
    .mobile-bottom-nav a span {
        font-size: 19px;
        line-height: 1;
    }
    .mobile-bottom-nav a strong {
        font-size: 11px;
    }
    .mobile-bottom-nav a.is-active {
        background: var(--surface-pink);
        color: var(--berry);
    }
    .notice-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
@media (max-width: 480px) {
    .mobile-channel-trigger span:last-child {
        display: none;
    }
    .hero-actions,
    .inner-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .hero-actions .button,
    .inner-hero-actions .button {
        width: 100%;
    }
    .hero-actions .text-link {
        justify-content: center;
        min-height: 44px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: auto;
    }
    .content-block,
    .info-card,
    .rich-copy,
    .split-panel {
        padding: 24px;
    }
    .topic-row {
        grid-template-columns: 1fr;
    }
    .topic-row .text-link {
        grid-column: auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.page-city .desktop-channel-panel a[href="city.php"],
.page-city .mobile-channel-list a[href="city.php"],
.page-diary .desktop-channel-panel a[href="diary.php"],
.page-diary .mobile-channel-list a[href="diary.php"],
.page-community-rules .desktop-channel-panel a[href="community-rules.php"],
.page-community-rules .mobile-channel-list a[href="community-rules.php"],
.page-download .desktop-channel-panel a[href="download.php"],
.page-download .mobile-channel-list a[href="download.php"],
.page-guide .desktop-channel-panel a[href="guide.php"],
.page-guide .mobile-channel-list a[href="guide.php"],
.page-notice .desktop-channel-panel a[href="notice.php"],
.page-notice .mobile-channel-list a[href="notice.php"],
.page-safety .desktop-channel-panel a[href="safety.php"],
.page-safety .mobile-channel-list a[href="safety.php"],
.page-privacy .desktop-channel-panel a[href="privacy.php"],
.page-privacy .mobile-channel-list a[href="privacy.php"],
.page-help .desktop-channel-panel a[href="help.php"],
.page-help .mobile-channel-list a[href="help.php"],
.page-faq .desktop-channel-panel a[href="faq.php"],
.page-faq .mobile-channel-list a[href="faq.php"],
.page-service .desktop-channel-panel a[href="service.php"],
.page-service .mobile-channel-list a[href="service.php"],
.page-contact .desktop-channel-panel a[href="contact.php"],
.page-contact .mobile-channel-list a[href="contact.php"],
.page-about .desktop-channel-panel a[href="about.php"],
.page-about .mobile-channel-list a[href="about.php"],
.page-terms .desktop-channel-panel a[href="terms.php"],
.page-terms .mobile-channel-list a[href="terms.php"] {
    background: var(--surface-pink);
    color: var(--berry);
}
