@charset "utf-8";
/* sustainability */
/* CSS Document */
/* 下層コンテンツ */
/* ===========================================
PC版サイズ指定    
    ・remは使用しない（htmlでの指定を継承しており、計算が複雑になるため）
    ・フォントサイズはpxで指定する
    ・余白はpx、%、またはvwで指定する
    ・幅はpx、%、またはvwで指定する
    ・高さpx、%、またはvwで指定する
 * ======================================== */
@media print, (min-width: 769px) {
  /* ===========================================
 1.Base（共通・初期化）
 * ======================================== */
  .breadcrumb {
    z-index: 1;
  }
  .keyvisual__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1280 / 263;
  }
  .keyvisual__h1title {
    margin: 80px 0 32px;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
    font-size: 40px;
    color: #FFFFFF;
  }
  .keyvisual__text {
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
    font-size: 16px;
    color: #FFFFFF;
  }
  .key-visual__list-area {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 128px 8px 0;
  }
  .key-visual__list {
    display: flex;
    list-style-type: none;
  }
  .key-visual__list-item {
    width: 120px;
    height: 120px;
    margin-right: 8px;
  }
  /* ===========================================
 2.Content（単体構造）
 * ======================================== */
  .content {
    padding: 80px 0px;
  }
  .content--backgroundcolor-glay {
    padding: 80px 0px;
    background-color: #F5F8FC;
  }
  .content__inner {
    margin-bottom: 40px;
  }
  .content--after-backgroundcolor-glay {
    padding: 80px 0px 0px;
  }
  .wrapper__inner {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
  }
  .definition-list {
    display: flex;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  .definition-list__term {
    width: 10%;
  }
  .definition-list__discription {
    width: 90%;
  }
  .unordered-list {
    margin-bottom: 0px;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  .content__h2title {
    font-size: 24px;
  }
  .content__h3title {
    margin-bottom: 16px;
    font-size: 20px;
    color: #005baa;
  }
  .content__text {
    margin-bottom: 20px;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  .content__image-area {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
  }
  .main-message {
    background: center/contain no-repeat;
    background-image: url(../img/job/job_shape_03.webp);
    aspect-ratio: 1286 / 526;
  }
  .main-message__text-area {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 0 0 45px;
  }
  .main-message__text {
    width: 673px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 2.14;
  }
  /* ===========================================
 3.media（2カラム構造）
 * ======================================== */
  .media {
    display: flex;
    justify-content: space-between;
  }
  .media--reverse {
    display: flex;
    flex-direction: row-reverse;
  }
  .media__text-area {
    margin-right: 40px;
  }
  .media__img {
    max-width: 492px;
  }
  .media-reverse__img {
    max-width: 492px;
    margin-right: 40px;
  }
  .media__h2title {
    margin-bottom: 16px;
    font-size: 20px;
    color: #005baa;
  }
  .media__text {
    margin-bottom: 20px;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  .media__link {
    text-decoration: underline;
    color: #009fe7;
    display: inline;
  }
  .media__btn-area {
    display: flex;
    justify-content: center;
  }
  .media__btn-list {
    padding-left: 0;
    list-style-type: none;
  }
  .media__btn-item {
    width: 320px;
    height: 48px;
    margin-bottom: 24px;
    background-color: #005BAA;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.4);
  }
  .media__btn-item:hover {
    background-color: #036fcc;
  }
  .media__btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
  }
  .media__btn-link--arrow {
    position: relative;
  }
  .media__btn-link--arrow::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: -24px;
    width: 9px;
    height: 12px;
    background: url(../img/common/header_icon_03.svg) center / 100% auto no-repeat;
  }
  /* ===========================================
 4.card（複数構造）
 * ======================================== */
  .card--vartical {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 43%;
    padding: 32px 10% 0;
    background: rgba(255, 255, 255, 0.7);
    overflow: hidden;
  }
  .card--scroll {
    overflow-y: auto;
  }
  .card--scroll::-webkit-scrollbar {
    background: #FFFFFF;
  }
  .card--scroll::-webkit-scrollbar-thumb {
    background-color: white;
    border: 2px solid #C1C1C1;
  }
  .card--scroll::-webkit-scrollbar {
    display: none;
  }
  /*  .card--scroll::-webkit-scrollbar {
    display: none;
  }*/
  .card-item {
    width: 302px;
    padding: 24px;
    border: 1px solid #707070;
    background-color: #FFFFFF;
  }
  .card-item__link {
    display: block;
    margin: 0px 0px 32px;
    text-decoration: none;
  }
  .card-item__img-area {
    margin-bottom: 16px;
  }
  .card-item__h3title {
    margin-bottom: 16px;
    font-size: 20px;
    color: #005baa;
  }
  .card-item__text {
    margin-bottom: 20px;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  /* ===========================================
 5.（補助クラス）
 * ======================================== */
  /* ===========================================
 6.Page Specific（ページ専用）
 * ======================================== */
  /* トップページ */
  .main-visual {
    background: center/cover no-repeat;
    position: relative;
  }
  .main-visual:after {
    position: absolute;
    content: "";
    background: center/100% auto no-repeat;
    z-index: 2;
  }
  .main-visual__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1328px;
    margin: 0 calc(100vw * 0.154);
  }
  .main-visual__text-area {
    margin-top: calc(100vw * 0.107);
    color: #FFF;
  }
  .main-visual__h1title {
    margin-bottom: calc(100vw * 0.035);
    padding: 0;
    line-height: 1;
    overflow: hidden;
    font-size: calc(100vw * 0.052);
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__h2title {
    margin-bottom: 0px;
    font-size: calc(100vw * 0.018);
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__h3title {
    margin-bottom: calc(100vw * 0.036);
    font-size: calc(100vw * 0.023);
    font-weight: 500;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__text {
    margin-right: calc(100vw * 0.257);
    padding: calc(100vw * 0.020);  
    font-size: calc(100vw * 0.014);
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.2);
  }
  .main-visual {
    background-image: url(../sustainability/img/bg-top_PC.png);
    margin-top: -40px;
    width: 100%;
    height: calc((100vw * 0.52));
    /* min-height: 667px;
    background-position: top -47px right -10px; */
  }
  .main-visual__btn-area {
    position: absolute;
    /*    top: 40px; */
    right: 0;
    width: calc(100vw * 0.28);
    height: 100%;
    padding-top: 40px;
  }
  .main-visual__btn-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .main-visual__btn-item {
    width: 100%;
    height: 33%;
    background-color: rgba(0, 91, 172, 0.8);
    list-style-type: none;
  }
  .main-visual__btn-item:hover {
    background-color: rgba(3, 111, 204, 0.8);
  }
  .main-visual__btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    height: 100%;
    font-size: calc(100vw * 0.012);
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
  }
  .media__h2title--top {
    margin-bottom: 16px;
    font-size: 40px;
    color: #005baa;
  }
  .media__text--top {
    margin: 0 01.23em 1.23em;
    font-size: 16px;
    /*    font-weight: 700; */
    line-height: 2.14;
  }
  /* 体制・マテリアリティ特定プロセス */
  .key-visual--organization {
    background-image: url(../sustainability/img/bg-organization_PC.png);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* マテリアリティとSDGs */
  .key-visual--materiality {
    margin-bottom: 80px;
    background-image: url(../sustainability/img/bg-materiality_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1920 / 1000;
  }
  .content__area--materiality {
    position: relative;
    aspect-ratio: 1920 / 1000;
  }
  .content__text-area--materiality {
    padding: 10% 44% 0% 15%;
  }
  .content__h2title--materiality {
    margin-bottom: 3.75vw;
    font-size: 3.75vw;
    color: #FFFFFF;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .content__text--materiality {
    margin-right: 14.5vw;
    font-size: 1.25vw;
    color: #FFFFFF;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .indicator {
    position: absolute;
    top: 30%;
    right: 5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50px;
    height: 300px
  }
  .indicator__line {
    position: relative;
    width: 2px;
    background-color: #9f9f9f;
    height: 180px;
    opacity: .5
  }
  .indicator__dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #3f3f3f;
    border-radius: 50%
  }
  .indicator__text {
    position: absolute;
    top: 30%;
    right: 5%;
    writing-mode: vertical-lr;
    font-size: 16px;
  }
  /*    
.indicator__dot.dragging {
  pointer-events: none
}    
*/
  /* 人権の尊重 */
  .key-visual--respect-for-human-rights {
    background-image: url(../sustainability/img/bg-respect-for-human-rights_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* 専門性を活かした社会への貢献 */
  .key-visual--contribution-to-society {
    background-image: url(../sustainability/img/bg-contribution-to-society_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* DX（デジタルトランスフォーメーション）の推進 */
  .key-visual--promoting-digital-transformation {
    background-image: url(../sustainability/img/bg-promoting-digital-transformation_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* コンプライアンスとリスク管理の強化 */
  .key-visual--compliance-and-risk-management {
    background-image: url(../sustainability/img/bg-compliance-and-risk-management_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* 従業員の健康と安全の確保 */
  .key-visual--health-and-safety {
    background-image: url(../sustainability/img/bg-health-and-safety_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* サステナビリティの意識向上と環境貢献 */
  .key-visual--sustainability-awareness {
    background-image: url(../sustainability/img/bg-sustainability-awareness_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
  /* 活動報告・関連ニュース */
  .key-visual--report {
    background-image: url(../sustainability/img/bg-report_PC.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1280 / 263;
  }
}
@media only screen and (max-width: 768.98px) {
  /* ===========================================
スマホ版サイズ指定
基準：画面幅768pxの時、1em=26pxになる    
    ・フォントサイズはemで指定する
    ・余白はemまたはvwで指定する
    ・幅は%またはvwで指定する
    ・高さはaspect-ratioで指定する
 * ======================================== */
  /* ===========================================
 1.Base（共通・初期化）
 * ======================================== */
  main {
    font-size: 3.3vw;
  }
  .keyvisual__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70.3vw;
  }
  .keyvisual__h1title {
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
    font-size: 1.84em;
    color: #FFFFFF;
  }
  .keyvisual__text {
    margin: 0 4.1vw 4.16vw;
    font-weight: 700;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
    font-size: 1em;
    color: #FFFFFF;
  }
  .key-visual__list-area {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 0 4.16vw 0 0;
  }
  .key-visual__list {
    display: flex;
    list-style-type: none;
  }
  .key-visual__list-item {
    width: 40px;
    height: 40px;
    margin-right: 1.04vw;
  }
  /* ===========================================
 2.Content（単体構造）
 * ======================================== */
  .wrapper__inner {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3.07em;
  }
  .content {
    padding: 3.07em 0;
  }
  .content--backgroundcolor-glay {
    padding: 3.07em 0;
    background-color: #F5F8FC;
  }
  .content__inner {
    margin-bottom: 2.46em;
  }
  .content--after-backgroundcolor-glay {
    padding: 3.07em 0 0;
  }
  .content__h2title {
    font-size: 1.84em;
  }
  .content__h3title {
    margin: 0 0 1.23em;
    font-size: 1.38em;
    color: #005baa;
  }
  .content__text {
    font-weight: 700;
    margin: 0 0 1.23em;
    font-size: 1em;
    line-height: 2.14;
  }
  .content__image-area {
    text-align: center;
  }
  .definition-list {
    font-size: 1em;
    font-weight: 700;
    line-height: 2.14;
  }
  .unordered-list {
    font-weight: 700;
    font-size: 1em;
    line-height: 2.14;
  }
  .main-message {
    background: center/contain no-repeat;
    background-image: url(../img/job/sp/job_shape_03.webp);
    background-position: right bottom;
    aspect-ratio: 768 / 636;
  }
  .main-message__text-area {
    width: auto;
    margin: 0 auto;
  }
  .main-message__text {
    width: auto;
    font-weight: 700;
    margin: 0 26vw 0 10.4vw;
    font-size: 1.07em;
    line-height: 2.14;
  }
  /* ===========================================
 3.media（2カラム構造→スマホでは縦に並ぶ）
 * ======================================== */
  .media__img {
    margin-bottom: 2.46em;
  }
  .media-reverse__img {
    margin-bottom: 1.23em;
    margin-right: 0;
  }
  .media__h2title {
    margin: 0 1.23em 1.23em;
    font-size: 1.84em;
    line-height: 2.14;
    color: #005baa;
  }
  .media__text {
    font-weight: 700;
    margin: 0 01.23em 1.23em;
    font-size: 1em;
    line-height: 2.14;
  }
  .media__link {
    text-decoration: underline;
    color: #009fe7;
    display: inline;
  }
  .media__btn-area {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .media__btn-list {
    width: 100%;
    margin: 0 1.23em 0 1.23em;
    padding-left: 0;
    list-style-type: none;
  }
  .media__btn-item {
    width: 100%;
    height: 11.4vw;
    margin-bottom: 3.1vw;
    background-color: #005BAA;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.4);
  }
  .media__btn-item:hover {
    background-color: #036fcc;
  }
  .media__btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 1.38em;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
  }
  .media__btn-link--arrow {
    position: relative;
  }
  .media__btn-link--arrow::after {
    position: absolute;
    content: "";
    top: 55%;
    transform: translateY(-55%);
    right: -3.1vw;
    width: 1.6vw;
    height: 3.2vw;
    background: url(../img/common/header_icon_03.svg) center / 100% auto no-repeat;
  }
  /* ===========================================
 4.card（複数構造→スマホでは縦に並ぶ）
 * ======================================== */
  .card--vartical {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 1.23em;
  }
  .card--scroll {
    overflow-y: scroll;
  }
  .card--scroll::-webkit-scrollbar {
    display: none;
  }
  .card-item {
    width: 100%;
    padding: 0;
    background-color: #FFFFFF;
  }
  .card-item__link {
    display: block;
    margin: 0 0 4.92em;
    text-decoration: none;
  }
  .card-item__img-area {
    position: relative;
    margin-bottom: 16px;
  }
  .card-item__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 6em;
    height: 6.3em;
  }
  .card-item__h3title {
    margin-bottom: 16px;
    font-size: 1.84em;
    color: #005baa;
  }
  .card-item__text {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1em;
    line-height: 2.14;
  }
  /* ===========================================
 5.（補助クラス）
 * ======================================== */
  /* ===========================================
 6.Page Specific（ページ専用）
 * ======================================== */
  /* トップページ */
  .main-visual {
    margin-top: -11.4vw;
    max-width: 100vw;
  }
  .main-visual__text-area {
    background: center/contain no-repeat;
    background-image: url(../sustainability/img/bg-top_SP.png);
    padding-top: 35.8vw;
    color: #FFF;
    text-align: center;
    aspect-ratio: 768 / 1524;
  }
  .main-visual__h1title {
    margin-bottom: 18.1vw;
    padding: 0;
    line-height: 1;
    overflow: hidden;
    font-size: 3.07em;
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__h2title {
    margin-bottom: 0.2vw;
    font-size: 1.38em;
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__h3title {
    margin-bottom: 17.1vw;
    font-size: 1.38em;
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .main-visual__text {
    margin: 0 3.07em;
    text-align: left;
    font-size: 1.07em;
    font-weight: 700;
  }
  .main-visual__btn-inner {
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  .main-visual__btn-item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 33.3%;
    background-color: #005BAA;
  }
  .main-visual__btn-link {
    width: 100%;
    padding: 12.2vw 0;
    font-size: 0.76em;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.8;
  }
  .media-reverse__img-area--top {
    margin-bottom: 10.4vw;
  }
  .media__h2title--top {
    margin-bottom: 16px;
    font-size: 1.53em;
    color: #005baa;
  }
  .media__text--top {
    font-weight: 700;
    margin: 0;
    font-size: 1em;
    line-height: 2.14;
  }
  /* 体制・マテリアリティ特定プロセス */
  .key-visual--organization {
    background-image: url(../sustainability/img/bg-organization_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* マテリアリティとSDGs */
  .content__area--materiality {
    margin-top: -3.5em;
  }
  .content__h2title--materiality {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    aspect-ratio: 768 / 540;
    background-image: url(../sustainability/img/bg-materiality_SP.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 3.75vw;
    font-size: 1.84em;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.22);
  }
  .content__text--materiality {
    margin: 3.07em 1.23em;
    font-weight: 700;
    font-size: 1em;
    line-height: 2.14;
  }
  .indicator__text {
    display: none;
  }
  /* 人権の尊重 */
  .key-visual--respect-for-human-rights {
    background-image: url(../sustainability/img/bg-respect-for-human-rights_SP.png);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* 専門性を活かした社会への貢献 */
  .key-visual--contribution-to-society {
    background-image: url(../sustainability/img/bg-contribution-to-society_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* DX（デジタルトランスフォーメーション）の推進 */
  .key-visual--promoting-digital-transformation {
    background-image: url(../sustainability/img/bg-promoting-digital-transformation_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* コンプライアンスとリスク管理の強化 */
  .key-visual--compliance-and-risk-management {
    background-image: url(../sustainability/img/bg-compliance-and-risk-management_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* 従業員の健康と安全の確保 */
  .key-visual--health-and-safety {
    background-image: url(../sustainability/img/bg-health-and-safety_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* サステナビリティの意識向上と環境貢献 */
  .key-visual--sustainability-awareness {
    background-image: url(../sustainability/img/bg-sustainability-awareness_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
  /* 活動報告・関連ニュース */
  .key-visual--report {
    background-image: url(../sustainability/img/bg-report_SP.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 768 / 540;
  }
}