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

/* ミッションセクション */
.mission-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.05));
    text-align: center;
}

.mission-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 40px;
}

.mission-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-description {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* バリューセクション */
.value-section {
    padding: 120px 50px;
    background: rgba(255, 255, 255, 0.02);
}

.value-content {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 152, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.value-number {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    margin-bottom: 20px;
}

.value-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--light);
}

.value-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

.value-text {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
}

/* 代表挨拶セクション */
.message-section {
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.message-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.message-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.ceo-profile {
    position: sticky;
    top: 150px;
    text-align: center;
}

.ceo-image {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(255, 152, 0, 0.1));
    border-radius: 20px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
}

.ceo-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
}

.ceo-info {
    text-align: center;
}

.ceo-position {
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ceo-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ceo-name-en {
    font-size: 14px;
    opacity: 0.6;
    letter-spacing: 1px;
}

.message-text {
    position: relative;
    padding-top: 20px;
}

.message-title {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.message-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.message-body {
    font-size: 18px;
    line-height: 2;
    opacity: 0.9;
}

.message-body p {
    margin-bottom: 30px;
}

.signature {
    margin-top: 50px;
    text-align: right;
    font-style: italic;
    opacity: 0.7;
}

/* 会社概要テーブル */
.company-info-section {
    padding: 120px 50px;
    background: linear-gradient(180deg, transparent, rgba(33, 150, 243, 0.05));
}

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

.info-table {
    width: 100%;
    margin-top: 50px;
}

.info-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-row:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 40px;
}

.info-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 1px;
}

.info-value {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* 背景アニメーション */
.floating-element {
    position: fixed;
    pointer-events: none;
    opacity: 0.05;
    z-index: 0;
}

.float-1 {
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent);
    filter: blur(100px);
    animation: float1 20s infinite;
}

.float-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary), transparent);
    filter: blur(100px);
    animation: float2 25s infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 50px) scale(1.1); }
    66% { transform: translate(30px, -50px) scale(0.9); }
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .message-content,
    .message-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ceo-profile {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mission-section,
    .value-section,
    .message-section,
    .company-info-section {
        padding: 80px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ceo-image {
        width: 250px;
        height: 330px;
    }
}