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

Title         : style.css
Description   : サステナブルページ用CSS

Created       : 2024-06-05

////////////////////////////////////////////////// */
nav.c-breadcrumb {
  display: none;
}
.p-sustainable {
  font-family: var(--font-ja);
  line-height: 1.5;
  font-weight: 400;
}
:where(.p-sustainable) img {
  width: 100%;
  height: auto;
}
:where(.p-sustainable) .js-scrollIn {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.8s cubic-bezier(.25, .46, .45, .94);
  transition-property: transform, opacity;
}
:where(.p-sustainable) .js-scrollIn--active {
  opacity: 1;
  transform: translateY(0);
}
/* Common */
.p-sustainable__section {
  width: min(90%, 750px);
  margin: 0 auto;
}
.p-sustainable__section p {
  text-align: justify;
  line-height: 2;
}
.p-sustainable__caption {
  display: block;
  font-size: .8em;
  line-height: 1.5;
}
/* First View */
.p-sustainable__firstview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-feature-settings: "palt";
}
.p-sustainable__firstview h2 {
  width: 100%;
  font-weight: 500;
  text-align: center;
}
/* Mark */
.p-sustainable__mark {

}
.p-sustainable__mark-table {
  --color-table-border: #000;
  width: min(100%, 750px);
}
.p-sustainable__mark-table thead th {
  padding: 12px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  background-color: #717071;
}
.p-sustainable__mark-table tbody td {
  padding: 12px;
  vertical-align: middle;
}
.p-sustainable__mark-table tbody td:first-of-type {
  max-width: 200px;
  min-width: 100px;
}
.p-sustainable__mark-table :is(th, td) {
  border-top: 1px solid var(--color-table-border);
  border-left: 1px solid var(--color-table-border);
}
.p-sustainable__mark-table :is(th, td):last-of-type {
  border-right: 1px solid var(--color-table-border);
}
.p-sustainable__mark-table tbody tr:last-of-type td {
  border-bottom: 1px solid var(--color-table-border);
}
.p-sustainable__mark-table tbody td::before,
.p-sustainable__mark-table tbody td::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.p-sustainable__mark-table tbody td::before {
  margin-top: calc((1 - 1.5)* .5em);
}
.p-sustainable__mark-table tbody td::after {
  margin-bottom: calc((1 - 1.5)* .5em);
}
.p-sustainable__mark-table tbody strong {
  display: block;
  margin-bottom: 12px;
  text-align: justify;
  color: #444;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.p-sustainable__mark-table .p-sustainable__caption {
  margin-top: 6px !important;
}
.p-sustainable__mark-bottom-link {
  position: relative;
  display: block;
  padding: 12px 30px 12px 12px;
  border: 1px solid #555;
  line-height: 1;
  color: #000;
  cursor: pointer;
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-sustainable__mark-bottom-link::after {
  content: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2.4 6.2"><path d="M2.4,3.3L0,6.2V5.6l2.1-2.5L0,0.6V0l2.4,2.9V3.3z"/></svg>');
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-block;
  width: 4px;
  height: 10px;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .p-sustainable {
    padding-bottom: calc(60 * (100vw / 375));
  }
  :where(.p-sustainable) .hidden-phone {
    display: none;
  }
  /* Common */
  .p-sustainable__section p {
    font-size: calc(13 * (100vw / 375));
  }
  .p-sustainable__caption {
    margin-top: 5%;
  }
  /* First View */
  .p-sustainable__firstview {
    padding-top: calc(120 * (100vw / 375));
    padding-bottom: calc(36 * (100vw / 375));
  }
  .p-sustainable__firstview h2 {
    margin-bottom: calc(36 * (100vw / 375));
    font-size: calc(22 * (100vw / 375));
    letter-spacing: .06em;
  }
  .p-sustainable__firstview figure {
    margin-bottom: calc(36 * (100vw / 375));
  }
  .p-sustainable__firstview p {
    font-size: calc(13 * (100vw / 375));
    letter-spacing: .04em;
  }
  /* Mark */
  .p-sustainable__mark p + *:not(a) {
    margin-top: calc(36 * (100vw / 375));
  }
  .p-sustainable__mark-table thead th {
    font-size: calc(13 * (100vw / 375));
  }
  .p-sustainable__mark-table tbody td {
    font-size: calc(13 * (100vw / 375));
  }
  .p-sustainable__mark-table tbody strong {
    font-size: calc(16 * (100vw / 375));
  }
  .p-sustainable__mark-caption-wrap {
    margin-top: calc(12 * (100vw / 375));
    margin-bottom: calc(18 * (100vw / 375));
  }
  .p-sustainable__mark-bottom {
    margin-top: calc(36 * (100vw / 375));
  }
  .p-sustainable__mark-bottom-heading {
    margin-bottom: calc(12 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
  }
  .p-sustainable__mark-bottom-link {
    font-size: calc(12 * (100vw / 375));
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .p-sustainable {
    padding-bottom: 8rem;
  }
  :where(.p-sustainable) .hidden-desktop {
    display: none;
  }
  /* Common */
  .p-sustainable__section p {
    font-size: 1.3rem;
  }
  .p-sustainable__caption {
    margin-top: 30px;
  }
  /* First View */
  .p-sustainable__firstview {
    padding-top: 8rem;
    padding-bottom: 3.6rem;
  }
  .p-sustainable__firstview h2 {
    font-size: 2.21rem;
    margin-bottom: 36px;
    letter-spacing: .08em;
  }
  .p-sustainable__firstview figure {
    margin-bottom: 36px;
  }
  .p-sustainable__firstview p {
    font-size: 1.3rem;
    letter-spacing: .1em;
  }
  /* Mark */
  .p-sustainable__mark p + *:not(a) {
    margin-top: 3.6rem;
  }
  .p-sustainable__mark-table thead th {
    font-size: 1.3rem;
  }
  .p-sustainable__mark-table tbody td {
    font-size: 1.3rem;
  }
  .p-sustainable__mark-table tbody strong {
    font-size: 1.6rem;
  }
  .p-sustainable__mark-caption-wrap {
    margin-top: 1.2rem;
    margin-bottom: 1.8rem;
  }
  .p-sustainable__mark-bottom {
    margin-top: 3.6rem;
  }
  .p-sustainable__mark-bottom-heading {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }
  .p-sustainable__mark-bottom-link {
    font-size: 1.2rem;
  }
}
/* --- for hoverable device --- */
@media (hover: hover) {
  .p-sustainable__mark-bottom-link:hover {
    opacity: 0.8;
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
