@charset "UTF-8";

/* ==========================================================================
   Page About Specific Styles (Gentle & Soft Wa-Modern 2026)
   ========================================================================== */

/* Variables (Matching page-yoriaiseo.css) */
.page-about {
    /* Color Palette - Japanese Modern & Corp Identity */
    --color-bg: #F9F9F9;
    /* Off-white / Paper */
    --color-surface: #FFFFFF;
    --color-text: #333333;
    /* Sumi Ink */
    --color-text-muted: #666666;
    --color-brand: #229ebd;
    /* Yoriai Blue */
    --color-main: #E5989B;
    /* Dusty Pink */
    --color-accent: #EE4B2B;
    /* Vermilion Red */
    --color-border: #EEEEEE;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #229ebd 0%, #0077a8 100%);
    --gradient-surface: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);

    /* Typography */
    --font-base: "LINE Seed JP", "Zen Kaku Gothic New", sans-serif;

    /* Shapes */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;

    /* Effects */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.03);

    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-base);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Base Override */
.page-about main {
    padding-top: 0;
    /* Hero handles spacing */
}

/* Typography Overrides */
.page-about h1,
.page-about h2,
.page-about h3,
.page-about h4 {
    font-family: var(--font-base);
}

/* Hero Section (Reusing Aurora Effect idea) */
.about-hero {
    position: relative;
    width: 100%;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f0f2f5 100%);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 60px;
}

/* Aurora Background */
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.about-orb.orb-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 158, 189, 0.3) 0%, rgba(34, 158, 189, 0) 70%);
}

.about-orb.orb-2 {
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 152, 155, 0.3) 0%, rgba(229, 152, 155, 0) 70%);
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, -30px);
    }
}

/* Hero Content */
.about-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-hero__title .en {
    font-size: 1rem;
    color: var(--color-brand);
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(34, 158, 189, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.about-hero__title .ja {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

/* Section Common */
.section-company {
    position: relative;
    z-index: 10;
    padding-bottom: 120px;
}

.about-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Style for Company Profile */
.company-profile-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

/* Decorative line on top */
.company-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-brand) 0%, var(--color-main) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.05em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--color-border);
    margin: 15px auto 0;
}

/* Definition List Grid */
.company-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-border);
}

.company-list__row {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    padding: 25px 0;
    align-items: flex-start;
}

.company-list__row dt {
    width: 200px;
    flex-shrink: 0;
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.company-list__row dt::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-main);
    border-radius: 50%;
    margin-right: 12px;
}

.company-list__row dd {
    flex: 1;
    font-weight: 500;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
}

.company-list__row dd .small {
    display: inline-block;
    font-size: 0.85rem;
    color: #999;
    margin-left: 10px;
    font-weight: 400;
}

/* Links */
.company-list__row a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px dashed rgba(34, 158, 189, 0.4);
}

.company-list__row a:hover {
    color: var(--color-main);
    border-bottom-color: var(--color-main);
}

.site-link-item {
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.site-link-item span {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Map */
.company-map {
    margin-top: 20px;
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.company-map iframe {
    display: block;
    width: 100%;
    height: 350px;
}

/* Access Info under Map */
.access-info {
    margin-top: 20px;
    background: #f5f7fa;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.access-info strong {
    color: var(--color-brand);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .about-hero__title .ja {
        font-size: 2.2rem;
    }

    .company-profile-card {
        padding: 30px 20px;
    }

    .company-list__row {
        flex-direction: column;
        gap: 8px;
        padding: 20px 0;
    }

    .company-list__row dt {
        width: 100%;
        color: var(--color-brand);
        /* Highlight Label on mobile */
    }

    .company-list__row dt::before {
        display: none;
    }

    .company-map iframe {
        height: 250px;
    }

    .company-list__row dd .small {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}