@keyframes scrollAnime {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes maskItem {
  0% {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  100% {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes modal_bg {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes modal_chara_bg {
  0% {
    transform: translateY(-50%) translateX(-180%);
  }
  100% {
    transform: translateY(-50%) translateX(0%);
  }
}
@keyframes modal_fadein {
  0% {
    opacity: 0;
    transform: rotate(0.05deg) translateY(20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(0.05deg) translateY(0);
  }
}
@keyframes modal_catch {
  0% {
    filter: blur(3px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes modal_dot {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-hero {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-top: 50px;
  }
}
.p-hero__kv {
  overflow: hidden;
  max-height: 100vh;
  position: relative;
}
.p-hero__kv-item {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.p-hero__kv-item img {
  width: 100%;
  transform: scale(1.2);
  filter: blur(3px);
}
.is-op-end .p-hero__kv-item img {
  filter: blur(0);
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.32, 0, 0.67, 0);
}
.is-op-skip .p-hero__kv-item img {
  filter: blur(0);
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.32, 0, 0.67, 0);
}
@media screen and (max-width: 767px) {
  .p-hero__kv-item {
    margin-top: 0%;
    left: 54%;
    width: 172.5%;
  }
}
.p-hero__catch {
  position: absolute;
  top: 14.5%;
  left: 4%;
  width: 27%;
  max-width: 500px;
}
.p-hero__catch img {
  opacity: 0;
  filter: blur(3px);
}
.is-op-end .p-hero__catch img {
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.32, 0, 0.67, 0), filter 0.8s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 2s;
}
.is-op-skip .p-hero__catch img {
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.32, 0, 0.67, 0), filter 0.8s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 2s;
}
@media screen and (max-width: 767px) {
  .p-hero__catch {
    top: 11%;
    width: 57%;
  }
}
.p-hero__logo {
  position: absolute;
  bottom: 5%;
  right: 2%;
  width: 53%;
  max-width: 900px;
}
.p-hero__logo img {
  opacity: 0;
  filter: blur(3px);
}
.is-op-end .p-hero__logo img {
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.32, 0, 0.67, 0), filter 0.8s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 1s;
}
.is-op-skip .p-hero__logo img {
  filter: blur(0);
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.32, 0, 0.67, 0), filter 0.8s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  .p-hero__logo {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    margin-top: 9%;
  }
}

.p-op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg.jpg) repeat-y center top;
  background-size: 100%;
  z-index: 10;
}
.is-op-skip .p-op {
  display: none;
}
.is-op-end .p-op {
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-op::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  pointer-events: none;
}
.is-op .p-op::after {
  opacity: 1;
  transition: opacity 1.4s cubic-bezier(0.65, 0, 0.35, 1) 2.6s;
}
.p-op__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 416px;
}
.p-op__logo {
  position: relative;
}
.p-op__logo .p-in_item:nth-child(1) {
  transform: translateX(20%);
}
.is-op .p-op__logo .p-in_item:nth-child(1) {
  transform: translateX(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.8s;
}
.p-op__logo .p-in_item:nth-child(1) img {
  filter: blur(5px);
  opacity: 0;
}
.is-op .p-op__logo .p-in_item:nth-child(1) img {
  opacity: 1;
  filter: blur(0);
  transition: all 1.2s cubic-bezier(0.32, 0, 0.67, 0);
}
.p-op__logo .p-in_item:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-op__logo .p-in_item:nth-child(2) img {
  filter: blur(5px);
  opacity: 0;
}
.is-op .p-op__logo .p-in_item:nth-child(2) img {
  opacity: 1;
  filter: blur(0);
  transition: all 1.2s cubic-bezier(0.32, 0, 0.67, 0) 1.2s;
}

.p-cont-top {
  padding-top: 106px;
  position: relative;
  z-index: 1;
  padding-bottom: 76px;
}
@media screen and (max-width: 767px) {
  .p-cont-top {
    padding-top: 60px;
    padding-bottom: 32px;
  }
}
.p-cont-top__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-cont-top__inner {
    display: block;
  }
}

.p-news {
  width: 48%;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .p-news {
    width: 100%;
    margin: 0;
  }
  .p-news.is-active h2 {
    transform: scale(1);
    opacity: 1;
    transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-news.is-active h2::before {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.32, 0, 0.67, 0) 0.2s;
  }
}
.p-news__ttl {
  text-align: center;
  margin-bottom: 39px;
}
@media screen and (max-width: 767px) {
  .p-news__ttl {
    margin-bottom: 18px;
    text-align: left;
  }
}
.p-news__ttl h2 {
  font-size: 66px;
  font-size: min(66px, 6vw);
  padding: 0 40px;
  min-height: min(70px, 7vw);
}
@media screen and (min-width: 768px) {
  .p-cont-top.is-active .p-news__ttl h2 {
    transform: scale(1);
    opacity: 1;
    transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-cont-top.is-active .p-news__ttl h2::before {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.32, 0, 0.67, 0) 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .p-news__ttl h2 {
    min-height: auto;
    font-size: 42px;
    padding: 0 5px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__list {
    min-height: 237px;
  }
}
.p-news__list-item {
  transform: translateY(20px);
  opacity: 0;
  cursor: pointer;
  display: none;
}
.p-news.is-active .p-news__list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-news.is-active .p-news__list-item:nth-child(1) {
  transition-delay: 0.3s;
}
.p-news.is-active .p-news__list-item:nth-child(2) {
  transition-delay: 0.43s;
}
.p-news.is-active .p-news__list-item:nth-child(3) {
  transition-delay: 0.56s;
}
.p-news__list-item:nth-child(-n+3) {
  display: block;
}
.p-news__list-item + .p-news__list-item {
  margin-top: 21px;
}
@media screen and (max-width: 767px) {
  .p-news__list-item + .p-news__list-item {
    margin-top: 3px;
  }
}
.p-news__list-inner {
  display: block;
  text-decoration: none;
  padding: 10px 10px;
  position: relative;
}
@media (hover: hover) {
  .p-news__list-inner:hover::before {
    opacity: 0.5;
  }
}
.p-news__list-inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 5px 5px #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-news__list-date {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  color: #3e3618;
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-news__list-date {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.p-news__list-ttl {
  color: #7b6b30;
  font-size: 17px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl {
    font-size: 11px;
  }
}
.p-news__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 40px;
  padding-right: 42px;
  transform: translateX(-18px);
  opacity: 0;
}
.p-news.is-active .p-news__more {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-news__more {
    margin-top: 21px;
    padding-right: 10px;
  }
}

.p-x {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-x {
    width: 100%;
    margin-top: 78px;
  }
  .p-x.is-active h2 {
    transform: scale(1);
    opacity: 1;
    transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-x.is-active h2::before {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.32, 0, 0.67, 0) 0.2s;
  }
}
.p-x__ttl {
  text-align: center;
  margin-bottom: 39px;
}
@media screen and (max-width: 767px) {
  .p-x__ttl {
    margin-bottom: 20px;
    text-align: right;
  }
}
.p-x__ttl h2 {
  font-size: 66px;
  font-size: min(66px, 6vw);
  min-height: min(70px, 7vw);
}
@media screen and (min-width: 768px) {
  .p-cont-top.is-active .p-x__ttl h2 {
    transform: scale(1);
    opacity: 1;
    transition: transform 1.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-cont-top.is-active .p-x__ttl h2::before {
    opacity: 1;
    transition: opacity 1s cubic-bezier(0.32, 0, 0.67, 0) 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .p-x__ttl h2 {
    min-height: auto;
    font-size: 42px;
    font-size: min(42px, 12.5vw);
  }
}
.p-x__widget {
  height: 237px;
  position: relative;
  overflow: auto;
  transform: translateY(20px);
  opacity: 0;
}
.p-x.is-active .p-x__widget {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
.p-x__widget-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-x__widget-loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.4;
}
.is-api-end .p-x__widget-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.32, 0, 0.67, 0);
}
.p-x__widget-loading-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13%;
  padding-top: 13%;
}
.p-x__widget-loading-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(123, 107, 48, 0.2);
  border-radius: 50%;
  transform: scale(0);
  animation: loading 1.4s cubic-bezier(0.33, 1, 0.68, 1) infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-x__widget {
    height: 170px;
  }
}
.p-x__widget .twitter-timeline iframe {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
}
.p-x__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 40px;
  padding-right: 19px;
  transform: translateX(-18px);
  opacity: 0;
}
.p-x.is-active .p-x__more {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-x__more {
    margin-top: 17px;
    padding-right: 10px;
  }
}

.p-system {
  margin-bottom: 211px;
}
@media screen and (max-width: 767px) {
  .p-system {
    margin-bottom: 53px;
  }
}
.p-system::before {
  content: "";
  width: 50%;
  padding-top: 50%;
  max-width: 640px;
  padding-top: min(50%, 640px);
  position: absolute;
  bottom: 15%;
  left: 0;
  transform: translateX(-33%);
  background: url(../img/common/bg_02.png) no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-system::before {
    width: 90%;
    max-width: none;
    padding-top: 50%;
    max-width: 640px;
    padding-top: 90%;
    position: absolute;
    bottom: -40%;
    left: 0;
    transform: translateX(-50%);
  }
}
.p-system__ttl {
  text-align: center;
  margin-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .p-system__ttl {
    margin-bottom: 25px;
  }
}
.p-system__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  max-width: 740px;
  transform: translateX(26%) translateY(-31%);
  -webkit-mask: url(../img/common/system_bg-01.png) no-repeat 0% 0;
  mask: url(../img/common/system_bg-01.png) no-repeat 0% 0;
  -webkit-mask-size: 1200% 100%;
  mask-size: 1200% 100%;
}
@media screen and (max-width: 767px) {
  .p-system__deco {
    width: 80%;
    transform: translateX(28%) translateY(-36%);
  }
}
.p-system.is-active .p-system__deco {
  animation: maskItem 1s steps(11, start) forwards reverse;
}
.p-system__deco img {
  opacity: 0;
}
.p-system.is-active .p-system__deco img {
  opacity: 1;
  transition: opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-system__tab {
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  .p-system__tab {
    margin-bottom: 22px;
  }
}
.p-system__tab-list {
  display: flex;
  justify-content: center;
}
.p-system__tab-list-item {
  position: relative;
  cursor: pointer;
  transform: translateY(20px);
  opacity: 0;
}
.p-system.is-active .p-system__tab-list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-system.is-active .p-system__tab-list-item:nth-child(1) {
  transition-delay: 0.3s;
}
.p-system.is-active .p-system__tab-list-item:nth-child(2) {
  transition-delay: 0.43s;
}
.p-system.is-active .p-system__tab-list-item:nth-child(3) {
  transition-delay: 0.56s;
}
@media (hover: hover) {
  .p-system__tab-list-item:hover .p-in_text {
    opacity: 0.5;
  }
}
.p-system__tab-list-item.is-current {
  pointer-events: none;
}
.p-system__tab-list-item.is-current::before {
  -webkit-clip-path: inset(0 0% 0 0);
  clip-path: inset(0 0% 0 0);
}
.is-change .p-system__tab-list-item {
  pointer-events: none;
}
.p-system__tab-list-item::before {
  content: "";
  width: 125%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  background: url(../img/system/current.png) no-repeat center center;
  background-size: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition: clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.p-system__tab-list-item + .p-system__tab-list-item {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .p-system__tab-list-item + .p-system__tab-list-item {
    margin-left: 40px;
  }
}
.p-system__tab-list-item .p-in_text {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  letter-spacing: 3px;
  color: #7b6b30;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  .p-system__tab-list-item .p-in_text {
    letter-spacing: 2px;
    font-size: 20px;
  }
}
.p-system__content {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-system__content {
    flex-direction: column;
  }
}
.p-system__box {
  display: none;
  height: 100%;
  pointer-events: none;
  flex-grow: 1;
  opacity: 0;
}
.p-system__box.is-current {
  display: block;
  pointer-events: auto;
  animation: fade-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.2s;
}
.is-change .p-system__box {
  animation: fade-out 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.p-system__box-item {
  position: relative;
  display: flex;
  transform: translateY(30px);
  opacity: 0;
}
.p-system.is-active .p-system__box-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-system__box-item {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-system__box-item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.p-system__box-item:nth-child(2n) .p-system__thumb {
  margin-left: auto;
}
.p-system__box-item:nth-child(2n) .p-system__text {
  transform: translateX(4%);
  padding: 3.8% 4% 5% 3.5%;
}
@media screen and (max-width: 767px) {
  .p-system__box-item:nth-child(2n) .p-system__text {
    padding: 9.8% 13% 7% 5.5%;
    transform: translateX(-6%);
  }
}
@media screen and (min-width: 768px) {
  .p-system__box-item:nth-child(2n) .swiper-pagination {
    justify-content: flex-end;
  }
}
.p-system__box-item:nth-child(2n+1) .p-system__text {
  transform: translateX(-4%);
  padding: 3.8% 7% 6% 11%;
}
@media screen and (max-width: 767px) {
  .p-system__box-item:nth-child(2n+1) .p-system__text {
    transform: translateX(4%);
    padding: 14.8% 7% 8% 13%;
  }
}
.p-system__box-item + .p-system__box-item {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .p-system__box-item + .p-system__box-item {
    margin-top: 28px;
  }
}
.p-system__thumb {
  flex-shrink: 0;
  position: relative;
  width: 56%;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  transform: translateY(25px);
  opacity: 0;
}
.p-system.is-active .p-system__thumb {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
.p-system__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.is-change .p-system__thumb::after {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .p-system__thumb {
    width: 83%;
  }
}
.p-system__dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  transform: translate(16%, -85%);
}
@media screen and (max-width: 767px) {
  .p-system__dot {
    width: 35%;
    transform: translate(20%, -41%);
  }
}
.p-system__text {
  height: 100%;
  margin-top: 34%;
  color: #7b6b30;
  position: relative;
}
.p-system__text::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  filter: blur(5px);
  box-shadow: 0 0 25px 10px #fff;
}
@media screen and (max-width: 767px) {
  .p-system__text::before {
    box-shadow: 0 0 20px 8px #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-system__text {
    margin-top: -10%;
  }
}
.p-system__text-cap {
  position: relative;
  font-size: 35px;
  font-size: min(35px, 3.5vw);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 15px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 767px) {
  .p-system__text-cap {
    font-size: 19px;
    margin-bottom: 9px;
  }
}
.p-system__text-detail {
  line-height: 1.9;
  font-size: 15px;
  font-size: min(15px, 1.5vw);
  padding-left: 2px;
  font-weight: 500;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 767px) {
  .p-system__text-detail {
    line-height: 1.6;
    font-size: 13px;
  }
}
.p-system__player {
  position: absolute !important;
  top: 50%;
  /*top: 39%;*/
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#SystemPlayer_ui {
  display: none;
}

.p-story {
  margin-bottom: 86px;
  padding-bottom: min(20%, 260px);
}
@media screen and (max-width: 767px) {
  .p-story {
    margin-bottom: 92px;
    padding-bottom: 58.5%;
  }
}
.p-story .l-section__inner {
  position: relative;
}
.p-story .l-section__inner::before {
  content: "";
  width: 110%;
  padding-top: 110%;
  position: absolute;
  top: 47%;
  left: -26%;
  transform: translateY(-50%) scale(0.96);
  opacity: 0;
  background: url(../img/story/story_bg.png) no-repeat center center;
  background-size: 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-story .l-section__inner::before {
    top: 60%;
    left: 45%;
    transform: translate(-50%, -50%) scale(0.96);
    width: 170%;
    padding-top: 170%;
  }
}
.p-story.p-story.is-active .l-section__inner::before {
  transition: transform 3s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 768px) {
  .p-story.p-story.is-active .l-section__inner::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-story.p-story.is-active .l-section__inner::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.p-story__ttl {
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .p-story__ttl {
    margin-bottom: 7%;
  }
}
.p-story__lead {
  position: relative;
  width: 64%;
}
@media screen and (max-width: 767px) {
  .p-story__lead {
    width: 90%;
  }
}
.p-story__lead-text {
  transform: translateY(18px);
  opacity: 0;
}
.p-story.is-active .p-story__lead-text {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.p-story__dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 130%;
  transform: translateX(81%) translateY(58%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-story__dot {
    bottom: 0;
    width: 138%;
    transform: translateX(31%) translateY(93%);
  }
}
.p-story__dot img {
  width: 100%;
  height: 100%;
}

.p-character .l-section__inner {
  width: 100%;
  max-width: none;
}
.p-character__ttl {
  text-align: center;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .p-character__ttl {
    margin-bottom: 25px;
  }
}
.p-character__ttl h2 {
  padding: 0;
  min-height: auto;
}
.p-character__ttl h2::before {
  content: none;
}
.p-character__list {
  position: relative;
  opacity: 0;
  display: flex;
  overflow: hidden;
}
.p-character.is-active .p-character__list {
  opacity: 1;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.p-character__list::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7b6b30;
  box-sizing: border-box;
  z-index: 1;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-character__list::before {
    height: 1px;
  }
}
.p-character.is-active .p-character__list::before {
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(0.83, 0, 0.17, 1);
}
.p-character__list::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #7b6b30;
  box-sizing: border-box;
  z-index: 1;
  transform-origin: right;
  transform: scaleX(0);
}
@media screen and (max-width: 767px) {
  .p-character__list::after {
    height: 1px;
  }
}
.p-character.is-active .p-character__list::after {
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(0.83, 0, 0.17, 1);
}
@media screen and (max-width: 767px) {
  .p-character__list {
    margin-top: -3.5%;
    margin-top: max(-12px, -3.5%);
    display: block;
  }
}
.p-character__list-item {
  width: 9%;
  flex-grow: 1;
  position: relative;
  padding-top: 620px;
  overflow: hidden;
  cursor: pointer;
}
.p-character.is-active .p-character__list-item:nth-child(1) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0s;
}
.p-character.is-active .p-character__list-item:nth-child(2) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.05s;
}
.p-character.is-active .p-character__list-item:nth-child(3) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.1s;
}
.p-character.is-active .p-character__list-item:nth-child(4) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}
.p-character.is-active .p-character__list-item:nth-child(5) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.2s;
}
.p-character.is-active .p-character__list-item:nth-child(6) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.25s;
}
.p-character.is-active .p-character__list-item:nth-child(7) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.3s;
}
.p-character.is-active .p-character__list-item:nth-child(8) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.35s;
}
.p-character.is-active .p-character__list-item:nth-child(9) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.4s;
}
.p-character.is-active .p-character__list-item:nth-child(10) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.45s;
}
.p-character.is-active .p-character__list-item:nth-child(11) .p-character__stand {
  transform: translateX(-50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.5s;
}
@media (hover: hover) {
  .p-character__list-item:hover::after {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  .p-character__list-item:hover .p-character__stand img {
    transform: scale(1.1);
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  }
}
@media screen and (max-width: 767px) {
  .p-character__list-item {
    padding-top: 22.5%;
    width: 100%;
  }
}
.p-character__list-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}
.p-character__list-item::after {
  content: "";
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f6d65f;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  .p-character__list-item::after {
    transform: scaleY(0);
    transform-origin: top;
  }
}
@media screen and (max-width: 767px) {
  .p-character__list-item::after {
    background: linear-gradient(270deg, #f6d65f 0%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (min-width: 768px) {
  .p-character__list-item + .p-character__list-item {
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .p-character__list-item + .p-character__list-item {
    border-top: 1px solid #fff;
  }
}
.p-character__stand {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: -37px;
  left: 50%;
  transform: translateX(-100%);
  width: 1600px;
}
.p-character__stand img {
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  .p-character__stand {
    top: -117px;
    width: min(1237px, 370vw);
  }
  [data-chara=fallout] .p-character__stand {
    top: -127px;
  }
  [data-chara=hallkeeper] .p-character__stand {
    top: -138px;
  }
  [data-chara=wiseman] .p-character__stand {
    top: -133px;
  }
  [data-chara=extra] .p-character__stand {
    top: -124px;
  }
  [data-chara=fallout] .p-character__stand {
    top: -129px;
  }
  [data-chara=aurora] .p-character__stand {
    top: -124px;
  }
  [data-chara=yugiri] .p-character__stand {
    top: -137px;
  }
  [data-chara=lion] .p-character__stand {
    top: -128px;
  }
  [data-chara=wiseman] .p-character__stand {
    top: -130px;
  }
}

.p-chara_modal {
  overflow: hidden;
}
.p-chara_modal__inner {
  display: flex;
  text-align: left;
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__inner {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 0 0 50px;
  }
}
.p-chara_modal__dot {
  position: absolute;
  bottom: 3%;
  right: 0;
  width: 17%;
  transform: translateX(5%);
}
@media screen and (max-width: 767px) {
  .p-chara_modal__dot {
    bottom: -2%;
    width: 48%;
    transform: translateX(16%);
  }
}
.p-chara_modal__dot img {
  opacity: 0;
  transform: scale(0.9);
}
.is-modal-open .p-chara_modal__dot img {
  animation: modal_dot 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 1s;
}
.p-chara_modal__content {
  overflow: hidden;
  width: 50%;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.p-chara_modal__content-box {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-chara_modal__content-box {
    margin-top: -36%;
  }
}
@media screen and (max-width: 767px) {
  .p-chara_modal__content-box {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .p-chara_modal__content {
    width: 100%;
    padding: 0;
    position: relative;
    margin-top: -5%;
  }
}
.p-chara_modal__stand {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__stand {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.p-chara_modal__stand-bg {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  margin-top: 16%;
  width: 260%;
  max-width: 2600px;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__stand-bg {
    left: 24%;
    transform: translate(-50%, -50%);
    margin-top: 11%;
    width: 230%;
  }
}
[data-modal-chara=aurora] .p-chara_modal__stand-bg {
  margin-top: 25%;
}
@media screen and (min-width: 768px) {
  [data-modal-chara=motherbrain] .p-chara_modal__stand-bg {
    left: 50%;
  }
}
@media screen and (min-width: 768px) {
  [data-modal-chara=extra] .p-chara_modal__stand-bg {
    margin-top: 20%;
  }
}
[data-modal-chara=lion] .p-chara_modal__stand-bg {
  margin-top: 34%;
}
@media screen and (max-width: 767px) {
  [data-modal-chara=lion] .p-chara_modal__stand-bg {
    margin-top: 25%;
  }
}
[data-modal-chara=wiseman] .p-chara_modal__stand-bg {
  margin-top: 34%;
}
@media screen and (max-width: 767px) {
  [data-modal-chara=wiseman] .p-chara_modal__stand-bg {
    margin-top: 25%;
  }
}
.p-chara_modal__stand-bg img {
  width: 100%;
  transform: scale(1.1);
  opacity: 0;
}
.is-modal-open .p-chara_modal__stand-bg img {
  animation: modal_bg 5s cubic-bezier(0.33, 1, 0.68, 1) forwards 0.5s;
}
.p-chara_modal__stand-item {
  position: relative;
  left: 35%;
  transform: translateX(-50%) translateY(-5%);
  width: 131%;
  -webkit-mask: url(../img/chara/chara_animation.png) no-repeat 0% 0;
  mask: url(../img/chara/chara_animation.png) no-repeat 0% 0;
  -webkit-mask-size: 1000% 100%;
  mask-size: 1000% 100%;
}
.is-modal-open .p-chara_modal__stand-item {
  animation: maskItem 1.2s steps(9, start) forwards reverse 0.6s;
}
@media screen and (min-width: 768px) {
  .p-chara_modal__stand-item {
    min-width: 650px;
  }
  [data-modal-chara=lion] .p-chara_modal__stand-item {
    transform: translateX(-50%) translateY(-3%);
  }
  [data-modal-chara=wiseman] .p-chara_modal__stand-item {
    transform: translateX(-50%) translateY(-3%);
  }
}
@media screen and (max-width: 767px) {
  .p-chara_modal__stand-item {
    top: 0;
    left: 62%;
    transform: translateX(-50%);
    width: 141%;
  }
}
.p-chara_modal__stand-item img {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-modal-open .p-chara_modal__stand-item img {
  opacity: 1;
  transition-delay: 0.6s;
}
.p-chara_modal__catch {
  font-size: 34px;
  font-size: clamp(20px, 2.5vw, 50px);
  line-height: 1.4;
  font-weight: 700;
  color: #3e3618;
  padding-left: 8.5%;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__catch {
    padding-left: 5.5%;
    width: 65%;
    margin-top: 43px;
  }
}
.p-chara_modal__catch .p-in_text {
  white-space: nowrap;
  text-shadow: 0 0 5px #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-chara_modal__catch .p-in_text:nth-child(2) {
  text-align: right;
  padding-left: 9%;
  margin-top: 3%;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__catch .p-in_text:nth-child(2) {
    margin-top: 8px;
    padding-left: 30px;
  }
}
.p-chara_modal__catch img {
  filter: blur(3px);
  opacity: 0;
}
.is-modal-open .p-chara_modal__catch img {
  animation: modal_catch 1.2s cubic-bezier(0.32, 0, 0.67, 0) forwards 1s;
}
.p-chara_modal__charaname {
  margin-top: min(16.8%, 102px);
  font-size: 44px;
  font-size: clamp(30px, 3.5vw, 64px);
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  padding: 6px 0;
  padding-left: 9.5%;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__charaname {
    font-size: 30px;
    margin-top: 0;
    padding: 2px 0;
    padding-left: 5.5%;
  }
}
.p-chara_modal__charaname .p-in_bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 110%;
  max-width: 600px;
  height: 100%;
  transform: translateY(-50%) translateX(-180%);
  background-color: #5f6018;
}
.is-modal-open .p-chara_modal__charaname .p-in_bg {
  animation: modal_chara_bg 1s cubic-bezier(0.83, 0, 0.17, 1) forwards 0.3s;
}
[data-modal-chara=hyke] .p-chara_modal__charaname .p-in_bg {
  background-color: #6a6f73;
}
[data-modal-chara=riko] .p-chara_modal__charaname .p-in_bg {
  background-color: #c75c7f;
}
[data-modal-chara=motherbrain] .p-chara_modal__charaname .p-in_bg {
  background-color: #005b98;
}
[data-modal-chara=hallkeeper] .p-chara_modal__charaname .p-in_bg {
  background-color: #d87c23;
}
[data-modal-chara=fallout] .p-chara_modal__charaname .p-in_bg {
  background-color: #e83929;
}
[data-modal-chara=extra] .p-chara_modal__charaname .p-in_bg {
  background-color: #589c3b;
}
[data-modal-chara=worldend] .p-chara_modal__charaname .p-in_bg {
  background-color: #0d12db;
}
[data-modal-chara=aurora] .p-chara_modal__charaname .p-in_bg {
  background-color: #372042;
}
[data-modal-chara=yugiri] .p-chara_modal__charaname .p-in_bg {
  background-color: #d44941;
}
[data-modal-chara=lion] .p-chara_modal__charaname .p-in_bg {
  background-color: #204463;
}
[data-modal-chara=wiseman] .p-chara_modal__charaname .p-in_bg {
  background-color: #6e5222;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__charaname .p-in_bg {
    width: 110%;
  }
}
.p-chara_modal__charaname .p-in_bg::before {
  content: "";
  width: 60%;
  max-width: 200px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: skewX(-35deg) translateX(26%);
  background-color: #5f6018;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__charaname .p-in_bg::before {
    width: 26vw;
    height: 100%;
    transform: skewX(-30deg) translateX(36%);
  }
}
[data-modal-chara=hyke] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #6a6f73;
}
[data-modal-chara=riko] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #c75c7f;
}
[data-modal-chara=motherbrain] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #005b98;
}
[data-modal-chara=hallkeeper] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #d87c23;
}
[data-modal-chara=fallout] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #e83929;
}
[data-modal-chara=extra] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #589c3b;
}
[data-modal-chara=worldend] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #0d12db;
}
[data-modal-chara=aurora] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #372042;
}
[data-modal-chara=yugiri] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #d44941;
}
[data-modal-chara=lion] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #204463;
}
[data-modal-chara=wiseman] .p-chara_modal__charaname .p-in_bg::before {
  background-color: #6e5222;
}
.p-chara_modal__charaname .p-in_name {
  color: #fff;
  position: relative;
  opacity: 0;
}
.is-modal-open .p-chara_modal__charaname .p-in_name {
  animation: fade-in 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.75s;
}
.p-chara_modal__cv {
  margin-top: 24px;
  margin-top: max(4%, 24px);
  padding-left: 9%;
  font-size: 27px;
  font-size: clamp(18px, 2vw, 47px);
  transform: rotate(0.05deg) translateY(20px);
  opacity: 0;
}
.is-modal-open .p-chara_modal__cv {
  animation: modal_fadein 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
}
[data-modal-chara=hyke] .p-chara_modal__cv {
  color: #6a6f73;
}
[data-modal-chara=riko] .p-chara_modal__cv {
  color: #c75c7f;
}
[data-modal-chara=motherbrain] .p-chara_modal__cv {
  color: #005b98;
}
[data-modal-chara=hallkeeper] .p-chara_modal__cv {
  color: #d87c23;
}
[data-modal-chara=fallout] .p-chara_modal__cv {
  color: #e83929;
}
[data-modal-chara=extra] .p-chara_modal__cv {
  color: #589c3b;
}
[data-modal-chara=worldend] .p-chara_modal__cv {
  color: #0d12db;
}
[data-modal-chara=aurora] .p-chara_modal__cv {
  color: #372042;
}
[data-modal-chara=yugiri] .p-chara_modal__cv {
  color: #d44941;
}
[data-modal-chara=lion] .p-chara_modal__cv {
  color: #204463;
}
[data-modal-chara=wiseman] .p-chara_modal__cv {
  color: #6e5222;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__cv {
    font-size: 18px;
    padding: 0 5%;
  }
}
.p-chara_modal__prof {
  padding-left: 9%;
  margin-top: 31px;
  margin-top: max(4.8%, 31px);
  line-height: 1.8;
  font-size: clamp(13px, 1.3vw, 20px);
  transform: rotate(0.05deg) translateY(20px);
  opacity: 0;
  width: 70%;
  letter-spacing: 0.5px;
}
.is-modal-open .p-chara_modal__prof {
  animation: modal_fadein 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards 1s;
}
[data-modal-chara=hyke] .p-chara_modal__prof {
  color: #6a6f73;
}
[data-modal-chara=riko] .p-chara_modal__prof {
  color: #c75c7f;
}
[data-modal-chara=motherbrain] .p-chara_modal__prof {
  color: #005b98;
}
[data-modal-chara=hallkeeper] .p-chara_modal__prof {
  color: #d87c23;
}
[data-modal-chara=fallout] .p-chara_modal__prof {
  color: #e83929;
}
[data-modal-chara=extra] .p-chara_modal__prof {
  color: #589c3b;
}
[data-modal-chara=worldend] .p-chara_modal__prof {
  color: #0d12db;
}
[data-modal-chara=aurora] .p-chara_modal__prof {
  color: #372042;
}
[data-modal-chara=yugiri] .p-chara_modal__prof {
  color: #d44941;
}
[data-modal-chara=lion] .p-chara_modal__prof {
  color: #204463;
}
[data-modal-chara=wiseman] .p-chara_modal__prof {
  color: #6e5222;
}
@media screen and (max-width: 767px) {
  .p-chara_modal__prof {
    padding: 0 5%;
    font-size: 13px;
    margin-top: 20px;
    width: 100%;
  }
}

.p-music {
  margin-bottom: 60px;
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .p-music {
    padding-top: 75px;
  }
}
.p-music::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  max-width: 768px;
  padding-top: min(60%, 768px);
  transform: translate(12%, -45%);
  background: url(../img/common/bg_01.png) no-repeat center center;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .p-music::before {
    transform: translate(15%, -75%);
  }
}
.p-music__ttl {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-music__ttl {
    margin-bottom: 28px;
  }
}
.p-music__box-thumb {
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-music__box-thumb {
    width: 100%;
  }
}
.p-music.is-active .p-music__box-thumb {
  opacity: 1;
  transition: opacity 3s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
.p-music__box-thumb img {
  transform: scale(1.2);
  filter: blur(3px);
}
.p-music.is-active .p-music__box-thumb img {
  transform: scale(1);
  filter: blur(0);
  transition: transform 5s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 0.3s;
}
.p-music__box-detail {
  text-align: center;
  color: #7b6b30;
  line-height: 1.6;
  margin-top: 41px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 767px) {
  .p-music__box-detail {
    margin-top: 15px;
  }
}
.p-music__box-artist {
  font-size: 30px;
  letter-spacing: 1px;
  transform: translateY(20px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-music__box-artist {
    font-size: 20px;
  }
}
.p-music.is-active .p-music__box-artist {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
.p-music__box-artist-sub {
  transform: translateY(20px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-music__box-artist-sub {
    font-size: 12px;
  }
}
.p-music.is-active .p-music__box-artist-sub {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
.p-music__box-about {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .p-music__box-about {
    margin-top: 16px;
  }
}
.p-music__box-about-item {
  transform: translateY(20px);
  opacity: 0;
}
.p-music.is-active .p-music__box-about-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-music.is-active .p-music__box-about-item:nth-child(1) {
  transition-delay: 1s;
}
.p-music.is-active .p-music__box-about-item:nth-child(2) {
  transition-delay: 1.18s;
}
.p-music.is-active .p-music__box-about-item:nth-child(3) {
  transition-delay: 1.36s;
}
.p-music.is-active .p-music__box-about-item:nth-child(4) {
  transition-delay: 1.54s;
}
.p-music.is-active .p-music__box-about-item:nth-child(5) {
  transition-delay: 1.72s;
}
.p-music__box-about-item + .p-music__box-about-item {
  margin-top: 26px;
}
.p-music__box-about-ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-music__box-about-ttl {
    font-size: 15px;
  }
}
.p-music__box-about-text {
  font-size: 13.5px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-music__box-about-text {
    margin-top: 2px;
    text-align: left;
    font-size: 11.5px;
    line-height: 1.55;
  }
}

.p-gallery {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-gallery {
    margin-bottom: 21px;
  }
}
.p-gallery__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/gallery/bg.jpg) no-repeat center center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.in-gallery .p-gallery__bg {
  transition: opacity 1.8s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 1;
}
.p-gallery__ttl {
  text-align: center;
  margin-bottom: 69px;
}
@media screen and (max-width: 767px) {
  .p-gallery__ttl {
    margin-bottom: 28px;
  }
}
.p-gallery__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
}
.p-gallery.is-active .p-gallery__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
.p-gallery__list-inner {
  display: block;
  text-decoration: none;
}
.p-gallery__list-item {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 3.5%;
  cursor: pointer;
}
@media (hover: hover) {
  .p-gallery__list-item:hover .p-gallery__list-thumb .p-in_thumb img {
    transform: scale(1.1);
    filter: blur(2px);
    transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), filter 0.6s cubic-bezier(0.32, 0, 0.67, 0);
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__list-item {
    width: 47.5%;
    margin-bottom: 4.5%;
    margin-right: 4.5%;
  }
}
@media screen and (min-width: 768px) {
  .p-gallery__list-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
.p-gallery__list-thumb {
  padding: 5px;
  border: 1px solid #7b6b30;
  position: relative;
}
.p-gallery__list-thumb .p-in_thumb {
  overflow: hidden;
}
.p-gallery__list-thumb .p-in_thumb img {
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), filter 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  .p-gallery__list-thumb {
    padding: 3px;
  }
}
[data-modal] .p-gallery__list-thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18%;
  padding-top: 18%;
  background: url(../img/gallery/btn_play.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}
.p-gallery__list-ttl {
  color: #7b6b30;
  transform: rotate(0.05deg);
  line-height: 1.4;
  margin-top: 11px;
  font-size: 15px;
  font-size: min(15px, 1.5vw);
}
@media screen and (max-width: 767px) {
  .p-gallery__list-ttl {
    font-size: 11px;
    margin-top: 5px;
  }
}

.p-staff {
  margin-bottom: 11px;
}
.p-staff__ttl {
  text-align: center;
  margin-bottom: 71px;
}
@media screen and (max-width: 767px) {
  .p-staff__ttl {
    margin-bottom: 24px;
  }
}
.p-staff__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  filter: blur(3px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-staff__list {
    display: block;
  }
}
.p-staff.is-active .p-staff__list {
  opacity: 1;
  filter: blur(0);
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.32, 0, 0.67, 0);
  transition-delay: 0.3s;
}
.p-staff__list-role {
  font-size: 18px;
  font-size: min(18px, 1.5vw);
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-staff__list-role {
    margin-bottom: 2px;
    font-size: 12px;
  }
}
.p-staff__list-name {
  font-size: 22px;
  font-size: min(22px, 2vw);
}
@media screen and (max-width: 767px) {
  .p-staff__list-name {
    font-size: 16px;
  }
}
.p-staff__list-item {
  width: 33.33%;
  margin-bottom: 3.5%;
  text-align: center;
  line-height: 1.6;
  transform: rotate(0.05deg);
  color: #7b6b30;
}
@media screen and (min-width: 768px) {
  .--en .p-staff__list-item {
    min-width: 35%;
  }
}
.p-staff__list-item.--full {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-staff__list-item {
    width: 100%;
  }
}

.p-spec__ttl {
  margin-bottom: 73px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-spec__ttl {
    margin-bottom: 27px;
  }
}
.p-spec__about {
  padding-bottom: 48%;
}
@media screen and (max-width: 767px) {
  .p-spec__about {
    padding-bottom: 95%;
  }
}
.p-spec__about-list {
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list {
    padding: 0;
  }
}
.p-spec__about-list-item {
  display: flex;
  color: #7b6b30;
  transform: translateY(25px);
  opacity: 0;
}
.p-spec.is-active .p-spec__about-list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-spec.is-active .p-spec__about-list-item:nth-child(1) {
  transition-delay: 0.3s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(2) {
  transition-delay: 0.45s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(3) {
  transition-delay: 0.6s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(4) {
  transition-delay: 0.75s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(5) {
  transition-delay: 0.9s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(6) {
  transition-delay: 1.05s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(7) {
  transition-delay: 1.2s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(8) {
  transition-delay: 1.35s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(9) {
  transition-delay: 1.5s;
}
.p-spec.is-active .p-spec__about-list-item:nth-child(10) {
  transition-delay: 1.65s;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item {
    display: block;
  }
}
.p-spec__about-list-item + .p-spec__about-list-item {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item + .p-spec__about-list-item {
    margin-top: 20px;
  }
}
.p-spec__about-list-item .p-in_ttl {
  flex-shrink: 0;
  font-size: 18px;
  font-size: min(18px, 1.8vw);
  position: relative;
  padding-left: 22px;
  letter-spacing: -0.3px;
  transform: rotate(0.05deg);
  width: 26%;
  max-width: 196px;
  padding-right: 10px;
  color: #3e3618;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_ttl {
    width: 100%;
    padding-right: 0;
    font-size: 14px;
    padding-left: 9px;
  }
}
.p-spec__about-list-item .p-in_ttl::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 3px;
  left: 0;
  transform: rotate(45deg);
  border: 1px solid #7b6b30;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_ttl::before {
    width: 4px;
    height: 4px;
  }
}
.p-spec__about-list-item .p-in_text {
  font-size: 18px;
  font-size: min(18px, 1.8vw);
  line-height: 1.7;
  transform: rotate(0.05deg);
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_text {
    font-size: 13px;
    margin-top: 3px;
    padding-left: 10px;
  }
}
.p-spec__about-list-item .p-in_text small {
  vertical-align: baseline;
  font-size: 16px;
  font-size: min(16px, 1.6vw);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_text small {
    font-size: 11px;
    line-height: 1.5;
  }
}
.p-spec__about-list-item .p-in_img {
  margin-top: -6px;
  width: 26%;
  max-width: 255px;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-spec__about-list-item .p-in_img {
    max-height: 55px;
    height: 5vw;
  }
  .p-spec__about-list-item .p-in_img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_img {
    margin-top: 8px;
    padding-left: 10px;
    width: 41%;
  }
}
@media screen and (min-width: 768px) {
  .p-spec__about-list-item .p-in_img + .p-in_img {
    margin-left: 2%;
  }
}
.p-spec__about-list-item .p-in_img.--aniplex {
  width: 12%;
}
@media screen and (max-width: 767px) {
  .p-spec__about-list-item .p-in_img.--aniplex {
    width: 20%;
  }
}
.p-spec__dot {
  position: absolute;
  bottom: -10%;
  left: -12.5%;
  pointer-events: none;
  width: 86%;
}
@media screen and (max-width: 767px) {
  .p-spec__dot {
    left: -23%;
    width: 128%;
    bottom: 5.5%;
  }
}
.p-spec__dot img {
  height: 100%;
}



.artist-name{
  opacity: 0;
  margin: 10px auto 0;
  width: 90%;
  max-width: 600px;
  font-size: 13px;
  text-align: right;
  color: #7b6b30;
}
.p-music.is-active .artist-name{
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .artist-name{
    margin: 5px auto 0;
    width: 100%;
    font-size: 10px;
  }
}