@charset "UTF-8";

/* ========================================
   about.css
   会社案内ページ固有スタイル

   CSS読み込み順：
   global.css → pages-style.css → about.css

   本ページはproduct-web.css / product-medical.cssを読み込まないため、
   hero-simple / section-divider / cta-block の共通パーツは
   product-web.css から必要分のみ転記して収録。
   このページにFAQ・サービスナビゲーションは不要。
======================================== */

/* ========================================
   共通パーツ① ヒーローセクション（シンプル左右分割）
   ※ product-web.css 由来
======================================== */
.hero-simple {
    background: #f8f8f8;
    padding: 40px 0;
}

.hero-simple-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-simple-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-simple-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    line-height: 1.5;
}

.hero-simple-lead {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    padding-left: 50px;
}

/* セクション区切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0;
}

.about-section.first-area{
    position: relative;
    overflow: hidden;
    background: #f3f2eb;
}

.about-section.first-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/company/first-bg.jpg") no-repeat center top;
    background-size: cover;
    z-index: 0;
}

.about-section.first-area > * {
    position: relative;
    z-index: 1;
}
.about-section.first-area .container{
	background-color: rgba( 255, 255, 255, 0.95 );
    padding: 50px;
    margin: 0 auto 0 0;
    max-width: 60%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .hero-simple-text {
        flex-direction: column;
    }
    .hero-simple-lead {
        padding-left: 0;
        padding-top: 1em;
    }
}
@media screen and (max-width: 1024px){
    .about-section.first-area{
        padding: 30px;
    }
    .about-section.first-area::before {
        width: 100%;
        height: 100%;
    }
    .about-section.first-area .container{
        background-color: rgba( 255, 255, 255, 0.9 );
        padding: 50px;
        margin: 0 0 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding: 25px 0;
    }

    .hero-simple-inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-simple-title {
        font-size: 1.5rem;
    }
    .about-section.first-area .container{
        max-width: 100%;
    }
}

/* ========================================
   共通パーツ② CTAセクション（ブロックボタン）
   ※ product-web.css 由来
======================================== */
.cta-block-section {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 30px 0 15px 0;
    background: #f5f5f5;
    text-align: center;
}

.cta-block-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.9;
    margin-bottom: 25px;
}

.cta-block-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-block-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 320px;
    padding: 20px 25px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
}

.cta-block-btn:hover {
    background: #dc000c;
}

.cta-block-btn-text {
    font-size: 1rem;
    font-weight: 600;
}

.cta-block-btn-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.cta-block-btn:hover .cta-block-btn-arrow {
    transform: translateX(5px);
}

.cta-block-free-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: -20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cta-block-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-block-btn {
        width: 100%;
        max-width: 320px;
    }

    .cta-block-lead {
        font-size: 1.1rem;
    }
}

/* ========================================
   ② 数字で見るロシナンテ
======================================== */
.numbers-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.numbers-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.numbers-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    border-top: 3px solid #dc000c;
}

.numbers-value {
    font-size: 3rem;
    font-weight: 800;
    color: #dc000c;
    line-height: 1.2;
    margin-bottom: 8px;
}

.numbers-unit {
    font-size: 1.2rem;
    font-weight: 700;
}

.numbers-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.numbers-note {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .numbers-value {
        font-size: 2.5rem;
    }
}

/* ========================================
   ③ 私たちの考え方（企業理念）
======================================== */
.philosophy-section {
    padding: 50px 0;
    background: #fff;
}

.philosophy-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.philosophy-text-block {
    max-width: 760px;
    margin: 0 auto;
}

.philosophy-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.philosophy-text-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ④ 代表者紹介
======================================== */
.greeting-section {
    padding: 50px 0;
    background: #fff;
}

.greeting-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.greeting-inner {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

.greeting-photo {
    flex: 0 0 240px;
}

.greeting-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.greeting-content {
    flex: 1;
}

.greeting-name {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.greeting-position {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.greeting-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.greeting-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .greeting-inner {
        flex-direction: column;
        align-items: center;
    }

    .greeting-photo {
        flex: none;
        width: 60%;
        max-width: 200px;
    }
}

/* ========================================
   ⑤ 保有資格
======================================== */
.qualification-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.qualification-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.qualification-intro {
    max-width: 760px;
    margin: 0 auto 30px;
}

.qualification-intro p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin: 0;
}

.qualification-fun td {
    color: #999;
    font-style: italic;
}

.qualification-note {
    max-width: 760px;
    margin: 25px auto 0;
}

.qualification-note p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* 共通テーブルスタイル（資格・会社概要共通） */
.about-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.about-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.about-table th,
.about-table td {
    padding: 16px 20px;
    font-size: 0.9rem;
    line-height: 1.7;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    vertical-align: top;
}

.about-table thead th {
    background: #333;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.about-table tbody th {
    background: #f8f8f8;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
    width: 180px;
}

.about-table tbody td {
    color: #555;
}

.qual-icon {
    display: inline-block;
    font-size: 1.1rem;
    color: #CC0000;
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

@media (max-width: 768px) {
    .about-table th,
    .about-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .about-table tbody th {
        width: 120px;
    }
}

/* ========================================
   ⑥ AI活用の方針
======================================== */
.ai-policy-section {
    padding: 50px 0;
    background: #fff;
}

.ai-policy-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.ai-policy-text-block {
    max-width: 760px;
    margin: 0 auto 25px;
}

.ai-policy-text-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    margin-bottom: 1.5em;
}

.ai-policy-text-block p:last-child {
    margin-bottom: 0;
}
.ai-policy-list {
    max-width: 760px;
    margin: 1rem auto 1.5rem;
    padding-left: 1.5em;
    line-height: 2;
    color: #444;
}
.ai-policy-list li {
    margin-bottom: 0.25rem;
}
.ai-policy-link {
    margin-top: 1.5rem;
    max-width: 760px;
    margin: auto;
    text-align: right;
}
.ai-policy-link a {
    color: #CC0000;
    font-weight: 600;
    text-decoration: none;
}
.ai-policy-link a:hover {
    text-decoration: underline;
}

/* approach-card（横長カード縦積み）※ feature-webmarketing.css 由来 */
.approach-cards {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px 28px;
    transition: box-shadow 0.3s;
}

.approach-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.approach-card-icon-fallback {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #fdf5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #dc000c;
    font-weight: 700;
}

.approach-card-content {
    flex: 1;
}

.approach-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.approach-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .approach-card {
        padding: 20px;
        gap: 15px;
    }

    .approach-card-icon-fallback {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   ⑦ 会社概要テーブル
======================================== */
.company-info-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.company-info-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

/* ========================================
   ⑧ 主要取引先
======================================== */
.clients-section {
    padding: 50px 0;
    background: #fff;
}

.clients-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.clients-list {
    max-width: 760px;
    margin: 0 auto 15px;
    list-style: none;
    padding: 0;
}

.clients-list li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.clients-list li:first-child {
    border-top: 1px solid #f0f0f0;
}

.clients-note {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #888;
}

/* ========================================
   ⑨ CSR（社会貢献活動）
======================================== */
.csr-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.csr-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.csr-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 30px;
}

.csr-intro p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* CSR：左右交互レイアウト（support-map-block同構造） */
.csr-block {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto 35px;
}

.csr-block:last-child {
    margin-bottom: 0;
}

.csr-block-reverse {
    flex-direction: row-reverse;
}

.csr-block-image {
    flex: 0 0 220px;
}

.csr-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.csr-block-content {
    flex: 1;
}

.csr-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.csr-block-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.9;
    margin: 0;
}

.csr-block-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .csr-block,
    .csr-block-reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .csr-block-image {
        flex: none;
        width: 60%;
        max-width: 220px;
        margin: 0 auto;
    }

    .csr-block-title {
        font-size: 1.1rem;
        text-align: center;
    }

    .csr-block-text {
        text-align: center;
    }
}

/* ========================================
   ⑩ 会社沿革
======================================== */
.history-section {
    padding: 50px 0;
    background: #fff;
}

.history-section .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.history-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 140px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 130px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
}

.history-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

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

.history-item::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #dc000c;
    border-radius: 50%;
}

.history-year {
    position: absolute;
    left: -140px;
    width: 110px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    text-align: right;
}

.history-content {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .history-timeline {
        padding-left: 100px;
    }

    .history-timeline::before {
        left: 90px;
    }

    .history-year {
        left: -100px;
        width: 80px;
        font-size: 0.85rem;
    }

    .history-content {
        font-size: 0.85rem;
    }
}

/* ========================================
   ⑪ アクセス
======================================== */
.access-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.access-section .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.access-address {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}

.access-map {
    max-width: 900px;
    margin: 0 auto;
}

.access-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .access-map iframe {
        height: 300px;
    }
}

/* ========================================
   プライバシーポリシー
======================================== */
.privacy-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
    color: #444;
    font-size: 0.9rem;
}

.privacy-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A3A5C;
    margin-top: 40px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-list {
    padding-left: 1.5em;
    margin: 12px 0;
}

.privacy-list li {
    margin-bottom: 6px;
}

.privacy-contact {
    background: #f8f8f8;
    padding: 20px 24px;
    border-radius: 6px;
    margin: 16px 0;
}

.privacy-contact a {
    color: #CC0000;
    text-decoration: none;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

.privacy-date {
    margin-top: 40px;
    text-align: right;
    color: #888;
    font-size: 0.85rem;
}
