.p-content__title {
  width: 79%;
  max-width: 52rem;
  margin: 0 auto;
  transform: scale(0.6);
  opacity: 0;
}
.on-load .p-content__title {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.6s var(--ease-out-back), opacity 0.5s var(--ease-out-quart);
}
.p-content__body {
  margin-top: 6.2rem;
  transform: translateY(2.5rem);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .p-content__body {
    margin-top: 3rem;
  }
}
.on-load .p-content__body {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s var(--ease-out-back) 0.4s, opacity 0.5s var(--ease-out-quart) 0.4s;
}

.p-precious__inner {
  width: 89.5%;
  max-width: 108rem;
  margin: 0 auto;
}
.p-precious__lead {
  text-align: center;
}
.p-precious__notes {
  margin-top: 1.8rem;
}
@media screen and (max-width: 750px) {
  .p-precious__notes {
    margin-top: 1.4rem;
  }
}
.p-precious__notes-list-item {
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .p-precious__notes-list-item {
    font-size: 1.1rem;
    line-height: 1.81;
    letter-spacing: 0.16em;
  }
}
.p-precious__switch {
  margin-top: 7.5rem;
}
@media screen and (max-width: 750px) {
  .p-precious__switch {
    margin-top: 4.1rem;
  }
}
.p-precious__switch-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-precious__switch-list-item {
  width: 31.5%;
  margin-left: 2.75%;
}
@media screen and (max-width: 750px) {
  .p-precious__switch-list-item {
    width: 47.8%;
    margin-left: 0;
  }
}
.p-precious__switch-list-item:nth-child(3n-2) {
  margin-left: 0;
}
@media screen and (max-width: 750px) {
  .p-precious__switch-list-item:nth-child(even) {
    margin-left: 4.4%;
  }
}
.p-precious__switch-list-item:nth-child(n+4) {
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .p-precious__switch-list-item:nth-child(n+3) {
    margin-top: 1.5rem;
  }
}

.p-precious_switch__wrapper {
  width: 94.5%;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-top: none;
}
.p-precious_switch__inner {
  width: 88.8%;
  margin: 0 auto;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
}
@media screen and (max-width: 750px) {
  .p-precious_switch__inner {
    padding-top: 0.8rem;
    padding-bottom: 0.9rem;
  }
}
.p-precious_switch__btn {
  width: 74%;
  margin: 0 auto;
  margin-top: 1.6rem;
}
@media screen and (max-width: 750px) {
  .p-precious_switch__btn {
    width: 83%;
    margin-top: 1rem;
  }
}
.p-precious_switch__btn-base {
  display: block;
  position: relative;
}
.p-precious_switch__btn-frame {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-precious_switch__btn-frame-off {
  display: block;
  position: relative;
  width: 100%;
}
.p-precious_switch__btn-link:focus .p-precious_switch__btn-frame-off {
  opacity: 0;
}
.p-precious_switch__btn-frame-on {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}
.p-precious_switch__btn-link:focus .p-precious_switch__btn-frame-on {
  opacity: 1;
}
.p-precious_switch__btn-click {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (hover: hover) {
  .p-precious_switch__btn:hover .p-precious_switch__btn-click {
    animation: 0.65s linear 1 normal forwards running btnClick;
  }
}