@charset "UTF-8";

:root {
    --color-base: #fffaf3;
    --color-surface: #ffffff;
    --color-surface-soft: #f8efe1;
    --color-surface-gold: #fff6df;
    --color-main: #c9a65d;
    --color-main-dark: #8c6a2f;
    --color-accent: #e4c982;
    --color-gold: #c9a65d;
    --color-gold-dark: #8c6a2f;
    --color-gold-soft: #f2dfae;
    --color-brown: #5a4632;
    --color-text: #31291f;
    --color-muted: #776b5e;
    --color-border: #eadfcd;
    --color-line: #06c755;
    --color-tel: #2f6f9f;
    --shadow-soft: 0 22px 58px rgba(111, 82, 40, 0.13);
    --shadow-card: 0 14px 36px rgba(111, 82, 40, 0.1);
    --radius-large: 30px;
    --radius-medium: 20px;
    --content-width: 1120px;
    --header-height: 76px;
    --fixed-entry-height: 66px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-base);
    color: var(--color-text);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.03em;
}

body.is-fixed-entry-visible {
    padding-bottom: var(--fixed-entry-height);
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: rgba(255, 248, 247, 0.9);
    border-bottom: 1px solid rgba(234, 215, 212, 0.7);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(80, 45, 51, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100% - 32px, 1220px);
    height: var(--header-height);
    margin: 0 auto;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-header__logo-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-main), var(--color-accent));
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(183, 110, 121, 0.3);
}

.site-header__logo-text {
    display: grid;
    line-height: 1.35;
}

.site-header__logo-text span {
    font-size: 15px;
    font-weight: 700;
}

.site-header__logo-text small {
    color: var(--color-muted);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--color-muted);
    font-size: 14px;
    white-space: nowrap;
}

.site-header__nav a {
    transition: color 0.2s ease;
}

.site-header__nav a:hover {
    color: var(--color-main-dark);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-header__tel,
.site-header__line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.site-header__tel {
    color: var(--color-tel);
    background: #ffffff;
    border: 1px solid rgba(47, 111, 159, 0.2);
}

.site-header__line {
    color: #ffffff;
    background: var(--color-line);
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 148px 0 88px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.9) 0 11%, transparent 28%),
        radial-gradient(circle at 78% 18%, rgba(217, 167, 160, 0.36) 0 13%, transparent 31%),
        radial-gradient(circle at 70% 82%, rgba(183, 110, 121, 0.18) 0 16%, transparent 34%),
        linear-gradient(135deg, #fff8f7 0%, #fff1ef 42%, #f9e0dd 100%);
}

.hero__poster,
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__poster {
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__video {
    z-index: 1;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.92);
}

.hero__bg::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.34) 0 12%, transparent 35%),
        linear-gradient(
            90deg,
            rgba(255, 248, 247, 0.78) 0%,
            rgba(255, 248, 247, 0.70) 34%,
            rgba(255, 248, 247, 0.34) 58%,
            rgba(255, 241, 239, 0.08) 100%
        );
}

.hero__bg::after {
    position: absolute;
    right: -160px;
    top: 100px;
    z-index: 3;
    width: 440px;
    height: 440px;
    content: "";
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    filter: blur(1px);
}

.hero__inner {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 380px;
    align-items: center;
    gap: 54px;
    width: min(100% - 32px, var(--content-width));
    margin: 0 auto;
}

.hero__label,
.section-heading__label,
.entry-card__label {
    margin: 0 0 12px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero__label {
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95);
}

.hero__title {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.9);
}

.hero__lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: #4c3f43;
    font-size: 17px;
    font-weight: 600;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.95);
}

.hero__buttons,
.entry-card__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(80, 45, 51, 0.13);
}

.button--line {
    color: #ffffff;
    background: var(--color-line);
}

.button--tel {
    color: #ffffff;
    background: var(--color-tel);
}

.button--light {
    color: var(--color-main-dark);
    background: #ffffff;
    border: 1px solid rgba(183, 110, 121, 0.18);
}

.button--outline {
    color: var(--color-main-dark);
    background: transparent;
    border: 1px solid rgba(183, 110, 121, 0.28);
}

.hero__note {
    margin: 18px 0 0;
    color: #4c3f43;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95);
}

.hero__card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.hero__card-label {
    margin: 0 0 18px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

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

.hero__point-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    font-weight: 700;
}

.hero__point-list li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    content: "";
    background: linear-gradient(135deg, var(--color-main), var(--color-accent));
    border-radius: 50%;
}

.section {
    padding: 96px 0;
}

.section--intro,
.section--workstyle {
    background: #ffffff;
}

.section--shops {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.section--voices {
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9) 0 10%, transparent 28%),
        linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.section--blog {
    background:
        radial-gradient(circle at 82% 18%, rgba(217, 167, 160, 0.22) 0 12%, transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fff8f7 100%);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.section-heading p:not(.section-heading__label) {
    margin: 18px 0 0;
    color: var(--color-muted);
}

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

.feature-card {
    padding: 30px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
}

.feature-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    color: #ffffff;
    font-family: Georgia, serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-main), var(--color-accent));
    border-radius: 50%;
}

.feature-card h3,
.shop-card h3,
.access-box h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.45;
}

.feature-card p,
.shop-card p,
.access-box p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.section--reward {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.9) 0 9rem, transparent 26rem),
        radial-gradient(circle at 88% 20%, rgba(242, 223, 174, 0.34) 0 9rem, transparent 28rem),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.reward-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.reward-table-card,
.reward-point-card {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 46px);
    background:
        radial-gradient(circle at 50% 0%, rgba(242, 223, 174, 0.34) 0 7rem, transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 58%, #ffffff 100%);
    border: 1px solid rgba(201, 166, 93, 0.28);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.reward-table-card::before,
.reward-point-card::before {
    position: absolute;
    top: 0;
    right: 32px;
    left: 32px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.reward-table-card__label,
.reward-point-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 12px;
    color: var(--color-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

.reward-table-card__label::before,
.reward-point-card__label::before {
    display: inline-block;
    width: 28px;
    height: 1px;
    content: "";
    background: rgba(201, 166, 93, 0.7);
}

.reward-table-card h3,
.reward-point-card h3 {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-align: center;
}

.reward-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin: 32px 0 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.reward-table div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 132px;
    padding: 24px 18px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(242, 223, 174, 0.28) 0 4rem, transparent 10rem),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border: 1px solid rgba(201, 166, 93, 0.28);
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(111, 82, 40, 0.08);
}

.reward-table div:last-child {
    border-bottom: 1px solid rgba(201, 166, 93, 0.28);
}

.reward-table dt {
    width: 100%;
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-align: center;
}

.reward-table dd {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    color: var(--color-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.02em;
    text-align: center;
    overflow-wrap: anywhere;
}

.reward-point-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.reward-point-list li {
    position: relative;
    padding: 14px 16px 14px 44px;
    color: var(--color-brown);
    font-weight: 800;
    background:
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    border: 1px solid rgba(201, 166, 93, 0.24);
    border-radius: 16px;
}

.reward-point-list li::before {
    position: absolute;
    top: 14px;
    left: 16px;
    content: "✓";
    color: var(--color-gold-dark);
    font-weight: 900;
}

.reward-note {
    margin-top: 24px;
    padding: 20px 22px;
    color: var(--color-muted);
    background:
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    border: 1px solid rgba(201, 166, 93, 0.24);
    border-radius: var(--radius-medium);
}

.reward-note p {
    margin: 0;
}

.reward-note p + p {
    margin-top: 6px;
    font-size: 13px;
}

.reward-note strong {
    color: var(--color-gold-dark);
}

.salary-example-block {
    margin-top: 46px;
}

.salary-example-heading {
    margin-bottom: 28px;
}

.salary-example-heading h3 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

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

.salary-example-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
}

.salary-example-card__style {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 4px 12px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
}

.salary-example-card h4 {
    margin: 0;
    color: var(--color-text);
    font-size: 21px;
    line-height: 1.45;
}

.salary-example-card__amount {
    margin: 14px 0 0;
    color: var(--color-main-dark);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.3;
}

.salary-example-card__body {
    margin: 14px 0 0;
    color: var(--color-muted);
}

.salary-example-card__note {
    margin: 16px 0 0;
    padding-top: 14px;
    color: var(--color-muted);
    font-size: 13px;
    border-top: 1px solid var(--color-border);
}

.workstyle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 44px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 14px 16px 14px 42px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 16px;
    left: 16px;
    content: "✓";
    color: var(--color-main-dark);
    font-weight: 800;
}

.workstyle__box {
    padding: 34px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-main-dark), var(--color-main));
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.workstyle__box-title {
    margin: 0;
    font-weight: 700;
    opacity: 0.85;
}

.workstyle__box-time {
    margin: 8px 0 0;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.workstyle__box-text {
    margin: 18px 0 0;
    opacity: 0.88;
}

.section--support {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.94) 0 9rem, transparent 26rem),
        radial-gradient(circle at 86% 12%, rgba(242, 223, 174, 0.3) 0 9rem, transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.support-message-card,
.support-card,
.support-safe-box {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(242, 223, 174, 0.26) 0 6rem, transparent 16rem),
        linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid rgba(201, 166, 93, 0.26);
    box-shadow: var(--shadow-card);
}

.support-message-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: clamp(34px, 5vw, 58px);
    border-radius: var(--radius-large);
}

.support-message-card::before,
.support-safe-box::before {
    position: absolute;
    top: 0;
    right: 32px;
    left: 32px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.support-message-card__label,
.support-safe-box__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--color-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.support-message-card__label::before,
.support-safe-box__label::before {
    display: inline-block;
    width: 28px;
    height: 1px;
    content: "";
    background: rgba(201, 166, 93, 0.7);
}

.support-message-card h3,
.support-safe-box h3 {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.support-message-card p:not(.support-message-card__label),
.support-safe-box p:not(.support-safe-box__label) {
    margin: 18px 0 0;
    color: var(--color-muted);
}

.support-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.support-card-grid--single {
    grid-template-columns: 1fr;
}

.support-card-grid--single .support-card {
    min-height: 100%;
}

.support-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius-large);
}

.support-card::before {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    content: "✓";
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-soft));
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(111, 82, 40, 0.12);
}

.support-card__title {
    margin: 0;
    color: var(--color-brown);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 900;
    line-height: 1.45;
}

.support-card__text {
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.9;
}

.support-safe-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: center;
    margin-top: 24px;
    padding: clamp(28px, 4vw, 42px);
    border-radius: var(--radius-large);
}

.support-safe-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-safe-list li {
    position: relative;
    padding: 14px 16px 14px 42px;
    color: var(--color-brown);
    font-weight: 800;
    background:
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    border: 1px solid rgba(201, 166, 93, 0.24);
    border-radius: 16px;
}

.support-safe-list li::before {
    position: absolute;
    top: 14px;
    left: 16px;
    content: "✓";
    color: var(--color-gold-dark);
    font-weight: 900;
}

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

.voice-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
}

.voice-card::before {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    content: "“";
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-main), var(--color-accent));
    border-radius: 50%;
}

.voice-card__profile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 12px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
}

.voice-card__profile span {
    display: inline-flex;
    padding: 3px 9px;
    color: var(--color-muted);
    font-size: 12px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
}

.voice-card h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.45;
}

.voice-card__body {
    margin: 14px 0 0;
    color: var(--color-muted);
}

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

.blog-card {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(80, 45, 51, 0.14);
}

.blog-card__image {
    display: grid;
    place-items: center;
    height: 190px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.82) 0 12%, transparent 30%),
        linear-gradient(135deg, #f5d8d4, #d9a7a0);
}

.blog-card__image img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.blog-card__image span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    background: rgba(143, 79, 90, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.blog-card__body {
    padding: 26px;
}

.blog-card__date {
    margin: 0 0 8px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
}

.blog-card h3 {
    margin: 0;
    color: var(--color-text);
    font-size: 20px;
    line-height: 1.45;
}

.blog-card__text {
    margin: 14px 0 0;
    color: var(--color-muted);
}

.blog-card__more {
    display: inline-flex;
    margin: 18px 0 0;
    color: var(--color-main-dark);
    font-size: 14px;
    font-weight: 800;
}

.section-heading__button {
    margin-top: 24px !important;
}

.blog-page,
.blog-detail-page {
    padding-top: 148px;
}

.blog-empty-text {
    margin: 0;
    padding: 34px;
    color: var(--color-muted);
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-card);
}

.blog-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 56px);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.blog-detail__date {
    margin: 0 0 12px;
    color: var(--color-main-dark);
    font-size: 14px;
    font-weight: 800;
}

.blog-detail h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.blog-detail__image {
    margin-top: 30px;
    overflow: hidden;
    border-radius: var(--radius-medium);
}

.blog-detail__image img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
}

.blog-detail__lead {
    margin: 30px 0 0;
    padding: 22px 24px;
    color: var(--color-main-dark);
    font-weight: 700;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
}

.blog-detail__body {
    margin-top: 32px;
    color: var(--color-text);
    line-height: 2;
}

.blog-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

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

.shop-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.shop-card__image {
    display: grid;
    place-items: center;
    min-height: 220px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0 12%, transparent 30%),
        linear-gradient(135deg, #f5d8d4, #d9a7a0);
}

.shop-card__image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.shop-card__image span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    color: #ffffff;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    background: rgba(143, 79, 90, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.shop-card__body {
    padding: 28px;
}

.shop-card__catch {
    color: var(--color-main-dark) !important;
    font-weight: 800;
}

.shop-card__info {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 18px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.shop-card__info div {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
}

.shop-card__info dt {
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
}

.shop-card__info dd {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
}

.access-box {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: 24px;
    margin-top: 24px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.access-box__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.access-box__label {
    margin: 0 0 6px;
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.access-box__info {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
}

.access-box__info div {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 16px;
}

.access-box__info dt {
    color: var(--color-main-dark);
    font-size: 13px;
    font-weight: 800;
}

.access-box__info dd {
    margin: 0;
    color: var(--color-muted);
}

.access-box__note {
    margin-top: 18px !important;
}

.access-box__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.access-map {
    min-height: 360px;
    overflow: hidden;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
}

.access-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(80, 45, 51, 0.06);
}

.faq-item summary {
    position: relative;
    padding: 20px 58px 20px 24px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 24px;
    content: "+";
    color: var(--color-main-dark);
    font-size: 24px;
    font-weight: 500;
    transform: translateY(-50%);
}

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

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

.faq-item__answer p {
    margin: 0;
}

.entry-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.82) 0 10%, transparent 28%),
        linear-gradient(135deg, #8f4f5a 0%, #b76e79 48%, #d9a7a0 100%);
}

.entry-card {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 60px);
    color: #ffffff;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius-large);
    box-shadow: 0 24px 60px rgba(50, 24, 30, 0.18);
    backdrop-filter: blur(10px);
}

.entry-card__label {
    color: #ffffff;
    opacity: 0.9;
}

.entry-card h2 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.35;
}

.entry-card p:not(.entry-card__label) {
    max-width: 680px;
    margin: 20px auto 0;
    opacity: 0.9;
}

.entry-card__buttons {
    justify-content: center;
}

.contact-page {
    padding-top: var(--header-height);
    background:
        radial-gradient(circle at 82% 14%, rgba(217, 167, 160, 0.24) 0 12%, transparent 32%),
        linear-gradient(180deg, #fff8f7 0%, #ffffff 100%);
}

.contact-hero {
    padding: 72px 0 44px;
    text-align: center;
}

.contact-hero h1 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.contact-hero p:not(.section-heading__label) {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--color-muted);
}

.contact-section {
    padding: 0 0 96px;
}

.contact-card {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(26px, 5vw, 44px);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.contact-card--center {
    text-align: center;
}

.contact-card__header {
    margin-bottom: 28px;
}

.contact-card__header h2,
.contact-card h2 {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.4;
}

.contact-card__header p,
.contact-card p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.contact-alert {
    max-width: 920px;
    margin: 0 auto 18px;
    padding: 16px 18px;
    border-radius: 18px;
}

.contact-alert p {
    margin: 0;
}

.contact-alert p + p {
    margin-top: 6px;
}

.contact-alert--error {
    color: #8d2929;
    background: #fff0f0;
    border: 1px solid #f1c7c7;
}

.contact-alert--success {
    color: #286744;
    background: #edf8f1;
    border: 1px solid #bfe5cf;
}

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

.contact-form-group {
    margin-bottom: 20px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 800;
}

.contact-form-group label span {
    display: inline-flex;
    margin-left: 5px;
    padding: 1px 7px;
    color: #ffffff;
    font-size: 11px;
    background: var(--color-main-dark);
    border-radius: 999px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    min-height: 50px;
    padding: 11px 14px;
    color: var(--color-text);
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form-group textarea {
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--color-main);
    box-shadow: 0 0 0 4px rgba(183, 110, 121, 0.14);
}

.contact-form-note {
    margin: 7px 0 0 !important;
    color: var(--color-muted);
    font-size: 13px;
}

.contact-privacy {
    margin-top: 24px;
    padding: 22px;
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
}

.contact-privacy p {
    margin: 0;
    color: var(--color-muted);
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    color: var(--color-text);
    font-weight: 800;
    cursor: pointer;
}

.contact-check input {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-submit {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.contact-submit--between {
    justify-content: space-between;
}

.contact-confirm-list {
    margin: 0;
    border-top: 1px solid var(--color-border);
}

.contact-confirm-list div {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-confirm-list dt {
    color: var(--color-main-dark);
    font-weight: 800;
}

.contact-confirm-list dd {
    margin: 0;
    color: var(--color-text);
    overflow-wrap: anywhere;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.contact-form__hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    padding: 28px 0;
    background: #ffffff;
    border-top: 1px solid var(--color-border);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer__name,
.site-footer__copy {
    margin: 0;
}

.site-footer__name {
    font-weight: 800;
}

.site-footer__copy {
    color: var(--color-muted);
    font-size: 13px;
}

.fixed-entry {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: var(--fixed-entry-height);
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -10px 30px rgba(80, 45, 51, 0.1);
}

.fixed-entry a {
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800;
}

.fixed-entry a:nth-child(1) {
    color: #ffffff;
    background: var(--color-line);
}

.fixed-entry a:nth-child(2) {
    color: #ffffff;
    background: var(--color-tel);
}

.fixed-entry a:nth-child(3) {
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
}

/* 第14段階：白・ベージュ・ゴールド系の上品な高級感 */
body {
    background:
        radial-gradient(circle at 10% 4%, rgba(255, 255, 255, 0.95) 0 9rem, transparent 25rem),
        radial-gradient(circle at 88% 10%, rgba(242, 223, 174, 0.42) 0 8rem, transparent 26rem),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 46%, #f9f0df 100%);
}

.site-header {
    background: rgba(255, 250, 243, 0.9);
    border-bottom: 1px solid rgba(201, 166, 93, 0.22);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 34px rgba(111, 82, 40, 0.11);
}

.site-header__logo-mark {
    background:
        linear-gradient(135deg, #8c6a2f 0%, #c9a65d 48%, #f2dfae 100%);
    box-shadow: 0 12px 26px rgba(140, 106, 47, 0.28);
}

.site-header__nav a:hover {
    color: var(--color-gold-dark);
}

.site-header__tel {
    color: var(--color-brown);
    background: #ffffff;
    border-color: rgba(201, 166, 93, 0.32);
}

.site-header__line {
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.18);
}

.hero {
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, rgba(255, 250, 243, 0.86) 100%);
}

.hero__bg {
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.95) 0 11%, transparent 29%),
        radial-gradient(circle at 78% 18%, rgba(242, 223, 174, 0.48) 0 13%, transparent 31%),
        radial-gradient(circle at 72% 82%, rgba(201, 166, 93, 0.18) 0 16%, transparent 34%),
        linear-gradient(135deg, #fffaf3 0%, #f7ead6 48%, #fff6df 100%);
}

.hero__video {
    filter: brightness(0.9) saturate(0.86) sepia(0.12);
}

.hero__bg::before {
    background:
        radial-gradient(circle at 17% 28%, rgba(255, 255, 255, 0.46) 0 12%, transparent 34%),
        linear-gradient(
            90deg,
            rgba(255, 250, 243, 0.88) 0%,
            rgba(255, 250, 243, 0.78) 36%,
            rgba(255, 250, 243, 0.44) 62%,
            rgba(255, 246, 223, 0.14) 100%
        );
}

.hero__bg::after {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(242, 223, 174, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.hero__label,
.section-heading__label,
.entry-card__label {
    color: var(--color-gold-dark);
}

.hero__label,
.hero__title,
.hero__lead,
.hero__note {
    text-shadow: 0 3px 18px rgba(255, 255, 255, 0.98);
}

.hero__title {
    color: var(--color-text);
}

.hero__lead,
.hero__note {
    color: #4f4437;
}

.hero__card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.9));
    border: 1px solid rgba(201, 166, 93, 0.26);
    box-shadow: 0 24px 64px rgba(111, 82, 40, 0.14);
}

.hero__card-label {
    color: var(--color-gold-dark);
}

.hero__point-list li::before {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-soft));
}

.button--light {
    color: var(--color-gold-dark);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(201, 166, 93, 0.36);
}

.button--outline {
    color: var(--color-gold-dark);
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(201, 166, 93, 0.38);
}

.button--tel {
    background: linear-gradient(135deg, #2f6f9f, #3c86bb);
}

.button:hover {
    box-shadow: 0 16px 34px rgba(111, 82, 40, 0.16);
}

.section {
    position: relative;
    overflow: hidden;
}

.section::before {
    position: absolute;
    top: 34px;
    right: max(24px, calc((100% - var(--content-width)) / 2));
    width: 120px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(201, 166, 93, 0.7), transparent);
}

.section--intro {
    background:
        radial-gradient(circle at 14% 14%, rgba(242, 223, 174, 0.24) 0 9rem, transparent 24rem),
        #ffffff;
}

.section--workstyle {
    background:
        linear-gradient(135deg, #fffaf3 0%, #ffffff 45%, #f8efe1 100%);
}

.section--shops {
    background:
        radial-gradient(circle at 82% 12%, rgba(242, 223, 174, 0.32) 0 9rem, transparent 28rem),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.section--voices {
    background:
        radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.92) 0 10%, transparent 28%),
        linear-gradient(180deg, #f8efe1 0%, #ffffff 100%);
}

.section--blog {
    background:
        radial-gradient(circle at 82% 18%, rgba(201, 166, 93, 0.18) 0 12%, transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.section-heading {
    position: relative;
}

.section-heading__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.18em;
}

.section-heading__label::before,
.section-heading__label::after {
    display: inline-block;
    width: 28px;
    height: 1px;
    content: "";
    background: rgba(201, 166, 93, 0.7);
}

.section-heading:not(.section-heading--center) .section-heading__label::before {
    display: none;
}

.section-heading h2,
.salary-example-heading h3,
.entry-card h2,
.contact-hero h1,
.blog-detail h1 {
    color: var(--color-text);
}

.feature-card,
.reward-card,
.salary-example-card,
.voice-card,
.blog-card,
.shop-card,
.access-box,
.faq-item,
.contact-card,
.blog-detail,
.blog-empty-text {
    background:
        linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid rgba(201, 166, 93, 0.22);
    box-shadow: var(--shadow-card);
}

.feature-card,
.reward-card,
.salary-example-card,
.voice-card,
.blog-card,
.shop-card,
.faq-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.reward-card:hover,
.salary-example-card:hover,
.voice-card:hover,
.blog-card:hover,
.shop-card:hover,
.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 166, 93, 0.42);
    box-shadow: 0 22px 48px rgba(111, 82, 40, 0.14);
}

.feature-card__num,
.voice-card::before {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-soft));
}

.feature-card h3,
.voice-card h3,
.blog-card h3,
.shop-card h3,
.access-box h3,
.salary-example-card h4 {
    color: var(--color-brown);
}

.salary-example-card::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.salary-example-card__amount {
    color: var(--color-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.02em;
}

.reward-note,
.shop-card__info,
.access-box__info div,
.contact-privacy,
.check-list li {
    background:
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
    border-color: rgba(201, 166, 93, 0.24);
}

.salary-example-card__style,
.voice-card__profile span {
    color: var(--color-gold-dark);
    background: #fff6df;
    border-color: rgba(201, 166, 93, 0.28);
}

.workstyle__box {
    color: var(--color-brown);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72) 0 12%, transparent 30%),
        linear-gradient(135deg, #fff6df 0%, #e4c982 48%, #c9a65d 100%);
    border: 1px solid rgba(140, 106, 47, 0.16);
    box-shadow: 0 24px 56px rgba(111, 82, 40, 0.16);
}

.workstyle__box-title,
.workstyle__box-text {
    opacity: 0.86;
}

.check-list li::before {
    color: var(--color-gold-dark);
}

.support-list__item {
    color: var(--color-gold-dark);
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
    border-color: rgba(201, 166, 93, 0.24);
    box-shadow: 0 10px 26px rgba(111, 82, 40, 0.08);
}

.blog-card__image,
.shop-card__image {
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.86) 0 12%, transparent 30%),
        linear-gradient(135deg, #fff6df 0%, #e4c982 48%, #c9a65d 100%);
}

.blog-card__image span,
.shop-card__image span {
    background: rgba(140, 106, 47, 0.52);
    border-color: rgba(255, 255, 255, 0.58);
}

.blog-card__date,
.blog-card__more,
.shop-card__catch,
.access-box__label,
.access-box__info dt,
.shop-card__info dt,
.faq-item summary::after,
.contact-confirm-list dt,
.contact-card__header h2,
.contact-card h2 {
    color: var(--color-gold-dark) !important;
}

.faq-item summary {
    color: var(--color-brown);
}

.entry-section {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.86) 0 10%, transparent 28%),
        radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.32) 0 12%, transparent 30%),
        linear-gradient(135deg, #8c6a2f 0%, #c9a65d 50%, #f2dfae 100%);
}

.entry-card {
    color: var(--color-brown);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 28px 68px rgba(80, 55, 18, 0.18);
}

.entry-card__label {
    color: var(--color-brown);
}

.entry-card p:not(.entry-card__label) {
    opacity: 0.86;
}

.contact-page {
    background:
        radial-gradient(circle at 82% 14%, rgba(242, 223, 174, 0.34) 0 12%, transparent 32%),
        linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
}

.contact-form-group label span {
    background: var(--color-gold-dark);
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201, 166, 93, 0.15);
}

.site-footer {
    background: #fffdf8;
    border-top-color: rgba(201, 166, 93, 0.24);
}

.fixed-entry {
    border-top-color: rgba(201, 166, 93, 0.28);
    box-shadow: 0 -12px 34px rgba(111, 82, 40, 0.12);
}

@media (max-width: 1080px) {
    .site-header__nav {
        display: none;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__card {
        max-width: 520px;
    }

    .support-layout,
    .support-safe-box {
        grid-template-columns: 1fr;
    }

    .support-message-card,
    .support-card {
        min-height: auto;
    }

    .support-card-grid {
        grid-template-columns: 1fr;
    }

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

    .reward-layout {
        grid-template-columns: 1fr;
    }

    .reward-table div {
        grid-template-columns: 1fr;
    }
}

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

    body {
        font-size: 15px;
    }

    .site-header__inner {
        width: min(100% - 24px, 1220px);
    }

    .site-header__logo-mark {
        width: 38px;
        height: 38px;
    }

    .site-header__logo-text span {
        font-size: 13px;
    }

    .site-header__actions {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 64px;
    }

    .hero__inner,
    .container {
        width: min(100% - 24px, var(--content-width));
    }

    .hero__buttons,
    .entry-card__buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }

    .feature-grid,
    .salary-example-grid,
    .workstyle,
    .voice-grid,
    .blog-grid,
    .shop-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .reward-layout {
        grid-template-columns: 1fr;
    }

    .reward-table div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

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

    .support-card-grid,
    .support-safe-list {
        grid-template-columns: 1fr;
    }

    .access-box {
        grid-template-columns: 1fr;
    }

    .access-box__info div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .access-box__buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .access-map,
    .access-map iframe {
        min-height: 300px;
    }

    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-submit,
    .contact-submit--between {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-submit form,
    .contact-submit button {
        width: 100%;
    }

    .contact-confirm-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .fixed-entry {
        display: grid;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 38px;
    }

    .hero__lead {
        font-size: 15px;
    }

    .hero__card,
    .feature-card,
    .workstyle__box,
    .access-box,
    .access-map,
    .entry-card {
        border-radius: 22px;
    }

    .reward-table-card,
    .reward-point-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .reward-table div {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px;
    }

    .reward-table dd {
        font-size: 38px;
    }

    .workstyle__box-time {
        font-size: 34px;
    }
}