@charset "UTF-8";

/* ↓モジュール一覧ページ用CSS↓ */
#modules {
  background-color: #F6F6F6;
}

#modules .guide> :is(h1, h2) {
  padding: 10px;
  border: 1px solid #000;
  margin-inline: 60px;
  font-size: 4rem;
  color: #333;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 2.2;
  text-align: center;
}

#modules .guide>h2 {
  font-size: 32px;
  background-color: #fff;
}

#modules .guide>*+h2 {
  margin-top: 93px;
}

#modules .guide-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-104);
  padding: var(--spacing-48) 0;
}

#modules .guide-container.column-2 {
  flex-direction: row;
  gap: var(--spacing-32);
}

#modules .guide-container.column-2>dl {
  flex: 1 1 calc(50% - var(--spacing-32));
}

#modules .guide-container dl {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-64);
}

#modules .guide-container dl dt {
  padding: var(--spacing-24);
  background-color: #000;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

#modules .guide-container dl dd {
  flex: 1;
}

#modules .guide-container dl dd.center {
  text-align: center;
}

#modules div.wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-24);
}

@media (max-width: 750px) {
  #modules .guide> :is(h1, h2) {
    font-size: 2rem;
    margin-inline: 2rem;
  }

  #modules .guide-container {
    padding: var(--spacing-48) 0;
  }

  #modules .guide-container dl {
    gap: var(--spacing-32);
  }

  #modules .guide-container dl dt {
    padding: var(--spacing-16);
  }

  #modules .guide-container.column-2 {
    flex-direction: column;
  }

  #modules .guide-container.column-2>dl {
    flex: none;
  }
}

/* ↑モジュール一覧ページ用CSS↑ */

/* ↓見出し↓ */
.h1-1 {
  position: relative;
  color: #3A3A3A;
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 1.1rem;
  background-image: linear-gradient(90deg,
      var(--green-base) 0 19%,
      #e4e4e4 19%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}

@media (max-width: 750px) {
  .h1-1 {
    font-size: 2.4rem;
    padding-bottom: 1.1rem;
    background-image: linear-gradient(90deg,
        var(--green-base) 0 40%,
        #e4e4e4 20%);
  }
}

.h2-1 {
  display: flex;
  color: var(--green-base);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.55;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 0.9rem;
  gap: 1.8rem;
}

.h2-1::before {
  content: "";
  flex: 0 0 1.2rem;
  background-color: var(--green-light);
  margin-block: calc((1lh - 1em) / 2);
  translate: 0 2px;
}

@media (max-width: 750px) {
  .h2-1 {
    margin-left: 1.4rem;
    font-size: 2.6rem;
    line-height: 1.42;
  }

  .h2-1::before {
    translate: 0;
    flex: 0 0 0.8rem;
  }
}


/* h1-2: ニュース・お知らせ記事タイトル */
.h1-2-wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.h1-2-wrap .category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #cde2d7;
  color: var(--green-base);
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  height: 2.7rem;
  width: fit-content;
}

.h1-2 {
  font-size: 5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.12;
}

.h1-2-wrap .date {
  font-size: 1.4rem;
  color: var(--black-base);
  line-height: 1.71;
}

@media (max-width: 750px) {
  .h1-2-wrap {
    gap: 0.6rem;
  }

  .h1-2 {
    font-size: 3rem;
  }
}

/* h3-1 */
.h3-1 {
  position: relative;
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  color: var(--black-base);
  line-height: 1.86;
  border-bottom: 2px solid #e4e4e4;
  gap: 1.1rem;
  padding-bottom: 0.5rem;
}

.h3-1::before {
  content: "";
  flex: 0 0 0.2rem;
  background-color: var(--green-base);
  margin-block: calc((1lh - 1em) / 2);
  translate: 0 2px;
}

@media (max-width: 750px) {
  .h3-1 {
    font-size: 2.2rem;
    padding-left: 1rem;
    line-height: 1.68;
  }
}

/* h4-1 */
.h4-1 {
  display: flex;
  gap: 0.7rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 2.15;
}

.h4-1::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--green-base);
  margin-block-start: calc(((1lh - 1em) / 2) + .5em);
  translate: 0 -50%;
}

@media (max-width: 750px) {
  .h4-1::before {
    width: 1rem;
    height: 1rem;
  }
}

/* card-3 内では bullet を非表示 */
ul.card-3 .h4-1 {
  color: inherit;
}

ul.card-3 .h4-1::before {
  display: none;
}

@media (max-width: 750px) {
  .h4-1 {
    font-size: 2rem;
  }
}

/* h5-1 */
.h5-1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black-base);
  line-height: 1.55;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 0.9rem;
}

@media (max-width: 750px) {
  .h5-1 {
    font-size: 1.8rem;
  }
}

/* h6-1 */
.h6-1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-base);
  line-height: 2;
}

@media (max-width: 750px) {
  .h6-1 {
    font-size: 1.8rem;
  }
}

/* ↑見出し↑ */


/* ↓テキスト要素、リスト用要素↓ */
.text-1 {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--black-base);
}

.text-1 a {
  color: var(--green-base);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.text-1 strong {
  color: #3A3A3A;
  font-weight: 800;
}

ul.list-ul-1 li {
  position: relative;
  padding-left: var(--spacing-16);
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--black-base);
}

ul.list-ul-1 li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--black-base);
}

ol.list-ol-1 {
  counter-reset: item;
}

ol.list-ol-1 li {
  position: relative;
  padding-left: 2.7rem;
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--black-base);
  counter-increment: item;
}

ol.list-ol-1 li::before {
  content: counter(item) " )";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  color: var(--green-base);
}

ol.list-ol-1 li ol.list-ol-1 li {
  padding-left: 1.5rem;
}

ol.list-ol-1 li ol.list-ol-1 li::before {
  font-weight: normal;
  content: counter(item) ".";
  color: var(--black-base);
}

/* ↑テキスト要素、リスト用要素↑ */

/* ↓リンク、ボタン、テキストリンク↓ */
.button-1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 36.4rem;
  height: 100%;
  max-width: 100%;
  padding: 2.6rem 1.6rem;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  box-shadow: 0 4px 8px 0 rgba(189, 197, 193, 0.25);
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    opacity 0.3s ease;
}

.button-1:hover {
  opacity: 1;
}

.button-1.button-green {
  background-color: var(--green-base);
  color: #fff;
}

.button-1.button-green:hover {
  background-color: var(--green-light);
  color: var(--black-base);
}

.button-1.button-outline-green {
  background-color: #fff;
  border: 1px solid var(--green-base);
  color: var(--green-base);
}

.button-1.button-outline-green:hover {
  opacity: 1;
  background-color: var(--green-base);
  color: #fff;
}

.button-1.button-outline-green .arrow svg {
  fill: var(--black-base);
  color: var(--black-base);
}

.button-1.button-outline-green:hover .arrow svg {
  fill: #fff;
  color: #fff;
}

.button-1.button-inquiry {
  gap: 0 0.8rem;
  border-radius: 1.2rem;
  padding: 2.4rem 5.2rem 2.4rem 5.2rem;
  width: 54.1rem;
  background-color: var(--orange-base);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  box-shadow: 0 2px 12px 0 #A0A0A0;
}

.button-1.button-inquiry .arrow {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(infinity * 1px);
  background-color: #fff;
  width: 2.8rem;
  aspect-ratio: 1;
}

.button-1.button-inquiry .arrow svg {
  width: 1.2rem;
  height: auto;
  color: var(--black-base);
  transition: color 0.4s ease;
}

.button-1.icon-left .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: var(--spacing-8);
  width: 2.4rem;
  aspect-ratio: 1;
}

.button-1.icon-left .icon svg {
  width: 100%;
  height: auto;
}

.button-1.button-green.icon-left:hover .icon svg path {
  fill: var(--black-base);
}

.button-1.icon-right .icon:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: var(--spacing-8);
  margin-right: 0;
  width: 2.4rem;
  aspect-ratio: 1;
}

.button-1.icon-right .icon svg {
  width: 100%;
  height: auto;
  fill: currentColor;
  transition: color 0.4s ease;
}

.button-1 .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  flex-shrink: 0;
  margin-left: var(--spacing-8);
}

.button-1 .arrow svg {
  width: 100%;
  height: auto;
  color: currentColor;
  transition: color 0.4s ease;
}

.button-1.button-compact {
  padding: 1.6rem;
}

.button-1.button-text-center {
  justify-content: center;
}

@media (min-width: 751px) {
  .button-1.button-inquiry:hover {
    opacity: 0.7;
  }
}

@media (max-width: 750px) {
  .button-1 {
    width: auto;
    padding: var(--spacing-24) var(--spacing-16);
    font-size: 1.6rem;
  }

  .button-1.button-inquiry {
    padding: 2.4rem 3.2rem;
    font-size: 2.2rem;
  }
}

.linktext-1 {
  position: relative;
  color: var(--green-base);
  font-size: 1.6rem;
  line-height: 2.2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition:
    color 0.4s ease,
    text-decoration-color 0.4s ease;
}

.linktext-1:hover {
  color: var(--green-light);
  text-decoration-color: var(--green-light);
  opacity: 1;
}

.linktext-1[target="_blank"] svg {
  position: absolute;
  bottom: 0;
  margin-left: 1.4rem;
  width: 2.4rem;
  aspect-ratio: 1;
}

.linktext-1[target="_blank"] svg path {
  transition: fill 0.4s ease;
  fill: var(--green-base);
}

.linktext-1[target="_blank"]:hover svg path {
  fill: var(--green-light);
}

.linktext-1[target="_blank"] svg.size-20 {
  width: 2rem;
}

.linktext-1[target="_blank"] svg.size-auto {
  width: auto;
}

.anchorlink-1 {
  display: flex;
  justify-content: center;
  list-style: none;
}

.anchorlink-1[class^=gap-] li,
.anchorlink-1[class*=gap-] li {
  gap: 3.0rem;
  border-left: 1px solid var(--green-base);
}

.anchorlink-1 li {
  display: flex;
  width: 33.2rem;
  min-height: 7.6rem;
  border-right: 1px solid var(--green-base);
  transition: background-color 0.4s ease;
}

.anchorlink-1 li:first-child {
  border-left: 1px solid var(--green-base);
}

.anchorlink-1 li:last-child {
  border-right: 1px solid var(--green-base);
}

.anchorlink-1 li:hover {
  background-color: var(--green-base);
}

.anchorlink-1 li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-16);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--green-base);
  transition: color 0.4s ease;
  width: 100%;
}

.anchorlink-1 li:hover a {
  color: #fff;
}

.anchorlink-1 .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-left: var(--spacing-8);
}

.anchorlink-1 .arrow svg {
  width: 100%;
  height: auto;
  color: currentColor;
  transform: rotate(90deg);
  transition: color 0.4s ease;
}

#anchor1.content,
#anchor2.content {
  margin-top: var(--spacing-104);
}

@media (min-width: 751px) {
  .anchorlink-1.gap-30 {
    gap: 3.0rem;
  }
}

@media (max-width: 750px) {
  .anchorlink-1 {
    flex-direction: column;
    gap: 2rem;
  }

  .anchorlink-1 li {
    width: 100%;
    border-left: 1px solid var(--green-base);
    min-height: 7.6rem;
  }
}

/* ↑リンク、ボタン、テキストリンク↑ */

/* ↓カード↓ */
.card-list {
  display: flex;
  gap: 3.8rem;
  list-style: none;
}

@media (min-width: 751px) {
  .card-list {
    flex-wrap: wrap;
  }

  .card-list.column-3 {
    gap: 3.3rem;
  }

  .card-list.column-4 {
    gap: 4.2rem;
  }

  .card-list.column-2>* {
    width: calc((100% - 3.8rem) / 2);
  }

  .card-list.column-3>* {
    width: calc((100% - 6.6rem) / 3);
  }

  .card-list.column-4>* {
    width: calc((100% - 12.6rem) / 4);
  }
}

.card-1 {
  display: flex;
  align-items: flex-start;
  gap: 2.7rem;
  height: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 #E6EEEA;
  padding: 4.3rem 2.1rem 4.3rem 2.6rem;
}

.card-1>.media {
  flex: 0 0 35%;
  margin-inline: 0;
}

.card-1>.body {
  flex: 1;
  min-width: 0;
}

.card-1 .heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 1;
}

.card-1 .text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 2.2rem;
}

@media (max-width: 750px) {
  .card-1 {
    flex-direction: column;
    padding: 4.3rem 2.9rem 4.3rem 3.4rem;
  }

  .card-1,
  .card-1:has(.media.small) {
    gap: 1.7rem;
  }

  .card-1>.media {
    flex: 0 0 auto;
    width: 100%;
  }

  .card-1>.body {
    flex: none;
    width: 100%;
  }

  .card-1 .heading {
    font-size: 2.6rem;
    line-height: 1.5;
  }

  .card-1 .text {
    margin-top: 1.7rem;
  }

  .card-list {
    flex-direction: column;
  }
}

.card-1.company-group {
  /* pointer-events: none; */
  flex-direction: column;
}

.card-1.company-group .media {
  flex: initial;
  height: 5.6rem;
}

.card-1.company-group .body .heading {
  line-height: 1.5;
}

.card-2 {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 8px 0 #E6EEEA;
  padding: 4.3rem 2.1rem 4.3rem 2.6rem;
  height: 100%;
}

.card-2.compact {
  padding: 3.9rem 1.8rem 3.9rem 1.9rem;
}

.card-2:has(.icon) {
  padding-bottom: 2.27rem;
}

.card-2.compact:has(.icon) {
  padding-bottom: 1.17rem;
}

.card-2>.media {
  margin-inline: 2.7rem;
}

.card-2>.body {
  flex: 1;
  min-width: 0;
}

.card-2>.body:not(:has(.text))+.icon {
  margin-top: 2.3rem;
}

.card-2.compact>.body:not(:has(.text))+.icon {
  margin-top: 0.3rem;
}

.card-2 .heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 1.55;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 0.9rem;
}

.card-2 .text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 2.2rem;
}

.card-2 .icon {
  display: flex;
  margin-top: 0.4rem;
  margin-left: auto;
  margin-right: -0.2rem;
}

.card-2.cases-card-2 {
  border: 1px solid #CACACA;
  background: #FFF;
  box-shadow: none;
  padding: 5rem 4.1rem 0 4.1rem;
  transition: opacity 0.4s;
}

@media (min-width: 751px) {
  .card-2.cases-card-2:hover {
    opacity: 0.8;
  }
}

@media (max-width: 750px) {
  .card-2.cases-card-2 {
    padding: 3.4rem 2.7rem 0;
  }
}

.card-2.cases-card-2 .media {
  margin-left: 0;
  margin-right: 0;
}

.card-2.cases-card-2 .heading {
  font-size: 2rem;
  border-bottom: none;
  text-decoration: underline;
  text-align: left;
}

@media (max-width: 750px) {
  .card-2.cases-card-2 .heading {
    padding-bottom: 0;
  }
}

.card-2.cases-card-2>.body:not(:has(.text))+.icon {
  margin-top: 0;
}

.card-2.cases-card-2 .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-base);
  margin-right: -4.2rem;
  margin-bottom: -0.1rem;
  width: 4.5rem;
  height: 4.4rem;
  border-radius: 10px 0 10px 0;
}

@media (max-width: 750px) {
  .card-2.cases-card-2 .icon {
    margin-right: -2.7rem;
  }
}

.card-2.cases-card-2 .icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.card-3 {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--green-base);
  background: #fff;
  padding: 8rem 2.6rem 6.5rem;
  height: 100%;
}

.card-3>.badge {
  position: absolute;
  top: -2.1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: var(--green-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card-3>.badge .step {
  font-size: 1.5rem;
}

.card-3>.badge .num {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.card-3>.media {
  margin: 0 1.2rem 1.7rem;
}

.card-3>.media img {
  width: 100%;
  height: auto;
}

.card-3 .heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 1.8;
  text-align: center;
}

.card-3 .heading::after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 3rem;
  height: 2px;
  background-color: var(--green-light);
  margin-top: 1.3rem;
}

.card-3 .text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 1.8rem;
}

@media (max-width: 750px) {
  .card-list:has(.card-3) {
    gap: 7.0rem;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 100%;
  }
}

/* ↑カード↑ */

/* ↓テーブル↓ */
.table-1 {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black-base);
  border-collapse: separate;
  border-spacing: 0;
  background-color: #fff;
}

.table-1 th,
.table-1 td {
  padding: 1.6rem 3rem;
  border: 1px solid var(--gray-base);
  text-align: inherit;
}

.table-1 .center {
  text-align: center;
}

.table-1 th {
  background-color: var(--green-pale);
  font-weight: normal;
}

@media (max-width: 750px) {

  :not(.scrollable-table)>.table-1 th,
  :not(.scrollable-table)>.table-1 td {
    display: block;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .scrollable-table {
    overflow-x: scroll;
  }

  .scrollable-table>table {
    white-space: nowrap;
  }
}

/* ↑テーブル↑ */

/* ↓画像+テキスト↓ */
.media-object {
  display: flex;
  gap: 7.9rem;
  align-items: flex-start;
}

.media-object:has(.media.small) {
  gap: 7.5rem;
}

.media-object>.media {
  flex: 0 0 46%;
  margin-inline: 0;
}

.media-object>.media.small {
  flex: 0 0 31%;
}

.media-object>.body {
  flex: 1;
  min-width: 0;
  margin-top: 4.5rem;
}

.media-object:has(.media.small)>.body {
  margin-top: 1.7rem;
}

.media-object .heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 1.75;
}

.media-object .heading::after {
  content: "";
  display: block;
  width: 3.8rem;
  height: 2px;
  background-color: var(--green-light);
  margin-top: 1.8rem;
}

.media-object .text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 4.3rem;
}

.media-object.stack {
  flex-direction: column;
  gap: var(--spacing-16)
}

.media-object.stack>.media {
  margin-inline: 0;
  width: 100%;
}

.media-object.stack .heading {
  font-size: 2rem;
  text-decoration: underline;
}

.media-object.stack .heading::after {
  display: none;
}

.media-object.stack .text {
  margin-top: 0;
}

.media-object.sustainability-top {
  flex-direction: column;
  gap: var(--spacing-16);
}

.media-object.sustainability-top>* {
  display: flex;
}

.media-object.sustainability-top>.media {
  flex: none;
  align-items: stretch;
  justify-content: stretch;
  margin-inline: 0;
  width: 100%;
}

.media-object.sustainability-top .heading {
  color: #3A3A3A;
  width: 100%;
  font-size: 3.2rem;
  border-bottom: 1px solid var(--green-light);
  width: calc(100% - 4.4rem);
  margin-left: 2.2rem;
  margin-right: 2.2rem;
}

@media (min-width: 751px) {
  .media-object.sustainability-top .heading {
    width: calc(100% - 4.4rem);
    margin-left: 2.2rem;
    margin-right: 2.2rem;
  }
}

.media-object.sustainability-top>* {
  width: 100%;
}

.media-object.sustainability-top .heading::after {
  display: none;
}

.media-object.sustainability-top .text {
  margin-top: 0;
}

.media-object.sustainability-top .links {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (min-width: 751px) {
  .media-object.sustainability-top .links {
    border-bottom: 1px solid #cacaca;
    padding-bottom: 5.6rem;
  }
}

@media (max-width: 750px) {
  .media-object-list:has(.media-object.sustainability-top) li:last-child .media-object.sustainability-top .links {
    border-bottom: 1px solid #cacaca;
    padding-bottom: 7.4rem;
  }
}

.media-object.sustainability-top .links li {
  position: relative;
  padding-left: 1.2rem;

}

@media (min-width: 751px) {
  .media-object.sustainability-top .links li {
    width: calc(100% - 4.4rem);
    margin-left: 2.2rem;
    margin-right: 2.2rem;
  }
}

.media-object.sustainability-top .links a {
  display: flex;
  gap: 1.2rem;
  color: var(--green-base);
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.1;
  text-decoration: underline;
}

.media-object.sustainability-top .links a::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--green-base);
  margin-block-start: calc(((1lh - 1em) / 2) + .5em);
  translate: 0 -50%;
}

.media-object-list {
  display: flex;
  gap: 3.8rem;
  list-style: none;
}

.media-object-list>li {
  display: flex;
}

@media (min-width: 751px) {
  .media-object:not(.stack).reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 750px) {
  .media-object {
    flex-direction: column;
  }

  .media-object,
  .media-object:has(.media.small) {
    gap: var(--spacing-16)
  }

  .media-object>.media,
  .media-object>.media.small {
    flex: 0 0 auto;
    width: 100%;
  }

  .media-object>.body {
    flex: none;
    width: 100%;
    margin-top: 0;
  }

  .media-object .heading {
    font-size: 2.6rem;
  }

  .media-object .text {
    margin-top: 2.9rem;
  }

  .media-object-list {
    flex-direction: column;
  }

  .media-object-list:has(.media-object.sustainability-top) {
    gap: 8rem;
  }

  .media-object.sustainability-top .heading {
    font-size: 2rem;
    width: 100%;
  }

  .media-object.sustainability-top> :not(.media) {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ↑画像+テキスト↑ */

/* ↓アコーディオン↓ */
.accordion-1 [data-accordion="trigger"] {
  position: relative;
  text-align: justify;
  display: flex;
  align-items: center;
  gap: 0 var(--spacing-16);
  background-color: #fff;
  width: 100%;
  padding-block: 0.9rem;
  padding-inline: 2.7rem var(--spacing-32);
  font-size: 2rem;
  font-weight: 900;
  line-height: 2.2;
  border-radius: 1rem;
  border: 1px solid #cacaca;
}

.accordion-1.open [data-accordion="trigger"] {
  border-radius: 1rem 1rem 0 0;
}

.accordion-1 [data-accordion="trigger"]::before,
.accordion-1 [data-accordion="trigger"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  translate: 0 -50%;
  width: 1.4rem;
  height: 0.2rem;
  background-color: var(--green-base);
  transition: rotate 0.3s;
}

.accordion-1 [data-accordion="trigger"]::after {
  rotate: 90deg;
}

.accordion-1 [data-accordion="trigger"] .number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-light);
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: calc(infinity * 1px);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-base);
}

.accordion-1 .accordion-container {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  border-left: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}

.accordion-1 [data-accordion="trigger"][aria-expanded="false"]+.accordion-container {
  max-height: 0;
}

.accordion-1 [data-accordion="trigger"][aria-expanded="true"]::after {
  rotate: 0deg;
}

.accordion-1 .accordion-container .accordion-inner {
  padding: 1.8rem 2.7rem;
  overflow: hidden;
}

.accordion-1 .accordion-container .accordion-inner p {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--black-base);
}

@media (max-width: 750px) {
  .accordion-1 [data-accordion="trigger"] {
    padding-inline: var(--spacing-24) var(--spacing-48);
    font-size: 1.8rem;
  }

  .accordion-1 [data-accordion="trigger"]::before,
  .accordion-1 [data-accordion="trigger"]::after {
    right: 2rem;
  }

  .accordion-1 [data-accordion="trigger"] .number {
    font-size: 1.4rem;
  }
}

/* ↑アコーディオン↑ */


/* ↓ラベル↓ */
.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  padding: 0.6rem 0.4rem;
  min-width: 7.4rem;
  font-size: 1.4rem;
  color: #fff;
}

.label.green {
  background-color: #CDE2D7;
  color: var(--green-base);
}

.label.blue {
  background-color: #d9eced;
  color: #1B78A0;
}

.label.purple {
  background-color: #e0cbe4;
  color: #9328a7;
}

.label.green-light {
  background-color: var(--green-light);
  color: #333;
}

.label.rounded {
  border-radius: 9999rem;
}

.label-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

/* ↑ラベル↑ */


/* ↓Cookie利用同意↓ */
.gdpr-box {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--green-pale);
  padding: 4.7rem 6rem 4.7rem 5rem;
  z-index: 100;
  transition: transform 1s;
  transform: translateY(0);
  display: none;
}

.gdpr-box.is-visible {
  display: block;
}

.gdpr-box.no-fixed {
  position: static;
}

.gdpr-box-inner {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8rem;
  margin-left: auto;
  margin-right: auto;
}

.gdpr-box.ok {
  transition-delay: 0s;
  transform: translateY(500px);
}

.gdpr-box p {
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.gdpr-box .gdpr-btn {
  flex: 0 0 auto;
  width: 30.4rem;
}

.gdpr-box .gdpr-btn .icon {
  display: inline-block;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.2rem;
  margin-right: 1.1rem;
}

.gdpr-box .gdpr-btn .icon::before,
.gdpr-box .gdpr-btn .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.2rem;
  height: 1.8rem;
  background: currentColor;
}

.gdpr-box .gdpr-btn .icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.gdpr-box .gdpr-btn .icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 750px) {
  .gdpr-box {
    padding: 1rem;
    padding: 3.3rem 1.5rem 3.5rem 1.5rem;
  }

  .gdpr-box-inner {
    gap: 3rem;
    flex-direction: column;
    width: 100%;
  }

  .gdpr-box .gdpr-btn {
    flex: none;
  }

  .gdpr-box p {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* ↑Cookie利用同意↑ */


/* ↓ニュース、お知らせの時系列情報↓ */
.news-list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--spacing-32);
  border-bottom: 1px solid var(--gray-base);
  padding-block: 1.8rem;
  padding-inline: 13rem 3rem;
}

@media (min-width: 751px) {
  .news-list li a:hover {
    opacity: 1;
  }
}

.news-list li a .wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.news-list li a .wrap .label-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  max-width: 20rem;
}

.news-list li a .wrap .date {
  font-size: 1.4rem;
  color: var(--black-base);
}

.news-list li a .text {
  text-align: justify;
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--black-base);
  transition: color 0.4s ease;
}

@media (min-width: 751px) {
  .news-list li a.green:hover .text {
    color: var(--green-base);
  }

  .news-list li a.blue:hover .text {
    color: #1B78A0;
  }

  .news-list li a.purple:hover .text {
    color: #9328a7;
  }
}

@media (max-width: 750px) {
  .news-list li a {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
    padding-block: 2.7rem;
    padding-right: 2.4rem;
  }

  .news-list li a {
    align-items: start;
    gap: 1.2rem;
    padding-inline: 0;
  }

  .news-list li a .wrap {
    gap: 0.8rem;
  }
}

/* ↑ニュース、お知らせの時系列情報↑ */


/* ↓CV、CPA（お問い合せ、お申し込み）セクション↓ */
.section-inquiry {
  text-align: center;
  background-color: var(--green-base);
  padding-block: 5.7rem 8.9rem;
  padding-top: 5.7rem;
  padding-bottom: 8.9rem;
}

.section-inquiry .text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}

.section-inquiry .inquiry-btn {
  width: 70rem;
  box-shadow: 0 2px 12px 0 #066032;
  margin-top: var(--spacing-40);
}

@media (max-width: 750px) {
  .section-inquiry {
    padding-top: 6rem;
    padding-bottom: 5.8rem;
  }

  .section-inquiry .text {
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .section-inquiry .inquiry-btn {
    margin-top: 2.8rem;
  }
}

/* ↑CV、CPA（お問い合せ、お申し込み）セクション↑ */


/* ↓画像↓ */
.image-1 {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5.5rem;
  color: #333;
}

.image-list.column-2>p {
  width: calc((100% - 5.5rem) / 2);
}

.image-list.column-3 {
  gap: 3.4rem;
}

.image-list.column-3>p {
  width: calc((100% - 6.8rem) / 3);
}

.image-1 .caption,
.image-list .caption {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: var(--spacing-16);
  color: #9B9B9B;
}

@media (max-width: 750px) {
  .image-list {
    flex-direction: column;
  }

  .image-list.column-2>p,
  .image-list.column-3>p {
    width: fit-content;
  }
}

/* ↑画像↑ */

/* ↓部署別お問い合わせ先↓ */
.contact-dept-list {
  display: flex;
  gap: 3.4rem;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.contact-dept-list.no-wrap {
  flex-wrap: nowrap;
}

.contact-dept-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3.3rem 4.5rem 5.6rem;
}

.contact-dept-badge {
  background: var(--green-base);
  color: #fff;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.06em;
  text-align: center;
  width: 100%;
}

.contact-dept-badge+.contact-dept-name {
  margin-top: 2.7rem;
}

.contact-dept-name {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--gray-dark);
}

.contact-dept-name.no-border {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-dept-name.no-border+.contact-dept-phones {
  margin-top: 1rem;
}

.contact-dept-divider {
  margin-top: 1.2rem;
  width: 100%;
  height: 1px;
  background-color: var(--gray-dark);
}

.contact-dept-phones {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
  width: 100%;
}

.contact-dept-phone-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-dept-area {
  display: inline-block;
  background: var(--green-light);
  color: #333;
  border-radius: 99rem;
  padding: 0.2rem 1rem;
  font-size: 1.4rem;
  line-height: 2;
}

.contact-dept-tel {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--green-base);
  line-height: 1.3;
  letter-spacing: -0.025em;
  /* white-space: nowrap; */
}

.contact-dept-list .button-1.button-inquiry {
  width: 100%;
  margin-top: 3.9rem;
  height: auto;
}

@media (min-width: 751px) {
  .contact-dept-list.full .contact-dept-item {
    width: 63.1rem;
    max-width: 50%;
  }
}

@media (min-width: 1413px) {
  .contact-dept-phone-group:nth-child(n+2)::before {
    position: absolute;
    bottom: 0;
    left: -1.8rem;
    display: block;
    content: "";
    width: 1px;
    height: 85%;
    background-color: var(--gray-dark);
  }
}

@media (min-width: 751px) and (max-width: 1412px) {
  .contact-dept-list.full .contact-dept-phones {
    flex-wrap: wrap;
  }

  .contact-dept-list.full .contact-dept-phone-group {
    width: 100%;
  }

  .contact-dept-list.full .contact-dept-phone-group:nth-child(n+2)::before {
    position: absolute;
    top: -2rem;
    left: 50%;
    translate: -50% 0;
    display: block;
    content: "";
    width: 5rem;
    height: 1px;
    background-color: var(--gray-dark);
  }
}

@media (max-width: 750px) {
  .contact-dept-list {
    flex-direction: column;
    gap: 4rem;
  }

  .contact-dept-item {
    padding: 3.3rem 1.8rem var(--spacing-64);
    min-width: inherit;
  }

  .contact-dept-phones {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.7rem;
  }

  .contact-dept-phones-sep {
    display: none;
  }

  .contact-dept-list .button-1.button-inquiry {
    margin: 3.9rem 0.9rem 0;
  }
}

/* ↑部署別お問い合わせ先↑ */


/* ↓パンくずリスト↓ */
.breadcrumbs {
  font-size: 1.3rem;
  color: #333;
  line-height: 2.1;

}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li+li::before {
  content: ">";
  color: #a1a1a1;
  margin: 0 var(--spacing-8);
}

.breadcrumbs a {
  color: var(--green-base);
  letter-spacing: 0.048em;
  text-decoration: none;
}

.breadcrumbs li {
  color: #333;
  letter-spacing: normal;
}

.breadcrumbs:has(+ .enterprise-mv) {
  position: relative;
  z-index: 1;
}

@media (min-width: 751px) {
  .breadcrumbs:has(+ .enterprise-mv) {
    translate: 0 100%;
  }
}

@media (max-width: 750px) {
  .breadcrumbs+.enterprise-mv {
    margin-top: 1.1rem;
  }
}

/* ↑パンくずリスト↑ */

/* ↓ユニーク（各事業トップMV）↓ */
.enterprise-mv {
  position: relative;
}

.enterprise-mv .breadcrumbs {
  font-size: 1.3rem;
}

.enterprise-mv .inner.inner-enterprise-mv-body {
  position: relative;
  max-width: none;
  min-height: 50.4rem;
  margin-left: auto;
  margin-right: 0;
  max-width: calc(164rem + (100% - 164rem) / 2);
}

.enterprise-mv .inner.inner-enterprise-mv-image {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: 0;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  height: 50.4rem;
  max-width: calc(164rem + (100% - 164rem) / 2);
}

.enterprise-mv .image {
  margin-left: 24%;
  height: 100%;
}

.enterprise-mv .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4rem 0 0 4rem;
}

.enterprise-mv .body {
  position: absolute;
  left: 6rem;
  top: 50%;
  translate: 0 -50%;
  width: 35%;
  background: #fff;
  border-radius: 2rem;
  padding: 6.9rem 4.5rem 4.8rem 6.7rem;
  z-index: 1;
}

.enterprise-mv .heading {
  color: var(--green-base);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 5.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--green-light);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}

.enterprise-mv .body>p {
  font-size: 2rem;
  line-height: 1.8;
  color: #333;
  margin-top: 2rem;
}

/* enterprise-mv */
@media (min-width: 751px) {
  .enterprise-mv .body {
    width: 45%;
    max-width: 72.8rem;
  }
}

@media (max-width: 750px) {

  .enterprise-mv .inner.inner-enterprise-mv-body {
    min-height: inherit;
  }

  .enterprise-mv .inner.inner-enterprise-mv-image {
    top: 0;
    height: auto;
    overflow: inherit;
  }

  .enterprise-mv .image {
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    width: calc(100% - 2.1rem);
    height: auto;
    margin-left: 2.1rem;
    height: auto;
    border-radius: 4rem 0 0 4rem;
  }

  .enterprise-mv .inner.inner-enterprise-mv-body {
    padding-top: 38.5%;
    padding-right: 0;
  }

  .enterprise-mv .body {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    translate: 0;
    width: 100%;
    padding: 2.6rem 2.4rem 4rem;
    z-index: 1;
    border-radius: 4rem 0 0 4rem;
  }

  .enterprise-mv .inner.inner-enterprise-mv-body {
    position: static;
    top: auto;
  }

  .enterprise-mv .heading {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }

  .enterprise-mv .body>p {
    font-size: 2rem;
    margin-top: 1.3rem;
  }
}

/* ↑ユニーク（各事業トップMV）↑ */

/* ↓下層ページトップMV↓ */
.page-mv {
  background: linear-gradient(90deg, #fff 0%, #bdd9c0 99.58%);
  padding: 7.8rem 0 9.2rem;
}

.page-mv:has(.labels + .headings) {
  padding: 4.3rem 0 7.7rem;
}

.page-mv .inner>*+* {
  margin-top: 1.7rem;
}

.page-mv .labels {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-16);
}

.page-mv .page-mv-label {
  font-weight: 500;
}

.page-mv .headings {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: baseline;
}

.page-mv .heading {
  font-size: 4rem;
  line-height: 1.12;
  color: #333;
  font-weight: 700;
}

.page-mv .heading.green-small {
  color: var(--green-base);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 750px) {
  .page-mv {
    padding: 4.5rem 0 4.5rem;
  }

  .page-mv:has(.labels + .headings) {
    padding: 3rem 0 3.5rem;
  }

  .page-mv .labels {
    gap: var(--spacing-8);
  }

  .page-mv .inner>*+* {
    margin-top: 0.8rem;
  }

  .page-mv .headings {
    gap: var(--spacing-8);
  }

  .page-mv .heading {
    font-size: 2.6rem;
    line-height: 1.4;
  }

  .page-mv .heading.green-small {
    font-size: 1.3rem;
  }
}

/* ↑下層ページトップMV↑ */

/* ↓ユニーク（事業ページ お問い合わせ）↓ */
.contact-dept {
  background-color: var(--green-pale);
  padding-top: 6.3rem;
  padding-bottom: 14.1rem;
}

@media (max-width: 750px) {
  .contact-dept {
    padding-top: 4.4rem;
    padding-bottom: 9.8rem;
  }
}

.contact-dept .hgroup .heading {
  position: relative;
  display: flex;
  justify-content: center;
  background: none;
  padding-bottom: 1.5rem;
}

@media (max-width: 750px) {
  .contact-dept .hgroup .heading {
    font-size: 2.8rem;
  }
}

.contact-dept .hgroup .heading::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  translate: -50% 0%;
  width: 6.6rem;
  height: 1px;
  background-image: linear-gradient(90deg, var(--green-base) 0 50%, var(--green-light) 50%);
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: bottom;
}

@media (max-width: 750px) {
  .contact-dept .hgroup .heading::after {
    width: 10rem;
  }
}

.contact-dept .hgroup .text {
  text-align: center;
  margin-top: 1.8rem;
}

.contact-dept .contact-dept-list {
  margin-top: 3.3rem;
}

@media (max-width: 750px) {
  .contact-dept .contact-dept-list {
    gap: 1.4rem;
  }

  .contact-dept .contact-dept-item {
    padding: 2.9rem 2rem 4.7rem;
  }
}

/* ↑ユニーク（事業ページ お問い合わせ）↑ */

/* ↓ユニーク（事業ページ 事業紹介）↓ */
.nav-dept {
  padding-top: 5.2rem;
  padding-bottom: 10.2rem;
  background-color: #fff;
}

@media (max-width: 750px) {
  .nav-dept {
    padding-top: 4rem;
    padding-bottom: 7.9rem;
  }
}

.nav-dept .hgroup .heading {
  display: flex;
  justify-content: center;
  text-align: center;
  border-bottom: none;
}

.nav-dept .heading::before {
  display: none;
}

.nav-dept .nav-dept-card-list {
  margin-top: 4.3rem;
}

@media (max-width: 750px) {
  .nav-dept .nav-dept-card-list {
    gap: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 750px) {
  .nav-dept .hgroup .heading {
    font-size: 2.8rem;
    line-height: 2;
    padding-bottom: 0;
    margin-left: 0;
  }
}

.nav-dept .nav-dept-card-1 {
  position: relative;
  background-color: var(--green-base);
  gap: 1.4rem;
  padding: 2.6rem 2rem 3rem;
}

@media (min-width: 751px) {
  .nav-dept .nav-dept-card-1 .body {
    margin-top: 1.2rem;
  }
}

@media (max-width: 750px) {
  .nav-dept .nav-dept-card-1 {
    gap: 1.1rem;
    padding: 2.8rem 2.8rem 3.1rem 2.6rem;
  }
}

.nav-dept .nav-dept-card-1 .heading {
  color: #fff;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 1.3rem;
}

@media (max-width: 750px) {
  .nav-dept .nav-dept-card-1 .heading {
    margin-top: 0.4rem;
  }
}

.nav-dept .nav-dept-card-1 .label {
  color: var(--green-base);
  min-width: inherit;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  font-size: 1.3rem;
}

.nav-dept .nav-dept-card-1 .icon {
  position: absolute;
  bottom: 0.9rem;
  right: 1.4rem;
}

.nav-dept .nav-dept-card-1 .icon svg {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  color: #fff;
}

/* ↑ユニーク（事業ページ 事業紹介）↑ */

/* ↓下層ページリンク集↓ */
.nav-green-buttons {
  background-color: #fff;
  padding-top: 5.2rem;
  padding-bottom: 11.5rem;
}

@media (max-width: 750px) {
  .nav-green-buttons {
    padding-top: var(--spacing-48);
    padding-bottom: 10.2rem;
  }
}

.nav-green-buttons .hgroup .heading {
  display: flex;
  justify-content: center;
  text-align: center;
  border-bottom: none;
  border-left: none;
  padding-bottom: 0;
}

.nav-green-buttons .heading::before {
  display: none;
}

.nav-green-buttons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2.9rem 3rem;
  margin-top: 4.9rem;
}

@media (max-width: 750px) {
  .nav-green-buttons ul {
    margin-top: 4.7rem;
  }
}

.nav-green-buttons ul li {
  width: calc((100% - 9rem) / 4);
}

.nav-green-buttons ul li a {
  width: 100%;
}

@media (max-width: 750px) {
  .nav-green-buttons ul li {
    width: 100%;
  }

  .nav-green-buttons ul li[aria-hidden=true] {
    display: none;
  }
}

/* ↑下層ページリンク集↑ */

/* ↓モーダル↓ */
.modal {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
  transition: 0.4s;
}

.modal {
  position: fixed;
  top: 0;
  height: 100dvh;
  overscroll-behavior: contain;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 5.8rem 8rem;
  z-index: 10;
}

.modal:not([open]) {
  display: none;
}

.modal::backdrop {
  background: rgba(40, 38, 38, 0.59);
  opacity: 1;
  transition: 0.4s;
}

.modal.in-transition,
.modal.in-transition::backdrop {
  opacity: 0;
}

.modal .inner.inner-modal {
  position: relative;
  margin-top: auto;
  margin-bottom: auto;
}

.modal .modal-window {
  position: relative;
  max-width: 124rem;
  width: 100%;
  overflow: visible;
  margin-inline: auto;
  margin-block: auto;
  overscroll-behavior: contain;
  background-color: #f9f9f9;
  padding: 1rem 0.9rem 0 0.9rem;
}

.modal .modal-floating-close {
  position: absolute;
  top: -4rem;
  right: 3rem;
  width: 7.6rem;
  height: 7.6rem;
  background: #3a3a3a;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  backface-visibility: hidden;
  transition: background-color 0.4s ease;
}

@media (min-width: 751px) {
  .modal .modal-floating-close:hover {
    background-color: var(--green-base);
  }
}

.modal .modal-header {
  background: var(--green-base);
  padding: 5rem 3rem;
  box-shadow: 0 4px 4px #7cb396;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.modal .modal-before-after {
  display: flex;
  padding: 3.9rem 3.6rem 0;
  gap: 3.7rem;
  align-items: flex-end;
}

.modal .modal-before,
.modal .modal-after {
  flex: 1;
}

.modal .modal-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  margin-top: 1.6rem;
}

.modal .modal-badge.before {
  background: #c4d700;
  color: #000;
}

.modal .modal-badge.after {
  background: var(--green-base);
  color: #fff;
}

.modal .modal-section {
  padding: 2.8rem 3.9rem 0;
}

.modal .modal-section:last-of-type {
  padding-bottom: 3rem;
}

.modal .modal-section-heading {
  margin-bottom: 2.2rem;
}

.modal .modal-section-title {
  font-size: 3rem;
  line-height: 1.86;
  background-image: linear-gradient(90deg, var(--green-base) 0 25%, #e4e4e4 25%);
}

.modal .modal-section-box {
  background: #fff;
  padding: 3rem
}

.modal .modal-footer {
  background: var(--black-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
  margin-left: -0.9rem;
  margin-right: -0.9rem;
}

.modal .modal-close-btn {
  background: none;
  border: none;
  width: 100%;
  height: 6.4rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
  transition: background-color 0.4s ease;
}

.modal .modal-plane-table {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media (min-width: 751px) {
  .modal .modal-plane-table th {
    padding-right: 1.6rem;
  }

  .modal .modal-close-btn:hover {
    background-color: var(--green-base);
  }
}

@media (max-width: 750px) {
  .modal {
    padding-top: 8.9rem;
    padding-bottom: 8.9rem;
  }

  .modal .modal-window {
    padding: 1.8rem 1.9rem 0;
  }

  .modal .modal-floating-close {
    top: -8.2rem;
    right: 0.8rem;
    width: 5.4rem;
    height: 5.4rem;
  }

  .modal .modal-header {
    padding: 1rem 3rem;
    min-height: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal .modal-header {
    font-size: 2.4rem;
    line-height: 1.83;
    white-space: normal;
  }

  .modal .modal-section {
    padding: 3.6rem 0 0 0;
  }

  .modal .modal-before-after {
    flex-direction: column;
    padding: 0;
    gap: 3.9rem;
    margin-top: 2.5rem;
  }

  .modal .modal-section-title {
    font-size: 2.4rem;
    margin-left: 0;
    background-image: linear-gradient(90deg, var(--green-base) 0 50%, #e4e4e4 50%);
  }

  .modal .modal-section-heading {
    margin-bottom: 4rem;
  }

  .modal .modal-section-heading::after {
    background: linear-gradient(to right, var(--green-base) 50%, #dfdfdf 50%);
  }

  .modal .modal-plane-table,
  .modal .modal-plane-table tbody,
  .modal .modal-plane-table tr,
  .modal .modal-plane-table th,
  .modal .modal-plane-table td {
    display: block;
    width: 100%;
  }

  .modal .modal-table th,
  .modal .modal-table td {
    padding: 1.6rem;
  }

  .modal .modal-section-box {
    padding: 0.8rem 1.4rem;
  }

  .modal .modal-section-box ul {
    width: 100%;
  }

  .modal .modal-footer {
    margin-left: -1.9rem;
    margin-right: -1.9rem;
  }
}

/* ↑モーダル↑ */

/* ↓ボックス↓ */
.box {
  padding: 2.2rem 3rem;
  background-color: #fff;
}

.box.border {
  border: 1px solid #D9D9D9;
}

.box .heading {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  line-height: 2.2;
}

.box .heading.sm {
  font-size: 1.6rem;
}

/* ↑ボックス↑ */

/* ↓ユニーク（ビル事業物件情報ページ ビル一覧）↓ */
.building-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.9rem 2.4rem;
  list-style: none;
}

@media (min-width: 751px) {
  .building-card-list>* {
    width: calc((100% - 2.4rem) / 2);
  }
}

@media (max-width: 750px) {
  .building-card-list {
    gap: 2rem;
  }
}

.building-card {
  display: flex;
  height: 100%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 4.8rem 3rem 4.8rem 3.7rem;
  gap: 3.8rem;
}

.building-card .image {
  flex: 0 0 40%;
}

.building-card .image img {
  display: block;
}

/* .building-card .image img.fix-img {
  height: 100%;
  object-fit: cover;
} */

.building-card .body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.building-card h3.name {
  font-size: 2rem;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.8;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #000;
}

.building-card .info {
  margin-top: 2.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.building-card .info .label {
  margin-top: 0;
  width: fit-content;
}

.building-card .info .label+.label {
  margin-top: 2rem;
}

.building-card .info .info-text {
  line-height: 1.8;
  margin-top: 0.4rem;
}

.building-card .info .info-text+.label {
  margin-top: 1.9rem;
}

.building-card-btn {
  gap: 0 0.8rem;
  height: auto;
  margin-top: 2.2rem;
  width: 30.4rem;
}

.building-card-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  aspect-ratio: 1;
  fill: #fff;
}

.building-card-btn .icon svg {
  width: 100%;
  height: auto;
}

@media (min-width: 751px) {
  .building-card-btn .icon {
    transition: fill 0.4s ease;
  }

  .building-card-btn:hover .icon {
    fill: #000;
  }
}

@media (max-width: 750px) {
  .building-card-list>* {
    width: 100%;
  }

  .building-card {
    flex-direction: column;
    padding: 3.5rem var(--spacing-16) 3.9rem;
    gap: 2.2rem;
  }

  .building-card .image {
    flex: none;
    margin-left: var(--spacing-16);
    margin-right: var(--spacing-16);
  }

  .building-card-btn {
    width: 100%;
  }
}

/* ↑ユニーク（ビル事業物件情報ページ ビル一覧）↑ */