/* =======================================================
entry
======================================================= */
.l-entry {
  padding: 7.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .l-entry {
    padding: 2.5rem 0 5rem;
  }
}

.p-entry__txt {
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-entry__txt {
    margin-bottom: 3.75rem;
  }
}

/* =======================================================
privacy
======================================================= */
body {
  position: relative;
}
body::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9000;
  display: none;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 30, 30, 0.8);
}
body.--js-privacy-open::after {
  display: block;
}

.l-privacy {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  display: none;
  width: 100%;
  height: calc(100vh - 7.5rem);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-privacy {
    width: calc(100% - 1.875rem);
    height: calc(100vh - 7rem);
  }
}
.l-privacy.--js-privacy-open {
  display: block;
}

.p-privacy {
  position: relative;
  height: 100%;
  padding: 5rem 6.875rem 0;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 3.75rem 1.25rem 0;
  }
}
.p-privacy__btn {
  position: absolute;
  top: 1.875rem;
  right: 1.875rem;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__btn {
    top: 1.125rem;
    right: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy .c-hgroup {
    margin-bottom: 3rem;
  }
}
.p-privacy__def {
  display: grid;
  grid-template-columns: 18.625rem 1fr;
}
.p-privacy__def-wrapper {
  height: calc(100% - 13.375rem);
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-privacy__def-wrapper {
    height: calc(100% - 12.4375rem);
  }
}
@media screen and (max-width: 767px) {
  .p-privacy__def {
    grid-template-columns: auto;
  }
}
.p-privacy__dttl {
  font-weight: 700;
}
.p-privacy__dttl:not(:first-of-type) {
  padding: 1.25rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__dttl:not(:first-of-type) {
    padding: 1.125rem 0 0.5rem;
  }
}
.p-privacy__dttl:not(:last-of-type) {
  padding-bottom: 1.5625rem;
  border-bottom: 0.0625rem solid var(--color-gray02);
}
@media screen and (max-width: 767px) {
  .p-privacy__dttl:not(:last-of-type) {
    padding-bottom: 0.5rem;
    border-bottom: none;
  }
}
.p-privacy__dttl:last-of-type {
  padding-bottom: 0;
}
.p-privacy__ditem:not(:first-of-type) {
  padding: 1.25rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__ditem:not(:first-of-type) {
    padding: 0 0 1.25rem;
  }
}
.p-privacy__ditem:not(:last-of-type) {
  padding-bottom: 1.5625rem;
  border-bottom: 0.0625rem solid var(--color-gray02);
}
@media screen and (max-width: 767px) {
  .p-privacy__ditem:not(:last-of-type) {
    padding-bottom: 1.25rem;
  }
}
.p-privacy__ditem:last-of-type {
  padding-bottom: 0;
}

/* =======================================================
lower-mv
======================================================= */
.l-lower-mv {
  background-image: url("../images/entry/mv-bg.webp");
}
@media screen and (max-width: 767px) {
  .l-lower-mv {
    background-image: url("../images/entry/mv-bg-sp.webp");
  }
}