body:not(.home).nonimages {
  position: relative;
}
body:not(.home).nonimages .mv__img {
  height: 28.5rem;
}
@media (720px <= width) {
  body:not(.home).nonimages .mv__img {
    height: 60.8rem;
  }
}
body:not(.home).nonimages .mv::after {
  content: "";
  display: block;
  height: 0;
  border-bottom: 1px solid var(--clr-line);
  margin-left: 2rem;
  margin-right: 2rem;
}
@media (720px <= width) {
  body:not(.home).nonimages .mv::after {
    max-width: 170rem;
    margin-left: max(50% - 85rem, 6rem);
    margin-right: max(50% - 85rem, 6rem);
  }
}
body:not(.home).nonimages .mv__pagetitle {
  bottom: 6rem;
}
@media (720px <= width) {
  body:not(.home).nonimages .mv__pagetitle {
    bottom: 16rem;
  }
}

.lead {
  margin-top: 10rem;
  margin-bottom: 4rem;
  margin-left: 2rem;
  margin-right: 2rem;
  font-size: 1.6rem;
  line-height: 175%;
}
@media (720px <= width) {
  .lead {
    margin-top: 20rem;
    margin-bottom: 6rem;
    margin-left: max(50% - 75rem, 5rem);
    margin-right: max(50% - 75rem, 5rem);
    font-size: 2rem;
    line-height: 1.8;
  }
}

.sections {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-left: 2rem;
  margin-right: 2rem;
  border-top: 1px solid var(--clr-line);
}
@media (720px <= width) {
  .sections {
    padding-top: 6rem;
    padding-bottom: 6rem;
    margin-left: max(50% - 75rem, 5rem);
    margin-right: max(50% - 75rem, 5rem);
  }
}
.sections__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 160%;
  color: var(--clr-main);
}
@media (720px <= width) {
  .sections__title {
    font-size: 2.8rem;
    line-height: 157.1429%;
  }
}
.sections p,
.sections ol,
.sections ul {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 175%;
}
@media (720px <= width) {
  .sections p,
  .sections ol,
  .sections ul {
    font-size: 2rem;
    line-height: 180%;
  }
}
.sections ol,
.sections ul {
  margin-left: 2rem;
}
.sections ol li + li,
.sections ul li + li {
  margin-top: 1rem;
}
.sections ul.coution {
  margin-left: 0;
}
.sections ul.coution li {
  font-size: 1.6rem;
  color: #999;
  line-height: 175%;
  margin-top: 0;
}
.sections a {
  text-decoration: underline;
}
.sections a:not(.popup) {
  color: var(--clr-main);
}
.sections .mark {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 1rem;
}
@media (width < 720px) {
  .sections .mark img:nth-child(1) {
    width: 7.4rem;
  }
  .sections .mark img:nth-child(2) {
    width: 7.4rem;
  }
  .sections .mark img:nth-child(3) {
    width: 5.2rem;
  }
  .sections .mark img:nth-child(4) {
    width: 7.2rem;
  }
  .sections .mark img:nth-child(5) {
    width: 7.8rem;
  }
  .sections .mark img:nth-child(6) {
    width: 6.8rem;
  }
  .sections .mark img:nth-child(7) {
    width: 6rem;
  }
}
@media (720px <= width) {
  .sections .mark {
    gap: 1.5rem;
  }
}

.popups {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media (720px <= width) {
  .popups {
    padding: 10rem;
  }
}
.popups.view {
  opacity: 1;
  pointer-events: auto;
}
.popups .stage {
  background: #fff;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
@media (720px <= width) {
  .popups .stage {
    max-width: 100rem;
    max-height: 64.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10rem);
    height: calc(100% - 10rem);
    padding: 5rem 6rem;
  }
}
.popups .popupclose {
  background: var(--clr-main);
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0 0 0 2rem;
}
@media (720px <= width) {
  .popups .popupclose {
    width: 6rem;
    height: 6rem;
  }
}
.popups .popupclose span {
  background-color: #fff;
  width: 2.545rem;
  height: 0.2rem;
  border-radius: 100rem;
  position: absolute;
  left: 50%;
  top: 50%;
}
.popups .popupclose span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.popups .popupclose span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popups h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-main);
}
@media (720px <= width) {
  .popups h4 {
    font-size: 2.8rem;
  }
}
.popups .scroll {
  overflow-y: auto;
  margin-top: 2rem;
  height: calc(100% - 6rem);
}
@media (720px <= width) {
  .popups .scroll {
    margin-top: 3.2rem;
  }
}
.popups ul {
  margin-left: 0;
  margin-top: 0;
  font-size: 1.4rem;
}
@media (720px <= width) {
  .popups ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
  .popups ul li + li {
    margin-top: 0;
  }
}
.popups h5 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 175%;
  background: var(--clr-bg);
  padding: 0.3rem 1rem;
}
@media (720px <= width) {
  .popups h5 {
    font-size: 2rem;
    line-height: 180%;
    padding: 0.2rem 1rem;
  }
}
.popups p {
  font-size: 1.4rem;
  margin-top: 0;
  padding: 1rem;
}
@media (720px <= width) {
  .popups p {
    font-size: 2rem;
    line-height: 180%;
    padding: 1.5rem 1rem;
  }
}