@charset "UTF-8";
.mainColor {
  color: #0091DB;
}

.blue {
  color: #0091DB;
}

.subColor {
  color: #FFA200;
}

.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.red {
  color: #FF0000;
}

.orange {
  color: #FFA200;
}

.gray {
  color: #EAEAEA;
}

.grayDark {
  color: #505050;
}

.grayLight {
  color: #BEBEBE;
}

li {
  list-style-type: none;
}

/*- 文字サイズ自動変更--------------------*/
/*- 文字サイズ記述見本----------*/
/*
p {
  @include module.fs(36,36,24,20,18,18);
}
p {
  @include fs2(20,10);
    @include module.fs2(36, 20);
}
*/
/*- 表示非表示-------------------*/
/* visible-xx-ijo */
@media (max-width: 575px) {
  .visible-sm-ijo {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-md-ijo {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .visible-lg-ijo {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .visible-xl-ijo {
    display: none !important;
  }
}
/* visible-xx-ika */
@media (min-width: 576px) {
  .visible-xs-ika {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .visible-sm-ika {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .visible-md-ika {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-ika {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .visible-xl-ika {
    display: none !important;
  }
}
/* hidden-xx-ijo */
@media (min-width: 576px) {
  .hidden-sm-ijo {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-md-ijo {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg-ijo {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xl-ijo {
    display: none !important;
  }
}
/* hidden-xx-ika */
@media (max-width: 575px) {
  .hidden-xs-ika {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-ika {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-ika {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-ika {
    display: none !important;
  }
}
@media (max-width: 1399px) {
  .hidden-xl-ika {
    display: none !important;
  }
}
/*- 基本パーツ-------------------*/
.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center-pc {
  text-align: center;
}

@media (max-width: 767px) {
  .align-center-pc {
    text-align: left;
  }
}
.flex-center {
  display: flex;
  justify-content: center;
}

.bold {
  font-weight: bold;
}

small {
  font-size: smaller !important;
}

.lh-2 {
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .lh-2 {
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .lh-2 {
    line-height: 1.6;
  }
}

.img-responsive {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

.cf::before, .cf::after {
  display: table;
  clear: both;
  content: "";
}

.alpha {
  transition: opacity 250ms;
}
.alpha:hover {
  opacity: 0.75;
}

.indent1 li,
p.indent1 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 li,
p.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent3 li,
p.indent3 {
  padding-left: 3em;
  text-indent: -3em;
}

/*-hover------------------*/
.hover a {
  -webkit-transition: 350ms;
  transition: 350ms;
}

.hover a:hover {
  opacity: 0.7;
}

a.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

a.hover:hover {
  opacity: 0.7;
}

button.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

button.hover:hover {
  opacity: 0.7;
}

input.hover {
  -webkit-transition: 350ms;
  transition: 350ms;
}

input.hover:hover {
  opacity: 0.7;
}

a.underline {
  text-decoration: underline;
}

a.underline:hover {
  text-decoration: none;
}

.box-shadow {
  transition: all 0.4s ease-in-out;
}

.box-shadow:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.mojikan {
  font-feature-settings: "palt";
  letter-spacing: 3px;
}

/*- カラム落ちメモ3----grid利用--------------------*/
/*- parts-width-----------------*/
.pc-w95 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w95 {
    width: 95%;
  }
}

.pc-w90 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w90 {
    width: 90%;
  }
}

.pc-w85 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w85 {
    width: 85%;
  }
}

.pc-w80 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w80 {
    width: 80%;
  }
}

.pc-w70 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w70 {
    width: 70%;
  }
}

.pc-w60 {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .pc-w60 {
    width: 60%;
  }
}

/*- parts-grid-----------------*/
.grid-pcsp2 {
  width: 100%;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .grid-pcsp2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1rem;
  }
}

/*bghover-------------------------------------------*/
.bghover-link {
  display: block;
}

.bghover-warp {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.bghover {
  width: 100%;
  padding-top: 55%;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

a.bghover-link:hover .bghover-warp .bghover,
.bghover-warp:focus .bghover {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

a.bghover-link:hover .bghover-warp .bghover:before,
.bghover-warp:focus .bghover:before {
  display: block;
}

.bghover:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.35s ease;
  transition: 0.5s ease;
}

a.bghover-link:hover .bghover-warp .bghover:before {
  opacity: 0.3;
}

html body#sustainable section {
  /*▼ 共通 ------------------------------------------*/
  /*▲ 共通 ------------------------------------------*/
}
html body#sustainable section .base__block {
  margin-top: 4rem;
}
html body#sustainable section .base__block .base__heading {
  font-weight: 500;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__heading {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__heading {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__heading {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__heading {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__heading {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__heading {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#sustainable section .base__block .base__heading.base__heading--blue {
  text-align: center;
  color: #0091DB;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section .base__block .base__heading.base__heading--blue {
    margin-bottom: 1rem;
  }
}
html body#sustainable section .base__block .base__heading.base__heading--blue span {
  display: block;
  margin-top: 1rem;
}
html body#sustainable section .base__block .base__heading.base__heading--blue sup {
  color: #000000;
  font-size: 65%;
}
html body#sustainable section .base__block .base__sm {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__sm {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__sm {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__sm {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__sm {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__sm {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__sm {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .base__block .base__sm span {
  display: block;
}
html body#sustainable section .base__block .base__sm.base__sm-top {
  padding-bottom: 0 !important;
}
html body#sustainable section .base__block .base__sm.align-center {
  justify-content: center;
  margin: 0.5rem 0 2rem;
}
html body#sustainable section .base__block .base__layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout + .base__layout {
    margin-top: 3rem;
  }
}
html body#sustainable section .base__block .base__layout .base__content p {
  line-height: 1.75;
  padding-bottom: 1rem;
  letter-spacing: -0.01rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__content p {
    font-size: calc(1.4rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .base__block .base__layout .base__content .base__sm {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__content .base__sm {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .base__block .base__layout .base__content .base__sm span {
  display: block;
}
html body#sustainable section .base__block .base__layout.base__layout--reverse:nth-child(even) {
  flex-direction: row-reverse;
}
html body#sustainable section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
  padding-left: 0;
  padding-right: 3rem;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout.base__layout--reverse:nth-child(even) .base__content {
    padding-right: 0;
  }
}
html body#sustainable section .base__block .base__layout .base__image {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__image {
    margin-bottom: 0;
    text-align: center;
  }
}
html body#sustainable section .base__block .base__layout .base__image img {
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}
@media screen and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__image img {
    min-width: 400px;
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__image img {
    min-width: 100%;
  }
}
html body#sustainable section .base__block .base__layout .base__image .base__sm {
  display: flex;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__image .base__sm {
    text-align: left;
  }
}
html body#sustainable section .base__block .base__layout .base__image .base__sm span {
  display: block;
}
html body#sustainable section .base__block .base__layout .base__image .base__sm:first-of-type {
  margin-top: 1rem;
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table {
  width: 100%;
  min-width: 375px;
  border: 2px solid #0091DB;
}
@media screen and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table {
    min-width: auto;
  }
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table tr th, html body#sustainable section .base__block .base__layout .base__image.base__image--table table tr td {
  border: 1px solid #0091DB;
  text-align: center;
  vertical-align: middle;
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table tr th {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0;
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table thead th {
  padding: 1rem;
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
  line-height: 1.4;
  padding: 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody th {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
  letter-spacing: 0.04em;
  padding: 1rem 0.5rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__image.base__image--table table tbody td {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .base__block .base__layout .base__content {
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__content {
    padding-left: 0;
    padding-top: 2rem;
  }
}
html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__content .base__content--lead {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
html body#sustainable section .base__block .base__layout .base__content p {
  letter-spacing: 0.04em;
  line-height: 1.7;
}
html body#sustainable section .base__block .base__layout .base__content .icon-list {
  display: flex;
}
@media screen and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list {
    justify-content: center;
  }
}
html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item {
  text-align: center;
}
html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .base__block .base__layout .base__content .icon-list .icon-item p {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section .product-list h2 {
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section .product-list h2 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section .product-list h2 {
    font-size: calc(1.96rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section .product-list h2 {
    font-size: calc(1.92rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section .product-list h2 {
    font-size: calc(1.88rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section .product-list h2 {
    font-size: calc(1.84rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section .product-list h2 {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#sustainable section .basic-title {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .basic-title {
    padding-top: 3rem;
  }
}
html body#sustainable section.how-use {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  html body#sustainable section .visible-sm-ijo {
    display: none;
  }
}
html body#sustainable section.mv {
  background-color: #CBEEFF;
  height: 400px;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.mv {
    height: auto;
  }
}
html body#sustainable section.mv .wrapper {
  height: 100%;
  padding: 0;
}
html body#sustainable section.mv .mv__inner {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.mv .mv__inner {
    display: block;
  }
}
html body#sustainable section.mv .mv__inner .mv__copy {
  max-width: 415px;
  width: 100%;
  height: 100%;
  background-color: #0091DB;
  padding: 10rem 7rem 12rem 5rem;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.mv .mv__inner .mv__copy {
    max-width: 100%;
    padding: 4rem 8rem 9rem 4rem;
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section.mv .mv__inner .mv__copy {
    padding: 4rem 8rem 6rem 2rem;
  }
}
html body#sustainable section.mv .mv__inner .mv__copy h1 {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.625;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-left: 2px solid;
  padding: 2rem 0rem 2rem 2rem;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.28rem + (1vw - 0.992rem) * (0.5797101449));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.16rem + (1vw - 0.768rem) * (0.5381165919));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: calc(2.04rem + (1vw - 0.576rem) * (0.6282722513));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: calc(1.92rem + (1vw - 0.421rem) * (0.7792207792));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1.2));
  }
}
@media screen and (max-width: 1199px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 {
    padding: 2rem;
  }
}
html body#sustainable section.mv .mv__inner .mv__copy h1::after {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  background-color: #ffffff;
  transform: rotate(40deg);
  position: absolute;
  right: -53px;
  bottom: -21px;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.76rem + (1vw - 0.992rem) * (0.193236715));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.72rem + (1vw - 0.768rem) * (0.1793721973));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.68rem + (1vw - 0.576rem) * (0.2094240838));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.64rem + (1vw - 0.421rem) * (0.2597402597));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.mv .mv__inner .mv__copy h1 span {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0.4));
  }
}
html body#sustainable section.mv .mv__inner .mv__bg {
  background-image: url(../../images/sustainable/sustainable-mv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  max-width: 415px;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.mv .mv__inner .mv__bg {
    height: 300px;
    max-width: 100%;
  }
}
html body#sustainable section.page-links .page-links__list {
  max-width: 830px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 4rem 0 5rem;
  gap: 1rem 0;
}
@media screen and (max-width: 767px) {
  html body#sustainable section.page-links .page-links__list {
    gap: 0;
  }
}
html body#sustainable section.page-links .page-links__list .page-links__item {
  flex-basis: 33.3333333333%;
  height: 80px;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.page-links .page-links__list .page-links__item {
    flex-basis: 32.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section.page-links .page-links__list .page-links__item {
    margin-bottom: 1rem;
  }
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item {
    flex-basis: 100%;
    height: auto;
  }
}
html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
  margin-right: 1rem;
}
@media screen and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    margin-right: 0;
  }
}
html body#sustainable section.page-links .page-links__list .page-links__item:nth-of-type(3) .page-links__link {
  margin-right: 0;
}
html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #0091DB;
  border-radius: 10px;
  border: 2px solid;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.467;
  position: relative;
  padding: 1rem 0.5rem 3rem;
  transition: 250ms;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.32rem + (1vw - 0.992rem) * (0.38647343));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.24rem + (1vw - 0.768rem) * (0.3587443946));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.16rem + (1vw - 0.576rem) * (0.4188481675));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.08rem + (1vw - 0.421rem) * (0.5194805195));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1rem + (1vw - 0.32rem) * (0.8));
  }
}
@media only screen and (max-width: 575px) and (min-width: 1200px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 575px) and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 575px) and (max-width: 420px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0));
  }
}
html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link:hover {
  background-color: #0091DB;
  color: #ffffff;
}
@media screen and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link {
    padding: 1rem 0.5rem;
    justify-content: left;
  }
}
html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 12px solid;
}
@media screen and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link::after {
    left: auto;
    right: 6px;
    transform: translateY(-50%);
    bottom: auto;
    top: 60%;
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section.page-links .page-links__list .page-links__item .page-links__link br {
    display: none;
  }
}
html body#sustainable section.about .basic-title {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .basic-title {
    padding-top: 0;
  }
}
html body#sustainable section.about .about__title {
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0 0 4rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.about .about__title {
    font-size: 2.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.about .about__title {
    font-size: calc(2.2rem + (1vw - 0.992rem) * (0.4830917874));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.about .about__title {
    font-size: calc(2.1rem + (1vw - 0.768rem) * (0.4484304933));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.about .about__title {
    font-size: calc(2rem + (1vw - 0.576rem) * (0.5235602094));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.about .about__title {
    font-size: calc(1.9rem + (1vw - 0.421rem) * (0.6493506494));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.about .about__title {
    font-size: calc(1.8rem + (1vw - 0.32rem) * (1));
  }
}
html body#sustainable section.about .about__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .about__features {
    display: block;
  }
}
html body#sustainable section.about .about__features .about__feature {
  flex-basis: 31.6666666667%;
}
html body#sustainable section.about .about__features .about__feature .about__feature-heading {
  position: relative;
}
html body#sustainable section.about .about__features .about__feature .about__feature-title {
  color: #0091DB;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #EAEAEA;
  padding: 0.8rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: calc(1.78rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: calc(1.76rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: calc(1.74rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: calc(1.72rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title {
    font-size: calc(1.7rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-title br {
    display: none;
  }
}
html body#sustainable section.about .about__features .about__feature .about__feature-small {
  font-weight: 500;
  position: absolute;
  bottom: -1.75rem;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-small {
    position: static;
    margin-top: 0.5rem;
  }
}
html body#sustainable section.about .about__features .about__feature .about__feature-text {
  font-weight: 500;
  padding: 3rem 0 0;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: calc(1.6rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: calc(1.6rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: calc(1.6rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: calc(1.6rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    font-size: calc(1.6rem + (1vw - 0.32rem) * (0));
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text {
    padding: 1rem 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  html body#sustainable section.about .about__features .about__feature .about__feature-text br {
    display: none;
  }
}
html body#sustainable section.litheli {
  padding-bottom: 5rem;
}
@media screen and (max-width: 991px) {
  html body#sustainable section.litheli {
    padding-bottom: 3rem;
  }
}
html body#sustainable section.litheli .litheli__list {
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem 0;
}
@media screen and (max-width: 767px) {
  html body#sustainable section.litheli .litheli__list {
    flex-direction: column;
  }
}
html body#sustainable section.litheli .litheli__list .litheli__item {
  flex-basis: 48%;
}
@media screen and (max-width: 767px) {
  html body#sustainable section.litheli .litheli__list .litheli__item {
    flex-basis: 100%;
  }
}
html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--title {
  font-weight: 700;
  letter-spacing: 0;
  color: #0091DB;
  background-color: #F7F5F5;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
  letter-spacing: 0.64px;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: calc(1.28rem + (1vw - 0.992rem) * (0.0966183575));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: calc(1.26rem + (1vw - 0.768rem) * (0.0896860987));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: calc(1.24rem + (1vw - 0.576rem) * (0.1047120419));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: calc(1.22rem + (1vw - 0.421rem) * (0.1298701299));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.litheli .litheli__list .litheli__item .litheli__item--text {
    font-size: calc(1.2rem + (1vw - 0.32rem) * (0.2));
  }
}
@media screen and (max-width: 575px) {
  html body#sustainable section.litheli .list_2 .product-card__title br {
    display: none;
  }
}
html body#sustainable section.litheli .product-card__tag {
  background-color: #0091DB;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  color: #ffffff;
  display: inline;
}
@media only screen and (min-width: 1200px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: calc(1rem + (1vw - 0.992rem) * (0));
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: calc(1rem + (1vw - 0.768rem) * (0));
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: calc(1rem + (1vw - 0.576rem) * (0));
  }
}
@media only screen and (min-width: 421px) and (max-width: 575px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: calc(1rem + (1vw - 0.421rem) * (0));
  }
}
@media only screen and (max-width: 420px) {
  html body#sustainable section.litheli .product-card__tag {
    font-size: calc(1rem + (1vw - 0.32rem) * (0));
  }
}

/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/
/*▼------------------------------------------*/
/*▲------------------------------------------*/

/*# sourceMappingURL=sustainable.css.map */
