/* 会社概要ページ専用のデスクトップスタイル */

/* ページ全体のコンテナ */
.company-header-container {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 300px;
    box-sizing: border-box !important;
    overflow: hidden;
    left: 0 !important;
    right: 0 !important;
}

.company-title-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
}

.company-logo {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.company-title {
    color: rgb(164, 11, 94);
    font-size: 36pt;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.company-video {
    filter: blur(1px) brightness(1.05);
    opacity: 0.5;
}

/* セクション共通スタイル */
#lnk-about {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: hidden !important;
    padding: 50px 0;
}

.company-info-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.company-info-heading {
    text-align: center;
    color: rgb(164, 11, 94);
    font-size: 28pt;
    margin-bottom: 50px;
    width: 100%;
}

/* 会社情報セクションのレイアウト */
.company-info-section {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    padding: 0 30px;
}

.company-details, 
.company-contact {
    flex: 1 1 48%;
}

/* テーブルスタイル */
.simple-info-table {
    width: 100%;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

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

.info-label {
    width: 40%;
    text-align: right !important;
    font-weight: bold;
    padding-right: 10px;
}

.info-value {
    width: 60%;
    text-align: left !important;
    padding-left: 10px;
}

/* アイコンスタイル */
.info-label img {
    vertical-align: middle;
    margin-left: 5px;
}

/* 見出しスタイル */
.company-details h3,
.company-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: rgb(164, 11, 94);
    text-align: center;
}

/* 説明スタイル */
.company-details p,
.company-contact p {
    text-align: center !important;
    margin: 0 0 20px 0;
    padding: 5px 10px;
    line-height: 1.5;
}

/* リンクスタイル */
.company-contact a {
    text-decoration: none;
    color: #333;
}

.company-contact a:hover {
    color: rgb(164, 11, 94);
}

.recruiting-link,
.contact-link {
    font-size: 0.9em;
    color: rgb(164, 11, 94) !important;
    display: inline-block;
    margin-top: 5px;
}

.contact-icon {
    vertical-align: middle;
    margin-left: 5px;
}