@keyframes loop_obj {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop_rotate_obj {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flash {
  0% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 40px 0 rgba(255, 255, 255, 0.1333333333), -40px 0 #FFF;
  }
  50% {
    background-color: #FFF;
    box-shadow: 40px 0 rgba(255, 255, 255, 0.1333333333), -40px 0 rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 40px 0 #FFF, -40px 0 rgba(255, 255, 255, 0.1333333333);
  }
}
@keyframes flash_sp {
  0% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 26px 0 rgba(255, 255, 255, 0.1333333333), -26px 0 #FFF;
  }
  50% {
    background-color: #FFF;
    box-shadow: 26px 0 rgba(255, 255, 255, 0.1333333333), -26px 0 rgba(255, 255, 255, 0.1333333333);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.1333333333);
    box-shadow: 26px 0 #FFF, -26px 0 rgba(255, 255, 255, 0.1333333333);
  }
}
@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-1%, -1%);
  }
  20% {
    transform: translate(1%, 1%);
  }
  30% {
    transform: translate(-2%, -2%);
  }
  40% {
    transform: translate(3%, 3%);
  }
  50% {
    transform: translate(-3%, -3%);
  }
  60% {
    transform: translate(4%, 4%);
  }
  70% {
    transform: translate(-4%, -4%);
  }
  80% {
    transform: translate(2%, 2%);
  }
  90% {
    transform: translate(-3%, -3%);
  }
}
@keyframes film-scratch {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.5;
  }
  10% {
    transform: translateX(-1%);
  }
  20% {
    transform: translateX(1%);
  }
  30% {
    transform: translateX(-2%);
    opacity: 0.75;
  }
  40% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(-3%);
    opacity: 0.5;
  }
  60% {
    transform: translateX(8%);
  }
  70% {
    transform: translateX(-3%);
  }
  80% {
    transform: translateX(10%);
    opacity: 0.25;
  }
  90% {
    transform: translateX(-2%);
  }
}
@keyframes effect-scratch {
  0% {
    transform: translateX(0);
    opacity: 0.75;
  }
  10% {
    transform: translateX(-1%);
  }
  20% {
    transform: translateX(1%);
  }
  30% {
    transform: translateX(-2%);
  }
  40% {
    transform: translateX(3%);
  }
  50% {
    transform: translateX(-3%);
    opacity: 0.5;
  }
  60% {
    transform: translateX(8%);
  }
  70% {
    transform: translateX(-3%);
  }
  80% {
    transform: translateX(10%);
    opacity: 0.25;
  }
  90% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(30%);
  }
}
@keyframes noise {
  to {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -10%;
  }
  20% {
    background-position: -15% 5%;
  }
  30% {
    background-position: 7% -25%;
  }
  40% {
    background-position: 20% 25%;
  }
  50% {
    background-position: -25% 10%;
  }
  60% {
    background-position: 15% 5%;
  }
  70% {
    background-position: 0 15%;
  }
  80% {
    background-position: 25% 35%;
  }
  90% {
    background-position: -10% 10%;
  }
}
@keyframes shutter {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.l-in__ttl {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .l-in__ttl {
    margin-bottom: 60px;
  }
}
.l-in__ttl h2 {
  width: 48.5rem;
}
@media screen and (max-width: 960px) {
  .l-in__ttl h2 {
    width: 82%;
  }
}

.p-sp {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}
@media screen and (max-width: 960px) {
  .p-sp {
    width: 84%;
    display: block;
  }
}
.p-sp__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-sp__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
.p-sp__list-item {
  width: 46.5%;
  margin-bottom: 6.8%;
}
@media screen and (max-width: 960px) {
  .p-sp__list-item {
    width: 100%;
    margin-bottom: 11.8%;
  }
  .p-sp__list-item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 961px) {
  .p-sp__list-item {
    margin-right: 7%;
  }
  .p-sp__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.p-sp__list-item a {
  display: block;
  text-decoration: none;
}
@media (hover: hover) {
  .p-sp__list-item a:hover .p-sp__list-thumb img {
    transform: scale(1.05);
  }
}
.p-sp__list-thumb {
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-sp__list-thumb {
    margin-bottom: 12px;
  }
}
.p-sp__list-thumb img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-sp__list-text {
  color: #fff;
}
.p-sp__list-date {
  font-size: 13px;
  letter-spacing: 0.8px;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  margin-bottom: 3px;
}
@media screen and (max-width: 960px) {
  .p-sp__list-date {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
  }
}
.p-sp__list-ttl {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
}
@media screen and (max-width: 960px) {
  .p-sp__list-ttl {
    font-size: 12.5px;
  }
}

.p-sp_gallery__box + .p-sp_gallery__box {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .p-sp_gallery__box + .p-sp_gallery__box {
    margin-top: 30px;
  }
}
.p-sp_gallery__box-ttl {
  color: #fff;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 2.8px;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
  margin-bottom: 60px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-sp_gallery__box-ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 960px) {
  .p-sp_gallery__box-ttl {
    letter-spacing: 2.2px;
    font-size: 16px;
    padding-bottom: 6px;
    margin-bottom: 32px;
  }
}
.p-sp_gallery__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-sp_gallery__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.7s;
}
.p-sp_gallery__list-item {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 5%;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .p-sp_gallery__list-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-sp_gallery__list-item {
    width: 46%;
    margin-right: 8%;
    margin-bottom: 8%;
  }
  .p-sp_gallery__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (hover: hover) {
  .p-sp_gallery__list-item:hover .p-sp_gallery__list-thumb img {
    transform: scale(1.05);
  }
}
.p-sp_gallery__list-thumb {
  margin-bottom: 17px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-sp_gallery__list-thumb {
    margin-bottom: 8px;
  }
}
.p-sp_gallery__list-thumb img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-sp_gallery__list-ttl {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 2px;
}
@media screen and (max-width: 960px) {
  .p-sp_gallery__list-ttl {
    font-size: 12.5px;
  }
}

.p-sp_modal {
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  .p-sp_modal {
    padding: 74px 0;
  }
}
.p-sp_modal__img {
  margin: 0 auto;
  width: 75%;
}
@media screen and (max-width: 960px) {
  .p-sp_modal__img {
    width: 95%;
  }
}

.p-sp_present__box + .p-sp_present__box {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .p-sp_present__box + .p-sp_present__box {
    margin-top: 30px;
  }
}
.p-sp_present__box-ttl {
  color: #fff;
  font-size: 21px;
  letter-spacing: 3.5px;
  border-bottom: 1px solid #fff;
  padding-bottom: 19px;
  margin-bottom: 60px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-sp_present__box-ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 960px) {
  .p-sp_present__box-ttl {
    letter-spacing: 1.6px;
    font-size: 15px;
    padding-bottom: 9px;
    margin-bottom: 30px;
  }
}
.p-sp_present__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-sp_present__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.7s;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list {
    display: block;
  }
}
.p-sp_present__list-item {
  width: 48%;
  background-color: #000;
  padding: 30px 30px 36px;
  margin-bottom: 3.6%;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list-item {
    padding: 18px 18px 20px;
    width: 100%;
    margin-bottom: 4.8%;
  }
  .p-sp_present__list-item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 961px) {
  .p-sp_present__list-item {
    margin-right: 4%;
  }
  .p-sp_present__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.p-sp_present__list-thumb {
  width: 100%;
  padding-top: 66.2%;
  position: relative;
  background-color: #181818;
}
.p-sp_present__list-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-sp_present__list-ttl {
  text-align: center;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  color: #fff;
  margin-top: 25px;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list-ttl {
    margin-top: 17px;
    font-size: 14px;
    letter-spacing: 1.5px;
  }
}
.p-sp_present__list-dl {
  margin: 0 auto;
  width: 72%;
  max-width: 340px;
  margin-top: 21px;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list-dl {
    width: 72%;
    min-width: 190px;
    margin-top: 9px;
  }
}
.p-sp_present__list-dl a {
  display: block;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-sp_present__list-dl a::before {
  content: "";
  width: 14px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 8%;
  background: url(../img/sp/wp/icon_dl.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list-dl a::before {
    width: 10px;
  }
}
@media (hover: hover) {
  .p-sp_present__list-dl a:hover {
    transform: scale(0.97);
    opacity: 0.7;
  }
}
.p-sp_present__list-dl-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-family: "Gilda Display", serif;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 0 15%;
}
@media screen and (max-width: 960px) {
  .p-sp_present__list-dl-text {
    font-size: 12px;
  }
}