/**
 * TOKYO LABEL LP - 下層ページ追加スタイル
 */

/* ==========================================================================
   下層ページ Hero（コンパクト版）
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--black);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.page-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.page-hero__label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}

.page-hero__title {
    font-family: var(--font-ja);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 24px;
}

.page-hero__lead {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
}

/* ==========================================================================
   Search Intent Section
   ========================================================================== */
.intent {
    padding: 80px 0;
    background: var(--white);
}

.intent__content {
    max-width: 720px;
}

.intent__text {
    font-size: 16px;
    line-height: 2.2;
    color: var(--text);
}

.intent__text p {
    margin-bottom: 20px;
}

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

/* ==========================================================================
   Perspective Section（東京レーベルの立場）
   ========================================================================== */
.perspective {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.perspective__inner {
    max-width: 720px;
}

.perspective__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 24px;
}

.perspective__text {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
}

/* ==========================================================================
   Brands Section（下層ページ版）
   ========================================================================== */
.page-brands {
    padding: 100px 0;
    background: var(--black);
}

.page-brands__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 48px;
}

.page-brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-brands__grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.page-brands__grid--1main {
    grid-template-columns: 2fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-brands__grid,
    .page-brands__grid--2col,
    .page-brands__grid--1main {
        grid-template-columns: 1fr;
    }
}

/* Brand Card Mini */
.brand-card-mini {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 32px;
    transition: all 0.4s var(--ease-out);
}

.brand-card-mini:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.brand-card-mini--main {
    border-color: var(--gold);
    background: rgba(212, 165, 116, 0.05);
}

.brand-card-mini__label {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
}

.brand-card-mini__name {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 4px;
}

.brand-card-mini__name-ja {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.brand-card-mini__desc {
    font-size: 13px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.brand-card-mini__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
    transition: all 0.3s;
}

.brand-card-mini__link:hover {
    color: var(--gold-light);
}

.brand-card-mini__link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.3s;
}

.brand-card-mini__link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   How to Think Section
   ========================================================================== */
.think {
    padding: 80px 0;
    background: var(--white);
}

.think__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 48px;
}

.think__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.think__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.think__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--white);
}

.think__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    padding-top: 4px;
}

/* ==========================================================================
   Related Reading Section
   ========================================================================== */
.related {
    padding: 80px 0;
    background: #f9f7f4;
}

.related__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
}

.related__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}

.related__item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.related__icon {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.related__link {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.related__link:hover {
    color: var(--gold);
}

/* ==========================================================================
   Page CTA Section
   ========================================================================== */
.page-cta {
    padding: 100px 0;
    background: var(--black);
    text-align: center;
}

.page-cta__title {
    font-family: var(--font-ja);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.page-cta__text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.page-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-cta__buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
    padding: 100px 0 0;
    background: var(--black);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
}

.breadcrumb__item {
    color: var(--text-muted);
}

.breadcrumb__item a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.breadcrumb__item a:hover {
    color: var(--gold);
}

.breadcrumb__sep {
    color: var(--text-muted);
    margin: 0 4px;
}

/* ==========================================================================
   Brand Detail Card (brands/index.html)
   ========================================================================== */
.brands-list {
    padding: 100px 0;
    background: var(--white);
}

.brand-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.brand-detail-card:last-child {
    margin-bottom: 0;
}

.brand-detail-card--reverse {
    direction: rtl;
}

.brand-detail-card--reverse > * {
    direction: ltr;
}

.brand-detail-card__image {
    border-radius: 8px;
    overflow: hidden;
}

.brand-detail-card__image img {
    width: 100%;
    height: auto;
}

.brand-detail-card__label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.brand-detail-card__name {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 8px;
}

.brand-detail-card__name-ja {
    font-size: 14px;
    color: var(--text);
    opacity: 0.6;
    margin-bottom: 24px;
}

.brand-detail-card__desc {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 32px;
}

.brand-detail-card__links {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .brand-detail-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .brand-detail-card--reverse {
        direction: ltr;
    }
    .brand-detail-card__name {
        font-size: 36px;
    }
}

/* ==========================================================================
   Brand Intro Section
   ========================================================================== */
.brand-intro {
    padding: 100px 0;
    background: var(--white);
}

.brand-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-intro__image {
    border-radius: 8px;
    overflow: hidden;
}

.brand-intro__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
}

.brand-intro__text {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .brand-intro__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================================================
   Brand Features
   ========================================================================== */
.brand-features {
    padding: 100px 0;
    background: #f9f7f4;
}

.brand-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.brand-feature {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
}

.brand-feature__num {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 16px;
}

.brand-feature__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
}

.brand-feature__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .brand-features__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Brand CTA
   ========================================================================== */
.brand-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.brand-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.brand-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
}

.brand-cta__content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.brand-cta__label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}

.brand-cta__title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 32px;
}

/* ==========================================================================
   Other Brands
   ========================================================================== */
.other-brands {
    padding: 80px 0;
    background: var(--white);
}

.other-brands__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.other-brand-card {
    display: block;
    padding: 32px 48px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.other-brand-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.other-brand-card__label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 8px;
}

.other-brand-card__name {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text);
}

/* ==========================================================================
   Area List
   ========================================================================== */
.area-list {
    padding: 80px 0;
    background: var(--black);
}

.area-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.area-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.area-card:hover .area-card__bg {
    transform: scale(1.1);
}

.area-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.area-card__content {
    position: relative;
    z-index: 10;
    padding: 24px;
    width: 100%;
}

.area-card__label {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.area-card__name {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 8px 0;
}

.area-card__desc {
    font-size: 12px;
    color: var(--text-muted);
}

.area-card--coming {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
}

.area-card--coming .area-card__content {
    text-align: center;
}

@media (max-width: 768px) {
    .area-list__grid {
        grid-template-columns: 1fr;
    }
}

/* Type List - see updated definition below (line ~3315) */

/* ==========================================================================
   Magazine Hero
   ========================================================================== */
.magazine-hero {
    padding: 160px 0 80px;
    background: var(--white);
    text-align: center;
}

.magazine-hero__label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}

.magazine-hero__title {
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 16px;
}

.magazine-hero__lead {
    font-size: 14px;
    color: var(--text);
    opacity: 0.6;
}

/* ==========================================================================
   Magazine Categories
   ========================================================================== */
.magazine-categories {
    padding: 0 0 40px;
    background: var(--white);
}

.magazine-categories__list {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.magazine-category {
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    transition: all 0.3s;
}

.magazine-category:hover,
.magazine-category.active {
    border-color: var(--gold);
    color: var(--gold);
}

/* ==========================================================================
   Magazine Content
   ========================================================================== */
.magazine-content {
    padding: 40px 0 100px;
    background: #f9f7f4;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.article-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.article-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #999;
}

.article-card__content {
    padding: 24px;
}

.article-card__category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 12px;
}

.article-card__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 12px;
}

.article-card__excerpt {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 16px;
}

.article-card__date {
    font-size: 12px;
    color: #999;
}

.article-card--coming {
    opacity: 0.7;
}

.magazine-coming-notice {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--white);
    border-radius: 8px;
}

.magazine-coming-notice p {
    font-size: 14px;
    color: var(--text);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .magazine-grid {
        grid-template-columns: 1fr;
    }
    .magazine-hero__title {
        font-size: 40px;
    }
}

/* ==========================================================================
   Feature List
   ========================================================================== */
.feature-list {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    position: relative;
    padding: 48px;
    background: #f9f7f4;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card--coming {
    opacity: 0.7;
}

.feature-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 12px;
}

.feature-card__icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 14px;
    color: var(--text);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .feature-list__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Recruit Coming
   ========================================================================== */
.recruit-coming {
    padding: 120px 0;
    background: var(--white);
}

.recruit-coming__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.recruit-coming__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.recruit-coming__title {
    font-family: var(--font-en);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 24px;
}

.recruit-coming__text {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 48px;
}

.recruit-coming__brands p {
    font-size: 13px;
    color: var(--text);
    opacity: 0.6;
    margin-bottom: 16px;
}

.recruit-coming__brand-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.recruit-coming__brand-list span {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid var(--gold);
    border-radius: 4px;
}

/* ==========================================================================
   About Sections
   ========================================================================== */
.about-philosophy {
    padding: 100px 0;
    background: var(--white);
}

.about-philosophy__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-philosophy__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 16px;
}

.about-philosophy__lead {
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 48px;
}

.about-philosophy__text {
    text-align: left;
}

.about-philosophy__text p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 24px;
}

/* ==========================================================================
   About Stance Section
   ========================================================================== */
.about-stance {
    padding: 100px 0;
    background: var(--black);
}

.about-stance .section-title {
    color: var(--white);
}

.about-stance__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.about-stance__item {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.about-stance__item-title {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.about-stance__item-text {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
}

@media (max-width: 960px) {
    .about-stance__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   About Numbers Section
   ========================================================================== */
.about-numbers {
    padding: 80px 0;
    background: var(--black);
}

.about-numbers .section-title {
    color: var(--white);
}

.about-numbers .section-lead {
    color: var(--text-light);
}

.about-numbers__grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 48px;
}

.about-number {
    text-align: center;
}

.about-number__value {
    display: block;
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.about-number__value small {
    font-size: 20px;
}

.about-number__label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

.about-brands-summary {
    padding: 80px 0;
    background: #f9f7f4;
}

.about-brands-summary__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.about-brand-item {
    display: block;
    padding: 40px 60px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.about-brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-brand-item__label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 8px;
}

.about-brand-item__name {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text);
}

@media (max-width: 768px) {
    .about-numbers__grid {
        flex-direction: column;
        gap: 40px;
    }
    .about-brands-summary__grid {
        flex-direction: column;
    }
    .about-brand-item {
        padding: 32px;
    }
}

/* ==========================================================================
   Page Hero Subtitle
   ========================================================================== */
.page-hero__subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: -16px;
    margin-bottom: 24px;
}

.header__nav a.active {
    color: var(--gold);
}

/* ==========================================================================
   Brand Why Section (選ばれる理由)
   ========================================================================== */
.brand-why {
    padding: 100px 0;
    background: var(--white);
}

.brand-why__content {
    max-width: 800px;
    margin: 48px auto 0;
}

.brand-why__item {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand-why__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.brand-why__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
}

.brand-why__text {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    opacity: 0.8;
}

/* ==========================================================================
   Brand Scene Section (利用シーン)
   ========================================================================== */
.brand-scene {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.brand-scene__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.brand-scene__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.brand-scene .container {
    position: relative;
    z-index: 10;
}

.brand-scene__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.brand-scene__item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.brand-scene__icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.brand-scene__icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.brand-scene__icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}

.brand-scene__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.brand-scene__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .brand-scene__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Brand Card Mini - Clickable Enhancement
   ========================================================================== */
a.brand-card-mini {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

a.brand-card-mini:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

a.brand-card-mini .brand-card-mini__link {
    pointer-events: none;
}

/* ==========================================================================
   Sister Brands Section (関西LP用クロスセル)
   ========================================================================== */
.sister-brands {
    padding: 80px 0;
    background: var(--cream);
}

.sister-brands__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
}

.sister-brands__lead {
    font-size: 15px;
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.8;
}

.sister-brands__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sister-brands__grid {
        grid-template-columns: 1fr;
    }
}

/* Brand Card Mini - Single (メイン1枚大きく) */
.page-brands--single {
    padding: 80px 0;
}

.page-brands__grid--single {
    max-width: 600px;
    margin: 0 auto;
}

.brand-card-mini--main {
    padding: 40px;
}

.brand-card-mini--main .brand-card-mini__name {
    font-size: 32px;
}

.brand-card-mini--main .brand-card-mini__desc {
    font-size: 15px;
    line-height: 2;
}

.brand-card-mini--main .brand-card-mini__link {
    margin-top: 24px;
}

/* Brand Card Mini - Small (姉妹ブランド用) */
.brand-card-mini--small {
    padding: 24px;
}

.brand-card-mini--small .brand-card-mini__name {
    font-size: 20px;
}

.brand-card-mini--small .brand-card-mini__desc {
    font-size: 13px;
}

/* ==========================================================================
   Area List - Region Sections
   ========================================================================== */
.area-list__region {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-align: center;
    margin: 60px 0 8px;
}

.area-list__region:first-of-type {
    margin-top: 0;
}

.area-list__region-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 24px;
}

.area-card--kansai {
    border-color: rgba(201, 168, 124, 0.3);
}

.area-card--kansai::before {
    content: 'MEIMON';
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 10;
}
-bottom: 48px;
}

.recruit-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.recruit-faq__item {
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 16px;
}

.recruit-faq__q {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.recruit-faq__q::before {
    content: 'Q';
    position: absolute;
    left: 0;
    font-family: var(--font-en);
    font-weight: 600;
    color: var(--gold);
}

.recruit-faq__a {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.8;
    padding-left: 28px;
}

/* ==========================================================================
   Recruit Requirements Table
   ========================================================================== */
.recruit-requirements {
    padding: 100px 0;
    background: var(--white);
}

.recruit-requirements .section-title {
    margin-bottom: 16px;
}

.recruit-requirements .section-lead {
    margin-bottom: 60px;
}

.recruit-requirements__table {
    max-width: 900px;
    margin: 0 auto;
}

.recruit-req-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.recruit-req-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.recruit-req-item__label {
    font-family: var(--font-ja);
    font-size: 15px;
    font-weight: 500;
    color: var(--gold-dark, #B8956A);
    padding-top: 2px;
}

.recruit-req-item__content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.recruit-req-item__content p {
    margin-bottom: 8px;
}

.recruit-req-item__content p:last-child {
    margin-bottom: 0;
}

.recruit-req-item__content strong {
    font-weight: 500;
}

.recruit-req-item__note {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    margin-top: 8px;
}

.recruit-req-item__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 24px;
}

.recruit-req-item__list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
}

.recruit-req-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .recruit-req-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recruit-req-item__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Recruit CTA */
.recruit-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.recruit-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.recruit-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.recruit-cta .container {
    position: relative;
    z-index: 10;
}

.recruit-cta__content {
    text-align: center;
}

.recruit-cta__title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.recruit-cta__lead {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.recruit-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .recruit-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

.recruit-cta__tel {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--white);
}

.recruit-cta__hours {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Button Variants */
.btn--line {
    background: #06C755;
    color: var(--white);
}

.btn--line:hover {
    background: #05b04c;
}

.btn--large {
    padding: 18px 48px;
    font-size: 16px;
}

/* ==========================================================================
   Article / Magazine Styles
   ========================================================================== */

/* Article Header */
.article__header {
    padding: 80px 0 40px;
    background: var(--cream);
}

.article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.article__category {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 2px;
    text-decoration: none;
}

.article__date {
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--text-muted);
}

.article__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .article__title {
        font-size: 24px;
    }
}

.article__excerpt {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.8;
}

/* Article Eye Catch */
.article__eyecatch {
    padding: 0 0 40px;
    background: var(--cream);
}

.article__eyecatch img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Article Body */
.article__body {
    padding: 60px 0;
    background: var(--white);
}

.article__body .container {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    max-width: 1100px;
}

@media (max-width: 960px) {
    .article__body .container {
        grid-template-columns: 1fr;
    }
    
    .article__sidebar {
        order: -1;
    }
}

/* Article Content */
.article__content {
    font-size: 16px;
    line-height: 2;
    color: var(--text);
}

.article__content p {
    margin-bottom: 24px;
}

.article__content h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text);
    margin: 56px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.article__content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    margin: 40px 0 16px;
}

.article__content ul,
.article__content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article__content li {
    margin-bottom: 12px;
}

.article__content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.article__content blockquote p {
    margin: 0;
    font-style: italic;
}

.article__content strong {
    color: var(--gold);
    font-weight: 500;
}

/* Sidebar */
.article__sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--cream);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget__title {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
}

/* TOC */
.toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.toc li {
    counter-increment: toc;
    margin-bottom: 12px;
}

.toc a {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    gap: 8px;
    transition: color 0.3s;
}

.toc a::before {
    content: counter(toc) ".";
    color: var(--gold);
    font-family: var(--font-en);
}

.toc a:hover {
    color: var(--gold);
}

/* Sidebar Brand CTA */
.sidebar-brand {
    display: block;
    background: var(--dark);
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.3s;
}

.sidebar-brand:hover {
    transform: translateY(-4px);
}

.sidebar-brand__label {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gold);
    display: block;
}

.sidebar-brand__name {
    font-family: var(--font-en);
    font-size: 20px;
    letter-spacing: 0.1em;
    color: var(--white);
    display: block;
    margin: 4px 0;
}

.sidebar-brand__desc {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.sidebar-brand__link {
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--gold);
}

/* Article CTA */
.article-cta {
    padding: 60px 0;
    background: var(--cream);
}

.article-cta__box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.article-cta__box[data-brand="fuwaly"] {
    border-top: 4px solid var(--gold);
}

.article-cta__box[data-brand="haitoku"] {
    border-top: 4px solid #8b4557;
}

.article-cta__box[data-brand="meimon"] {
    border-top: 4px solid #4a7c59;
}

.article-cta__label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.article-cta__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 16px;
}

.article-cta__text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 24px;
}

/* Related Articles */
.related-articles {
    padding: 60px 0;
    background: var(--white);
}

.related-articles__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}

/* Article Card */
.article-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-card__thumb img {
    transform: scale(1.05);
}

.article-card__body {
    padding: 16px;
}

.article-card__category {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.article-card__title {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 8px;
}

.article-card__date {
    font-family: var(--font-en);
    font-size: 12px;
    color: var(--text-muted);
}

/* Category Navigation */
.category-nav {
    padding: 48px 0;
    background: var(--cream);
}

.category-nav__title {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

.category-nav__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-nav__item {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    transition: all 0.3s;
}

.category-nav__item:hover,
.category-nav__item--active {
    color: var(--white);
    background: var(--gold);
    border-color: var(--gold);
}

/* ==========================================================================
   Magazine List Page Styles
   ========================================================================== */

/* Magazine Filter */
.magazine-filter {
    padding: 32px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.magazine-filter__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.magazine-filter__item {
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    transition: all 0.3s;
}

.magazine-filter__item:hover,
.magazine-filter__item--active {
    color: var(--white);
    background: var(--dark);
    border-color: var(--dark);
}

/* Featured Article */
.magazine-featured {
    padding: 60px 0;
    background: var(--cream);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    text-decoration: none;
}

@media (max-width: 768px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.featured-article__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 8px;
}

.featured-article__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-article:hover .featured-article__thumb img {
    transform: scale(1.05);
}

.featured-article__label {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 2px;
    margin-right: 12px;
}

.featured-article__category {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.featured-article__title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    margin: 16px 0;
}

@media (max-width: 768px) {
    .featured-article__title {
        font-size: 22px;
    }
}

.featured-article__excerpt {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 16px;
}

.featured-article__date {
    font-family: var(--font-en);
    font-size: 13px;
    color: var(--text-muted);
}

/* Magazine List */
.magazine-list {
    padding: 60px 0;
    background: var(--white);
}

.magazine-list__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
}

.magazine-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) {
    .magazine-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .magazine-list__grid {
        grid-template-columns: 1fr;
    }
}

.article-card--coming {
    opacity: 0.6;
    pointer-events: none;
}

.article-card__coming {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Magazine Categories */
.magazine-categories {
    padding: 60px 0;
    background: var(--cream);
}

.magazine-categories__title {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
}

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

@media (max-width: 960px) {
    .magazine-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .magazine-categories__grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    display: block;
    text-decoration: none;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category-card__icon {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.category-card__name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.category-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ==========================================================================
   Category Header
   ========================================================================== */
.category-header {
    padding: 80px 0;
    background: var(--cream);
    text-align: center;
}

.category-header__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.category-header__label {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.category-header__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}

.category-header__desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.magazine-list__empty {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 40px;
}

/* ==========================================================================
   Recruit Stats (Autopilot)
   ========================================================================== */
.recruit-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.recruit-stat {
    text-align: center;
}

.recruit-stat__number {
    display: block;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.recruit-stat__number small {
    font-size: 0.875rem;
    opacity: 0.8;
}

.recruit-stat__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .recruit-stats {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }
    
    .recruit-stat__number {
        font-size: 1.5rem;
    }
}

/* Page Hero Live Indicator */
.page-hero__label .live-indicator {
    margin-right: 12px;
    font-size: 0.7rem;
}

/* ==========================================================================
   Coming Soon
   ========================================================================== */
.coming-soon {
    text-align: center;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    padding: 120px 0;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

/* ==========================================================================
   Recruit Values Section
   ========================================================================== */
.recruit-values {
    padding: 100px 0;
    background: var(--bg, #faf8f5);
}

.recruit-values .section-title {
    color: var(--text);
    margin-bottom: 60px;
}

.recruit-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.recruit-value {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.recruit-value__title {
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold-dark, #B8956A);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.recruit-value__text {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
}

@media (max-width: 960px) {
    .recruit-values__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================================================
   Recruit Brands Grid
   ========================================================================== */
.recruit-brands {
    padding: 80px 0;
    background: var(--black);
}

.recruit-brands .section-title {
    color: var(--white);
}

.recruit-brands .section-lead {
    color: var(--text-light);
}

.recruit-brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.recruit-brand-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.recruit-brand-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.recruit-brand-card:hover .recruit-brand-card__bg {
    transform: scale(1.1);
}

.recruit-brand-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.recruit-brand-card__content {
    position: relative;
    z-index: 10;
    padding: 32px;
    width: 100%;
}

.recruit-brand-card__label {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.recruit-brand-card__name {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin: 12px 0 8px;
}

.recruit-brand-card__desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.recruit-brand-card__link {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
    transition: letter-spacing 0.3s;
}

.recruit-brand-card:hover .recruit-brand-card__link {
    letter-spacing: 0.2em;
}

@media (max-width: 768px) {
    .recruit-brands__grid {
        grid-template-columns: 1fr;
    }
    
    .recruit-brand-card {
        aspect-ratio: 16/9;
    }
}

/* ==========================================================================
   Brand Detail Pages
   ========================================================================== */

/* Brand Intro */
.brand-intro {
    padding: 80px 0;
    background: var(--white);
}

.brand-intro__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.brand-intro__content p {
    font-size: 18px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

.brand-intro__content p:last-child {
    margin-bottom: 0;
}

/* Brand Concept */
.brand-concept {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.brand-concept__text {
    max-width: 720px;
}

.brand-concept__text p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 24px;
}

.brand-concept__text p:last-child {
    margin-bottom: 0;
}

/* Brand Features */
.brand-features {
    padding: 100px 0;
    background: var(--black);
}

.brand-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 960px) {
    .brand-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .brand-features__grid {
        grid-template-columns: 1fr;
    }
}

.brand-feature {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.brand-feature__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
}

.brand-feature__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Brand Mid CTA */
.brand-mid-cta {
    padding: 60px 0;
    background: var(--cream);
    text-align: center;
}

.brand-mid-cta__text {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 24px;
}

/* Brand Why */
.brand-why {
    padding: 80px 0;
    background: var(--white);
}

.brand-why__content {
    max-width: 720px;
}

.brand-why__lead {
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
}

.brand-why__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Brand Scene */
.brand-scene {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.brand-scene__list {
    max-width: 600px;
    margin: 48px auto 0;
    list-style: none;
}

.brand-scene__list li {
    position: relative;
    padding: 16px 0 16px 32px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand-scene__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Brand CTA */
.brand-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.brand-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.brand-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 25, 20, 0.95) 100%);
}

.brand-cta .container {
    position: relative;
    z-index: 10;
}

.brand-cta__text {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
}

/* Brand Other */
.brand-other {
    padding: 80px 0;
    background: var(--white);
}

.brand-other__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}

@media (max-width: 576px) {
    .brand-other__grid {
        grid-template-columns: 1fr;
    }
}

.brand-other__item {
    display: block;
    padding: 32px;
    background: var(--cream);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.brand-other__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.brand-other__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
}

.brand-other__name {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.brand-other__desc {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   Area Pages
   ========================================================================== */

/* Area Intro */
.area-intro {
    padding: 60px 0;
    background: var(--white);
}

.area-intro__text {
    text-align: center;
    font-size: 16px;
    color: var(--text);
}

.area-intro__content {
    max-width: 720px;
}

.area-intro__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Area Perspective */
.area-perspective {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.area-perspective__content {
    max-width: 720px;
}

.area-perspective__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Area Brands */
.area-brands {
    padding: 100px 0;
    background: var(--black);
}

.area-brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 960px) {
    .area-brands__grid {
        grid-template-columns: 1fr;
    }
}

.area-brand-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px 32px;
    text-align: center;
}

.area-brand-card__label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.area-brand-card__name {
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.area-brand-card__desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Area Choose */
.area-choose {
    padding: 80px 0;
    background: var(--white);
}

.area-choose__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 48px auto 0;
}

@media (max-width: 768px) {
    .area-choose__grid {
        grid-template-columns: 1fr;
    }
}

.area-choose__item {
    padding: 24px;
    background: var(--cream);
    border-radius: 8px;
    text-align: center;
}

.area-choose__if {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.area-choose__then {
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
}

.area-choose__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
}

/* Area Related */
.area-related {
    padding: 80px 0;
    background: var(--cream);
}

.area-related__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 32px auto 0;
}

.area-related__link {
    display: block;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    text-align: center;
    transition: all 0.3s;
}

.area-related__link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Area CTA */
.area-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.area-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.area-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 25, 20, 0.95) 100%);
}

.area-cta .container {
    position: relative;
    z-index: 10;
}

.area-cta__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ==========================================================================
   Type Pages
   ========================================================================== */

/* Type Intro */
.type-intro {
    padding: 60px 0;
    background: var(--white);
}

.type-intro__text {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: var(--text);
}

.type-intro__content {
    max-width: 720px;
}

.type-intro__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Type Perspective */
.type-perspective {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.type-perspective__content {
    max-width: 720px;
}

.type-perspective__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Type Brands */
.type-brands {
    padding: 100px 0;
    background: var(--black);
}

.type-brands__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    max-width: 900px;
    margin: 48px auto 0;
}

@media (max-width: 768px) {
    .type-brands__grid {
        grid-template-columns: 1fr;
    }
}

.type-brand-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 40px 32px;
}

.type-brand-card--primary {
    border-color: var(--gold);
    background: rgba(212, 165, 116, 0.05);
}

.type-brand-card--secondary {
    opacity: 0.85;
}

.type-brand-card__badge {
    position: absolute;
    top: -12px;
    left: 24px;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--black);
    background: var(--gold);
    padding: 6px 12px;
    border-radius: 4px;
}

.type-brand-card--secondary .type-brand-card__badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.type-brand-card__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
    margin-top: 8px;
}

.type-brand-card__name {
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.type-brand-card__desc {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.type-brand-card__note {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.type-brand-card__features {
    list-style: none;
    margin-bottom: 24px;
}

.type-brand-card__features li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.type-brand-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Type Choose */
.type-choose {
    padding: 80px 0;
    background: var(--white);
}

.type-choose__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 48px auto 0;
}

@media (max-width: 576px) {
    .type-choose__grid {
        grid-template-columns: 1fr;
    }
}

.type-choose__item {
    padding: 24px;
    background: var(--cream);
    border-radius: 8px;
    text-align: center;
}

.type-choose__if {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
}

.type-choose__then {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.type-choose__then:hover {
    color: var(--white);
    transform: translateX(4px);
}

.type-choose__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 32px;
    line-height: 1.8;
}

/* Type Related */
.type-related {
    padding: 80px 0;
    background: var(--cream);
}

.type-related__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 32px auto 0;
}

.type-related__link {
    display: block;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    text-align: center;
    transition: all 0.3s;
}

.type-related__link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Type CTA */
.type-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.type-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.type-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 25, 20, 0.95) 100%);
}

.type-cta .container {
    position: relative;
    z-index: 10;
}

.type-cta__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Type Card (for index) */
.type-list {
    padding: 80px 0;
    background: var(--white);
}

.type-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 960px) {
    .type-list__grid {
        grid-template-columns: 1fr;
    }
}

.type-card {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.type-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.type-card:hover .type-card__bg {
    transform: scale(1.1);
}

.type-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.type-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 10;
}

.type-card__title {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.type-card__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.type-card__brand {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 16px;
}

.type-card__link {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gold);
}

/* ==========================================================================
   Recruit Brand Pages
   ========================================================================== */

/* Recruit Intro */
.recruit-intro {
    padding: 80px 0;
    background: var(--white);
}

.recruit-intro__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.recruit-intro__content p {
    font-size: 17px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 20px;
}

/* Recruit Concept */
.recruit-concept {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.recruit-concept__content {
    max-width: 720px;
}

.recruit-concept__content p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

/* Recruit Beginner */
.recruit-beginner {
    padding: 100px 0;
    background: var(--black);
}

.recruit-beginner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .recruit-beginner__grid {
        grid-template-columns: 1fr;
    }
}

.recruit-beginner__item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
}

.recruit-beginner__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
}

.recruit-beginner__text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-light);
}

.recruit-beginner__note {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 40px;
    line-height: 1.8;
}

/* Recruit Support */
.recruit-support {
    padding: 80px 0;
    background: var(--white);
}

.recruit-support__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}

@media (max-width: 576px) {
    .recruit-support__grid {
        grid-template-columns: 1fr;
    }
}

.recruit-support__item {
    padding: 32px;
    background: var(--cream);
    border-radius: 8px;
}

.recruit-support__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.recruit-support__text {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
}

.recruit-support__note {
    text-align: center;
    font-size: 15px;
    color: var(--text);
    margin-top: 40px;
    line-height: 1.8;
}

/* Recruit Requirements */
.recruit-requirements {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.recruit-requirements__coming-soon {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 8px;
}

.recruit-requirements__badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.recruit-requirements__coming-soon p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 12px;
}

/* Recruit CTA */
.recruit-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.recruit-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.recruit-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(30, 25, 20, 0.95) 100%);
}

.recruit-cta .container {
    position: relative;
    z-index: 10;
}

.recruit-cta__text {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 2;
    margin-bottom: 32px;
}

.recruit-cta__sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
}

.recruit-cta__link {
    display: inline-block;
    font-size: 14px;
    color: var(--gold);
    margin-top: 8px;
    transition: all 0.3s;
}

.recruit-cta__link:hover {
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Article Pages
   ========================================================================== */

.article__header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.article__category {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--gold);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.article__title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 20px;
}

.article__lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    opacity: 0.8;
}

.article__body {
    padding: 80px 0;
    background: var(--white);
}

.article__section {
    max-width: 720px;
    margin: 0 auto 60px;
}

.article__section:last-child {
    margin-bottom: 0;
}

.article__intro {
    padding: 32px;
    background: var(--cream);
    border-radius: 8px;
    margin-bottom: 40px;
}

.article__intro p {
    font-size: 15px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 16px;
}

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

.article__h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.article__section > p {
    font-size: 15px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 16px;
}

.article__dl {
    margin: 24px 0;
}

.article__dl dt {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}

.article__dl dd {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-left: 16px;
}

.article__ol {
    list-style: none;
    counter-reset: article-counter;
    margin: 24px 0;
}

.article__ol li {
    position: relative;
    padding-left: 48px;
    margin-bottom: 24px;
    counter-increment: article-counter;
}

.article__ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-en);
    font-size: 14px;
    border-radius: 50%;
}

.article__ol li strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.article__note {
    padding: 24px;
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
}

.article__note p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.article__footer {
    padding: 80px 0;
    background: var(--cream);
}

.article__cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.article__cta-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 24px;
}

.article__cta-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
}

.article__cta-link {
    display: inline-block;
    font-size: 14px;
    color: var(--gold);
    margin-top: 8px;
    transition: all 0.3s;
}

.article__cta-link:hover {
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Feature Pages
   ========================================================================== */

.feature-list {
    padding: 80px 0;
    background: var(--white);
}

.feature-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-list__grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 40px 32px;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card--coming-soon {
    opacity: 0.7;
}

.feature-card--active {
    display: block;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gold);
}

.feature-card--active:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card__badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.feature-card__link {
    display: inline-block;
    font-size: 13px;
    color: var(--gold);
    margin-top: 16px;
}

/* ==========================================================================
   Section Titles (Shared)
   ========================================================================== */

.section-title {
    font-family: var(--font-ja);
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
}

.section-title--center {
    text-align: center;
}

.section-title--white,
.section-title--light {
    color: var(--white);
}

.section-title .gold {
    display: inline;
}

.section-lead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.section-lead--center {
    text-align: center;
}

.section-lead--white {
    color: var(--text-light);
}

/* Dark background section titles */
.brand-features .section-title,
.area-brands .section-title,
.type-brands .section-title,
.recruit-beginner .section-title {
    color: var(--white);
}

.brand-features .section-lead,
.area-brands .section-lead,
.type-brands .section-lead,
.recruit-beginner .section-lead {
    color: var(--text-light);
}

/* ========================================
   Recruit LP Extended Styles (v9)
======================================== */

/* Recruit Points */
.recruit-points {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(25, 20, 15, 0.95) 100%);
}

.recruit-points__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .recruit-points__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.recruit-point {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 172, 128, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
}

.recruit-point__title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.recruit-point__text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
}

.recruit-points__note {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.recruit-points .section-title,
.recruit-points .section-lead {
    color: var(--white);
}

/* Recruit Intelligence (MEIMON specific) */
.recruit-intelligence {
    padding: 100px 0;
    background: var(--bg);
}

.recruit-intelligence__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .recruit-intelligence__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.recruit-intelligence__item {
    padding: 30px;
    border-left: 3px solid var(--gold);
}

.recruit-intelligence__title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 16px;
}

.recruit-intelligence__text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

.recruit-intelligence__note {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

/* Recruit Requirements */
.recruit-requirements {
    padding: 80px 0;
    background: var(--bg);
}

.recruit-requirements__content {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.recruit-requirements__coming {
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.recruit-requirements__note {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
}

/* Recruit CTA Extended */
.recruit-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.recruit-cta__sub {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 30px;
    line-height: 1.8;
}

.recruit-cta__link {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.recruit-cta__link:hover {
    opacity: 0.7;
}

/* Recruit Other Brands */
.recruit-other {
    padding: 80px 0;
    background: var(--bg);
}

.recruit-other__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .recruit-other__grid {
        grid-template-columns: 1fr;
    }
}

.recruit-other__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 172, 128, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recruit-other__item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.recruit-other__label {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.recruit-other__name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
}

/* Feature Cards */
/* ========================================
   Feature Page - Enhanced Design
======================================== */

.feature-list {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(15, 12, 8, 1) 100%);
}

.feature-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .feature-list__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-card {
    position: relative;
    padding: 50px 40px;
    background: linear-gradient(145deg, rgba(30, 25, 20, 0.8) 0%, rgba(20, 16, 12, 0.9) 100%);
    border: 1px solid rgba(196, 172, 128, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card--coming {
    opacity: 0.6;
}

.feature-card--coming .feature-card__title {
    color: var(--text-light);
}

.feature-card--active {
    text-decoration: none;
    display: block;
    opacity: 1;
    background: linear-gradient(145deg, rgba(40, 32, 22, 0.9) 0%, rgba(25, 20, 15, 0.95) 100%);
    border-color: rgba(196, 172, 128, 0.35);
}

.feature-card--active::before {
    opacity: 1;
}

.feature-card--active:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(196, 172, 128, 0.1);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.feature-card__desc {
    font-size: 15px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 28px;
}

.feature-card__status {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.5;
    padding: 8px 16px;
    border: 1px solid rgba(196, 172, 128, 0.3);
    border-radius: 4px;
}

.feature-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
}

.feature-card--active:hover .feature-card__link {
    gap: 12px;
}

.feature-card__number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Recruit Requirements Table (2枚目スタイル)
   ========================================================================== */

.recruit-requirements {
    padding: 80px 0;
    background: var(--black);
}

.recruit-requirements .section-title {
    color: var(--white);
}

.recruit-requirements .section-lead {
    color: var(--text-light);
}

.recruit-req-table {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recruit-req-table__header {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(139, 69, 19, 0.2) 100%);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.recruit-req-table__header--fuwaly {
    background: linear-gradient(135deg, rgba(226, 201, 140, 0.3) 0%, rgba(226, 201, 140, 0.1) 100%);
}

.recruit-req-table__header--haitoku {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.4) 0%, rgba(139, 69, 19, 0.2) 100%);
}

.recruit-req-table__header--meimon {
    background: linear-gradient(135deg, rgba(46, 74, 98, 0.4) 0%, rgba(46, 74, 98, 0.2) 100%);
}

.recruit-req-table__title {
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.1em;
}

.recruit-req-table__body {
    display: flex;
    flex-direction: column;
}

.recruit-req-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.recruit-req-row:last-child {
    border-bottom: none;
}

.recruit-req-row__label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    font-family: var(--font-ja);
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
}

.recruit-req-row__content {
    padding: 20px 24px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.9;
}

.recruit-req-row__content p {
    margin-bottom: 8px;
}

.recruit-req-row__content p:last-child {
    margin-bottom: 0;
}

.recruit-req-row__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recruit-req-row__content li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.recruit-req-row__content li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.recruit-req-row__content li:last-child {
    margin-bottom: 0;
}

.recruit-req-row__note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

@media (max-width: 576px) {
    .recruit-req-row {
        grid-template-columns: 1fr;
    }
    
    .recruit-req-row__label {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        justify-content: flex-start;
        padding: 12px 16px;
    }
    
    .recruit-req-row__content {
        padding: 16px;
    }
}

/* ==========================================================================
   Brand Match Feature Page
   ========================================================================== */

.brand-match-intro {
    padding: 80px 0;
    background: var(--white);
}

.brand-match-intro__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.brand-match-intro__content p {
    font-family: var(--font-ja);
    font-size: 18px;
    line-height: 2.2;
    color: var(--text);
    margin-bottom: 8px;
}

.brand-match-intro__content p:last-child {
    margin-bottom: 0;
}

/* Section */
.brand-match-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.brand-match-section--alt {
    background: var(--white);
}

.brand-match-section__header {
    text-align: center;
    margin-bottom: 48px;
}

.brand-match-section__num {
    display: block;
    font-family: var(--font-en);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 12px;
}

.brand-match-section__title {
    font-family: var(--font-ja);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.08em;
}

/* Grid */
.brand-match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .brand-match-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Card */
.brand-match-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand-match-card__header {
    padding: 16px 20px;
    text-align: center;
}

.brand-match-card--fuwaly .brand-match-card__header {
    background: linear-gradient(135deg, #E2C98C 0%, #D4B87A 100%);
}

.brand-match-card--haitoku .brand-match-card__header {
    background: linear-gradient(135deg, #8B4513 0%, #6B3410 100%);
}

.brand-match-card--meimon .brand-match-card__header {
    background: linear-gradient(135deg, #2E4A62 0%, #1E3A52 100%);
}

.brand-match-card__brand {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white);
}

.brand-match-card__content {
    padding: 24px 20px;
    text-align: center;
}

.brand-match-card__keyword {
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.brand-match-card__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.8;
}

/* Conclusion */
.brand-match-conclusion {
    padding: 80px 0;
    background: var(--white);
}

.brand-match-conclusion__content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.brand-match-conclusion__content p {
    font-family: var(--font-ja);
    font-size: 20px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 8px;
}

.brand-match-conclusion__content p:last-child {
    margin-bottom: 0;
}

/* CTA */
.brand-match-cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
}

.brand-match-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.brand-match-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.brand-match-cta__content {
    position: relative;
    z-index: 1;
}

.brand-match-cta__title {
    font-family: var(--font-ja);
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: 0.08em;
}

.brand-match-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .brand-match-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brand-match-cta__buttons .btn {
        width: 200px;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-methods {
    padding: 80px 0;
    background: var(--cream, #faf8f5);
}

.contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .contact-methods__grid {
        grid-template-columns: 1fr;
    }
}

.contact-method {
    padding: 40px 30px;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-method--primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
}

.contact-method__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold, #c4a265);
}

.contact-method--primary .contact-method__icon {
    color: #00B900;
}

.contact-method__icon svg {
    width: 100%;
    height: 100%;
}

.contact-method__title {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-method__desc {
    margin-bottom: 20px;
    font-size: 0.9375rem;
    opacity: 0.8;
}

.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-notes {
    padding: 60px 0;
    background: var(--cream, #faf8f5);
}

.contact-notes__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.contact-notes__title {
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark, #1a1a1a);
}

.contact-notes__list {
    margin: 0;
    padding-left: 1.5rem;
}

.contact-notes__list li {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
}

.contact-notes__list li:last-child {
    margin-bottom: 0;
}
