/**
 * 会社概要ページ スタイル
 */

/* 会社概要ページ独自のヘッダー調整は削除（共通ヘッダーを使用） */

/* 個別ヘッダースタイルは削除（共通ヘッダーを使用） */

/* メインメッセージ */
.about-intro {
    padding: 100px 0;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fade-in 1s ease-out 0.4s forwards;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    opacity: 0;
    animation: fade-in 1s ease-out 0.6s forwards;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    margin-bottom: 24px;
}

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

.intro-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 32px;
    text-align: center;
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

/* ミッション・ビジョン・バリュー */
.about-philosophy {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f1f5f9 100%);
    position: relative;
}

.about-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(14, 165, 233, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.philosophy-item {
    margin-bottom: 120px;
    text-align: center;
    position: relative;
}

.philosophy-item:last-child {
    margin-bottom: 0;
}

.philosophy-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.philosophy-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.philosophy-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    color: #1e293b;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-values .values-list {
    list-style: none;
    padding: 0;
    margin: 32px auto 0;
    text-align: left;
    max-width: 500px;
    display: grid;
    gap: 20px;
}

.philosophy-values .values-list li {
    font-size: 20px;
    line-height: 1.6;
    color: #334155;
    padding: 20px 24px 20px 50px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.philosophy-values .values-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 16px;
}

.philosophy-values .values-list li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 会社情報 */
.company-info {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 2px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.3s forwards;
}

.info-row {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.info-row dt {
    flex: 0 0 150px;
    font-weight: 600;
    color: #666;
}

.info-row dd {
    flex: 1;
    color: var(--color-text);
    margin: 0;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.business-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* 全国対応可能表示 */
.remote-available {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--color-primary);
}

.remote-available svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.remote-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.remote-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* アクセス */
.company-access {
    padding: 100px 0;
    background-color: #fafbfc;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.3s forwards;
}

.access-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.access-address {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.access-detail h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.access-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #555;
}

.access-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.map-placeholder {
    background: #e0e0e0;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: #999;
    font-size: 18px;
}

/* CTA */
.about-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary), #0284c7);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    color: white;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.2s forwards;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out 0.4s forwards;
}

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

.about-cta .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-cta .btn-outline {
    border-color: white;
    color: white;
}

.about-cta .btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* メインメッセージセクション */
    .about-intro {
        padding: 60px 0;
    }
    
    .intro-content {
        padding: 0 20px;
    }
    
    .intro-title {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .intro-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .intro-text p {
        margin-bottom: 16px;
    }
    
    .intro-highlight {
        font-size: 17px;
        margin-top: 24px;
        padding: 0 10px;
    }
    
    /* ミッション・ビジョン・バリューセクション */
    .about-philosophy {
        padding: 60px 0;
    }
    
    .philosophy-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .philosophy-item {
        margin-bottom: 60px;
    }
    
    .philosophy-label {
        font-size: 13px;
        margin-bottom: 16px;
        letter-spacing: 0.2em;
    }
    
    .philosophy-label::after {
        width: 20px;
        height: 1px;
        bottom: -6px;
    }
    
    .philosophy-text {
        font-size: 20px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .philosophy-values .values-list {
        max-width: 100%;
        gap: 12px;
        margin-top: 20px;
    }
    
    .philosophy-values .values-list li {
        font-size: 15px;
        padding: 14px 16px 14px 40px;
        border-radius: 8px;
        border-left-width: 3px;
    }
    
    .philosophy-values .values-list li::before {
        left: 14px;
        font-size: 12px;
    }
    
    .philosophy-values .values-list li:hover {
        transform: translateX(4px);
    }
    
    /* 会社情報セクション */
    .company-info {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 40px;
        height: 3px;
        bottom: -15px;
    }
    
    .info-content {
        padding: 0 20px;
    }
    
    .info-table {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .info-row {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .info-row dt {
        flex: none;
        margin-bottom: 8px;
        font-size: 14px;
        color: #888;
    }
    
    .info-row dd {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .business-list li {
        margin-bottom: 6px;
        font-size: 14px;
    }
    
    .remote-available {
        font-size: 13px;
        margin-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .remote-available svg {
        width: 14px;
        height: 14px;
    }
    
    /* アクセスセクション */
    .company-access {
        padding: 60px 0;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .access-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .access-address {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .access-detail h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .access-list li {
        font-size: 14px;
        padding-left: 20px;
        margin-bottom: 8px;
    }
    
    .map-placeholder {
        height: 250px;
        border-radius: 8px;
    }
    
    .map-placeholder p {
        font-size: 14px;
    }
    
    /* CTAセクション */
    .about-cta {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .cta-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        font-size: 15px;
        padding: 14px 24px;
    }
}

/* より小さい画面用の追加調整 */
@media (max-width: 375px) {
    .intro-title {
        font-size: 22px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .philosophy-text {
        font-size: 18px;
    }
    
    .philosophy-values .values-list li {
        font-size: 14px;
        padding: 12px 14px 12px 36px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .cta-title {
        font-size: 22px;
    }
}