@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* SP版のみ適用
----------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .hide-on-sp {
    display: none;
  }
}

/* common module css
----------------------------------------------------------------------------- */

.wrapper {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
.wrapper {
max-width: 1060px;
}
}

.w-inner{
padding-right:5rem;
padding-left:5rem;
}


/* SP版のみ適用
----------------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .wrapper {
    width: 100%;
  }
.w-inner{
padding-right:2rem;
padding-left:2rem;
}
}


/* モジュール確認用CSS */
.section-area_h1 {
  margin-bottom: 5rem;
  margin-top: 8rem;
}

.section-area_h1 p {
  margin-top: 4rem;
}

.section-area_h2 {
  margin-bottom: 6rem;
}
.section-area_h3 {
  margin-bottom: 5rem;
}
.section-area_h4 {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
.section-area_h1 {
  margin-bottom: 3rem;
  margin-top: 4rem;
}
}

/* pankuzu_color
----------------------------------------------------------------------------- */
.pankuzu_cl{
color:#0F0F0F;
}

.pankuzu_cl a{
color:#103861;
}

.pankuzu_cl a:hover{
color:#D7092F;
}


/* mod-title_h1
----------------------------------------------------------------------------- */

.mod-title_h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}

/*SP*/

@media screen and (max-width: 768px) {
  .mod-title_h1 {
    font-size: 3.0rem;
  }
}


/* mod-title_h2
----------------------------------------------------------------------------- */

.mod-title_h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 24px; /* 線の分、テキストを右に寄せる */
}

/*SP*/

@media screen and (max-width: 768px) {
  .mod-title_h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    line-height: 1.4em;
    padding-left: 18px; /* 線の分、テキストを右に寄せる */
  }
}

/* mod-title_h3
----------------------------------------------------------------------------- */

.mod-title_h3 {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8em; /* ■とテキストの間の余白 */
}


/*SP*/

@media screen and (max-width: 768px) {
  .mod-title_h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.3em;
    gap: 0.6em; /* ■とテキストの間の余白 */
  }
}

/* mod-title_h3
----------------------------------------------------------------------------- */

.mod-title_h4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}


/*SP*/

@media screen and (max-width: 768px) {
  .mod-title_h4 {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    line-height: 1.3em;
  }
}
/*SP*/


.mod-title_h2::before {
    content: "";
    position: absolute;
    /* 上下中央揃えの設定 */
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    
    width: 4px;
    height: 1em; /* フォントサイズに合わせる（1.1em程度が見栄えが良いです） */
    
    background-image: linear-gradient(0deg, #1e4191 0%, #7d1e69 35%, #cd1432 100%);
}


/* ::after から ::before に変更 */
.mod-title_h3::before {
    content: "";
    display: inline-block;
    width: 0.5em;  /* デザインに合わせてサイズを微調整 */
    height: 0.5em;
    background-image: linear-gradient(0deg, #1e4191 0%, #7d1e69 35%, #cd1432 100%);
    flex-shrink: 0; /* 改行時に図形が潰れるのを防ぐ */
}



/* mod-list_number
----------------------------------------------------------------------------- */
.mod-list_number {
  list-style-type: none;
  counter-reset: number-first;
  padding-top:3rem;
  font-weight:bold;
}

.mod-list_number>li {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.mod-list_number>li::before {
  position: absolute;
  display: block;
  text-align: right;
  content: counter(number-first)".";
  counter-increment: number-first;
  left: -0.8rem;
  width: 24px;
}

/*SP*/

@media screen and (max-width: 768px) {
.mod-list_number>li::before {
  left: -1rem;
}
.mod-list_number>li {
  padding-left: 1.8rem;
}
}


/*SP*/

.mod-list_disc {
  font-weight:normal;
  margin-top:1rem;
}

.mod-list_disc > li {
position:relative;
padding-left:1em;
}

.mod-list_disc > li::before {
content:"";
position:absolute;
top:.8em;
left:4px;
display:inline-block;
width:4px;
height:4px;
margin-top:-2px;
background-color:#333;
border-radius:50%;
}


.t_right {
text-align:right!important;
}

/* guideline-list
----------------------------------------------------------------------------- */

.guideline-list__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 4rem;
    column-gap: 4rem ;
    row-gap: 4rem; 
    padding: 0 10rem;
}

.guideline-list_box {
    display: flex;
    align-items: flex-start;
    padding: 6rem 0rem 0rem;
    gap: 2rem;
    border-radius: 1rem;
}

.c-button--pdf {
    position: relative;
}

.c-button--pdf:after {
    position: absolute;
    top: 50%;
    right: 2em;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: transparent url(/company/sustainability/assets/images/icon_pdf.webp) no-repeat center center / cover;
    content: "";
}
@media (max-width: 1200px) {
    .c-button--pdf:after {
        right: 1em;
    }
}

.guideline-list__button {
    display: inline-block;
    margin: 0;
    padding: 1.5rem clamp(2rem, 5vw, 4rem) 1.5rem 1rem;
    border: 2px solid #1e4191;
    background-image: none;
    background-color: #fff;
    color: #1e4191;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 160%;
    letter-spacing: .56px;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    -webkit-appearance: none;
    width: 100%;
    box-sizing: border-box; /* ← パディング込みで幅計算 */
}

.guideline-list__button:hover, .guideline-list__button:focus {
    outline: none;
    color: #1e4191;
    text-decoration: none;
}

.guideline-list__button:not(:disabled) {
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .guideline-list__button:hover {
        border: 2px solid #1E4191;
        background-color: #1e4191;
        color: #fff;
        text-decoration: none;
    }
}

@media screen and (max-width: 767.98px) {
    .guideline-list__row {
        grid-template-columns: repeat(1, 1fr);
        -moz-column-gap: 3rem;
        column-gap: 0rem;
        row-gap: 0rem;
        padding: 2rem 0 0;
    }
    .guideline-list_box {
        flex-direction: column;
        align-items: center;
        padding: 3rem 0rem 0rem;
        gap: 0rem;
    }
    .c-button--pdf:after {
        right: 1em;
    }
    .guideline-list__button {
        font-size: 1.4rem;
        min-width: 24.6rem;
        padding: 1.4rem 4rem 1.4rem 2rem;
    }
}


/* back-btn
----------------------------------------------------------------------------- */
.back-btn {
    margin: 12rem 0;
    text-align: center;
}
@media screen and (max-width: 767.98px) {
    .back-btn {
        margin: 8rem 0;
    }
}

/* -----------------------------------------------------------------------------
   GHG排出量テーブル用スタイル
----------------------------------------------------------------------------- */

/* コンテナ：PCは横並び、SPは縦並び */
.ghg-data-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* テーブルの下底を揃える */
    gap: 4rem; /* テーブル間の余白 */
    width: 100%;
    margin-bottom: 2rem;
}

/* 個別ボックスの幅設定 */
.ghg-table-box.box-basis {
    width: 35%; /* 左側テーブル（2020年）の幅 */
    flex-shrink: 0;
}

.ghg-table-box.box-progress {
    width: 60%; /* 右側テーブル（2023-2025年）の幅 */
    flex-grow: 1;
}

/* 単位の表示 */
.ghg-unit {
    text-align: right;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* テーブル共通設定 */
.ghg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.6rem;
    line-height: 1.5;
}

.ghg-table th,
.ghg-table td {
    border: 1px solid #ccc;
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}


/* 項目ヘッダーの色指定 */
.ghg-table thead th,
.ghg-table tbody th {
    background-color: #D5E6F8;
    font-weight: 700;
}

/* 左側テーブルの項目名は左寄せにする場合（任意） */
.box-basis .ghg-table tbody th {
    width: 55%;
    text-align: center;
}
@media screen and (max-width: 767.98px) {
    .box-basis .ghg-table tbody th {
        width: 31%;
    }
}

/* 合計行のスタイル（太字など任意） */
.ghg-total-row th,
.ghg-total-row td {
    font-weight: 700;
}

/* SP版レイアウト（768px以下） */
@media screen and (max-width: 768px) {
    .ghg-data-container {
        flex-direction: column; /* 縦並び */
        align-items: stretch;
        gap: 3rem;
    }

    .ghg-table-box.box-basis,
    .ghg-table-box.box-progress {
        width: 100%;
    }
    
    .ghg-table {
        font-size: 1.2rem; /* スマホでは少し文字を小さく */
    }
    
    .ghg-table th,
    .ghg-table td {
        padding: 0.8rem 0.5rem;
        word-break: break-all;
    }
}
.sp-only{display:none !important;}
@media only screen and (max-width:768px){
	.pc-only{display:none !important;}
	.sp-only{display:block !important;}
}
/* -----------------------------------------------------------------------------
   GHG 画像＋テキスト配置用（テーブルと同じ幅比率）
----------------------------------------------------------------------------- */

/* コンテナ設定 */
.ghg-img-text-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 上端を揃える */
    gap: 4rem; /* PC時の間隔 */
    width: 100%;
    margin-bottom: 2rem;
}

/* 左側：画像ボックス（30%） */
.ghg-img-box {
    width: 30%; /* 左側テーブルと同じ幅 */
    flex-shrink: 0;
}

.ghg-img-box img {
    width: 100%;
    height: auto;
    vertical-align: bottom; /* 画像下の余白を削除 */
}

/* 右側：テキストボックス（65%） */
.ghg-text-box {
    width: 65%; /* 右側テーブルと同じ幅 */
    flex-grow: 1;
}

/* SP版レイアウト（768px以下） */
@media screen and (max-width: 768px) {
    .ghg-img-text-container {
        flex-direction: column; /* 縦並び */
        gap: 3rem; /* SP時の間隔（テーブル合わせ） */
    }

    .ghg-img-box,
    .ghg-text-box {
        width: 100%; /* 横幅いっぱい */
    }
}
/* -----------------------------------------------------------------------------
   GHG 画像単独配置用（PC:左寄せ / SP:幅100%）
----------------------------------------------------------------------------- */

.ghg-img-single-container {
    width: 100%;
    text-align: left;    /* PC：画像を左寄せ */
    margin-bottom: 2rem; /* 下の余白 */
}

.ghg-img-single-container img {
    max-width: 80%;     /* PC：親要素より大きい場合は縮小、小さい場合はそのまま */
    height: auto;        /* 比率を保持 */
    vertical-align: bottom;
}

/* SP版レイアウト（768px以下） */
@media screen and (max-width: 768px) {
    .ghg-img-single-container img {
        max-width: 100%;
        width: 100%;     /* SP：強制的に横幅いっぱいに拡大 */
    }
}
/* -----------------------------------------------------------------------------
   定義リストテーブル（PC:横並び / SP:縦並び）
----------------------------------------------------------------------------- */

.def-table {
    width: 100%;
    border-top: 1px solid #ccc;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* 複数のテーブルがある場合の余白用クラス */
.mb-block {
    margin-bottom: 4rem;
}

/* 行ごとのラッパー */
.def-row {
    display: flex;
    border-bottom: 1px solid #ccc;
}

/* 左側：項目名（dt） */
.def-table dt {
    width: 30%; /* 項目名の幅 */
    background-color: #D5E6F8; /* 指定の色 */
    padding: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center; /* 垂直中央揃え */
    flex-shrink: 0;
}

/* 右側：内容（dd） */
.def-table dd {
    width: 70%; /* 内容の幅 */
    padding: 2rem;
    background-color: #fff;
    display: flex;
    align-items: center; /* テキストを垂直中央に配置 */
}

/* --- 行動指針リスト（ul, li）の調整 --- */
.action-list {
    list-style: none; /* デフォルトの・や数字を消す */
    margin: 0;
    padding: 0;
}

.action-list li {
    /* ぶら下げインデント設定 */
    padding-left: 1.5em;   /* 全体を1.5文字分右にずらす */
    text-indent: -1.5em;   /* 1行目の先頭だけ1.5文字分左に戻す */
    margin-bottom: 0.5rem;
}

.action-list li:last-child {
    margin-bottom: 0;
}

/* 太字クラス */
.txt-bold {
    font-weight: 700;
}

/* --- SP版レイアウト（768px以下） --- */
@media screen and (max-width: 768px) {
    .def-table {
        font-size: 1.4rem;
    }

    .def-row {
        flex-direction: column; /* 縦並びに変更 */
    }

    .def-table dt,
    .def-table dd {
        width: 100%; /* 横幅いっぱい */
        display: block; /* SP時はブロック要素に戻す */
    }

    .def-table dt {
        padding: 1.5rem;
        background-color: #D5E6F8;
    }

    .def-table dd {
        padding: 1.5rem;
    }
}

/* -----------------------------------------------------------------------------
   ■マークのリスト（ul li）
----------------------------------------------------------------------------- */

.mod-list_square {
    list-style: none; /* デフォルトのマークを消す */
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.mod-list_square li {
    position: relative;
    padding-left: 1.2em; /* マークの分＋余白だけ左にスペースを空ける */
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mod-list_square li::before {
    content: "■";          /* マークとして四角を表示 */
    position: absolute;
    left: 0;
    top: 0;               /* 上位置の微調整（行の高さに合わせて調整してください） */
    font-size: 0.8em;     /* マークのサイズ（文字より少し小さくするとバランスが良いです） */
    color: #103861;       /* マークの色 */
    line-height: 2;       /* マークの垂直位置合わせ用 */
}

.mod-list_square li:last-child {
    margin-bottom: 0;
}
/* -----------------------------------------------------------------------------
   ローマ数字リスト（Ⅰ. Ⅱ. ...）
----------------------------------------------------------------------------- */

.list-roman {
    list-style: none;         /* デフォルトの番号を消す */
    counter-reset: roman-cnt; /* カウンターを初期化 */
    margin: 0 0 2rem 0;
    padding: 0;
}

.list-roman li {
    position: relative;
    padding-left: 3.5em;      /* 「VIII.」など幅広の数字が入る分の余白を確保 */
    margin-bottom: 0.8rem;    /* 行間の調整 */
    line-height: 1.6;
}

.list-roman li::before {
    /* カウンターをローマ数字（大文字）で表示し、後ろにドットをつける */
    content: counter(roman-cnt, upper-roman) ".";
    counter-increment: roman-cnt;
    
    position: absolute;
    left: 0;
    top: 0;
    
    color: #103861;           /* 数字の色（青） */
    font-weight: 700;         /* 数字を太字に */
    
    /* 数字の幅を揃えるための設定（任意） */
    /* width: 3em; */ 
    /* display: inline-block; */
}

.list-roman li:last-child {
    margin-bottom: 0;
}

/* SP版レイアウト（微調整） */
@media screen and (max-width: 768px) {
    .list-roman li {
        padding-left: 3em; /* スマホでは少し余白を詰める */
    }
}
/* -----------------------------------------------------------------------------
   アンカーリンク（別ページ遷移時）のヘッダー重なり防止
----------------------------------------------------------------------------- */

/* サステナビリティページ内のIDを持つすべての要素に対して調整を適用 */
#company-sustainability *[id] {
    scroll-margin-top: 130px; /* PC：ヘッダーの高さ(約100px) + 余白30px */
}

/* SP版（スマホ）の調整 */
@media screen and (max-width: 768px) {
    #company-sustainability *[id] {
        scroll-margin-top: 90px; /* SP：ヘッダーの高さ(約60～70px) + 余白 */
    }
}
/* -----------------------------------------------------------------------------
   女性活躍推進データテーブル
----------------------------------------------------------------------------- */

.health-table-wrapper {
    width: 100%;
    overflow-x: auto; /* SP表示時に横スクロール可能に */
    margin-bottom: 1rem;
}

.health-table {
    width: 100%;
    min-width: 600px; /* SP時に極端に潰れるのを防ぐ */
    border-collapse: collapse;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 20px;
}

.health-table th,
.health-table td {
    border: 1px solid #ccc;
    padding: 1rem;
    vertical-align: middle;
    text-align: center;
}


/* --- ヘッダー（紺色・白文字） --- */
.health-table tr.header-navy th {
    background-color: #D5E6F8;
    color: #333;
    font-weight: 700;
    border: 1px solid #ccc; /* 枠線も紺色に合わせる場合 */
}

/* --- 強調行（薄いグレー背景） --- */
.health-table tr.highlight-gray th,
.health-table tr.highlight-gray td {
    background-color: #ebeff5;
    font-weight: 700; /* 強調行の文字を太くする場合 */
}

/* --- 左側の項目列の設定 --- */
.health-table .th-category {
    background-color: #D5E6F8;
    text-align: left;
    width: 25%;
    font-weight: 700;
}

.health-table .th-sub {
    background-color: #fff;
    width: 15%;
    font-weight: normal;
}

/* 注釈の文字サイズ */
.th-note {
    font-size: 1.3rem;
    font-weight: normal;
    display: block;
}

/* SP版レイアウト調整 */
@media screen and (max-width: 768px) {
    .health-table th,
    .health-table td {
        padding: 0.8rem 0.5rem;
        font-size: 1.2rem;
    }
    
    /* SPでは項目名の改行を許可 */
    .health-table .th-category br {
        display: inline; 
    }
}
/* -----------------------------------------------------------------------------
   ●マークのリスト（ul li）
----------------------------------------------------------------------------- */

.mod-list_circle {
    list-style: none; /* デフォルトのマークを消す */
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.mod-list_circle li {
    position: relative;
    padding-left: 1.2em; /* マークの分＋余白だけ左にスペースを空ける */
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.mod-list_circle li::before {
    content: "●";          /* マークとして黒丸を表示 */
    position: absolute;
    left: 0;
    top: 0;               /* 上位置の微調整 */
    font-size: 0.8em;     /* マークのサイズ */
    color: #103861;       /* マークの色（紺色） */
    line-height: 2;       /* マークの垂直位置合わせ用 */
}

.mod-list_circle li:last-child {
    margin-bottom: 0;
}
/* -----------------------------------------------------------------------------
   注釈テキスト（※のぶら下げインデント）
----------------------------------------------------------------------------- */

.note-collabo {
    font-size: 1.4rem;    /* 文字サイズ */
    line-height: 1.6;     /* 行間（読みやすく調整） */
    padding-left: 1em;    /* 「※」1文字分のスペースを確保 */
    text-indent: -1em;    /* 1行目を1文字分左（確保したスペース）に引き戻す */
    margin-bottom: 2rem;  /* 下の余白 */
}

/* SP版での微調整（必要であれば） */
@media screen and (max-width: 768px) {
    .note-collabo {
        font-size: 1.2rem; /* スマホでは少し小さくする場合 */
    }
}
/* -----------------------------------------------------------------------------
   標準リスト（フォントサイズ1.4rem）
----------------------------------------------------------------------------- */

.mod-list_basic_14 {
    font-size: 1.4rem;    /* 文字サイズ指定 */
    line-height: 1.6;     /* 行間 */
    margin: 0 0 2rem 0;   /* 外側の余白 */
    padding-left: 0;      /* デフォルトのパディングをリセット */
    list-style: none;     /* デフォルトのマークを消して制御しやすくする */
}

.mod-list_basic_14 li {
    position: relative;
    margin-bottom: 0.5rem;
}

.mod-list_basic_14 li:last-child {
    margin-bottom: 0;
}

/* SP版での微調整（必要であれば） */
@media screen and (max-width: 768px) {
    .mod-list_basic_14 {
        font-size: 1.2rem; /* スマホでは少し小さくする場合 */
    }
}
/* -----------------------------------------------------------------------------
   戦略マップ画像専用（スマホ時 横スクロール）
----------------------------------------------------------------------------- */

/* PC表示：通常通り表示 */
.strategy-map-scroll {
    width: 100%;
    margin-bottom: 2rem;
    text-align: left; /* PCは左寄せ */
}

.strategy-map-scroll img {
    max-width: 100%; /* PCは画面内に収める */
    height: auto;
    vertical-align: bottom;
}

/* SP表示（768px以下）：横スクロール適用 */
@media screen and (max-width: 768px) {
    .strategy-map-scroll {
        overflow-x: auto;              /* 横スクロールを有効化 */
        white-space: nowrap;           /* 中身の折り返しを防止 */
        -webkit-overflow-scrolling: touch; /* スクロールを滑らかに */
        padding-bottom: 10px;          /* スクロールバーの干渉防止 */
    }

    .strategy-map-scroll img {
        max-width: none;  /* 画面幅制限を解除 */
        width: 800px;     /* ★画像の固定幅（読みやすいサイズに調整してください） */
    }
}

