@charset "UTF-8";
/* =======================================================

サステナブル製品紹介

======================================================= */
#page--sustainable-item {
  padding-bottom: 100px;
}

h3.sdgs_titleh3 {
  color: #172A88;
  font-weight: bold;
  font-size: 18px;
  display: block;
  margin-bottom: 20px;
}

.sdgs_fvtxt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  margin: 0 auto 20px;
  gap: 20px;
}
.sdgs_fvtxt div {
  width: calc(65% + 20px);
}
.sdgs_fvtxt div p {
  margin-bottom: 10px;
}
.sdgs_fvtxt div p:last-of-type {
  margin-bottom: 0;
}
.sdgs_fvtxt div:last-of-type {
  width: 33%;
  flex-shrink: 1;
}
.sdgs_fvtxt div:last-of-type img {
  width: 100%;
}
@media (max-width: 768px) {
  .sdgs_fvtxt div:last-of-type {
    width: 60%;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .sdgs_fvtxt div {
    width: 100%;
  }
}
@media (max-width: 592px) {
  .sdgs_fvtxt {
    flex-direction: column;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 80px;
  margin: 0 auto;
  display: block;
  width: 100%;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*選択されているタブのコンテンツのみを表示*/
}
.tabs hr {
  border-top: 1px solid #DEE0E6;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  margin: 20px auto;
  width: 100%;
}
.tabs hr:last-of-type {
  margin-top: 10px;
}
.tabs .tab_menu {
  font-size: 15px;
  font-weight: bold;
  min-width: 100px;
  display: inline-block;
}
@media (max-width: 768px) {
  .tabs .tab_menu {
    display: block;
    margin-bottom: 10px;
  }
}
.tabs .tab_item {
  width: auto;
  background: #DEE0E6;
  font-size: 15px;
  text-align: center;
  color: #172A88;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin: 0 10px 10px 0;
  border-radius: 3px;
  padding: 2px 10px;
}
.tabs .tab_item:hover {
  background: #EEF0F7;
}
.tabs input[name=tab_item] {
  display: none;
}
.tabs input:checked + .tab_item {
  background-color: #172A88;
  color: #fff;
}
.tabs .tab_content {
  display: none;
  transition: 0.3s;
  padding: 20px 0 0;
  clear: both;
  overflow: hidden;
  width: 100%;
  animation: fadeIn 0.3s ease;
}
.tabs .tab_content .tab_content_box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  align-items: flex-start;
}
.tabs .tab_content .tab_content_box .sgds-item_box {
  width: calc(25% - 24px);
  box-sizing: border-box;
  display: block;
}
@media (max-width: 768px) {
  .tabs .tab_content .tab_content_box .sgds-item_box {
    width: calc(50% - 15px);
  }
}
.tabs .tab_content .tab_content_box .sgds-item_box figure {
  position: relative;
  border-radius: 15px;
  display: flex;
}
.tabs .tab_content .tab_content_box .sgds-item_box figure img {
  position: relative;
  z-index: 0;
  width: 240px;
  height: 240px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1160px) {
  .tabs .tab_content .tab_content_box .sgds-item_box figure img {
    height: 21.4vw;
  }
}
@media (max-width: 768px) {
  .tabs .tab_content .tab_content_box .sgds-item_box figure img {
    width: 350px;
    height: 43.8vw;
  }
}
.tabs .tab_content .tab_content_box .sgds-item_box figure figcaption {
  opacity: 0;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 7%;
  border-radius: 15px;
  background: rgba(23, 42, 136, 0.4);
  z-index: 1;
}
.tabs .tab_content .tab_content_box .sgds-item_box figure figcaption span {
  margin-top: -10px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
  line-height: 1.4em;
}
.tabs .tab_content .tab_content_box .sgds-item_box .itemname {
  display: block;
  padding-top: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover .itemname {
  text-decoration: underline;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover figcaption {
  opacity: 1;
}
.tabs .tab_content .tab_content_box .sgds-item_box:hover figcaption span {
  margin-top: 0;
}
.tabs #allitem:checked ~ #allitem_content,
.tabs #co2cuts:checked ~ #co2cuts_content,
.tabs #ghgcuts:checked ~ #ghgcuts_content,
.tabs #altplas:checked ~ #altplas_content,
.tabs #utwws:checked ~ #utwws_content,
.tabs #recycles:checked ~ #recycles_content,
.tabs #sdgsbios:checked ~ #sdgsbios_content,
.tabs #sdgsrecycles:checked ~ #sdgsrecycles_content {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from, 30% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sdgs_linkarea {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: #EEF0F7;
  padding: 50px 5%;
  margin: 0 auto;
  box-sizing: border-box;
}
.sdgs_linkarea p {
  margin-bottom: 30px;
  font-weight: bold;
}

.sdgs_contacttext {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 80px 0 10px;
}

.sdgs_linkbtn {
  width: 100%;
  max-width: 700px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #172A88;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
  transition: all 0.3s;
  padding: 0 20px;
  text-decoration: none;
  margin: 0 auto;
}
.sdgs_linkbtn span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1em;
}
@media (max-width: 600px) {
  .sdgs_linkbtn {
    width: 100%;
  }
}
.sdgs_linkbtn:hover {
  background-color: #4c8dcb;
}
.sdgs_linkbtn[target=_blank] span::after {
  content: url(../img/sdgs/newwindow.svg);
  width: 20px;
  height: auto;
  display: inline-block;
  margin: 0 0 0 5px;
}/*# sourceMappingURL=sdgs.css.map */