/**
 * Dreseo About Page Styles
 * /about/ ページ用スタイル
 */

/* =========================
   About Page Base
========================= */
/* Override SWELL default content padding/margin to fix gap below header */
/* Override SWELL default content padding/margin to fix gap below header */
body,
#content,
.siteMain {
    padding-top: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure global wrapper doesn't add spacing */
#dreseo-home {
    margin-top: 0;
}

.dreseo-about-page {
    padding-bottom: 80px;
    --about-bg-white: #FFFFFF;
    --about-bg-tint: #f8f9fa;
}

/* Content Section - show immediately (no animation) */
.dreseo-about-page .dreseo-content-section {
    opacity: 1 !important;
    transform: none !important;
}

/* =========================
   Hero Section
========================= */
.dreseo-about-hero {
    /* Header (120px) + visual padding (56px -> 80px) */
    padding-top: 176px;
    padding-bottom: 80px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #BBDEFB;
    color: #333;
}

.dreseo-about-hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin: 0 0 8px;
    opacity: 0.85;
}

.dreseo-about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
}

/* =========================
   Section Titles
========================= */
.dreseo-about-page .dreseo-section-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}

.dreseo-section-title-en {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 4px;
}

.dreseo-section-title-ja {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

/* =========================
   Profile Section
========================= */
.dreseo-about-profile {
    padding: 80px 0;
    --about-section-bg: var(--about-bg-white);
    background: var(--about-section-bg);
}

.dreseo-profile-table {
    width: 100%;
    border-collapse: collapse;
}

.dreseo-profile-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.dreseo-profile-table th,
.dreseo-profile-table td {
    padding: 20px 0;
    text-align: left;
    vertical-align: top;
}

.dreseo-profile-table th {
    width: 160px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.dreseo-profile-table td {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.dreseo-profile-table td ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.dreseo-profile-table td li {
    margin-bottom: 4px;
}

.dreseo-profile-table td a {
    color: #333;
    text-decoration: underline;
}

.dreseo-profile-table td a:hover {
    opacity: 0.7;
}

/* =========================
   Mission Section
========================= */
.dreseo-about-mission {
    padding: 80px 0;
    --about-section-bg: var(--about-bg-tint);
    background: var(--about-section-bg);
}

.dreseo-mission-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.dreseo-mission-statement {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    margin: 0 0 24px;
}

.dreseo-mission-description {
    font-size: 1rem;
    color: #555;
    line-height: 2;
    margin: 0;
}

/* =========================
   Sub-page Navigation Cards
========================= */
.dreseo-about-nav {
    padding: 80px 0;
    --about-section-bg: var(--about-bg-white);
    --about-card-bg: var(--about-bg-tint);
    background: var(--about-section-bg);
}

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

.dreseo-about-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 40px;
    background: var(--about-card-bg, var(--about-bg-tint));
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
}

.dreseo-about-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-text-primary);
    box-shadow: var(--shadow-card);
    opacity: 1;
}

.dreseo-about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.dreseo-about-card-subtitle {
    font-size: 0.875rem;
    color: #4A4A4A;
}

.dreseo-about-card-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 1.25rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.dreseo-about-card:hover .dreseo-about-card-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .dreseo-about-hero {
        /* SP Header (70px) + visual padding (40px) */
        padding-top: 110px;
        padding-bottom: 40px;
        min-height: 160px;
    }

    .dreseo-about-hero-title {
        font-size: 1.75rem;
    }

    .dreseo-section-title-ja {
        font-size: 1.35rem;
    }

    .dreseo-about-profile,
    .dreseo-about-mission,
    .dreseo-about-nav {
        padding: 60px 0;
    }

    .dreseo-profile-table th,
    .dreseo-profile-table td {
        display: block;
        width: 100%;
        padding: 12px 0;
    }

    .dreseo-profile-table th {
        padding-bottom: 4px;
        border-bottom: none;
    }

    .dreseo-profile-table tr {
        padding: 16px 0;
    }

    .dreseo-mission-statement {
        font-size: 1.35rem;
    }

    .dreseo-about-cards {
        grid-template-columns: 1fr;
    }

    .dreseo-about-card {
        padding: 32px 24px;
        min-height: 100px;
    }
}
