@keyframes photoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyo2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, 6%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fuyo3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pagetop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    transform: translateX(40%);
  }
  50% {
    transform: translateX(-40%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
:root {
  --color-blue: #01b3c4;
  --color-bluelight: #55ccd7;
  --color-yellow: #f8d224;
  --color-pink: #f88cd3;
  --color-black: #000;
  --color-white: #fff;
  --color-gold: #8c6d1c;
  --color-gold2: #C1A04F;
  --color-gray: #888;
}

.p-privacy__ttl {
  margin-bottom: 6.3rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__ttl {
    margin-bottom: 2.9rem;
  }
  .p-privacy__ttl h2 {
    font-size: 3.2rem !important;
  }
}
.p-privacy__content {
  position: relative;
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-privacy__content {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-privacy__content::before, .p-privacy__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-privacy__content::before, .p-privacy__content::after {
    border-radius: 10px;
  }
}
.p-privacy__content::before {
  top: 1.6rem;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__content::before {
    left: 3.5%;
    top: 1rem;
  }
}
.p-privacy__content::after {
  top: 0.8rem;
  left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__content::after {
    left: 1.8%;
    top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    width: 97%;
  }
}
.p-privacy__content-inner {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  padding: 4.1rem 5rem 7.3rem;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-privacy__content-inner {
    border-radius: 10px;
    padding: 2.9rem 1.4rem 3.5rem;
  }
}
.p-privacy__content-list-item {
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__content-list-item {
    text-indent: -0.8rem;
    padding-left: 0.8rem;
  }
}
.p-privacy__content-list-item + .p-privacy__content-list-item {
  margin-top: 3px;
}
.p-privacy__box + .p-privacy__box {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__box + .p-privacy__box {
    margin-top: 3rem;
  }
}
.p-privacy__box-ttl {
  line-height: 1.55;
  position: relative;
  padding-left: 19px;
  font-size: 2.4rem;
  margin-bottom: 2.3rem;
  font-weight: 700;
  padding: 1.1rem 0;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-ttl {
    padding: 0.3rem 0;
    padding-left: 1.3rem;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 22px;
  }
}
.p-privacy__box-ttl::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-blue);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-ttl::after {
    bottom: -7px;
  }
}
.p-privacy__box-ttl::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 2.3rem;
  left: 0;
  background: url(../img/common/icon_h3.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-ttl::before {
    width: 1.1rem;
    height: 1.1rem;
    top: 0.8rem;
    left: -1px;
  }
}
.p-privacy__box-content {
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-privacy__box-content {
    line-height: 1.75;
    font-size: 1.3rem;
  }
}