@charset "UTF-8";
/* ▼▼▼ サステナビリティ一覧 ▼▼▼ */
.item {
  border-top: 1px solid var(--Line-Primary);
  padding-top: 64px;
  position: relative;
}
.item::before {
  content: "";
  width: 60px;
  border-top: 2px solid var(--Brand-color-Primary);
  position: absolute;
  left: 0;
  top: -1.5px;
}
@media screen and (min-width: 768px), print {
  .item:not(:last-of-type) {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .item {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.item_title {
  font-size: var(--Heading-H2);
  font-weight: var(--font-weight-normal);
}

.lead {
  width: min(100%, 840px);
}

.sustainability_head {
  margin-bottom: 32px;
  font-size: var(--Heading-H2);
}
@media screen and (max-width: 767px) {
  .sustainability_head {
    margin-bottom: 16px;
  }
}
.sustainability_item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  padding-top: 64px;
}
.sustainability_item:not(:last-of-type) {
  border-bottom: 1px solid var(--Line-Primary);
  position: relative;
  padding-bottom: 64px;
}
.sustainability_item:not(:last-of-type)::before {
  content: "";
  width: 60px;
  border-bottom: 2px solid var(--Brand-color-Primary);
  position: absolute;
  left: 0;
  bottom: -1.5px;
}
@media screen and (max-width: 767px) {
  .sustainability_item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 48px;
  }
  .sustainability_item:not(:last-of-type) {
    padding-top: 48px;
  }
}
.sustainability_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  background: var(--Background-Primary);
  border-radius: 4px;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .sustainability_item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}
.sustainability_item_img {
  width: 216px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sustainability_item_img {
    width: 104px;
  }
}
.sustainability_item_txtbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sustainability_item_txtbox {
    position: relative;
    padding-right: 40px;
  }
}
.sustainability_item_txtbox::after {
  margin-left: auto;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .sustainability_item_txtbox::after {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.sustainability_item_title {
  font-size: var(--Heading-H2);
}
.sustainability_item_text {
  color: var(--Brand-color-Primary);
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 13px;
}

/* ▼▼▼ 環境方針 ▼▼▼ */
.environment_policy_item {
  display: grid;
  grid-template-columns: 1fr 840px;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .environment_policy_item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.environment_policy_item_list {
  counter-reset: my-counter;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px 0;
}
.environment_policy_item_list li {
  counter-increment: my-counter;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--Background-Primary);
  border-radius: 4px;
  min-height: 100px;
  padding: 24px 24px 24px 0;
}
@media screen and (max-width: 767px) {
  .environment_policy_item_list li {
    grid-template-columns: 54px 1fr;
    gap: 0 16px;
  }
}
.environment_policy_item_list li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: counter(my-counter);
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
  color: var(--Brand-color-Primary);
  font-size: 16px;
  width: 100%;
  height: 100%;
  text-align: center;
  border-right: 1px solid var(--Line-Primary);
}

/* ▼▼▼ CSR活動 ▼▼▼ */
.csr_lead {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .csr_lead {
    margin-bottom: 48px;
  }
}
.csr_item {
  display: grid;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  .csr_item {
    gap: 24px;
  }
}
.csr_item_box {
  background-color: var(--Background-Primary-Base);
  display: grid;
  gap: 24px;
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.csr_item_box > * {
  isolation: isolate;
  position: relative;
  z-index: 1;
}
.csr_item_box::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: color-burn;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 768px), print {
  .csr_item_box.bg04:before {
    mix-blend-mode: inherit;
  }
}
@media screen and (max-width: 767px) {
  .csr_item_box {
    padding: 24px;
  }
}
.csr_item_box .box_cat {
  margin-bottom: 32px;
  color: var(--Brand-color-Primary);
  font-size: var(--Heading-H4);
  font-weight: var(--font-weight-normal);
}
@media screen and (max-width: 767px) {
  .csr_item_box .box_cat {
    margin-bottom: 16px;
  }
}
.csr_item_box .box_title {
  margin-bottom: 16px;
  font-size: var(--Heading-H3);
  font-weight: var(--font-weight-normal);
  line-height: 1.4;
}
.csr_item_box .box_title.logo {
  display: grid;
  grid-template-columns: 140px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .csr_item_box .box_title.logo {
    grid-template-columns: 1fr;
  }
}
.csr_item_box .box_lead {
  font-size: var(--Heading-H4);
  font-weight: var(--font-weight-normal);
  margin-bottom: 8px;
}
.csr_item_box .img_warp {
  overflow: hidden;
}
.csr_item_box .img_warp .img_caption {
  font-size: var(--Label-Small);
  text-align: right;
  margin-top: 4px;
}
@media screen and (min-width: 768px), print {
  .csr_item_box.grid {
    gap: 48px !important;
  }
}
.csr .grid {
  display: grid;
  grid-template-columns: auto 41.9%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .csr .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.csr .grid.bg_white {
  grid-template-columns: auto 38.5%;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .csr .grid.bg_white {
    grid-template-columns: 1fr;
  }
}
.csr .grid.bg_white .box_text {
  margin-bottom: 16px;
}
.csr .bg_white {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--Background-Primary);
  padding: 24px;
  border-radius: 4px;
}
.csr .bg_white .box_title {
  color: var(--Brand-color-Primary);
  margin-bottom: 8px;
}
.csr .col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .csr .col2 {
    grid-template-columns: 1fr;
  }
}
.csr .col2 .grid {
  grid-template-columns: 39.5% auto;
}
@media screen and (max-width: 767px) {
  .csr .col2 .grid {
    grid-template-columns: 1fr;
  }
}
.csr .inner_box {
  background: rgba(255, 255, 255, 0.5);
  padding: 24px;
}
.csr .inner_box .box_cat {
  margin-bottom: 16px;
}
.csr .inner_box_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .csr .inner_box_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
}
.csr .inner_box_list p {
  font-size: 16px;
  margin-top: 8px;
  line-height: 1.4;
}
.csr .btn_head {
  font-family: var(--font-family-en);
  color: var(--Brand-color-Primary);
  font-size: var(--Heading-H4);
  margin-bottom: 16px;
}

.csr_item_box.bg01::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg01.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg01::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg01_sp.webp");
  }
}

.csr_item_box.bg02::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg02.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg02::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg02_sp.webp");
  }
}

.csr_item_box.bg03::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg03.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg03::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg03_sp.webp");
  }
}

.csr_item_box.bg04::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg04.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg04::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg04_sp.webp");
  }
}

.csr_item_box.bg05::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg05.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg05::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg05_sp.webp");
  }
}

.csr_item_box.bg06::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg06.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg06::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg06_sp.webp");
  }
}

.csr_item_box.bg07::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg07.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg07::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg07_sp.webp");
  }
}

.csr_item_box.bg08::before {
  background-image: url("../img/sustainability/csr/csr_item_box_bg08.webp");
}
@media screen and (max-width: 767px) {
  .csr_item_box.bg08::before {
    background-image: url("../img/sustainability/csr/csr_item_box_bg08_sp.webp");
  }
}

#csr_item01 .col2 {
  gap: 8px 32px;
}
@media screen and (max-width: 767px) {
  #csr_item01 .col2 .bg_white {
    padding: 16px;
  }
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: static;
}
.swiper-pagination .swiper-pagination-bullet {
  background: none;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #8F9197;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.swiper-pagination .swiper-pagination-bullet-active::before {
  background: var(--Brand-color-Primary);
}