/* 企業情報ページ専用スタイル */

/* ヒーローセクション */
.corporate-hero {
    background: linear-gradient(135deg, #2c4f8d 0%, #1a3a6b 100%);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.corporate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/business/warehouse.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.corporate-hero-content {
    position: relative;
    z-index: 1;
}

.corporate-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.corporate-hero-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}

/* コンテンツブロック */
.corporate-content-block {
    margin-bottom: 64px;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.content-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #2c4f8d;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid #2c4f8d;
}

.content-heading {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* 情報リスト */
.info-list {
    font-size: 16px;
    line-height: 1.8;
}

.info-list dt {
    font-weight: 700;
    color: #2c4f8d;
    margin-top: 24px;
    margin-bottom: 8px;
}

.info-list dt:first-child {
    margin-top: 0;
}

.info-list dd {
    margin-left: 0;
    padding-left: 20px;
    color: #333;
}

.info-list dd ul {
    list-style: none;
    padding-left: 0;
}

.info-list dd ul li {
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 8px;
}

.info-list dd ul li:before {
    content: "・";
    position: absolute;
    left: 0;
}

.info-list dd p {
    margin-bottom: 16px;
}

.info-list dd p:last-child {
    margin-bottom: 0;
}

.info-list dd .note {
    font-size: 14px;
    color: #2c4f8d;
    font-weight: 600;
    margin-top: 16px;
}

/* フッター */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-social {
    margin-bottom: 40px;
    text-align: center;
}

.footer-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.social-icon:hover {
    background-color: #2c4f8d;
    transform: translateY(-3px);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .corporate-hero {
        padding: 180px 0 80px;
    }
}

@media (max-width: 767px) {
    .corporate-hero {
        padding: 160px 20px 60px;
    }

    .corporate-hero-content h1 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .corporate-hero-content p {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .corporate-content-block {
        padding: 24px;
        margin-bottom: 32px;
    }

    .content-subtitle {
        font-size: 24px;
    }

    .content-heading {
        font-size: 20px;
    }

    .content-text {
        font-size: 14px;
    }

    .info-list {
        font-size: 14px;
    }
}
