@charset "UTF-8";

/* ================================
   全体レイアウト
================================ */
.environmental-disclosure {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

/* ================================
   見出し
================================ */
.environmental-disclosure h2 {
    font-size: 26px;
    margin: 60px 0 20px;
    font-weight: 700;
    border-left: 6px solid #00824d;
    padding-left: 12px;
}

.environmental-disclosure h3 {
    font-size: 20px;
    margin: 40px 0 12px;
    font-weight: 600;
}

/* ================================
   PDF画像 + ダウンロードボタン
================================ */
.environmental-disclosure .pdf-img-box {
    width: 100%;
    max-width: 600px;
    margin: 20px auto 40px;
    text-align: center;
}

/* 画像（PDF サムネイル） */
.environmental-disclosure .pdf-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    cursor: pointer; /* PDFに飛ぶので手のカーソル */
}

/* PDF拡大表示ボタン */
.environmental-disclosure .pdf-download-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: #00824d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
}

.environmental-disclosure .pdf-download-btn:hover {
    background: #00693e;
}

/* ================================
   表ラッパー（横スクロール）
================================ */
.environmental-disclosure .table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
    -webkit-overflow-scrolling: touch;
}

/* ================================
   テーブルデザイン
================================ */
.environmental-disclosure table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    background: #F4F5F0;
}

.environmental-disclosure th,
.environmental-disclosure td {
    border: 1px solid #999;
    padding: 12px 14px;
    font-size: 14px;
    vertical-align: middle;
}

.environmental-disclosure td {
    background-color: #fff;
}

.environmental-disclosure th {
    background: #e5e6e0;
    font-weight: 600;
}

.environmental-disclosure td.num {
    text-align: right;
}

/* 縦ラベル */
.environmental-disclosure .vertical-label {
    background: #dfe0db;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

/* ================================
   スマホ対応
================================ */
@media (max-width: 768px) {
    .environmental-disclosure {
        padding: 0 16px;
    }

    .environmental-disclosure h2 {
        font-size: 22px;
        margin-top: 40px;
    }

    .environmental-disclosure h3 {
        font-size: 18px;
    }

    .environmental-disclosure table {
        min-width: 1400px;
    }

    .environmental-disclosure th {
        min-width: 180px;
        white-space: normal;
        line-height: 1.4;
    }
}
.environmental-disclosure .pdf-img-box p.cap{
	width: 100%;
	padding: 20px;
	margin-bottom: 60px;
	background: #F4F5F0;
	text-align: left;
}
	
