body {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 0;
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.p-vs-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .p-vs-header {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-vs-header.is-active {
    overflow: visible;
  }
}

.p-vs-header__logo-inner {
  background: #f3f3f3;
  padding-inline: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-vs-header__logo-inner {
    padding: 5px 15px;
  }
}

.p-vs-header__logo {
  width: 90px;
}
.p-vs-header__logo img {
  max-width: 100%;
  height: auto;
}

.p-vs-nav {
  padding: 0 140px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-vs-nav {
    padding: 40px 20px;
    position: fixed;
    top: 0;
    right: 0;
    width: 230px;
    height: auto;
    opacity: 0;
    transform: translateX(100px);
    visibility: hidden;
    position: absolute;
    transition: 0.3s;
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-vs-nav.is-active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

.p-vs-nav__inner {
  display: flex;
  column-gap: 55px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-vs-nav__inner {
    display: grid;
    row-gap: 25px;
    align-items: flex-start;
  }
}

.p-vs-nav__inner-item {
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-vs-nav__inner-item:nth-child(3) .p-vs-nav__hover-area {
    width: 250px;
  }
}

.p-vs-nav__inner-item-link {
  padding: 12px 0 16px;
  font-size: 16px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-vs-nav__inner-item-link {
    padding: 0;
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.p-vs-nav__hover-area {
  background: #fff;
  padding: 15px 20px 25px;
  display: grid;
  row-gap: 25px;
}
@media screen and (min-width: 767px) {
  .p-vs-nav__hover-area {
    width: 200px;
    top: 40px;
    left: -25px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .p-vs-nav__hover-area {
    margin-top: 20px;
    row-gap: 20px;
    padding: 0 3px;
  }
}

@media screen and (min-width: 767px) {
  .p-vs-nav__inner-item-link:hover + .p-vs-nav__hover-area,
.p-vs-nav__hover-area:hover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

.p-vs-nav__hover-area-item-link {
  font-size: 1.6rem;
  padding-left: 20px;
  display: block;
  position: relative;
}
.p-vs-nav__hover-area-item-link::before {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #406b69;
  border-right: 2px solid #406b69;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-vs-nav__hover-area-item-link {
    font-size: 1.2rem;
    padding-left: 14px;
  }
  .p-vs-nav__hover-area-item-link::before {
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
}

.p-vs-header__nav-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-vs-header__nav-button {
    z-index: 20;
    padding: 0;
    bottom: 0;
    border: none;
    position: relative;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    display: flex;
    outline: none;
    background: none;
  }
  .p-vs-header__nav-button::before {
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    position: absolute;
    transform: scale(2.75);
  }
}

.p-vs-header__nav-button span {
  display: inline-block;
  transition: 0.3s;
  position: absolute;
  height: 1px;
  border-radius: 2px;
  background: #000;
  width: 100%;
}

.p-vs-header__nav-button span:nth-of-type(1) {
  top: 0;
}

.p-vs-header__nav-button span:nth-of-type(2) {
  top: 8px;
}

.p-vs-header__nav-button span:nth-of-type(3) {
  bottom: 0;
}

.p-vs-header__nav-button.is-active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.p-vs-header__nav-button.is-active span:nth-of-type(2) {
  opacity: 0;
}

.p-vs-header__nav-button.is-active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.sdgs {
  padding: 0 20px 50px;
}
@media screen and (max-width: 767px) {
  .sdgs {
    padding: 0 0 55px;
  }
}

.sdgs__inner {
  max-width: 691px;
  margin: 0 auto;
}

.sdgs__heading {
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sdgs__heading {
    font-size: 4.2666666667vw;
  }
}

.sdgs__text-large {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sdgs__text-large {
    font-size: 4vw;
    margin-top: 4vw;
  }
}

.sdgs__text {
  text-align: center;
  margin-top: 15px;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .sdgs__text {
    margin-inline: calc(50% - 50vw);
    margin-top: 2.6666666667vw;
    font-size: 3.12vw;
  }
}

@media screen and (max-width: 767px) {
  .sdgs__image-wrapper {
    padding-inline: 4vw;
    display: flex;
    justify-content: center;
  }
}

.sdgs__image {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .sdgs__image {
    margin-top: 3.3333333333vw;
    max-width: 100%;
    height: auto;
  }
}

.sdgs__list {
  padding: 0;
  margin: 0 auto;
  margin-top: 10px;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .sdgs__list {
    margin-top: 3.3333333333vw;
    max-width: 66.6666666667vw;
  }
}

.sdgs__list-item {
  list-style-type: none;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .sdgs__list-item {
    font-size: 2.9333333333vw;
    line-height: 2;
  }
}

.sdgs__text-small {
  font-size: 10px;
  vertical-align: middle;
}

.p-vs-footer {
  padding-block: 25px;
  background-color: #f2f2f2;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .p-vs-footer {
    margin-top: 40px;
  }
}

.p-vs-footer__inner {
  display: grid;
  place-items: center;
}

.p-vs-footer__list {
  display: flex;
}

.p-vs-footer__list-item {
  border-left: 1px solid #ccc;
}

.p-vs-footer__list-item:last-child {
  border-right: 1px solid #ccc;
}

.p-vs-footer__list-link {
  font-size: 1.4rem;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-vs-footer__list-link {
    font-size: 2.6666666667vw;
  }
}

.p-vs-footer__logo {
  margin-top: 40px;
}

.p-vs-footer__copyright {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-vs-footer__copyright {
    font-size: 2.4vw;
  }
}
