:root {
    --theme: #78e02c;
    --theme-dark: #397713;
    --theme-deep: #173d0b;
    --theme-light: #f4fbea;
    --theme-soft: #e7f8d6;
    --theme-accent: #a9f06f;
    --theme-hover: #5ec11f;
    --theme-border: rgba(57, 119, 19, .24);
    --header-bg: #214e12;
    --header-bg-2: #2e6818;
    --text-main: #193015;
    --text-muted: #5b6f56;
    --on-theme: #10220a;
    --on-header: #f6ffef;
    --on-dark: #eefbe5;
    --white: #ffffff;
    --shadow-soft: 0 18px 46px rgba(40, 91, 18, .13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    background: var(--theme-light);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--theme-accent);
    outline-offset: 3px;
}

.container,
.section-inner,
.header-inner,
.footer-inner,
.hero-inner {
    width: min(1280px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}

.section {
    position: relative;
    padding: 76px 0;
}

.section-tint {
    background: var(--theme-soft);
}

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--header-bg-2) 100%);
    color: var(--on-header);
    box-shadow: 0 12px 32px rgba(16, 52, 9, .24);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    overflow: visible;
}

.header-inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    overflow: visible;
}

.site-logo,
.drawer-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.site-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 168px;
    max-height: 66px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(9px, 1vw, 18px);
}

.main-nav a {
    position: relative;
    color: var(--on-header);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
    padding: 28px 0 25px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 17px;
    height: 3px;
    border-radius: 999px;
    background: var(--theme-accent);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--theme-accent);
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    justify-self: end;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--theme-accent) 0%, var(--theme) 48%, var(--theme-dark) 100%);
    color: var(--on-theme);
    box-shadow: 0 12px 24px rgba(10, 39, 5, .28);
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, filter .2s ease;
}

.main-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.15) brightness(1.03);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--on-header);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 10001;
    background: linear-gradient(180deg, var(--header-bg) 0%, var(--theme-deep) 100%);
    color: var(--on-header);
    box-shadow: 18px 0 44px rgba(0, 0, 0, .25);
    overflow-y: auto;
    padding: 22px;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    background: rgba(10, 25, 6, .62);
    transition: opacity .25s ease, visibility .25s ease;
}

.drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.drawer-logo img {
    width: auto;
    height: auto;
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
}

.drawer-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--on-header);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.drawer-nav {
    display: grid;
    gap: 5px;
    padding: 20px 0;
}

.drawer-nav a {
    color: var(--on-header);
    text-decoration: none;
    font-weight: 700;
    padding: 11px 13px;
    border-radius: 12px;
}

.drawer-nav a.active,
.drawer-nav a:hover {
    color: var(--on-theme);
    background: var(--theme-accent);
}

.drawer-note {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
}

.drawer-note p {
    margin: 6px 0 0;
    font-size: 14px;
}

.hero-section {
    padding: 68px 0 44px;
    background:
        radial-gradient(circle at 13% 16%, rgba(120, 224, 44, .24) 0%, transparent 33%),
        linear-gradient(180deg, var(--theme-light) 0%, var(--white) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 56px;
}

.hero-content h1 {
    max-width: 790px;
    font-size: clamp(42px, 4.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 14px 0 22px;
    color: var(--theme-dark);
}

.hero-content > p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0 0 28px;
}

.hero-badge,
.hero-tags span,
.section-kicker,
.tag,
.badge {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: max-content;
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--theme-soft);
    color: var(--theme-dark);
    border: 1px solid var(--theme-border);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .03em;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.hero-tags a,
.hero-tags span {
    text-decoration: none;
}

.hero-tags a {
    display: inline-flex;
    align-items: center;
    padding: 9px 15px;
    border: 1px solid var(--theme-border);
    border-radius: 999px;
    color: var(--theme-dark);
    background: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.hero-tags a:hover {
    background: linear-gradient(180deg, var(--theme-accent), var(--theme));
    color: var(--on-theme);
}

.hero-visual,
.media-box,
.app-visual,
.card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-media-box {
    width: min(100%, 540px);
    min-height: 320px;
    max-height: 420px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 32px;
    background: linear-gradient(180deg, var(--white) 0%, var(--theme-soft) 100%);
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
}

.hero-media-box img,
.media-box img,
.hero-visual img,
.app-visual img,
.card-media img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.hero-media-box img {
    max-width: 70%;
    max-height: 340px;
}

.info-section {
    padding: 32px 0 46px;
    background: var(--white);
}

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

.info-card,
.category-card,
.feature-card,
.faq-item,
.notice,
.visual-card,
.service-card,
.feedback-card,
.content-card {
    position: relative;
    background: var(--white);
    color: var(--text-main);
    border: 1px solid var(--theme-border);
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    min-height: auto;
    height: auto;
    padding: 26px;
}

.info-card::before,
.category-card::before,
.feature-card::before,
.service-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--theme), var(--theme-accent));
    margin-bottom: 16px;
}

.info-card span,
.card-number {
    color: var(--theme-dark);
    font-size: 14px;
    font-weight: 900;
}

.info-card h2,
.info-card h3,
.category-card h3,
.feature-card h3,
.service-card h3,
.content-card h3 {
    color: var(--theme-dark);
    margin: 10px 0;
    line-height: 1.28;
}

.info-card p,
.category-card p,
.feature-card p,
.service-card p,
.content-card p {
    color: var(--text-muted);
    margin: 0;
}

.category-section {
    padding: 26px 0 56px;
    background: var(--white);
}

.category-pills,
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-pills a,
.related-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 17px;
    border-radius: 999px;
    background: var(--white);
    color: var(--theme-dark);
    border: 1px solid var(--theme-border);
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.category-pills a:hover,
.related-links a:hover {
    background: linear-gradient(180deg, var(--theme-accent), var(--theme));
    color: var(--on-theme);
    transform: translateY(-2px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.centered-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2,
.topic-heading h2,
.notice h2,
.related-wrap h2 {
    color: var(--theme-dark);
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.16;
    letter-spacing: -.02em;
    margin: 14px 0 16px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 18px;
    margin: 0;
}

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

.category-card {
    display: flex;
    flex-direction: column;
}

.category-card p {
    flex: 1;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: var(--theme-dark);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform .2s ease;
}

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

.text-link:hover {
    color: var(--theme-hover);
}

.three-grid,
.feature-grid,
.feedback-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

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

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
    align-items: center;
    gap: 60px;
}

.split-section.reverse .split-copy {
    order: 2;
}

.split-section.reverse .visual-card {
    order: 1;
}

.split-copy h2,
.app-copy h2 {
    color: var(--theme-dark);
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.15;
    margin: 14px 0 20px;
}

.split-copy p,
.app-copy p {
    color: var(--text-muted);
    font-size: 17px;
}

.visual-card {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--white), var(--theme-soft));
}

.visual-card img {
    display: block;
    max-width: 100%;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

.check-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    border: 1px solid var(--theme-border);
    border-radius: 16px;
    background: var(--white);
    color: var(--text-main);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 13px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--theme);
    color: var(--on-theme);
    font-size: 13px;
    font-weight: 900;
}

.app-band {
    background: linear-gradient(135deg, var(--theme-deep), var(--header-bg-2));
    color: var(--on-dark);
}

.app-band .split-section {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .75fr);
}

.app-band .section-kicker {
    background: rgba(255, 255, 255, .1);
    color: var(--theme-accent);
    border-color: rgba(255, 255, 255, .18);
}

.app-band h2,
.app-band p {
    color: var(--on-dark);
}

.app-visual {
    min-height: 340px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
}

.app-visual img {
    max-height: 300px;
}

.feedback-card {
    margin: 0;
    background: linear-gradient(160deg, var(--white), var(--theme-light));
}

.feedback-card::before {
    content: "“";
    display: block;
    color: var(--theme);
    font-size: 58px;
    font-weight: 900;
    line-height: .8;
    margin-bottom: 12px;
}

.feedback-card p {
    margin: 0;
    color: var(--text-main);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 56px;
}

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

.faq-item {
    padding: 0;
    overflow: visible;
}

.faq-item summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    color: var(--theme-dark);
    font-size: 18px;
    font-weight: 800;
    padding: 22px 54px 22px 24px;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 18px;
    color: var(--theme-dark);
    font-size: 27px;
    line-height: 1;
}

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

.faq-item p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--text-muted);
}

.notice-section {
    padding-top: 24px;
}

.notice {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--theme-soft), var(--white));
    border-left: 6px solid var(--theme);
}

.notice-mark,
.age-badge {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--theme-dark);
    color: var(--on-dark);
    font-size: 23px;
    font-weight: 900;
    flex: 0 0 auto;
}

.notice h2 {
    font-size: 27px;
    margin: 0 0 8px;
}

.notice p {
    margin: 0;
    color: var(--text-muted);
}

.page-hero {
    padding: 70px 0;
    background:
        radial-gradient(circle at 85% 16%, rgba(120, 224, 44, .2), transparent 32%),
        linear-gradient(180deg, var(--theme-light), var(--white));
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
    align-items: center;
    gap: 58px;
}

.page-hero-copy h1 {
    max-width: 850px;
    color: var(--theme-dark);
    font-size: clamp(42px, 4.6vw, 66px);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: 15px 0 22px;
}

.page-hero-copy p {
    max-width: 830px;
    color: var(--text-main);
    font-size: 18px;
    line-height: 1.82;
    margin: 0 0 14px;
}

.page-visual {
    min-height: 360px;
    padding: 32px;
    border: 1px solid var(--theme-border);
    border-radius: 30px;
    background: linear-gradient(160deg, var(--white), var(--theme-soft));
    box-shadow: var(--shadow-soft);
}

.page-visual img {
    max-height: 310px;
}

.hero-point-panel {
    display: grid;
    gap: 14px;
    padding: 26px;
    border-radius: 28px;
    border: 1px solid var(--theme-border);
    background: linear-gradient(160deg, var(--white), var(--theme-soft));
    box-shadow: var(--shadow-soft);
}

.hero-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--theme-border);
}

.hero-point span {
    color: var(--theme-dark);
    font-weight: 900;
}

.hero-point p {
    margin: 0;
    color: var(--text-main);
}

.topic-section {
    padding: 72px 0;
}

.topic-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 64px;
}

.topic-layout-reverse {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
}

.topic-layout-reverse .topic-heading {
    order: 2;
}

.topic-layout-reverse .prose {
    order: 1;
}

.topic-heading {
    position: sticky;
    top: 112px;
}

.prose p {
    color: var(--text-main);
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 18px;
}

.feature-section,
.feedback-section,
.faq-section,
.related-section {
    padding: 72px 0;
}

.related-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 30px;
    border: 1px solid var(--theme-border);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.related-wrap h2 {
    font-size: 28px;
    margin-bottom: 0;
}

.footer {
    background: linear-gradient(180deg, var(--theme-dark) 0%, var(--theme-deep) 100%);
    color: var(--on-dark);
    padding-top: 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 48px;
}

.footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 72px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(238, 251, 229, .8);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: var(--theme-accent);
    font-size: 17px;
}

.footer a {
    color: var(--on-dark);
    text-decoration: none;
}

.footer a:hover {
    color: var(--theme-accent);
}

.footer-compliance {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 42px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.footer-compliance .age-badge {
    background: var(--theme-accent);
    color: var(--on-theme);
}

.footer-compliance p {
    margin: 7px 0 0;
    color: rgba(238, 251, 229, .8);
}

.footer-bottom {
    background: rgba(4, 20, 2, .22);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
    padding: 18px 0;
    color: rgba(238, 251, 229, .7);
    font-size: 14px;
}

@media (min-width: 1440px) {
    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner {
        width: min(1360px, calc(100% - 120px));
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
        gap: 72px;
    }
}

@media (max-width: 1180px) {
    .header-inner {
        gap: 15px;
    }

    .site-logo img {
        max-width: 140px;
    }

    .main-nav {
        gap: 9px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .header-login {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 13px;
    }
}

@media (max-width: 1023px) {
    .header-inner {
        width: min(100% - 28px, 1280px);
        min-height: 68px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
    }

    .site-logo {
        justify-self: center;
    }

    .site-logo img {
        max-width: min(150px, 42vw);
        max-height: 56px;
    }

    .hero-section,
    .page-hero {
        padding: 48px 0 38px;
    }

    .hero-inner,
    .page-hero-grid,
    .split-section,
    .app-band .split-section,
    .topic-layout,
    .topic-layout-reverse,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-content h1,
    .page-hero-copy h1 {
        font-size: clamp(36px, 7vw, 54px);
    }

    .hero-media-box,
    .page-visual {
        min-height: 300px;
        max-width: 680px;
        margin: 0 auto;
    }

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

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

    .split-section.reverse .split-copy,
    .split-section.reverse .visual-card,
    .topic-layout-reverse .topic-heading,
    .topic-layout-reverse .prose {
        order: initial;
    }

    .topic-heading {
        position: static;
    }

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

@media (max-width: 767px) {
    .container,
    .section-inner,
    .header-inner,
    .footer-inner,
    .hero-inner {
        width: min(100% - 32px, 1280px);
    }

    .section,
    .topic-section,
    .feature-section,
    .feedback-section,
    .faq-section,
    .related-section {
        padding: 54px 0;
    }

    .hero-section,
    .page-hero {
        padding: 40px 0 34px;
    }

    .hero-content h1,
    .page-hero-copy h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .hero-content > p,
    .page-hero-copy p {
        font-size: 16px;
    }

    .hero-media-box,
    .page-visual,
    .visual-card,
    .app-visual {
        min-height: 250px;
        padding: 22px;
    }

    .info-grid,
    .category-grid,
    .feature-grid,
    .three-grid,
    .feedback-grid,
    .news-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-card,
    .category-card,
    .feature-card,
    .service-card,
    .content-card,
    .feedback-card {
        padding: 23px;
    }

    .notice {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .notice-mark {
        width: 62px;
        height: 62px;
    }

    .related-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .footer-compliance {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 390px) {
    .header-inner {
        width: min(100% - 20px, 1280px);
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
    }

    .site-logo img {
        max-width: min(118px, 35vw);
        max-height: 48px;
    }

    .header-actions .main-btn {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 12px;
    }
}
