/*=============================================================
sustainability top
=============================================================*/
/* contributing-area */
.index .contributing-area {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.index .contributing-area picture {
  width: 100%;
}

.index .contributing-area picture img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: auto;
  aspect-ratio: 1180 / 396;
  min-width: 800px;
}

.index .contributing-area .text-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  max-width: 400px;
  width: 100%;
  padding: 32px clamp(20px, calc(20px + 7.8125vw - 60px), 40px);
  box-sizing: border-box;
}
/*=============================================================
sdgs
=============================================================*/
.sdgs .ttl-bg{
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/sdgs-bg01.jpg) no-repeat center;
  background-size: cover;
  height: 240px;
  border-radius: 8px 8px 0 0;
}
.sdgs .ttl-bg.ttl-bg02 {
  background: url(../img/sdgs-bg02.jpg) no-repeat center;
  background-size: cover;
}
.sdgs .ttl-bg.ttl-bg03 {
  background: url(../img/sdgs-bg03.jpg) no-repeat center;
  background-size: cover;
}
.sdgs .ttl-h2--white--center--{margin-bottom: 0;}
.sdgs .ttl-h2--white--center-->span{
  display: block;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.sdgs .ttl-h2--white--center-->span>span{
  display: inline-block;
  padding: 2px 21px;
  border-radius: 4px;
  border: 1px solid var(--colorWhite);
  margin-bottom: 10px;
}
.sdgs [class*="box-color--"] {border-radius: 0 0 8px 8px;}

/*=============================================================
msessage
=============================================================*/
.msessage .name{margin-top: 40px;}
.msessage .name>span{
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  padding-left: 16px;
}

/*=============================================================
governance
=============================================================*/
.governance .table-default-- td {
  vertical-align: top;
}
.governance .item--icon{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}
.governance .item--icon>li{
  display: flex;
  align-items: center;
  gap: 4px;
}
.governance .step-list li{
  display: flex;
  gap: 8px 32px;
  position: relative;
}
.governance .step-list li div:first-child{
  width: 52px;
  position: relative;
}
.governance .step-list li div:last-child{
  width: calc(100% - 84px);
}
.governance .step-list li:not(:last-child) div:first-child:after{
  content: "";
  position: absolute;
  top: 10px;
  bottom: -30px;
  left: 68px;
  width: 1px;
  height: 100%;
  background-color: var(--primaryColor);
}
.governance .step-list li div:last-child{
  padding-bottom: 16px;
}
.governance .step-list li:after{
  content: "";
  position: absolute;
  top: 7px;
  left: 63px;
  width: 10px;
  height: 10px;
  background-color: var(--primaryColor);
  border-radius: 50%;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PC
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media (min-width:1080px) {}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Tablet (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (min-width:768px) and (max-width:1079px) {}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:767px) {

  /*===========================================================
  sustainability top
  ===========================================================*/
  /* contributing-area */
  .index .contributing-area {
    position: relative;
  }

  .index .contributing-area picture img {
    object-position: center bottom;
    aspect-ratio: inherit;
    min-width: inherit;
    max-height: 600px;
  }

  .index .contributing-area .text-box {
    top: 0;
    transform: translate(0, 0);
    max-width: inherit;
  }

  .index .contributing-area .text-box .link-btn-- {
    text-align: center;
    padding: 0 16px;
  }

  .index .contributing-area .text-box .link-btn-- div {
    min-width: inherit;
    width: 100%;
  }

  /*=============================================================
  sdgs
  =============================================================*/
  .sdgs .ttl-bg{
    background: url(../img/sdgs-bg01_sp.jpg) no-repeat center;
    background-size: cover;
    padding: 0 16px;
  }
  .sdgs .ttl-bg.ttl-bg02 {
    background: url(../img/sdgs-bg02_sp.jpg) no-repeat center;
    background-size: cover;
  }
  .sdgs .ttl-bg.ttl-bg03 {
    background: url(../img/sdgs-bg03_sp.jpg) no-repeat center;
    background-size: cover;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Print
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media print {}