:root {
    --navy: #243858;
    --navy-soft: #405274;
    --ink: #2c3650;
    --muted: #737f98;
    --white: #ffffff;
    --cream: #fffaf3;
    --beige: #f7efe4;
    --lavender: #f4effb;
    --lavender-2: #ebe2f7;
    --blue: #edf6fb;
    --mint: #eafaf1;
    --mint-strong: #7eddb8;
    --rose: #d87882;
    --rose-soft: #fff0f2;
    --gold: #d8bd72;
    --gold-soft: #f6e9bf;
    --pastel-heading: linear-gradient(115deg, #c796cf 0%, #a4b8ed 34%, #d8bd72 66%, #df8f9e 100%);
    --pastel-heading-soft: linear-gradient(120deg, #dba8d6 0%, #aebff0 42%, #e2c97f 72%, #e8a3ad 100%);
    --pastel-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 255, 0.84), rgba(239, 248, 252, 0.82));
    --border: rgba(49, 70, 110, 0.12);
    --shadow: 0 22px 58px rgba(80, 92, 132, 0.12);
    --shadow-soft: 0 12px 32px rgba(80, 92, 132, 0.08);
    --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
    --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 224, 233, 0.62) 0, rgba(255, 224, 233, 0) 28%),
        radial-gradient(circle at 82% 10%, rgba(229, 222, 252, 0.74) 0, rgba(229, 222, 252, 0) 31%),
        radial-gradient(circle at 22% 72%, rgba(255, 247, 216, 0.58) 0, rgba(255, 247, 216, 0) 30%),
        radial-gradient(circle at 82% 82%, rgba(225, 245, 249, 0.72) 0, rgba(225, 245, 249, 0) 34%),
        linear-gradient(135deg, #fffefa 0%, #fff7f9 28%, #f8f2ff 60%, #effafd 100%);
    font-family: var(--sans);
    line-height: 1.85;
    letter-spacing: 0;
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.2rem;
}

.skip-link {
    position: absolute;
    top: -80px;
    left: 12px;
    z-index: 100;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
}

.skip-link:focus {
    top: 12px;
}

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

.section {
    padding: 76px 0;
}

section[id] {
    scroll-margin-top: 92px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(49, 70, 110, 0.06);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 28px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: grid;
    color: var(--navy);
    line-height: 1.3;
}

.brand__main {
    color: var(--navy);
    background: var(--pastel-heading);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--serif);
    font-size: 1.04rem;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
}

.brand__sub {
    color: var(--muted);
    font-size: 0.78rem;
}

.nav-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
}

.site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    padding: 18px 18px 22px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.site-nav.is-open {
    display: grid;
    gap: 8px;
}

.site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--navy);
    border-radius: 8px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: var(--lavender);
}

.header-cta {
    display: none;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    color: var(--navy);
    background: linear-gradient(135deg, #ffffff, #e7fff4 48%, #f5ecff);
    border: 1px solid rgba(126, 221, 184, 0.54);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 58px;
}

.section-band {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.82) 0, rgba(255, 255, 255, 0) 24%),
        radial-gradient(circle at 78% 20%, rgba(255, 230, 236, 0.66) 0, rgba(255, 230, 236, 0) 28%),
        radial-gradient(circle at 70% 84%, rgba(223, 246, 250, 0.72) 0, rgba(223, 246, 250, 0) 32%),
        linear-gradient(135deg, rgba(255, 252, 246, 0.98) 0%, rgba(251, 239, 250, 0.94) 45%, rgba(237, 247, 251, 0.96) 100%);
}

.section-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.76) 0, rgba(255, 255, 255, 0) 26%),
        radial-gradient(circle at 78% 30%, rgba(246, 233, 191, 0.48) 0, rgba(246, 233, 191, 0) 24%);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 34px;
    align-items: center;
    min-width: 0;
}

.hero__copy {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.eyebrow {
    width: fit-content;
    padding: 5px 12px;
    color: #8995b1;
    background: rgba(247, 241, 255, 0.76);
    border: 1px solid rgba(174, 191, 240, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.4;
    text-transform: none;
    box-shadow: 0 8px 24px rgba(174, 191, 240, 0.1);
}

.section-heading--center .eyebrow {
    margin-inline: auto;
}

.hero h1 {
    max-width: 720px;
    color: var(--navy);
    background: var(--pastel-heading);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 2.75rem;
    text-shadow: 0 12px 34px rgba(216, 189, 114, 0.18);
    -webkit-text-fill-color: transparent;
}

.hero__lead {
    color: var(--navy-soft);
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.7;
}

.hero__text {
    max-width: 680px;
    color: var(--muted);
    font-weight: 600;
}

.hero__media {
    position: relative;
    min-width: 0;
    isolation: isolate;
    padding: 14px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 255, 0.78), rgba(239, 249, 252, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(80, 92, 132, 0.16);
}

.hero__media::before {
    content: "";
    position: absolute;
    inset: -28px;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.78) 0, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 72% 22%, rgba(231, 222, 252, 0.78) 0, rgba(231, 222, 252, 0) 38%),
        radial-gradient(circle at 84% 82%, rgba(255, 229, 236, 0.58) 0, rgba(255, 229, 236, 0) 34%);
    border-radius: 8px;
}

.hero__media img,
.about-visual img,
.video-card img,
.lazy-video__button img {
    filter: brightness(1.03) contrast(0.96) saturate(0.95);
}

.hero__media img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(36, 56, 88, 0.13);
    filter: brightness(1.06) contrast(0.97) saturate(0.96);
}

.cta-row,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    white-space: normal;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.button--youtube {
    color: var(--navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 247, 0.92));
    border-color: rgba(216, 120, 130, 0.28);
    box-shadow: 0 14px 34px rgba(216, 120, 130, 0.12);
}

.button--youtube::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: linear-gradient(135deg, #eaa3ad, #d56f83);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 226, 232, 0.78);
}

.button--line {
    color: var(--navy);
    background: linear-gradient(135deg, #ffffff, #e8fff4 48%, #eff8ff);
    border-color: rgba(104, 196, 157, 0.52);
    box-shadow: 0 18px 42px rgba(104, 196, 157, 0.2);
}

.button--line::before {
    content: "";
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background: linear-gradient(135deg, #a8efd0, #66c49a);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(232, 255, 244, 0.78);
}

.hero .button {
    min-height: 56px;
    padding-inline: 24px;
}

.hero .button--line {
    min-height: 62px;
    padding-inline: 28px;
    font-size: 1.03rem;
}

.button--light {
    color: var(--navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 239, 255, 0.82));
    border-color: var(--border);
}

.button--ghost {
    color: var(--navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(239, 248, 252, 0.72));
    border-color: rgba(49, 70, 110, 0.24);
}

.button--large {
    width: 100%;
    min-height: 62px;
    font-size: 1.05rem;
}

.quick-links {
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(255, 248, 251, 0.62), rgba(245, 240, 255, 0.62), rgba(239, 250, 252, 0.62));
}

.quick-links__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quick-links a {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    background: var(--pastel-surface);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.quick-links__label {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold-soft);
    border-radius: 50%;
    font-weight: 800;
}

.quick-links__line .quick-links__label {
    background: var(--mint);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
    display: grid;
    gap: 12px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
}

.section-heading h2,
.about-section h2,
.concept-section h2,
.services-section h2,
.line-section h2,
.archive-section h2,
.old-page-section h2,
.sns-section h2,
.featured-video__body h3,
.service-card span,
.quick-links strong,
.archive-group summary,
.text-link {
    color: var(--navy);
    background: var(--pastel-heading);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section--youtube {
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 232, 238, 0.66) 0, rgba(255, 232, 238, 0) 26%),
        radial-gradient(circle at 86% 12%, rgba(221, 236, 255, 0.68) 0, rgba(221, 236, 255, 0) 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 255, 0.9));
}

.featured-videos {
    display: grid;
    gap: 20px;
}

.featured-video {
    display: grid;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(253, 247, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lazy-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--lavender);
}

.lazy-video__button {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: var(--lavender);
    cursor: pointer;
}

.lazy-video__button img,
.lazy-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(49, 70, 110, 0.18);
}

.play-mark::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 19px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid var(--rose);
}

.featured-video__body {
    padding: 24px;
    display: grid;
    gap: 10px;
}

.featured-video__body p:not(.video-tag) {
    color: var(--muted);
}

.video-tag {
    width: fit-content;
    padding: 4px 11px;
    color: var(--navy);
    background: var(--blue);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.text-link {
    color: var(--navy);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.section-actions {
    justify-content: center;
    margin-top: 28px;
}

.youtube-line-cta {
    width: min(760px, 100%);
    margin: 26px auto 0;
    padding: 18px;
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
    color: var(--navy-soft);
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 255, 246, 0.72), rgba(247, 240, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.youtube-line-cta p {
    font-weight: 700;
}

.about-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 245, 203, 0.46) 0, rgba(255, 245, 203, 0) 28%),
        linear-gradient(135deg, rgba(255, 252, 246, 0.82), rgba(249, 242, 255, 0.82));
}

.about-section__grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.about-section__grid > div:first-child,
.concept-section__inner,
.line-section__grid {
    background: var(--pastel-surface);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.about-section__grid > div:first-child {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.about-section p,
.concept-section p,
.line-section p,
.service-card p,
.old-page-section p {
    color: var(--muted);
}

.about-visual {
    min-width: 0;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(250, 240, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-visual img {
    border-radius: 8px;
}

.concept-section {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 224, 232, 0.5) 0, rgba(255, 224, 232, 0) 26%),
        radial-gradient(circle at 78% 68%, rgba(219, 242, 247, 0.58) 0, rgba(219, 242, 247, 0) 32%),
        linear-gradient(135deg, rgba(246, 239, 255, 0.86), rgba(239, 248, 252, 0.82));
}

.concept-section__inner {
    display: grid;
    gap: 16px;
    padding: 30px;
}

.concept-section h2 {
    max-width: 900px;
}

.concept-section p:not(.eyebrow) {
    max-width: 860px;
}

.services-section {
    background:
        radial-gradient(circle at 85% 18%, rgba(250, 224, 235, 0.48) 0, rgba(250, 224, 235, 0) 27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 243, 0.84));
}

.services-grid {
    display: grid;
    gap: 16px;
}

.service-card {
    position: relative;
    display: grid;
    gap: 8px;
    min-height: 166px;
    padding: 24px 22px 22px 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 244, 255, 0.8), rgba(241, 250, 253, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.service-card::before,
.service-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.service-card::before {
    left: 22px;
    top: 25px;
    width: 34px;
    height: 34px;
    background:
        radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 38%),
        linear-gradient(135deg, rgba(255, 224, 232, 0.94), rgba(230, 220, 252, 0.9), rgba(246, 233, 191, 0.78));
    box-shadow: 0 10px 24px rgba(216, 120, 130, 0.14);
}

.service-card::after {
    left: 32px;
    top: 35px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.service-card span {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
}

.service-note {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 18px;
    color: var(--muted);
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(249, 242, 255, 0.76));
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.94rem;
}

.line-section {
    background:
        radial-gradient(circle at 22% 18%, rgba(207, 246, 229, 0.68) 0, rgba(207, 246, 229, 0) 30%),
        radial-gradient(circle at 82% 76%, rgba(230, 218, 252, 0.54) 0, rgba(230, 218, 252, 0) 30%),
        linear-gradient(135deg, rgba(247, 255, 250, 0.94), rgba(255, 255, 255, 0.82), rgba(247, 240, 255, 0.78));
}

.beauty-menu-section {
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 214, 228, 0.74) 0, rgba(255, 214, 228, 0) 30%),
        radial-gradient(circle at 84% 22%, rgba(255, 247, 216, 0.58) 0, rgba(255, 247, 216, 0) 28%),
        radial-gradient(circle at 84% 76%, rgba(230, 218, 252, 0.64) 0, rgba(230, 218, 252, 0) 32%),
        linear-gradient(135deg, rgba(255, 252, 246, 0.94), rgba(255, 241, 247, 0.9), rgba(241, 250, 253, 0.84));
}

.beauty-menu-grid {
    display: grid;
    gap: 18px;
}

.beauty-card {
    display: grid;
    overflow: hidden;
    color: var(--navy);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0) 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 238, 246, 0.88), rgba(247, 240, 255, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(190, 118, 152, 0.12);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.beauty-card:hover,
.beauty-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.beauty-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    background: var(--lavender);
    filter: brightness(1.02) contrast(0.98) saturate(0.98);
}

.beauty-card__body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.beauty-card__body h3,
.menu-page-hero h1 {
    color: var(--navy);
    background: var(--pastel-heading);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.beauty-card__button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    margin-top: 4px;
    padding: 9px 16px;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 249, 0.92));
    border: 1px solid rgba(216, 120, 130, 0.2);
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(190, 118, 152, 0.1);
}

.menu-page-hero {
    padding: 86px 0 54px;
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 218, 228, 0.68) 0, rgba(255, 218, 228, 0) 30%),
        radial-gradient(circle at 82% 20%, rgba(220, 210, 250, 0.7) 0, rgba(220, 210, 250, 0) 31%),
        radial-gradient(circle at 82% 82%, rgba(219, 242, 247, 0.76) 0, rgba(219, 242, 247, 0) 34%),
        linear-gradient(135deg, #fffdf9 0%, #fff4f8 36%, #f5efff 66%, #eef9fb 100%);
}

.menu-page-hero__grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.menu-page-hero__copy {
    display: grid;
    gap: 16px;
}

.menu-page-hero__copy p:not(.eyebrow) {
    color: var(--muted);
}

.menu-flyer {
    overflow: hidden;
    min-width: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.menu-flyer img {
    width: 100%;
    border-radius: 8px;
    filter: brightness(1.03) contrast(0.97) saturate(0.97);
}

.menu-page-links {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(246, 239, 255, 0.82));
}

.menu-page-links__inner {
    display: grid;
    gap: 14px;
    padding: 24px;
    background: var(--pastel-surface);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.line-section__grid {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 28px;
}

.line-section__action {
    display: grid;
    gap: 12px;
}

.line-section__action p {
    color: #467661;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
}

.archive-section {
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 235, 210, 0.5) 0, rgba(255, 235, 210, 0) 28%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.72), rgba(255, 255, 255, 0.86));
}

.archive-groups {
    display: grid;
    gap: 14px;
}

.archive-group {
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 240, 255, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.archive-group summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 15px 18px;
    color: var(--navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(247, 240, 255, 0.62));
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    -webkit-text-fill-color: currentColor;
}

.archive-group summary::-webkit-details-marker {
    display: none;
}

.archive-group summary::after {
    content: "+";
    margin-left: auto;
    color: #ba9c4f;
    font-size: 1.35rem;
    line-height: 1;
    -webkit-text-fill-color: #ba9c4f;
}

.archive-group[open] summary::after {
    content: "-";
}

.archive-group[open] summary {
    border-bottom: 1px solid rgba(174, 191, 240, 0.18);
}

.video-card-grid {
    display: grid;
    gap: 14px;
    padding: 0 14px 16px;
}

.video-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(252, 246, 255, 0.8));
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.video-card:hover,
.video-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.video-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--lavender);
}

.video-card span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.5;
}

.video-card--text {
    min-height: 116px;
    background: linear-gradient(135deg, #fff6ec, #f6edff, #eff9fb);
}

.video-card--text span {
    color: var(--navy);
}

.old-page-section {
    background:
        radial-gradient(circle at 16% 18%, rgba(219, 242, 247, 0.62) 0, rgba(219, 242, 247, 0) 30%),
        linear-gradient(135deg, #f0f8fb, #f8f0fb, #fff8f3);
}

.old-page-section__inner {
    display: grid;
    gap: 18px;
    align-items: center;
    padding: 28px;
    background: var(--pastel-surface);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.sns-section {
    background:
        radial-gradient(circle at 86% 18%, rgba(255, 224, 232, 0.58) 0, rgba(255, 224, 232, 0) 28%),
        linear-gradient(135deg, rgba(246, 239, 255, 0.86), rgba(239, 248, 252, 0.82));
}

.sns-grid {
    display: grid;
    gap: 12px;
}

.sns-card {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    color: var(--navy);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.sns-card--primary {
    color: var(--white);
    background: linear-gradient(135deg, #e7a1ad, #d6788b 48%, #b9a7ec);
}

.sns-card--line {
    color: var(--navy);
    background: linear-gradient(135deg, #ffffff, #dff9ed 50%, #edf6ff);
}

.site-footer {
    padding: 42px 0;
    color: var(--navy-soft);
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 224, 232, 0.58) 0, rgba(255, 224, 232, 0) 28%),
        radial-gradient(circle at 86% 24%, rgba(229, 222, 252, 0.7) 0, rgba(229, 222, 252, 0) 32%),
        linear-gradient(135deg, #fffefa 0%, #fff6f8 42%, #f5f1ff 100%);
    border-top: 1px solid rgba(174, 191, 240, 0.18);
}

.site-footer strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.1rem;
}

.site-footer__grid {
    display: grid;
    gap: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.footer-links a {
    color: var(--navy);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.copyright {
    color: var(--muted);
    font-size: 0.9rem;
}

:focus-visible {
    outline: 3px solid rgba(216, 189, 114, 0.78);
    outline-offset: 3px;
}

@media (max-width: 639px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .section {
        padding: 58px 0;
    }

    .hero {
        padding: 58px 0 42px;
    }

    .hero__grid {
        gap: 28px;
    }

    .hero h1 {
        font-size: 2.36rem;
        line-height: 1.18;
    }

    .hero__lead {
        font-size: 1.02rem;
    }

    .hero__text {
        font-size: 0.95rem;
    }

    .hero__media {
        padding: 8px;
    }

    .hero__media::before {
        inset: -14px;
    }

    .cta-row,
    .section-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero__lead,
    .hero__text {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .featured-video__body,
    .beauty-card__body {
        padding: 20px;
    }

    .service-card {
        min-height: auto;
        padding: 22px 18px 20px 64px;
    }

    .service-card::before {
        left: 18px;
        top: 24px;
    }

    .service-card::after {
        left: 28px;
        top: 34px;
    }

    .archive-group summary {
        min-height: 56px;
        padding: 14px 16px;
    }

    .video-card span {
        min-height: auto;
    }
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .quick-links__grid,
    .sns-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid,
    .video-card-grid,
    .beauty-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .section {
        padding: 96px 0;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand__main {
        font-size: 1.18rem;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav a {
        min-height: 42px;
        padding: 8px 10px;
        font-size: 0.92rem;
    }

    .header-cta {
        display: inline-flex;
    }

    .hero {
        min-height: min(760px, calc(100vh - 78px));
        display: grid;
        align-items: center;
        padding: 84px 0 70px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
        gap: 42px;
    }

    .hero__lead {
        font-size: 1.28rem;
    }

    .hero h1 {
        font-size: 4.85rem;
    }

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

    .featured-video--wide {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
        align-items: center;
    }

    .about-section__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
        gap: 44px;
    }

    .about-section__grid > div:first-child,
    .concept-section__inner,
    .line-section__grid,
    .old-page-section__inner {
        padding: 42px;
    }

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

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

    .menu-page-hero__grid {
        grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.76fr);
        gap: 46px;
    }

    .line-section__grid,
    .old-page-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
    }

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

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

    .site-footer__grid {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
    }

    .copyright {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1100px) {
    .site-nav a {
        padding: 8px 14px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
