/* ==========================================================================
   Page Styles (固定ページ)
   ========================================================================== */

/* ==========================================================================
   Page Hero Section
   ========================================================================== */
.page-hero-section {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f7 100%);
    padding: 2rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 164, 167, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Breadcrumb */
.page-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    font-size: 0.8125rem;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* Hero Title */
.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.page-hero-title .title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Hero Image */
.page-hero-image-wrapper {
    position: relative;
}

.page-hero-image-wrapper > img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 741 / 461;
    object-fit: cover;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.page-main {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.page-body {
    padding: 2.5rem;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.page-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    color: var(--text-dark);
}

.page-body h2:first-child {
    margin-top: 0;
}

.page-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
}

.page-body p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-body ul,
.page-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-body li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.page-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-body a:hover {
    text-decoration: none;
}

/* ==========================================================================
   Page Figure
   ========================================================================== */
.page-figure {
    margin: 2rem 0;
}

.page-figure img {
    width: 100%;
    border-radius: 12px;
}

.page-figure figcaption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ==========================================================================
   Info Box (single.cssから流用)
   ========================================================================== */
.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.info-box-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-box-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-box-content ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.info-box-content p {
    margin-bottom: 0;
}

.info-box-primary {
    background: rgba(45, 164, 167, 0.1);
    border-left: 4px solid var(--primary-color);
}

.info-box-primary .info-box-icon {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */
.feature-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Company Table
   ========================================================================== */
.company-table {
    margin: 1.5rem 0;
}

.company-table th {
    background: var(--bg-light);
    font-weight: 600;
    width: 150px;
    vertical-align: middle;
    white-space: nowrap;
}

.company-table td {
    vertical-align: middle;
}

.company-table ul {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Team Cards
   ========================================================================== */
.team-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-position {
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ==========================================================================
   CTA Box
   ========================================================================== */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-box .btn-primary-custom {
    background: var(--white);
    color: var(--primary-color);
}

.cta-box .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary-custom {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    .page-hero-section {
        padding: 1.5rem 0 2rem;
    }

    .page-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 1rem 0 1.5rem;
    }

    .page-hero-title {
        font-size: 1.5rem;
    }

    .page-hero-title .title-accent {
        font-size: 1.125rem;
    }

    .page-content {
        padding: 1.5rem 0;
    }

    .page-body {
        padding: 1.5rem;
    }

    .page-body h2 {
        font-size: 1.25rem;
    }

    .page-body h3 {
        font-size: 1.125rem;
    }

    .info-box {
        flex-direction: column;
    }

    .feature-cards .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .team-members .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .company-table th {
        width: 100px;
        font-size: 0.875rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   スマホ・タブレット用レスポンシブ
   ========================================================================== */
@media (max-width: 991.98px) {
    .page-hero-section {
        padding: 1.5rem 0;
    }
    
    .page-hero-image-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .page-hero-title {
        font-size: 1.625rem;
    }
}

@media (max-width: 575.98px) {
    .page-hero-section {
        padding: 1rem 0;
    }
    
    .page-hero-title {
        font-size: 1.375rem;
        line-height: 1.4;
    }
    
    .page-breadcrumb .breadcrumb {
        font-size: 0.75rem;
    }

    .page-body {
        padding: 1.25rem;
    }
}