@charset "UTF-8";

/* mv */
.mv {
  position: relative;
  padding-top: 6.4rem;
  padding-left: 6rem;
  background-image: var(--texture-rough);
  background-repeat: repeat;
  background-size: 40rem 40rem;
}
.mv .mv-slider {
  position: relative;
}
.mv .mv-slider li {
  display: flex !important;
}
.mv .mv-slider li .wrap {
  flex-shrink: 0;
  margin-block: 3.2rem;
  border-radius: 2rem 0 0 2rem;
  padding: 1.6rem 2.4rem;
  background-color: #fff;
  max-width: 58rem;
  min-height: 58rem;
  width: 100%;
  pointer-events: auto;
}
.mv .mv-slider li .wrap a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--green-base);
}
.mv .mv-slider li .wrap a.name {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--green-base);
  text-decoration: underline;
  text-decoration-color: var(--green-light);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.3rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
  color 0.4s ease,
    text-decoration-color 0.4s ease;
}
@media (min-width: 751px) {
  .mv .mv-slider li .wrap a.name:hover {
    color: var(--green-light);
    text-decoration-color: var(--green-light);
    opacity: 1;
  }
}
.mv .mv-slider li .wrap .contents {
  text-align: justify;
  margin-inline: auto;
  max-width: 44rem;
  width: 100%;
}
.mv .mv-slider li .wrap .contents h2 {
  margin-top: 4rem;
  font-size: 4rem;  
  font-weight: 700;
  line-height: 1.5;
  color: #3A3A3A;
}
.mv .mv-slider li .wrap .contents h2 figure {
  width: 32rem;
  aspect-ratio: 126 / 30;
}
.mv .mv-slider li .wrap .contents p {
  margin-top: 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: #5C5C5C;
}
.mv .mv-slider li .wrap .contents a.btn-detail {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.2rem;
  padding: 1.6rem 2.4rem;
  min-width: 18rem;
  background-color: var(--green-base);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 2rem;
  border: none;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (min-width: 751px) {
  .mv .mv-slider li .wrap .contents a.btn-detail:hover {
    opacity: 0.9;
  }
}
.mv .mv-slider li .wrap .contents a.btn-detail .arrow {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 0.2rem;
}
.mv .mv-slider li > figure {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}
.mv .mv-slider li > figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem 0 0 2rem;
}
.mv .slick-list {
  pointer-events: none;
}
.mv .slick-dots {
  position: absolute;
  left: 3.2rem;
  bottom: 5.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1;
  pointer-events: auto;
}
.mv .slick-dots::after {
  display: none;
}
.mv .slick-dots li {
  margin: 0;
  width: 11.6rem;
}
.mv .slick-dots li button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Cabinet Grotesk", sans-serif;
  line-height: 1.5;
  color: #000;
  gap: 0.4rem;
}
.mv .slick-dots li button::before {
  display: none;
}
.mv .slick-dots li button .mv-dot-num {
  display: block;
}
.mv .slick-dots li button .mv-dot-track {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #9B9B9B;
  overflow: hidden;
}
.mv .slick-dots li button .mv-dot-progress {
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--green-base);
}
.mv .slick-dots li button .mv-dot-progress.mv-dot-progress-run {
  animation: mv-dot-fill 7000ms linear forwards;
}
@keyframes mv-dot-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* news */
.news {
  padding-block: 5.6rem 10rem;
  background-image: var(--texture-rough);
  background-repeat: repeat;
  background-size: 40rem 40rem;
}
.news .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.news .heading .more {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black-base);
}
.news .heading .more .arrow {
  background-color: var(--green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(infinity * 1px);
  width: 4rem;
  aspect-ratio: 1;
}
.news .heading .more .arrow svg {
  width: 1.2rem;
  height: auto;
}
.news .heading .more .arrow svg path {
  fill: var(--green-base);
}
.news .list {
  margin-top: 4rem;
}
.news .list li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  border-bottom: 1px solid var(--gray-base);
  padding-block: 2rem;
  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 .label-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  padding: 0.6rem 0.8rem;
  min-width: 8.2rem;
  font-size: 1.4rem;
  color: #fff;
}
.news .list li a .wrap .label-list li.green {
  background-color: #CDE2D7;
  color: var(--green-base);
}
.news .list li a .wrap .label-list li.blue {
  background-color: #D9ECED;
  color: #1B78A0;
}
.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;
  }
}
/* our-business */
.our-business {
  position: relative;
  background-color: var(--green-base);
  padding-block: 10rem 16rem;
}
.our-business::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 118.6rem;
  aspect-ratio: 1186 / 791;
  background: url("/assets-renewal/images/top/bg-our-business.png") no-repeat top right / contain;
}
.our-business .heading {
  position: relative;
  z-index: 1;
}
.our-business .heading .desc {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
.our-business ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  margin-top: 7.2rem;
}
.our-business ul li {
  flex: 1 1 calc((100% - 6.4rem) / 3);
}
.our-business ul li:last-child {
  flex: 1 1 100%;
}
.our-business ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-base);
  border-radius: 1rem;
  padding: 4rem 2.4rem;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(149, 149, 149, 0.15);
  transition: border-color 0.4s ease;
}
.our-business ul li:last-child a {
  flex-direction: initial;
  gap: 0 6.4rem;
}
@media (min-width: 751px) {
  .our-business ul li a:hover {
    opacity: 1;
  }
}
.our-business ul li:last-child a figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
}
.our-business ul li:last-child a figure img {
  width: 32.4rem;
  aspect-ratio: 324 / 36;
}
.our-business ul li a .wrap {
  display: flex;
  flex-direction: column;
}
.our-business ul li:not(:last-child) a .wrap {
  flex: 1 1 0%;
  min-height: 0;
}
.our-business ul li a .wrap h3 {
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
  color: var(--green-base);
}
.our-business ul li:not(:last-child) a .wrap h3 {
  min-height: 10rem;
}
.our-business ul li a .wrap h3 span[lang="en"] {
  border-radius: calc(infinity * 1px);
  padding: 0.4rem 0.8rem;
  background-color: var(--green-light);
  width: fit-content;
  font-size: 1.4rem;
  line-height: 1.4;
}
.our-business ul li a .wrap h3 span[lang="ja"] {
  margin-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
}
.our-business ul li a .wrap p.text {
  flex: 1 1 0%;
  min-height: 0;
  text-align: justify;
  margin-top: 0.8rem;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--green-base);
}
.our-business ul li a .wrap .more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  margin-left: auto;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  border-radius: calc(infinity * 1px);
  background-color: var(--green-base);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  transition:
  color 0.4s ease,
  background-color 0.4s ease;
}
@media (min-width: 751px) {
  .our-business ul li a:hover .wrap .more {
    color: var(--green-base);
    background-color: #fff;
  }
}
.our-business ul li a .wrap .more[target="_blank"] {
  gap: 0 0.8rem;
}
.our-business ul li a .wrap .more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  margin-left: 0.6rem;
}
.our-business ul li a .wrap .more .arrow svg {
  width: 100%;
  height: auto;
  color: #fff;
  transition: color 0.4s ease;
}
.our-business ul li a .wrap .more[target="_blank"] svg path {
  transition: fill 0.4s ease;
}
@media (min-width: 751px) {
  .our-business ul li a:hover .wrap .more .arrow svg {
    color: var(--green-base);
  }
  .our-business ul li a:hover .wrap .more[target="_blank"] svg path {
    fill: var(--green-base);
  }
}
/* company&sustainability */
.company {
  padding-block: 13.6rem 10.4rem;
  background-image: var(--texture-rough);
  background-repeat: repeat;
  background-size: 40rem 40rem;
}
.sustainability {
  padding-block: 13.6rem 10.4rem;
  background-color: #fff;
}
.company ul.card-list,
.sustainability ul.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  margin-top: 7.2rem;
}
.company ul.card-list li,
.sustainability ul.card-list li {
  flex: 1 1 calc((100% - 6.4rem) / 3);
}
.company ul.card-list li a,
.sustainability ul.card-list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-base);
  border-radius: 1rem;
  padding: 4rem 2.4rem;
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(149, 149, 149, 0.15);
  transition: border-color 0.4s ease;
}
@media (min-width: 751px) {
  .company ul.card-list li a:hover,
  .sustainability ul.card-list li a:hover {
    opacity: 1;
  }
}
.company ul.card-list li a .wrap,
.sustainability ul.card-list li a .wrap {
  display: flex;
  flex-direction: column;
}
.company ul.card-list li a .wrap h3,
.sustainability ul.card-list li a .wrap h3 {
  display: flex;
  flex-direction: column;
  margin-top: 2.4rem;
  border-bottom: 1px solid var(--gray-dark);
  padding-bottom: 1.6rem;
  color: var(--green-base);
}
.company ul.card-list li a .wrap h3 span[lang="ja"],
.sustainability ul.card-list li a .wrap h3 span[lang="ja"] {
  margin-top: 0.8rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.7;
}
.company ul.card-list li a .wrap .more,
.sustainability ul.card-list li a .wrap .more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  margin-left: auto;
  width: fit-content;
  padding: 0.4rem 1.2rem;
  border-radius: calc(infinity * 1px);
  background-color: var(--green-base);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  transition:
  color 0.4s ease,
  background-color 0.4s ease;
}
@media (min-width: 751px) {
  .company ul.card-list li a:hover .wrap .more,
  .sustainability ul.card-list li a:hover .wrap .more {
    color: var(--green-base);
    background-color: #fff;
  }
}
.company ul.card-list li a .wrap .more .arrow,
.sustainability ul.card-list li a .wrap .more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  margin-left: 0.6rem;
}
.company ul.card-list li a .wrap .more .arrow svg,
.sustainability ul.card-list li a .wrap .more .arrow svg {
  width: 100%;
  height: auto;
  color: #fff;
  transition: color 0.4s ease;
}
@media (min-width: 751px) {
  .company ul.card-list li a:hover .wrap .more .arrow svg,
  .sustainability ul.card-list li a:hover .wrap .more .arrow svg {
    color: var(--green-base);
  }
}
.company ul.link-list,
.sustainability ul.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  margin-top: 7.2rem;
}
.company ul.link-list li,
.sustainability ul.link-list li {
  width: calc((100% - 9.6rem) / 4);
}
.company ul.link-list li a,
.sustainability ul.link-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.6rem 2.4rem;
  border: 1px solid var(--green-base);
  border-radius: 1rem;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--green-base);
  box-shadow: 0 4px 8px 0 rgba(149, 149, 149, 0.15);
  transition: opacity 0.3s;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}
@media (min-width: 751px) {
  .company ul.link-list li a:hover,
  .sustainability ul.link-list li a:hover {
    opacity: 1;
    background-color: var(--green-base);
    color: #fff;
  }
}
.company ul.link-list li a .arrow,
.sustainability ul.link-list li a .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  flex-shrink: 0;
  margin-left: 0.8rem;
}
.company ul.link-list li a .arrow svg,
.sustainability ul.link-list li a .arrow svg {
  width: 100%;
  height: auto;
  color: #000;
  transition: color 0.4s ease;
}
@media (min-width: 751px) {
  .company ul.link-list li a:hover .arrow svg,
  .sustainability ul.link-list li a:hover .arrow svg {
    color: #fff;
  }
}
.company .more-btn,
.sustainability .more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8.8rem;
  margin-inline: auto;
  width: 36.4rem;
  height: 100%;
  padding: 2.4rem;
  background-color: var(--green-base);
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(149, 149, 149, 0.15);
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    opacity 0.3s ease;
}
@media (min-width: 751px) {
  .company .more-btn:hover,
  .sustainability .more-btn:hover {
    background-color: var(--green-light);
    color: var(--black-base);
    opacity: 1;
  }
}
.company .more-btn .arrow,
.sustainability .more-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  flex-shrink: 0;
  margin-left: var(--spacing-8);
}
.company .more-btn .arrow svg,
.sustainability .more-btn .arrow svg {
  width: 100%;
  height: auto;
  color: currentColor;
  transition: color 0.4s ease;
}
/* recruit */
.recruit {
  padding-block: 9.6rem;
  background-image: var(--texture-rough);
  background-repeat: repeat;
  background-size: 40rem 40rem;
}
.recruit .desc {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.recruit .more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8.8rem;
  margin-inline: auto;
  width: 36.4rem;
  height: 100%;
  padding: 2.4rem;
  background-color: var(--green-base);
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  box-shadow: 0 4px 8px 0 rgba(149, 149, 149, 0.15);
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    opacity 0.3s ease;
}
@media (min-width: 751px) {
  .recruit .more-btn:hover {
    background-color: var(--green-light);
    color: var(--black-base);
    opacity: 1;
  }
}
.recruit .more-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  aspect-ratio: 16 / 12;
  flex-shrink: 0;
  margin-left: var(--spacing-8);
}
.recruit .more-btn .arrow svg {
  width: 100%;
  height: auto;
  color: currentColor;
  transition: color 0.4s ease;
}
/* corporate-group */
.corporate-group {
  padding-block: 9.6rem 11.4rem;
  background-color: #ECF2F0;
}
.corporate-group .desc {
  text-align: center;
  margin-top: 5.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
.corporate-group ul.list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8rem;
  margin-top: 5.6rem;
}
.corporate-group ul.list li {
  width: calc((100% - 14.4rem) / 4);
}

@media (max-width: 750px) {
  /* mv */
  .mv {
    padding-top: 1.6rem;
    padding-left: 1.6rem;
  }
  .mv .mv-slider li {
    flex-direction: column-reverse;
  }
  .mv .mv-slider li .wrap {
    margin-block: -3.2rem 0;
    padding: 4.8rem 2.4rem 10.8rem;
    max-width: 100%;
    min-height: 53.2rem;
    z-index: 0;
  }
  .mv .mv-slider li .wrap .contents {
    max-width: 100%;
  }
  .mv .mv-slider li .wrap .contents h2 {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }
  .mv .mv-slider li .wrap .contents h2 figure {
    width: 50%;
  }
  .mv .mv-slider li .wrap .contents p {
    margin-top: 1.6rem;
  }
  .mv .mv-slider li .wrap .contents a.btn-detail {
    margin-top: 2.4rem;
  }
  .mv .mv-slider li > figure {
    padding-left: 1.6rem;
    z-index: 1;
  }
  .mv .slick-dots {
    left: initial;
    right: 1.6rem;
    bottom: 4rem;
  }
  .mv .slick-dots::after {
    display: none;
  }
  .mv .slick-dots li {
    width: 6.2rem;
  }
  .mv .slick-dots li button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: "Cabinet Grotesk", sans-serif;
    line-height: 1.5;
    color: #000;
    gap: 0.4rem;
  }
  .mv .slick-dots li button::before {
    display: none;
  }
  .mv .slick-dots li button .mv-dot-num {
    display: block;
  }
  .mv .slick-dots li button .mv-dot-track {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #9B9B9B;
    overflow: hidden;
  }
  .mv .slick-dots li button .mv-dot-progress {
    display: block;
    width: 0;
    height: 100%;
    background-color: var(--green-base);
  }
  .mv .slick-dots li button .mv-dot-progress.mv-dot-progress-run {
    animation: mv-dot-fill 7000ms linear forwards;
  }
  /* news */
  .news {
    padding-block: 4.8rem 5.6rem;
  }
  .news .heading .more {
    gap: 1rem;
    font-size: 1.6rem;
  }
  .news .heading .more .arrow {
    width: 2.8rem;
  }
  .news .heading .more .arrow svg {
    width: 1rem;
  }
  .news .list li a {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: 1.6rem;
    padding-right: 2.4rem;
  }
  .news .list {
    margin-top: 5.6rem;
  }
  .news .list li a {
    align-items: start;
    gap: 1.2rem;
    padding-inline: 0;
  }
  .news .list li a .wrap {
    gap: 0.8rem;
  }
  /* our-business */
  .our-business {
    padding-block: 8rem 9.6rem;
    overflow: hidden;
  }
  .our-business::before {
    left: 50%;
    transform: translateX(-50%);
    width: 69.7rem;
  }
  .our-business .heading .desc {
    margin-top: 1.6rem;
  }
  .our-business ul {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4.8rem;
  }
  .our-business ul li {
    flex: 1 1 100%;
  }
  .our-business ul li a {
    padding: 3.2rem 2.4rem;
  }
  .our-business ul li:last-child a {
    flex-direction: column;
    gap: 1.6rem;
  }
  .our-business ul li:last-child a figure {
    width: 100%;
    min-height: 18.2rem;
  }
  .our-business ul li:last-child a figure img {
    width: 28rem;
  }
  .our-business ul li a .wrap {
    display: flex;
    flex-direction: column;
  }
  .our-business ul li:not(:last-child) a .wrap {
    flex: 1 1 0%;
    min-height: 0;
  }
  .our-business ul li a .wrap h3 {
    margin-top: 1.6rem;
  }
  .our-business ul li:not(:last-child) a .wrap h3 {
    min-height: initial;
  }
  .our-business ul li a .wrap h3 span[lang="en"] {
    padding: 0.4rem 0.8rem;
  }
  .our-business ul li a .wrap h3 span[lang="ja"] {
    margin-top: 0;
  }
  /* company&sustainability */
  .company,
  .sustainability {
    padding-block: 8rem 9.6rem;
  }
  .company ul.card-list,
  .sustainability ul.card-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-top: 4.8rem;

  }
  .company ul.card-list li,
  .sustainability ul.card-list li {
    flex: 1 1 100%;
  }
  .company ul.link-list,
  .sustainability ul.link-list {
    gap: 1.2rem;
    margin-top: 5.6rem;
  }
  .company ul.link-list li,
  .sustainability ul.link-list li {
    width: calc((100% - 1.2rem) / 2);
  }
  .company ul.link-list li a,
  .sustainability ul.link-list li a {
    padding: 2.4rem 1.2rem;
  }
  .company .more-btn,
  .sustainability .more-btn {
    margin-top: 3.2rem;
    width: 100%;
    padding: 2.4rem 1.6rem;
  }
  /* recruit */
  .recruit {
    padding-block: 8rem 9.6rem;
  }
  .recruit .more-btn {
    margin-top: 7.2rem;
    width: 100%;
    padding: 2.4rem 1.6rem;
  }
  /* corporate-group */
  .corporate-group {
    padding-block: 5.6rem 9 .6rem;
  }
  .corporate-group .desc {
    margin-top: 4.8rem;
  }
  .corporate-group ul.list {
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 4rem;
  }
  .corporate-group ul.list li {
    width: 100%;
  }
}

@media (min-width: 500px) and (max-width: 750px) {
  .mv h1 {
    top: 4.4rem;
    font-size: 3.2rem;
    transform: none;
  }
}
