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

/* ページヘッダー背景 */
.page-header {
    background-image: linear-gradient(to right, rgba(241, 143, 176, 0.2), rgba(148, 187, 233, 0.2));
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 会社概要セクション */
.company-section {
    padding: 80px 0;
}

.company-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.company-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* 会社概要テーブル */
.company-table-container {
    max-width: 900px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.company-table th,
.company-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.company-table th {
    width: 30%;
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #eee;
}

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

.company-table tr:hover {
    background-color: #f9f9f9;
}

/* 地図セクション */
.map-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.map-content {
    flex: 1;
    min-width: 300px;
}

.map-address {
    margin-bottom: 20px;
}

.map-address-title {
    font-size: 18px;
    font-weight: 600;
    color: #f18fb0;
    margin-bottom: 10px;
}

.map-address-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.map-iframe {
    flex: 2;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* お問い合わせバナー */
.contact-company-banner {
    background-color: #f18fb0;
    padding: 50px 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    margin: 60px auto 0;
    max-width: 800px;
}

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

.contact-company-banner-text {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-company-btn {
    display: inline-block;
    background-color: white;
    color: #f18fb0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-company-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .company-description p {
        font-size: 15px;
    }
    
    .company-table th,
    .company-table td {
        padding: 15px;
        font-size: 14px;
    }
    
    .map-address-title {
        font-size: 17px;
    }
    
    .map-address-text {
        font-size: 15px;
    }
    
    .map-iframe {
        height: 300px;
    }
    
    .contact-company-banner-title {
        font-size: 22px;
    }
    
    .contact-company-banner-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .company-description p {
        font-size: 14px;
    }
    
    .company-table th,
    .company-table td {
        padding: 12px;
        font-size: 13px;
    }
    
    .company-table th {
        width: 40%;
    }
    
    .map-address-title {
        font-size: 16px;
    }
    
    .map-address-text {
        font-size: 14px;
    }
    
    .map-iframe {
        height: 250px;
    }
    
    .contact-company-banner {
        padding: 30px 15px;
    }
    
    .contact-company-banner-title {
        font-size: 20px;
    }
    
    .contact-company-banner-text {
        font-size: 14px;
    }
    
    .contact-company-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}