/* ========================================
   企業情報ページ
   ======================================== */

.cp-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヒーロー
   ======================================== */
.cp-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.cp-hero-bg {
    width: 100%;
    height: 100%;
    background: url('/static/landing/images/company.jpg') center/cover no-repeat;
}

.cp-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
}

.cp-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cp-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    letter-spacing: 0.15em;
}

/* ========================================
   企業紹介
   ======================================== */
.cp-intro {
    padding: 60px 0 40px;
    text-align: center;
}

.cp-intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

/* ========================================
   セクション
   ======================================== */
.cp-section {
    padding: 60px 0;
}

.cp-section-alt {
    background: #f5f7fa;
}

.cp-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #00BCD4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.cp-section-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.8;
}

/* ========================================
   会社概要テーブル
   ======================================== */
.cp-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cp-table th,
.cp-table td {
    padding: 16px 20px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.cp-table th {
    width: 160px;
    background: #f5f7fa;
    color: #333;
    font-weight: 600;
}

.cp-table td {
    color: #555;
}

.cp-table td a {
    color: #00BCD4;
    text-decoration: none;
}

.cp-table td a:hover {
    text-decoration: underline;
}

.cp-table tr:last-child th,
.cp-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   営業店舗カード
   ======================================== */
.cp-shops {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.cp-shop-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.cp-shop-icon {
    font-size: 28px;
    color: #00BCD4;
    margin-bottom: 12px;
}

.cp-shop-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #00BCD4;
}

.cp-shop-screenshot {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cp-shop-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.cp-shop-table {
    width: 100%;
    border-collapse: collapse;
}

.cp-shop-table th,
.cp-shop-table td {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.cp-shop-table th {
    width: 100px;
    color: #333;
    font-weight: 600;
}

.cp-shop-table td {
    color: #555;
}

.cp-shop-table tr:last-child th,
.cp-shop-table tr:last-child td {
    border-bottom: none;
}

/* ========================================
   CTA
   ======================================== */
.cp-cta {
    padding: 60px 0;
    text-align: center;
}

.cp-cta-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.cp-cta-btn {
    display: inline-block;
    padding: 16px 60px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: #00BCD4;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.cp-cta-btn:hover {
    background: #00838f;
    transform: translateY(-2px);
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
    .cp-hero {
        height: 200px;
    }

    .cp-hero-title {
        font-size: 32px;
    }

    .cp-table th {
        width: 100px;
        padding: 12px;
    }

    .cp-table td {
        padding: 12px;
    }

    .cp-shops {
        grid-template-columns: 1fr;
    }

    .cp-shop-card {
        padding: 24px;
    }

    .cp-cta-btn {
        width: 100%;
        padding: 16px;
    }
}
