/* 会社情報ページ用CSS */
@charset "UTF-8";

/* 共通スタイル */
.company-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* パンくずリスト */
.marui-breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 12px;
    color: #888;
}

.breadcrumb-container a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-container a:hover {
    color: #1aa1d6;
}

.company-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.company-section-title {
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
    position: relative;
    display: inline-block;
    margin: 0 0 15px;
}

.company-title-en {
    font-size: 44px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.company-title-ja {
    font-size: 20px;
    font-weight: 500;
    color: #666;
    display: block;
    letter-spacing: 0.05em;
}

.page-title-area {
    padding: 120px 0 60px;
    background-color: #fff;
    position: relative;
  }
  
  .marui-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .marui-page-title-wrap {
    text-align: center;
    /* opacity: 0; */
    /* transform: translateY(30px); */
    /* animation: fadeIn 1s forwards 0.5s; */
  }
  
  .marui-page-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.05em;
    color: var(--marui-text-color);
    font-family: 'Poppins', sans-serif;
  }
  
  .marui-page-subtitle {
    font-size: 16px;
    margin-top: 10px;
    color: var(--marui-main-color);
    letter-spacing: 0.1em;
  }

/* メインコンテンツエリア */
.company-main section {
    padding: 100px 0;
}

.company-main section:nth-child(even) {
    background-color: #f8f8f8;
}

/* 企業理念セクション */
.company-philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.company-philosophy-main {
    flex: 1;
    min-width: 300px;
}

.company-philosophy-lead {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #3c6e71;
}

.company-philosophy-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.company-philosophy-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.company-philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ビジョンセクション */
.company-vision-section {
    background-color: #f8f8f8;
}

.company-vision-items {
    max-width: 800px;
    margin: 0 auto;
}

.company-vision-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.company-vision-item:last-child {
    margin-bottom: 0;
}

.company-vision-number {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #3c6e71;
    padding: 15px 25px;
    margin-right: 30px;
    background-color: rgba(60, 110, 113, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}

.company-vision-body {
    flex: 1;
}

.company-vision-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.company-vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 会社概要セクション */
.company-profile-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

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

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

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

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

.company-service-list,
.company-partner-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.company-service-list li,
.company-partner-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.company-service-list li:before,
.company-partner-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3c6e71;
}

/* アクセスセクション */
.company-access-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.company-access-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-access-map iframe {
    width: 100%;
    height: 100%;
}

.company-access-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.company-access-address,
.company-access-route {
    flex: 1;
    min-width: 300px;
}

.company-access-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.company-access-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #3c6e71;
    border-radius: 2px;
}

.company-access-address p,
.company-access-route p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.company-access-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.company-access-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.company-access-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3c6e71;
}

/* お問い合わせセクション */
.company-contact-section {
    background: linear-gradient(135deg, #3c6e71, #284b63);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

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

.company-contact-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.company-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.company-contact-btn {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    color: #333;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 250px;
}

.company-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-contact-btn i {
    font-size: 24px;
    margin-right: 15px;
}

.company-contact-btn.tel-btn i {
    color: #3c6e71;
}

.company-contact-btn.mail-btn i {
    color: #284b63;
}

.company-contact-btn span {
    text-align: left;
    line-height: 1.4;
}

.company-contact-btn strong {
    font-size: 20px;
    display: inline-block;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .company-title-en {
        font-size: 36px;
    }
    
    .company-title-ja {
        font-size: 18px;
    }
    
    .company-philosophy-lead {
        font-size: 22px;
    }
    
    .company-vision-number {
        font-size: 24px;
        padding: 12px 20px;
    }
    
    .company-vision-title {
        font-size: 20px;
    }
    
    .company-main section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .company-philosophy-content {
        flex-direction: column;
    }
    
    .company-philosophy-image {
        max-width: 100%;
    }
    
    .company-vision-item {
        flex-direction: column;
    }
    
    .company-vision-number {
        margin-right: 0;
        margin-bottom: 15px;
        width: 80px;
        height: 80px;
    }
    
    .company-profile-table th {
        width: 35%;
    }
    
    .company-title-en {
        font-size: 30px;
    }
    
    .company-title-ja {
        font-size: 16px;
    }
    
    .company-contact-title {
        font-size: 28px;
    }
    
    .company-main section {
        padding: 60px 0;
    }
    
    .company-section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .company-vision-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        padding: 10px;
    }
    
    .company-profile-table th,
    .company-profile-table td {
        padding: 15px;
    }
    
    .company-profile-table th {
        width: 40%;
    }
    
    .company-title-en {
        font-size: 26px;
    }
    
    .company-title-ja {
        font-size: 14px;
    }
    
    .company-philosophy-lead {
        font-size: 18px;
    }
    
    .company-vision-title {
        font-size: 18px;
    }
    
    .company-contact-title {
        font-size: 24px;
    }
    
    .company-contact-btn {
        padding: 15px 20px;
        min-width: 100%;
    }
    
    .company-main section {
        padding: 50px 0;
    }
    
    .company-section-header {
        margin-bottom: 30px;
    }
    
    .sp-only {
        display: inline;
    }
}