/**
 * 会社概要ページ専用スタイルシート
 * 株式会社リング
 */
/* ページヒーロー */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease 0.2s both;
}


/* ==========================================================================
   会社情報セクション
   ========================================================================== */

.company-info-section {
    padding: 80px 0;
    background: #fff;
}

.info-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.info-table tr {
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table th {
    display: table-cell; 
    padding: 20px 25px;
    text-align: left;
    font-weight: bold;
    color: #fff;
    background-color: var(--secondary-color) !important;
    width: 200px;
    vertical-align: top;
}

.info-table th i {
    margin-right: 8px;
}

.info-table td {
    padding: 20px 25px;
    line-height: 1.8;
    background: #fff;
}

.info-table td a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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




/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */


@media (max-width: 768px) {
    
    /* 会社情報テーブル */
    .info-table {
        display: block;
    }
    
    .info-table tr {
        display: block;
        margin-bottom: 15px;
        width:100vw;
    }
    
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    
    .info-table th {
        border-radius: 8px 8px 0 0;
    }
    
    .info-table td {
        border-radius: 0 0 8px 8px;
        border: 1px solid #eee;
    }
    

}

@media (max-width: 480px) {

  .info-table tbody {

    width:460px;
  }
}
