.caption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.9), 0 0 2px rgb(0, 0, 0);
}
@media screen and (max-width: 768px) {
  .caption {
    font-size: 1.375rem;
  }
}

.c-button {
  font-size: clamp(14.4px, 1.297vw, 21.6px);
  height: min(5.187vw, 86.4px);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: clamp(11.2px, 3.733vw, 16.8px);
    height: min(14.933vw, 67.2px);
  }
}

.c-note {
  position: relative;
  width: 100%;
  z-index: 1;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-note ul {
  max-width: min(103.746vw, 1728px);
  margin: 0 auto;
  padding: clamp(40px, 3.602vw, 60px) min(2.882vw, 48px);
}
@media screen and (max-width: 768px) {
  .c-note ul {
    max-width: min(320vw, 1440px);
    padding: clamp(20px, 6.667vw, 30px) min(5.333vw, 24px);
  }
}
.c-note ul li {
  font-weight: 400;
  font-size: clamp(9.6px, 0.865vw, 14.4px);
}
@media screen and (min-width: 769px) {
  .spObj {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcObj {
    display: none;
  }
}
.hidden {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.js-fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}