:root {
    --page: #fff9fc;
    --surface: #ffffff;
    --pink-soft: #fff1f6;
    --purple-soft: #f6f3ff;
    --gray-soft: #f8f6f7;
    --title: #31262c;
    --text: #51454c;
    --muted: #7c6e75;
    --hint: #a2949b;
    --pink: #ff5c98;
    --berry: #d9467b;
    --peach: #ff96ad;
    --purple: #8b74e8;
    --purple-deep: #6250b0;
    --border: rgba(255, 92, 152, 0.15);
    --shadow: 0 14px 38px rgba(70, 44, 58, 0.08);
    --shadow-strong: 0 20px 48px rgba(217, 70, 123, 0.14);
    --gradient: linear-gradient(135deg, #ff96ad 0%, #ff5c98 50%, #8b74e8 100%);
    --container: 1220px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--page);
    color: var(--text);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    line-height: 1.78;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(139, 116, 232, 0.45);
    outline-offset: 3px;
}

button {
    font: inherit;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--title);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 4.8rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(1.75rem, 3.1vw, 2.8rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

p:last-child {
    margin-bottom: 0;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--title);
    color: #fff;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 900;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 92, 152, 0.08);
    background: rgba(255, 249, 252, 0.93);
    backdrop-filter: blur(18px);
}

.desktop-nav-wrap {
    display: block;
    height: 100%;
}

.desktop-nav {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: min(calc(100% - 40px), var(--container));
    height: 100%;
    margin: 0 auto;
    gap: 28px;
}

.desktop-nav-side {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 28px);
    min-width: 0;
}

.desktop-nav-left {
    justify-content: flex-end;
}

.desktop-nav-right {
    justify-content: flex-start;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    white-space: nowrap;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 18%;
    bottom: 4px;
    left: 18%;
    height: 3px;
    border-radius: 3px;
    background: var(--gradient);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--berry);
}

.nav-link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-logo,
.mobile-brand,
.footer-logo,
.drawer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--title);
    font-size: 1.32rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-logo {
    min-width: 158px;
    min-height: 50px;
}

.brand-logo img,
.mobile-brand img,
.footer-logo img {
    width: auto;
    max-height: 48px;
    object-fit: contain;
}

.brand-mark {
    padding: 3px 9px 4px;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    letter-spacing: -0.05em;
}

.round-menu-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(70, 44, 58, 0.07);
    cursor: pointer;
}

.round-menu-button span {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--title);
    pointer-events: none;
}

.mobile-nav {
    display: none;
}

.site-main {
    min-height: 70vh;
    padding-top: var(--header-height);
}

.section,
.page-hero,
.home-hero {
    position: relative;
    padding: clamp(68px, 8vw, 112px) 0;
}

.section-sm {
    padding: clamp(48px, 6vw, 80px) 0;
}

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

.narrow {
    width: min(calc(100% - 40px), 860px);
    margin: 0 auto;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--berry);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lead {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    line-height: 1.9;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading > div {
    max-width: 760px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 9px;
    color: var(--berry);
    font-weight: 800;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 14px 28px rgba(217, 70, 123, 0.2);
}

.button-secondary {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--berry);
    box-shadow: 0 10px 24px rgba(70, 44, 58, 0.06);
}

.home-hero {
    overflow: hidden;
    padding-top: clamp(64px, 8vw, 108px);
}

.home-hero::before,
.home-hero::after,
.page-hero::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.home-hero::before {
    top: 20px;
    left: -120px;
    width: 330px;
    height: 330px;
    background: rgba(255, 150, 173, 0.16);
}

.home-hero::after {
    top: 100px;
    right: -110px;
    width: 290px;
    height: 290px;
    background: rgba(139, 116, 232, 0.13);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(190px, 0.75fr) minmax(420px, 1.7fr) minmax(190px, 0.75fr);
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
}

.hero-side-note {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.hero-side-note h2 {
    margin-bottom: 10px;
    font-size: 1.22rem;
}

.hero-side-note p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-center {
    text-align: center;
}

.hero-center .eyebrow {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--pink-soft);
}

.hero-center h1 {
    max-width: 760px;
    margin: 0 auto 22px;
}

.hero-center .lead {
    max-width: 760px;
    margin: 0 auto;
}

.hero-center .button-row {
    justify-content: center;
}

.hero-visual {
    position: relative;
    z-index: 1;
    margin-top: 52px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow-strong);
}

.hero-visual .content-image,
.hero-visual .visual-fallback {
    width: 100%;
    min-height: 360px;
    aspect-ratio: 16 / 7;
}

.content-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.visual-fallback {
    position: relative;
    display: grid;
    min-height: 260px;
    overflow: hidden;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at 25% 32%, rgba(255, 255, 255, 0.9) 0 6%, transparent 6.5%),
        linear-gradient(145deg, #fff0f6 0%, #f8e9f5 42%, #eee9ff 100%);
}

.visual-fallback::before {
    content: "";
    width: 46%;
    height: 46%;
    border-radius: 48% 52% 60% 40%;
    background: rgba(255, 92, 152, 0.16);
    transform: rotate(-12deg);
}

.visual-fallback span {
    position: absolute;
    border-radius: 999px;
    background: rgba(139, 116, 232, 0.17);
    pointer-events: none;
}

.visual-fallback span:nth-child(1) {
    top: 18%;
    right: 16%;
    width: 90px;
    height: 90px;
}

.visual-fallback span:nth-child(2) {
    right: 28%;
    bottom: 14%;
    width: 140px;
    height: 38px;
    transform: rotate(-12deg);
}

.visual-fallback span:nth-child(3) {
    bottom: 17%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: rgba(255, 150, 173, 0.25);
}

.soft-pink {
    background: var(--pink-soft);
}

.soft-purple {
    background: var(--purple-soft);
}

.soft-gray {
    background: var(--gray-soft);
}

.white-section {
    background: #fff;
}

.index-grid,
.card-grid,
.topic-grid,
.feature-grid,
.feedback-grid,
.gallery-grid,
.interest-grid,
.faq-preview-grid,
.service-grid {
    display: grid;
    gap: 22px;
}

.index-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.index-card,
.card,
.topic-card,
.feedback-card,
.service-card,
.info-card,
.step-card,
.notice-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.index-card {
    min-height: 220px;
    padding: 24px;
}

.index-card::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -42px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 150, 173, 0.13);
    pointer-events: none;
}

.index-card:nth-child(even)::before {
    background: rgba(139, 116, 232, 0.12);
}

.index-card h3 {
    margin-bottom: 10px;
}

.index-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.index-card .text-link {
    margin-top: 4px;
    font-size: 0.92rem;
}

.story-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    gap: 24px;
}

.story-main,
.story-list {
    min-width: 0;
}

.story-main {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.story-main .content-image,
.story-main .visual-fallback {
    margin-bottom: 26px;
    aspect-ratio: 16 / 9;
}

.story-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.story-mini {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.story-mini:nth-child(2),
.story-mini:nth-child(3) {
    background: var(--purple-soft);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--pink-soft);
    color: var(--berry);
    font-size: 0.78rem;
    font-weight: 800;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
}

.gallery-card .content-image,
.gallery-card .visual-fallback {
    border-radius: 0;
    aspect-ratio: 4 / 3;
}

.gallery-card-body {
    padding: 24px;
}

.gallery-card-body p {
    color: var(--muted);
}

.interest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.interest-card {
    min-height: 250px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.interest-card:nth-child(3n+2) {
    background: var(--pink-soft);
}

.interest-card:nth-child(3n) {
    background: var(--purple-soft);
}

.interest-card p {
    color: var(--muted);
}

.topic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.topic-card {
    min-height: 270px;
    padding: 26px;
}

.topic-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 900;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(36px, 6vw, 78px);
}

.split-layout.reverse .split-visual {
    order: 2;
}

.split-visual .content-image,
.split-visual .visual-fallback {
    min-height: 420px;
    aspect-ratio: 4 / 3;
}

.check-list,
.plain-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--berry);
    font-size: 0.78rem;
    font-weight: 900;
}

.journal-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
}

.journal-intro {
    padding: 34px;
    border-radius: 30px;
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.journal-intro h2,
.journal-intro h3 {
    color: #fff;
}

.journal-notes {
    display: grid;
    gap: 18px;
}

.journal-note {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
}

.journal-note:nth-child(2) {
    background: var(--pink-soft);
}

.journal-note:nth-child(3) {
    background: var(--purple-soft);
}

.service-grid,
.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.info-card,
.step-card,
.notice-card {
    padding: 27px;
}

.service-card p,
.info-card p,
.step-card p,
.notice-card p {
    color: var(--muted);
}

.principle-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.principle-item {
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.principle-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--title);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.safety-card {
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.safety-card .content-image,
.safety-card .visual-fallback {
    margin-bottom: 26px;
    aspect-ratio: 16 / 8;
}

.feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feedback-card {
    min-height: 190px;
    padding: 28px;
}

.feedback-card::before {
    content: "“";
    display: block;
    height: 38px;
    color: var(--peach);
    font-family: Georgia, serif;
    font-size: 3.8rem;
    line-height: 0.9;
}

.faq-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-preview-item {
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.faq-preview-item h3 {
    margin-bottom: 10px;
}

.page-hero {
    overflow: hidden;
    background: linear-gradient(180deg, #fff1f6 0%, #fff9fc 100%);
}

.page-hero::before {
    top: -120px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(139, 116, 232, 0.12);
}

.page-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
}

.page-hero h1 {
    margin-bottom: 22px;
}

.page-hero .visual-fallback,
.page-hero .content-image {
    min-height: 380px;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-strong);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--berry);
}

.content-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 34px;
}

.article-flow {
    min-width: 0;
}

.article-flow > section,
.article-flow > article {
    margin-bottom: 56px;
}

.article-flow h2 {
    margin-bottom: 18px;
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.article-flow h3 {
    margin-top: 28px;
}

.article-flow p {
    margin-bottom: 16px;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.sidebar-card h2 {
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.sidebar-card a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 92, 152, 0.09);
    color: var(--muted);
    font-weight: 700;
}

.sidebar-card a:last-child {
    border-bottom: 0;
}

.sidebar-card a::after {
    content: "›";
    color: var(--peach);
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    padding: 28px;
}

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

.feature-list {
    display: grid;
    gap: 18px;
}

.feature-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.feature-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 18px;
    background: var(--pink-soft);
    color: var(--berry);
    font-weight: 900;
}

.timeline {
    position: relative;
    display: grid;
    gap: 24px;
    padding-left: 36px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 12px;
    width: 2px;
    background: linear-gradient(var(--peach), var(--purple));
}

.timeline-item {
    position: relative;
    padding: 24px 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 28px;
    left: -31px;
    width: 14px;
    height: 14px;
    border: 4px solid var(--page);
    border-radius: 50%;
    background: var(--berry);
}

.callout {
    padding: 28px;
    border: 1px solid rgba(139, 116, 232, 0.2);
    border-radius: 24px;
    background: var(--purple-soft);
}

.callout h2,
.callout h3 {
    margin-bottom: 10px;
}

.warning-callout {
    background: var(--pink-soft);
    border-color: var(--border);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(70, 44, 58, 0.045);
}

.faq-list summary {
    position: relative;
    min-height: 60px;
    padding: 18px 58px 18px 22px;
    color: var(--title);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pink-soft);
    color: var(--berry);
    text-align: center;
    line-height: 30px;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 22px;
    color: var(--muted);
}

.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: #fff;
    color: var(--berry);
    font-weight: 800;
}

.contact-process,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.step-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 900;
}

.notice-list {
    display: grid;
    gap: 18px;
}

.notice-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.notice-type {
    color: var(--berry);
    font-weight: 900;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.info-table {
    width: 100%;
    min-width: 660px;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.info-table th {
    background: var(--pink-soft);
    color: var(--title);
}

.info-table tr:last-child td {
    border-bottom: 0;
}

.site-footer {
    position: relative;
    z-index: 3;
    background: #30252b;
    color: #ffeaf2;
}

.footer-inner {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 68px 0 32px;
}

.footer-brand-block {
    display: grid;
    grid-template-columns: 260px minmax(0, 520px);
    align-items: center;
    gap: 36px;
    margin-bottom: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 234, 242, 0.12);
}

.footer-logo {
    justify-content: flex-start;
    color: #fff;
    font-size: 1.52rem;
}

.footer-brand-block p {
    color: rgba(255, 234, 242, 0.72);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-links section {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-links h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1rem;
}

.footer-links a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    color: rgba(255, 234, 242, 0.7);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-notice {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 234, 242, 0.12);
    color: rgba(255, 234, 242, 0.6);
    font-size: 0.86rem;
}

.footer-notice p:first-child {
    max-width: 760px;
}

.channel-overlay,
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 940;
    visibility: hidden;
    background: rgba(49, 38, 44, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.channel-overlay.is-open,
.mobile-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.channel-panel {
    position: fixed;
    z-index: 950;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--border);
    background: rgba(255, 249, 252, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.channel-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.channel-panel-inner {
    width: min(calc(100% - 40px), var(--container));
    margin: 0 auto;
    padding: 38px 0 52px;
}

.panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.panel-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.panel-close {
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--title);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

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

.channel-columns section {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
}

.channel-columns h3 {
    margin-bottom: 14px;
    color: var(--berry);
}

.channel-columns a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 92, 152, 0.1);
}

.channel-columns a:last-child {
    border-bottom: 0;
}

.channel-columns strong,
.channel-columns span {
    display: block;
}

.channel-columns strong {
    color: var(--title);
    font-size: 0.95rem;
}

.channel-columns span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.79rem;
    line-height: 1.6;
}

.mobile-drawer {
    position: fixed;
    z-index: 960;
    top: 0;
    right: 0;
    visibility: hidden;
    width: min(88vw, 390px);
    height: 100dvh;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 0 45px rgba(49, 38, 44, 0.16);
    pointer-events: none;
    transform: translateX(104%);
    transition: transform 0.26s ease, visibility 0.26s ease;
}

.mobile-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.drawer-heading {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
}

.drawer-brand {
    font-size: 1.12rem;
}

.drawer-links {
    display: grid;
    padding: 14px 18px calc(30px + env(safe-area-inset-bottom));
}

.drawer-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 92, 152, 0.09);
    color: var(--text);
    font-weight: 700;
}

.drawer-links a::after {
    content: "›";
    color: var(--peach);
    font-size: 1.35rem;
}

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1120px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav-side {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .index-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .topic-grid,
    .principle-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .interest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .channel-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .desktop-nav-wrap {
        display: none;
    }

    .mobile-nav {
        display: flex;
        width: min(calc(100% - 32px), var(--container));
        height: 100%;
        margin: 0 auto;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-brand {
        justify-content: flex-start;
        min-width: 0;
        font-size: 1.1rem;
    }

    .mobile-brand img {
        max-width: 150px;
        max-height: 44px;
    }

    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .mobile-experience {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        padding: 0 17px;
        border-radius: 999px;
        background: var(--gradient);
        color: #fff;
        font-size: 0.88rem;
        font-weight: 900;
    }

    .round-menu-button {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .hero-grid,
    .page-hero-grid,
    .split-layout,
    .story-feature,
    .journal-wrap,
    .content-columns {
        grid-template-columns: 1fr;
    }

    .hero-center {
        order: -1;
    }

    .hero-side-note {
        max-width: 720px;
        margin: 0 auto;
    }

    .split-layout.reverse .split-visual {
        order: 0;
    }

    .page-hero .page-hero-copy {
        order: -1;
    }

    .sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid,
    .card-grid,
    .feedback-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid,
    .feature-grid,
    .contact-process,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-main {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .container,
    .narrow,
    .footer-inner,
    .channel-panel-inner {
        width: calc(100% - 32px);
    }

    .section,
    .page-hero,
    .home-hero {
        padding: 56px 0;
    }

    .section-sm {
        padding: 42px 0;
    }

    h1 {
        font-size: clamp(2.05rem, 11vw, 3.3rem);
    }

    h2 {
        font-size: clamp(1.55rem, 8vw, 2.2rem);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 26px;
    }

    .hero-grid {
        gap: 16px;
    }

    .hero-center {
        text-align: left;
    }

    .hero-center .button-row {
        justify-content: flex-start;
    }

    .hero-side-note {
        width: 100%;
        padding: 23px;
    }

    .hero-visual {
        margin-top: 30px;
        border-radius: 24px;
    }

    .hero-visual .content-image,
    .hero-visual .visual-fallback {
        min-height: 230px;
        aspect-ratio: 4 / 3;
        border-radius: 0;
    }

    .index-grid,
    .gallery-grid,
    .interest-grid,
    .topic-grid,
    .principle-list,
    .service-grid,
    .feature-grid,
    .feedback-grid,
    .faq-preview-grid,
    .card-grid,
    .contact-process,
    .steps-grid,
    .safety-grid,
    .sidebar,
    .footer-links,
    .channel-columns {
        grid-template-columns: 1fr;
    }

    .index-card {
        min-height: 0;
    }

    .story-main {
        padding: 22px;
    }

    .story-list {
        grid-template-columns: 1fr;
    }

    .story-mini,
    .topic-card,
    .interest-card {
        min-height: 0;
    }

    .split-visual .content-image,
    .split-visual .visual-fallback,
    .page-hero .visual-fallback,
    .page-hero .content-image {
        min-height: 260px;
    }

    .notice-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-inner {
        padding-top: 52px;
    }

    .footer-brand-block {
        gap: 18px;
        margin-bottom: 34px;
    }

    .footer-notice {
        flex-direction: column;
        gap: 12px;
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 880;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        min-height: 66px;
        padding: 6px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 44px rgba(70, 44, 58, 0.16);
        backdrop-filter: blur(16px);
    }

    .mobile-bottom-nav a {
        display: flex;
        min-width: 0;
        min-height: 54px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 17px;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 800;
    }

    .mobile-bottom-nav a.is-active {
        background: var(--pink-soft);
        color: var(--berry);
    }

    .bottom-icon {
        position: relative;
        display: block;
        width: 21px;
        height: 21px;
        pointer-events: none;
    }

    .home-icon::before {
        content: "";
        position: absolute;
        inset: 4px 3px 2px;
        border: 2px solid currentColor;
        border-top: 0;
        border-radius: 3px;
    }

    .home-icon::after {
        content: "";
        position: absolute;
        top: 2px;
        left: 5px;
        width: 10px;
        height: 10px;
        border-top: 2px solid currentColor;
        border-left: 2px solid currentColor;
        transform: rotate(45deg);
    }

    .record-icon::before,
    .interest-icon::before,
    .service-icon::before {
        content: "";
        position: absolute;
        inset: 2px;
        border: 2px solid currentColor;
        border-radius: 6px;
    }

    .record-icon::after {
        content: "";
        position: absolute;
        top: 6px;
        right: 6px;
        bottom: 6px;
        left: 6px;
        border-left: 2px solid currentColor;
        transform: rotate(35deg);
    }

    .interest-icon::after {
        content: "";
        position: absolute;
        top: 7px;
        left: 7px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: currentColor;
    }

    .service-icon::after {
        content: "";
        position: absolute;
        top: 9px;
        left: 6px;
        width: 9px;
        height: 2px;
        background: currentColor;
        box-shadow: 0 -4px 0 currentColor, 0 4px 0 currentColor;
    }

    .channel-panel {
        display: none;
    }

    .channel-overlay {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
