@charset "UTF-8";
/* ▼▼▼ Common
======================================================*/
:root {
  --color-bg: #EAEDF2;
  --color-text: #001622;
  --color-blue: #2860E8;
  --color-border: #0D42C1;
  --gradient-fv1: linear-gradient(91.36deg, #2860E8 -3.22%, #0E2962 42.02%, #05684C 83.22%, #002B15 100.03%);
  --gradient-fv2: linear-gradient(91.36deg, #2860E8 -3.22%, #0E2962 37.23%, #05684C 84.35%, #002B15 100.03%);
  --gradient-fv3: linear-gradient(90.92deg, #2860E8 -1.17%, #0E2962 42.26%, #05684C 81.8%, #002B15 97.94%);
  --gradient-text: linear-gradient(270.01deg, #002B15 75.49%, #024930 79.43%, #0E8C68 85.08%, #0E2962 89.66%, #2860E8 100.78%);
  --gradient-line: linear-gradient(91.17deg, #2860E8 2.19%, #0E2962 38.39%, #0E8C68 63.06%, #024930 80.83%, #002B15 94.6%);
  --gradient-nav: linear-gradient(269.96deg, #002B15 55.74%, #024930 62.76%, #0E8C68 72.82%, #0E2962 80.99%, #2860E8 100.8%);
  --gradient-blue: linear-gradient(90deg, #2860E8 0%, #14347D 100%);
  --font-main: "IBM Plex Sans JP", sans-serif;
  --font-sub: 'Figtree', sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

#main {
  padding-top: 72px;
}
@media screen and (max-width: 767px) {
  #main {
    padding-top: 60px;
  }
}

#roadmap,
#strategy,
#purpose,
#guidance,
#stakeholder,
#seminar {
  scroll-margin-top: 72px;
}

@media screen and (max-width: 767px) {
  #roadmap,
  #strategy,
  #purpose,
  #stakeholder,
  #guidance,
  #seminar {
    scroll-margin-top: 60px;
  }
}
.js-toggle-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.js-toggle.is-open > .js-toggle-content,
.js-toggle.is-open .js-toggle-content {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.p-report-archive__toggle img,
.c-report-block__toggle img,
.c-seminar-block__toggle img,
.c-guidance-block__toggle img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 2px 6px 0px rgba(71, 84, 85, 0.1490196078);
          box-shadow: 0px 2px 6px 0px rgba(71, 84, 85, 0.1490196078);
}
@media screen and (max-width: 767px) {
  .c-header.is-open {
    background: var(--color-bg);
  }
}
.c-header .l-container-full {
  padding-inline: 80px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .c-header .l-container-full {
    padding-inline: 20px;
  }
}
.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .c-header__inner {
    min-height: 60px;
  }
}
.c-header__logo img {
  width: clamp(215px, 14vw, 295px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-header__logo img {
    width: 215px;
  }
}
.c-header__nav {
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .c-header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 28px 40px 40px;
    background: var(--color-bg);
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
}
@media screen and (max-width: 360px) {
  .c-header__nav {
    padding-inline: 34px;
  }
}
@media screen and (max-width: 767px) {
  .c-header.is-open .c-header__nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 58px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .c-header__list {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__list {
    display: block;
  }
}
.c-header__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-header__item a {
  display: block;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text);
}
@media screen and (max-width: 1280px) {
  .c-header__item a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__item a {
    position: relative;
    display: block;
    padding: 20px 20px 20px 0;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    color: var(--color-text);
  }
}
.c-header__item.is-current a {
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .c-header__item {
    border-bottom: 1px solid var(--color-blue);
  }
  .c-header__item + .c-header__item {
    margin-top: 12px;
  }
  .c-header__item.is-current .c-header__item-main {
    color: var(--color-text);
  }
  .c-header__item.is-current .c-header__item-sub {
    background: var(--gradient-nav);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .c-header__item a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background: url("../img/jema_gx/ico-arrow-blue.svg") no-repeat center center/20px 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.c-header__item-sub {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__item-sub {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    font-weight: 700;
    background: var(--gradient-nav);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}
.c-header__item-main {
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .c-header__item-main {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .c-header__item-main {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    white-space: normal;
  }
}
.c-header__menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-header__menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    color: var(--color-blue);
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: relative;
    z-index: 1001;
  }
}
.c-header__menu-icon {
  position: relative;
  display: block;
  width: 31px;
  height: 22px;
}
.c-header__menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-blue);
  -webkit-transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
}
.c-header__menu-icon span:first-child {
  top: 10px;
  -webkit-transform: none;
          transform: none;
}
.c-header__menu-icon span:last-child {
  bottom: 2px;
  -webkit-transform: none;
          transform: none;
}
.c-header__menu-label {
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-header.is-open .c-header__menu-icon span:first-child {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(24.27deg);
            transform: translateY(-50%) rotate(24.27deg);
  }
  .c-header.is-open .c-header__menu-icon span:last-child {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-24.27deg);
            transform: translateY(-50%) rotate(-24.27deg);
  }
  .c-header.is-open .c-header__menu-label {
    font-size: 0;
  }
  .c-header.is-open .c-header__menu-label::after {
    content: "Close";
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
}

.c-fv {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-fv {
    margin-bottom: 20px;
  }
}
.c-fv__inner {
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .c-fv__inner {
    place-content: unset;
  }
}
.c-fv__body {
  width: 530px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-fv__body {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    -webkit-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important;
  }
}
.c-fv__heading-img {
  margin-bottom: 24px;
}
.c-fv__heading-img img {
  display: block;
  width: min(100%, clamp(270px, 54vw, 495px));
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-fv__heading-img {
    margin-bottom: 27px;
  }
}
.c-fv__title {
  position: relative;
}
.c-fv__title::before {
  content: "";
  position: absolute;
  background: var(--gradient-fv3);
  width: 116px;
  height: 7px;
  top: 0;
  left: 0;
}
.c-fv__title-text {
  padding-top: 35px;
  font-size: clamp(25px, 4.5vw, 34px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-fv__title::before {
    width: 87px;
    height: 5px;
  }
  .c-fv__title-text {
    padding-top: 27px;
  }
}
.c-fv--cn {
  background-image: url("../img/jema_gx/cn/fv_bg_pc.webp");
}
@media screen and (max-width: 767px) {
  .c-fv--cn {
    padding-top: 315px;
    background-image: url("../img/jema_gx/cn/fv_bg_sp.webp");
  }
}
.c-fv--cn .c-fv__inner {
  min-height: 620px;
}
@media screen and (max-width: 767px) {
  .c-fv--cn .c-fv__inner {
    min-height: auto;
    padding: 68px 20px 39px;
  }
}
.c-fv--cn .c-fv__body {
  -webkit-transform: translate(-19vw, 0);
          transform: translate(-19vw, 0);
}
.c-fv--cn .c-fv__heading-img {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-fv--cn .c-fv__heading-img {
    margin-bottom: 27px;
  }
  .c-fv--cn .c-fv__heading-img img {
    max-width: 295px;
  }
}
.c-fv--cn .c-fv__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  color: var(--color-text);
}
.c-fv--cn .c-fv__text + .c-fv__text {
  margin-top: 18px;
}
.c-fv--cn .c-fv__catch {
  margin: 16px 0;
}
.c-fv--cn .c-fv__catch p span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  padding: 4px 8px 2px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2%;
  color: #fff;
  background: var(--gradient-fv1);
  -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
}
.c-fv--cn .c-fv__catch p + p span {
  margin-top: 6px;
  background: var(--gradient-fv2);
}
@media screen and (max-width: 767px) {
  .c-fv--cn .c-fv__catch p span {
    padding-inline: 4px;
    font-size: 17px;
  }
}
@media screen and (max-width: 360px) {
  .c-fv--cn .c-fv__catch p span {
    font-size: 16px;
  }
}
.c-fv--report {
  background-image: url("../img/jema_gx/report/fv_bg_pc.webp");
}
@media screen and (max-width: 767px) {
  .c-fv--report {
    background-image: url("../img/jema_gx/report/fv_bg_sp.webp");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    aspect-ratio: 750/806;
    width: 100%;
    height: 100%;
  }
}
.c-fv--report .c-fv__inner {
  min-height: 463px;
}
@media screen and (max-width: 767px) {
  .c-fv--report .c-fv__inner {
    padding: 45px 20px;
  }
}
.c-fv--report .c-fv__body {
  -webkit-transform: translate(-18vw, 0);
          transform: translate(-18vw, 0);
}
.c-fv--sustainability {
  background-image: url("../img/jema_gx/sustainability/fv_bg_pc.webp");
}
@media screen and (max-width: 767px) {
  .c-fv--sustainability {
    background-image: url("../img/jema_gx/sustainability/fv_bg_sp.webp");
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    aspect-ratio: 750/806;
    width: 100%;
    height: 100%;
  }
}
.c-fv--sustainability .c-fv__inner {
  min-height: 463px;
}
@media screen and (max-width: 767px) {
  .c-fv--sustainability .c-fv__inner {
    padding: 45px 20px;
  }
}
.c-fv--sustainability .c-fv__body {
  -webkit-transform: translate(-18vw, 0);
          transform: translate(-18vw, 0);
}

.c-contents {
  margin-block: 42px;
}
@media screen and (max-width: 767px) {
  .c-contents {
    margin-block: 20px;
  }
}
.c-contents__inner {
  position: relative;
  padding: 28px 40px;
  border-radius: 10px;
  background: var(--color-bg);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-contents__inner {
    padding: 24px 18px;
  }
}
.c-contents__title {
  position: absolute;
  top: 22px;
  left: 40px;
  z-index: 0;
  font-family: var(--font-sub);
  font-size: 74px;
  font-weight: 700;
  line-height: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#2860e8), to(rgba(40, 96, 232, 0)));
  background: linear-gradient(180deg, #2860e8 0%, rgba(40, 96, 232, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.42;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-contents__title {
    top: 24px;
    left: 18px;
    font-size: 60px;
  }
}
.c-contents__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .c-contents__list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 50px;
  }
}
.c-contents__item {
  min-height: 170px;
  padding: 24px 24px 5px;
  border-radius: 6px;
  background: #fff;
}
.c-contents__item.is-current {
  background: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .c-contents__item {
    padding: 28px 18px 5px;
  }
}
.c-contents__main {
  display: block;
}
.c-contents__main-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  height: 65px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .c-contents__main-head {
    height: 40px;
  }
}
.c-contents__main-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .c-contents__main-title {
    font-size: 18px;
    line-height: 1.5;
  }
}
.c-contents__main-arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
  margin-top: 2px;
}
.c-contents__main-arrow img {
  display: block;
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .c-contents__main-arrow {
    width: 20px;
    height: 20px;
  }
  .c-contents__main-arrow img {
    width: 20px;
    height: 20px;
  }
}
.c-contents__sub-list {
  margin-top: 4px;
}
.c-contents__sub-item:last-child {
  border-top: 1px dashed #BFC6E3;
}
.c-contents__sub-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  padding-block: 18px;
}
@media screen and (max-width: 767px) {
  .c-contents__sub-link {
    padding-block: 14px;
  }
}
.c-contents__sub-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}
.c-contents__sub-arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.c-contents__sub-arrow img {
  display: block;
  width: 18px;
  height: 18px;
}
.c-contents__item.is-current .c-contents__main-head {
  border-bottom: 3px solid var(--color-border);
}
.c-contents__item.is-current .c-contents__main-title,
.c-contents__item.is-current .c-contents__sub-text {
  color: #fff;
}
.c-contents__item.is-current .c-contents__sub-arrow img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-footer {
  padding: 52px 20px 40px;
  background: #fff;
}
.c-footer__inner {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.c-footer__logo {
  margin-bottom: 18px;
}
.c-footer__logo a,
.c-footer__logo img {
  display: inline-block;
  vertical-align: middle;
}
.c-footer__logo img {
  width: 384px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-footer__logo img {
    width: 303px;
  }
}
.c-footer__copyright {
  font-family: var(--font-sub);
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-footer__copyright {
    font-size: 12px;
  }
}

.c-pagetop {
  position: fixed;
  right: 42px;
  bottom: 120px;
  z-index: 900;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--color-blue);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    right: 12px;
    bottom: 140px;
    width: 43px;
    height: 43px;
    border: 1px solid #fff;
  }
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-pagetop__arrow {
  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;
  width: 19px;
  height: 21px;
  margin-bottom: 8px;
}
.c-pagetop__arrow img {
  display: block;
  width: 19px;
  height: 21px;
}
@media screen and (max-width: 767px) {
  .c-pagetop__arrow {
    width: 10px;
    height: auto;
    margin-bottom: 4px;
  }
  .c-pagetop__arrow img {
    width: 10px;
    height: auto;
  }
}
.c-pagetop__text {
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-pagetop__text {
    font-size: 10px;
  }
}

.c-section-heading {
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    margin-bottom: 32px;
  }
}
.c-section-heading__sub {
  margin-bottom: 6px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 700;
  line-height: 2.769;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .c-section-heading__sub {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 3;
  }
}
.c-section-heading__title {
  position: relative;
  padding-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
.c-section-heading__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 628px;
  height: 8px;
  background: var(--gradient-line);
}
@media screen and (max-width: 767px) {
  .c-section-heading__title {
    padding-bottom: 14px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }
  .c-section-heading__title::after {
    max-width: 100%;
  }
}

.c-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 88px;
}
.c-media__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  max-width: 640px;
}
.c-media__text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86;
}
.c-media__text p + p {
  margin-top: 20px;
}
.c-media__image {
  max-width: 594px;
}
.c-media__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-media__inner {
    display: block;
    margin-bottom: 28px;
  }
  .c-media__body {
    max-width: 100%;
  }
  .c-media__text {
    margin-top: 0;
  }
  .c-media__text p {
    font-size: 14px;
    line-height: 1.86;
  }
  .c-media__image {
    max-width: 100%;
    margin-top: 24px;
  }
}

.c-dot-heading {
  position: relative;
  margin-bottom: 28px;
  padding-left: 24px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-blue);
}
.c-dot-heading::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 4px solid #74AEFF;
  border-radius: 50%;
  background: var(--color-blue);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-dot-heading {
    padding-left: 20px;
    font-size: 24px;
  }
  .c-dot-heading::before {
    width: 7px;
    height: 7px;
  }
}

.c-link-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17.5px 40px;
  border: 2px solid var(--color-blue);
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .c-link-button {
    padding: 21px 16px;
  }
}
.c-link-button__text {
  color: var(--color-blue);
}
.c-link-button--pdf {
  max-width: 578px;
  min-height: 80px;
}
.c-link-button--pdf .c-link-button__icon {
  padding-right: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-link-button--pdf .c-link-button__icon img {
  display: block;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 767px) {
  .c-link-button--pdf .c-link-button__icon img {
    width: 37px;
    height: 37px;
  }
}
.c-link-button__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.c-link-button__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.c-link-button__label img {
  width: 40px;
  height: auto;
}

.c-resource-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 94px;
  padding: 22px 27px 21px 24px;
  border-radius: 6px;
  background: var(--gradient-blue);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-resource-card {
    gap: 10px;
    min-height: 78px;
    padding: 18px 16px 14px;
  }
}
.c-resource-card__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.c-resource-card__icon {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}
.c-resource-card__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-resource-card__icon {
    -ms-flex-preferred-size: 37px;
        flex-basis: 37px;
    width: 37px;
    height: 37px;
  }
}
.c-resource-card__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.c-resource-card__label {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 8px;
}
.c-resource-card__label img {
  display: block;
  width: 40px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-resource-card__title {
    font-size: 15px;
    line-height: 1.5;
  }
  .c-resource-card__label img {
    width: 36px;
  }
}

/* ▼▼▼ Carbon Neutral
======================================================*/
#carbon-neutral .p-cn-intro {
  padding-block: 42px 32px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-intro {
    padding-block: 42px 24px;
  }
}
#carbon-neutral .p-cn-intro__roadmap {
  padding-top: 26px;
}
#carbon-neutral .p-cn-intro__roadmap-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86;
}
#carbon-neutral .p-cn-intro__button {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-intro__button {
    margin-top: 24px;
  }
}
#carbon-neutral .p-cn-reference {
  padding-bottom: 68px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-reference {
    padding-bottom: 40px;
  }
}
#carbon-neutral .p-cn-reference__inner {
  padding: 51px 47px 43px;
  border-radius: 10px;
  background: url("../img/jema_gx/bg_reference_pc.webp") no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-reference__inner {
    padding: 34px 15.5px 20px;
    background-image: url("../img/jema_gx/bg_reference_sp.webp");
  }
}
#carbon-neutral .p-cn-reference__title {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-reference__title {
    margin-bottom: 22px;
    font-size: 21px;
  }
}
#carbon-neutral .p-cn-reference__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 16px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-reference__list {
    grid-template-columns: 1fr;
    gap: 12px 16px;
  }
}
#carbon-neutral .p-cn-strategy {
  position: relative;
  padding-block: 68px;
  overflow: hidden;
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy {
    padding-block: 54px 40px;
  }
}
#carbon-neutral .p-cn-strategy::after {
  content: "";
  position: absolute;
  top: -450px;
  right: -250px;
  width: 980px;
  height: 980px;
  background: url("../img/jema_gx/bg_deco_green.webp") no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy::after {
    top: -93px;
    right: -165px;
    width: 470px;
    height: 330px;
    background-size: 100% 100%;
  }
}
#carbon-neutral .p-cn-strategy__text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
#carbon-neutral .p-cn-strategy__button {
  margin-block: 32px 36px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__button {
    margin-block: 24px;
  }
}
#carbon-neutral .p-cn-strategy__button .c-link-button {
  background-color: #fff;
  border-radius: 6px;
}
#carbon-neutral .p-cn-strategy__button .c-link-button__text {
  font-size: 17px;
  text-align: center;
}
#carbon-neutral .p-cn-strategy__button .c-link-button__text small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__button .c-link-button__text {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
  }
  #carbon-neutral .p-cn-strategy__button .c-link-button__text small {
    font-size: 11px;
  }
}
#carbon-neutral .p-cn-strategy__button--wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
#carbon-neutral .p-cn-strategy__button--wrap .p-cn-strategy__button a {
  min-height: 115px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__button--wrap {
    grid-template-columns: 1fr;
    margin-block: 24px;
  }
  #carbon-neutral .p-cn-strategy__button--wrap .p-cn-strategy__button {
    margin-block: 0;
  }
  #carbon-neutral .p-cn-strategy__button--wrap .p-cn-strategy__button a {
    min-height: auto;
    padding: 20px 16px 16px;
  }
}
#carbon-neutral .p-cn-strategy__figure img {
  display: block;
  width: 100%;
  height: auto;
}
#carbon-neutral .p-cn-strategy__figure--primary {
  margin-top: 0;
}
#carbon-neutral .p-cn-strategy__figure--secondary {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__figure--secondary {
    margin-top: 20px;
  }
}
#carbon-neutral .p-cn-strategy__linkbtn {
  text-align: center;
  max-width: 388px;
  margin: 68px auto 0;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__linkbtn {
    margin-top: 40px;
  }
}
#carbon-neutral .p-cn-strategy__linkbtn .c-link-button {
  padding-block: 30px 26px;
  padding-inline: 40px 28px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #carbon-neutral .p-cn-strategy__linkbtn .c-link-button {
    padding: 17px 16px 13px;
  }
  #carbon-neutral .p-cn-strategy__linkbtn .c-link-button__text {
    font-size: 15px;
  }
}

/* ▼▼▼ JEMA-GX report
======================================================*/
#gx-report .c-report-block {
  border-radius: 10px;
  background: var(--gradient-blue);
  overflow: hidden;
}
#gx-report .c-report-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 32px 64px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-block__head {
    padding: 22px 18px;
  }
}
#gx-report .c-report-block__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-block__title {
    font-size: 15px;
  }
}
#gx-report .c-report-block__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 46px;
  height: 46px;
}
#gx-report .c-report-block__icon img {
  display: block;
  width: 46px;
  height: 46px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-block__icon {
    width: 20px;
    height: 20px;
  }
  #gx-report .c-report-block__icon img {
    width: 20px;
    height: 20px;
  }
}
#gx-report .c-report-block__body {
  padding-inline: 64px;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-block__body {
    padding-inline: 18px;
  }
}
#gx-report .c-report-block.is-open .c-report-block__icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#gx-report .p-report-intro {
  padding-top: 42px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-intro {
    padding-top: 40px;
  }
  #gx-report .p-report-intro .c-media__inner {
    margin-bottom: 40px;
  }
}
#gx-report .p-report-purpose {
  position: relative;
  padding-block: 68px;
  overflow: hidden;
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-purpose {
    padding-block: 54px 40px;
  }
}
#gx-report .p-report-purpose::after {
  content: "";
  position: absolute;
  top: -420px;
  right: -250px;
  width: 1090px;
  height: 1090px;
  background: url("../img/jema_gx/bg_deco_green.webp") no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-purpose::after {
    top: -99px;
    right: -95px;
    width: 370px;
    height: 370px;
    background-size: 100% 100%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
#gx-report .p-report-purpose__figure {
  position: relative;
  z-index: 10;
  margin-bottom: 28px;
}
#gx-report .p-report-purpose__figure img {
  display: block;
  width: 100%;
  height: auto;
}
#gx-report .p-report-reference {
  padding-bottom: 28px;
}
#gx-report .p-report-reference__inner {
  padding: 51px 47px 43px;
  border-radius: 10px;
  background: url("../img/jema_gx/bg_reference_pc.webp") no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-reference__inner {
    padding: 34px 15.5px 20px;
    background-image: url("../img/jema_gx/bg_reference_sp.webp");
    background-position: center top;
  }
}
#gx-report .p-report-reference__title {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-text);
}
#gx-report .p-report-reference__title .updated {
  line-height: 1;
  padding-left: 14px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-reference__title {
    margin-bottom: 22px;
    font-size: 24px;
  }
  #gx-report .p-report-reference__title .updated {
    display: block;
    padding-left: 0;
    padding-top: 20px;
    font-size: 14px;
    font-weight: 500;
  }
}
#gx-report .p-report-reference__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 16px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-reference__list {
    grid-template-columns: 1fr;
    gap: 12px 16px;
  }
}
#gx-report .p-report-reference__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#gx-report .p-report-reference .c-resource-card {
  min-height: 57px;
  padding: 20px 24px;
}
#gx-report .p-report-archive {
  position: relative;
  padding: 40px;
  border-radius: 8px;
  background: #DEEBF7;
  border: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive {
    padding: 26px 18px;
  }
  #gx-report .p-report-archive::after {
    content: "";
    position: absolute;
    bottom: -54px;
    left: 50%;
    display: block;
    width: 100%;
    height: 3px;
    background: #BFC6E3;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#gx-report .p-report-archive__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 18px;
  padding-inline: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
#gx-report .p-report-archive__title::before, #gx-report .p-report-archive__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--color-text);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#gx-report .p-report-archive__title::before {
  left: 0;
}
#gx-report .p-report-archive__title::after {
  right: 0;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive__title {
    font-size: 21px;
    font-weight: 600;
  }
}
#gx-report .p-report-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
#gx-report .p-report-archive__item {
  padding: 24px;
  border-radius: 6px;
  background: #fff;
}
#gx-report .p-report-archive__item.is-open .p-report-archive__toggle img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive__item {
    padding: 18px 14px;
  }
}
#gx-report .p-report-archive__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
#gx-report .p-report-archive__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
  }
}
#gx-report .p-report-archive__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
#gx-report .p-report-archive__year {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-archive__year {
    font-size: 17px;
  }
}
#gx-report .p-report-archive__toggle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
}
#gx-report .p-report-archive__toggle img {
  display: block;
  width: 26px;
  height: 26px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#gx-report .p-report-archive__links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
#gx-report .c-link-button--archive {
  min-height: 46px;
  padding: 23px 24px;
  border-radius: 4px;
  background: var(--gradient-blue);
}
#gx-report .c-link-button--archive .c-link-button__text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #gx-report .c-link-button--archive {
    padding: 22px 16px;
  }
  #gx-report .c-link-button--archive .c-link-button__text {
    font-size: 15px;
  }
  #gx-report .c-link-button--archive .c-link-button__label img {
    width: 37px;
  }
}
#gx-report .p-report-video {
  position: relative;
  margin-top: 100px;
}
#gx-report .p-report-video__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 14px;
  }
}
#gx-report .p-report-video-card__head {
  position: relative;
  height: 120px;
  margin-bottom: 28px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video-card__head {
    height: auto;
    min-height: 120px;
  }
}
#gx-report .p-report-video-card__head::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-blue)), color-stop(50%, var(--color-blue)), color-stop(50%, #74AEFF), to(#74AEFF));
  background: linear-gradient(to bottom, var(--color-blue) 0%, var(--color-blue) 50%, #74AEFF 50%, #74AEFF 100%);
}
#gx-report .p-report-video-card__label {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video-card__label {
    font-size: 21px;
  }
}
#gx-report .p-report-video-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video-card__title {
    font-size: 21px;
  }
}
#gx-report .p-report-video-card__date {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video-card__date {
    font-size: 13px;
  }
}
#gx-report .p-report-video-card__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/9;
}
#gx-report .p-report-video-card__thumb iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
#gx-report .p-report-video-card__text {
  margin-block: 28px;
}
#gx-report .p-report-video-card__text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-video-card__text {
    margin-block: 24px;
  }
}
#gx-report .c-report-toggle {
  margin-top: 12px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
#gx-report .c-report-toggle__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-toggle__button {
    padding: 20px 24px 19px;
  }
}
#gx-report .c-report-toggle__label {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-toggle__label {
    font-size: 15px;
  }
}
#gx-report .c-report-toggle__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 26px;
  height: 26px;
}
#gx-report .c-report-toggle__icon img {
  display: block;
  width: 26px;
  height: 26px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-toggle__icon {
    width: 20px;
    height: 20px;
  }
  #gx-report .c-report-toggle__icon img {
    width: 20px;
    height: 20px;
  }
}
#gx-report .c-report-toggle.is-open .c-report-toggle__icon img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#gx-report .c-report-credit {
  margin: 0 14px 14px;
  padding: 20px;
  border-radius: 6px;
  background: #DEEBF7;
}
#gx-report .c-report-credit p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #gx-report .c-report-credit {
    padding: 18px 16px;
  }
  #gx-report .c-report-credit p {
    margin-bottom: 16px;
    font-size: 13px;
  }
  #gx-report .c-report-credit p:not(:first-of-type) {
    padding-left: 1em;
  }
  #gx-report .c-report-credit p:not(:first-of-type)::before {
    content: "・";
    width: 13px;
    height: 13px;
    margin-left: -1em;
    text-indent: 1em;
  }
  #gx-report .c-report-credit p:last-child {
    margin-bottom: 0;
  }
}
#gx-report .p-report-stakeholder {
  padding-top: 55px;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder {
    position: relative;
    margin-top: 54px;
    padding-top: 54px;
  }
  #gx-report .p-report-stakeholder::before {
    content: "";
    width: 100%;
    height: 3px;
    background: #BFC6E3;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#gx-report .p-report-stakeholder__lead {
  margin-bottom: 32px;
}
#gx-report .p-report-stakeholder__lead p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
#gx-report .p-report-stakeholder__list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__list {
    gap: 24px;
  }
}
#gx-report .p-report-stakeholder__cards {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__cards {
    gap: 12px;
    margin-bottom: 22px;
  }
}
#gx-report .p-report-stakeholder__card {
  padding: 20px 28px;
  border-radius: 6px;
  background: var(--color-bg);
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__card {
    padding: 20px 16px 16px;
  }
}
#gx-report .p-report-stakeholder__meta {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
}
#gx-report .p-report-stakeholder__meta span {
  padding-right: 14px;
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__meta span {
    display: block;
  }
}
#gx-report .p-report-stakeholder__desc {
  font-size: 15px;
  line-height: 1.867;
  color: var(--color-text);
}
#gx-report .p-report-stakeholder__desc a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  text-decoration: underline;
}
#gx-report .p-report-stakeholder__desc a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__desc a.is-external-link {
    position: relative;
    display: block;
    padding-right: 30px;
  }
}
#gx-report .p-report-stakeholder__ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#gx-report .p-report-stakeholder__ico img {
  width: 20px;
  height: auto;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__ico {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 0;
    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;
  }
}
#gx-report .p-report-stakeholder__linkbtn {
  text-align: center;
  max-width: 388px;
  margin: 68px auto 0;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__linkbtn {
    margin-top: 40px;
  }
}
#gx-report .p-report-stakeholder__linkbtn .c-link-button {
  padding-block: 30px 26px;
  padding-inline: 40px 28px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #gx-report .p-report-stakeholder__linkbtn .c-link-button {
    padding: 17px 16px 13px;
  }
  #gx-report .p-report-stakeholder__linkbtn .c-link-button__text {
    font-size: 15px;
  }
}

/* ▼▼▼ Sustainability
======================================================*/
#sustainability .p-sustainability-intro {
  padding-top: 42px;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-intro {
    padding-top: 40px;
  }
  #sustainability .p-sustainability-intro .c-media__inner {
    margin-bottom: 40px;
  }
}
#sustainability .p-sustainability-guidance {
  position: relative;
  padding-block: 68px;
  overflow: hidden;
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance {
    padding-block: 54px 40px;
  }
}
#sustainability .p-sustainability-guidance .l-container-wide {
  position: relative;
  z-index: 1;
}
#sustainability .p-sustainability-guidance::after {
  content: "";
  position: absolute;
  top: -530px;
  right: -400px;
  width: 1090px;
  height: 1090px;
  background: url("../img/jema_gx/bg_deco_green.webp") no-repeat center/contain;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg);
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance::after {
    top: -148px;
    right: -95px;
    width: 370px;
    height: 370px;
    background-size: 100% 100%;
    opacity: 0.2;
  }
}
#sustainability .p-sustainability-guidance__lead {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance__lead {
    margin-bottom: 24px;
  }
}
#sustainability .p-sustainability-guidance__lead p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
#sustainability .p-sustainability-guidance__button {
  margin-top: 32px;
}
#sustainability .p-sustainability-guidance__button a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#sustainability .p-sustainability-guidance__button .c-link-button__text {
  font-size: 17px;
  text-align: center;
}
#sustainability .p-sustainability-guidance__button small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance__button {
    margin-top: 22px;
  }
}
#sustainability .p-sustainability-guidance__button a {
  background-color: #fff;
}
#sustainability .p-sustainability-guidance__button .c-link-button__text {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}
#sustainability .p-sustainability-guidance__button small {
  font-size: 11px;
}
#sustainability .p-sustainability-guidance__linkbtn {
  text-align: center;
  max-width: 388px;
  margin: 68px auto 0;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance__linkbtn {
    margin-top: 40px;
  }
}
#sustainability .p-sustainability-guidance__linkbtn .c-link-button {
  padding-block: 30px 26px;
  padding-inline: 40px 28px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-guidance__linkbtn .c-link-button {
    padding: 17px 16px 13px;
  }
  #sustainability .p-sustainability-guidance__linkbtn .c-link-button__text {
    font-size: 15px;
  }
}
#sustainability .p-sustainability-seminar {
  padding-top: 55px;
  margin-top: 55px;
  background: var(--color-bg);
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-seminar {
    position: relative;
    margin-top: 54px;
    padding-top: 54px;
  }
  #sustainability .p-sustainability-seminar::before {
    content: "";
    width: 100%;
    height: 3px;
    background: #BFC6E3;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#sustainability .p-sustainability-seminar__lead {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-seminar__lead {
    margin-bottom: 24px;
  }
}
#sustainability .p-sustainability-seminar__lead p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
#sustainability .p-sustainability-seminar__list {
  display: grid;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-seminar__list {
    gap: 24px;
  }
}
#sustainability .p-sustainability-seminar__linkbtn {
  max-width: 388px;
  margin: 68px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-seminar__linkbtn {
    margin-top: 40px;
  }
}
#sustainability .p-sustainability-seminar__linkbtn .c-link-button {
  padding-block: 30px 26px;
  padding-inline: 40px 28px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #sustainability .p-sustainability-seminar__linkbtn .c-link-button {
    padding: 17px 16px 13px;
  }
  #sustainability .p-sustainability-seminar__linkbtn .c-link-button .c-link-button__text {
    font-size: 15px;
  }
}
#sustainability .c-sustainability-block {
  border-radius: 8px;
  background: var(--gradient-blue);
  overflow: hidden;
}
#sustainability .c-sustainability-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 32px 64px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__head {
    padding: 22px 16px;
  }
}
#sustainability .c-sustainability-block__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__summary {
    gap: 10px;
  }
}
#sustainability .c-sustainability-block__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 252px;
          flex: 0 0 252px;
  width: 252px;
}
#sustainability .c-sustainability-block__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 96px;
            flex: 0 0 96px;
    width: 96px;
  }
}
#sustainability .c-sustainability-block__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
#sustainability .c-sustainability-block__title {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__title {
    font-size: 15px;
    font-weight: 500;
  }
}
#sustainability .c-sustainability-block__date {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__date {
    margin-top: 2px;
    font-size: 13px;
  }
}
#sustainability .c-sustainability-block__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 48px;
  height: 48px;
}
#sustainability .c-sustainability-block__icon img {
  display: block;
  width: 48px;
  height: 48px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__icon {
    width: 20px;
    height: 20px;
  }
  #sustainability .c-sustainability-block__icon img {
    width: 20px;
    height: 20px;
  }
}
#sustainability .c-sustainability-block__body {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0 64px;
  -webkit-transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__body {
    padding: 0 16px;
  }
}
#sustainability .c-sustainability-block__body-inner {
  padding: 48px;
  border-radius: 6px;
  background: #eef2f6;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__body-inner {
    padding: 22px 16px;
  }
}
#sustainability .c-sustainability-block__body-title {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-blue);
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__body-title {
    font-size: 18px;
  }
}
#sustainability .c-sustainability-block__body-text p {
  font-size: 15px;
  line-height: 1.867;
}
#sustainability .c-sustainability-block__movie {
  margin-block: 32px;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block__movie {
    margin-block: 24px;
  }
}
#sustainability .c-sustainability-block__movie {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/9;
}
#sustainability .c-sustainability-block__movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
#sustainability .c-sustainability-block__lecture {
  margin-top: 24px;
}
#sustainability .c-sustainability-block__lecture-head {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 600;
}
#sustainability .c-sustainability-block__lecture-item {
  margin-top: 16px;
}
#sustainability .c-sustainability-block__lecture-title {
  font-size: 15px;
  font-weight: 700;
}
#sustainability .c-sustainability-block__lecture-speaker {
  font-size: 15px;
  line-height: 1.867;
}
#sustainability .c-sustainability-block.is-open .c-sustainability-block__icon img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#sustainability .c-sustainability-block.is-open .c-sustainability-block__body {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
  padding: 0 64px 32px;
}
@media screen and (max-width: 767px) {
  #sustainability .c-sustainability-block.is-open .c-sustainability-block__body {
    padding: 0 18px 22px;
  }
}
#sustainability .c-program {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  #sustainability .c-program {
    margin-top: 24px;
  }
}
#sustainability .c-program__title {
  position: relative;
  margin-bottom: 20px;
  padding-block: 20px 18px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
#sustainability .c-program__title::before, #sustainability .c-program__title::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-text);
  width: 100%;
  height: 1px;
}
#sustainability .c-program__title::before {
  top: 0;
}
#sustainability .c-program__title::after {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sustainability .c-program__title {
    font-size: 15px;
  }
}
#sustainability .c-program__list {
  display: grid;
}
#sustainability .c-program__item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 38px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  #sustainability .c-program__item {
    gap: 26px;
  }
}
#sustainability .c-program__time {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 84px;
  height: 25px;
  padding: 8px 20px 6px;
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-blue);
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #sustainability .c-program__time {
    width: 60px;
    height: 24px;
    padding: 8px 10px 6px;
    font-size: 14px;
  }
}
#sustainability .c-program__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}
#sustainability .c-program__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -55px;
  width: 1px;
  height: calc(100% + 30px);
  background: var(--color-blue);
  z-index: 1;
}
#sustainability .c-program__content p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.867;
}
@media screen and (max-width: 767px) {
  #sustainability .c-program__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  #sustainability .c-program__content p {
    font-size: 13px;
  }
}
#sustainability .c-program__item.c-long .c-program__content {
  margin-bottom: 53px;
}
#sustainability .c-program__item.c-long .c-program__content::before {
  height: calc(100% + 55px);
}
#sustainability .c-program__item:last-child .c-program__content::before {
  height: calc(100% + 2px);
}/*# sourceMappingURL=jema_gx.css.map */