html {
  font-family: "Shippori Mincho B1", serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.l-header__link {
  display: block;
  padding: 40px;
  text-decoration: none;
}
@media only screen and (max-width: 736px) {
  .l-header__link {
    padding: 5vw;
  }
}

.l-header__link-line {
  display: block;
  line-height: 1;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #882826;
}

.l-header__link-line--01 {
  font-size: 36px;
}
@media only screen and (max-width: 736px) {
  .l-header__link-line--01 {
    font-size: 24px;
  }
}

.l-header__link-line--02 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
@media only screen and (max-width: 736px) {
  .l-header__link-line--02 {
    font-size: 13.5px;
  }
}

.l-main {
  position: relative;
  overflow: hidden;
}

.l-footer {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px 80px;
  background: #C50018;
}
@media only screen and (max-width: 736px) {
  .l-footer {
    padding: 5vw;
  }
}

.l-footer__copyright {
  text-align: center;
}

.l-footer__copyright-inner {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.c-credit-list {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-auto-flow: dense;
  gap: 16px 8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list {
    gap: 8px 4px;
  }
}

.c-credit-list--caption {
  position: absolute;
  top: calc(100% + 16px);
  left: -50%;
  right: -50%;
  margin-inline: auto;
}

.c-credit-list__place {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  grid-column: 1/2;
  font-size: 12px;
  line-height: 1;
  color: #882826;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__place {
    font-size: 10px;
  }
}
.c-credit-list__place::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(136, 40, 38, 0.15);
}

.c-credit-list__item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: subgrid;
  grid-column: span 3;
  text-decoration: none;
}
.c-credit-list__item::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #882826;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.c-credit-list__item::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23882826%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(1px);
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item::after {
    width: 12px;
    height: 12px;
  }
}
@media (any-hover: hover) {
  .c-credit-list__item {
    cursor: pointer;
  }
  .c-credit-list__item:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}

.c-credit-list__item--black::before {
  background: #444;
}
.c-credit-list__item--black::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23444444%22%2F%3E%3C%2Fsvg%3E");
}

.c-credit-list__item-name {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #882826;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-name {
    font-size: 10px;
  }
}
.c-credit-list__item-name::after {
  content: "";
  display: block;
  min-width: 12px;
  height: 1px;
  background: rgba(136, 40, 38, 0.4);
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-name::after {
    min-width: 8px;
    transform: translateY(1px);
  }
}

.c-credit-list__item-name--black {
  color: #444;
}
.c-credit-list__item-name--black::after {
  background: rgba(68, 68, 68, 0.4);
}

.c-credit-list__item-price {
  font-size: 16px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  color: #882826;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-price {
    font-size: 10px;
  }
}

.c-credit-list__item-price--black {
  color: #444;
}

.c-credit-list__item-variation {
  display: grid;
  place-items: center;
  grid-column: span 3;
  font-size: 12px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  color: #882826;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-variation {
    font-size: 10px;
  }
}

.c-ornament__wrapper {
  position: absolute;
  pointer-events: none;
}

.c-ornament {
  width: 100%;
  height: auto;
}

.p-mainvisual {
  background: #FFF;
}

.p-mainvisual__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
}

.p-mainvisual__title {
  position: absolute;
  top: 80px;
  left: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title {
    top: 40px;
    left: 0;
    right: 0;
    margin-inline: auto;
  }
}

.p-mainvisual__title-line {
  display: block;
  flex-shrink: 0;
  line-height: 1;
}

.p-mainvisual__title-line-logo-monchhichi {
  width: 20vw;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .p-mainvisual__title-line-logo-monchhichi {
    width: 240px;
  }
}
@media only screen and (max-width: 960px) {
  .p-mainvisual__title-line-logo-monchhichi {
    font-size: 140px;
  }
}
@media only screen and (max-width: 520px) {
  .p-mainvisual__title-line-logo-monchhichi {
    width: 160px;
  }
}

.p-mainvisual__title-line-logo-heather {
  width: 20vw;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .p-mainvisual__title-line-logo-heather {
    width: 240px;
  }
}
@media only screen and (max-width: 960px) {
  .p-mainvisual__title-line-logo-heather {
    font-size: 140px;
  }
}
@media only screen and (max-width: 520px) {
  .p-mainvisual__title-line-logo-heather {
    width: 160px;
  }
}

.p-mainvisual__title-line--02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-line--02 {
    width: 20px;
    height: 20px;
  }
}
.p-mainvisual__title-line--02::before, .p-mainvisual__title-line--02::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 1px;
  background: #FFF;
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-line--02::before, .p-mainvisual__title-line--02::after {
    width: 20px;
  }
}
.p-mainvisual__title-line--02::before {
  transform: rotate(45deg);
}
.p-mainvisual__title-line--02::after {
  transform: rotate(-45deg);
}

.p-mainvisual__hero-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.p-mainvisual__hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: auto;
  transform: translateX(-10%) translateY(-30%);
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__hero {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translateX(0) translateY(0);
  }
}

.p-monchhichi {
  position: relative;
}

.p-monchhichi__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.p-monchhichi__background {
  height: 100%;
  background: url(../img/bg_border.svg) repeat bottom left/32px 32px;
  transition: all 2s ease-in-out;
  opacity: 0;
  animation: flow-background 4s linear infinite;
}
.p-monchhichi__background.is-on {
  opacity: 0.1;
}

.p-monchhichi__ornament--01 {
  bottom: -40px;
  left: -5%;
  width: 360px;
  height: auto;
  z-index: 20;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__ornament--01 {
    left: -40px;
    top: -20px;
    bottom: initial;
    width: 120px;
  }
}

.p-monchhichi__ornament--02 {
  bottom: -40px;
  right: -5%;
  width: 360px;
  height: auto;
  z-index: 20;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__ornament--02 {
    right: -40px;
    top: -20px;
    bottom: initial;
    width: 120px;
  }
}

.p-monchhichi__inner {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 120px 80px 160px;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__inner {
    height: auto;
    max-height: none;
    padding: 25vw 5vw 10vw;
  }
}

.p-monchhichi__box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  width: 100%;
  max-width: 800px;
  background: #FFF;
  border: solid 20px #c50018;
  z-index: 20;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__box {
    padding: 60px 20px 40px;
    gap: 20px;
  }
}

.p-monchhichi__doll-wrapper {
  position: absolute;
  top: -160px;
  width: 320px;
  height: auto;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__doll-wrapper {
    top: -80px;
    width: 200px;
  }
}

.p-monchhichi__doll {
  width: 100%;
  height: auto;
}

.p-monchhichi__title-logo {
  width: 240px;
  height: auto;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__title-logo {
    width: 180px;
  }
}

.p-monchhichi__description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.p-monchhichi__description {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #432;
  text-align: center;
}
@media only screen and (max-width: 736px) {
  .p-monchhichi__description {
    font-size: 12px;
  }
}

.p-monchhichi__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.p-monchhichi__sns-list-item {
  display: block;
  width: 32px;
  height: 32px;
}

.p-monchhichi__sns-icon {
  width: 100%;
  height: auto;
}

.p-about {
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 736px) {
  .p-about {
    padding-bottom: 60px;
  }
}

.p-about__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.p-about__background {
  height: 100%;
  background: url(../img/bg_border.svg) repeat top left/32px 32px;
  transition: all 2s ease-in-out;
  opacity: 0;
  animation: flow-background 4s linear infinite;
}
.p-about__background.is-on {
  opacity: 0.1;
}

.p-about__boxes {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  width: 100%;
  z-index: 30;
}
@media only screen and (max-width: 736px) {
  .p-about__boxes {
    grid-template-columns: 20px 1fr 20px;
    grid-template-rows: 1fr 60px 1fr;
  }
}

.p-about__box:first-child {
  grid-area: 1/1/2/3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 120px 240px 120px 80px;
  background: #c50018;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-about__box:first-child {
    align-items: center;
    grid-area: 1/1/3/3;
    padding: 60px 20px 100px 40px;
    gap: 20px;
  }
}
.p-about__box:first-child.is-on {
  transform: translateY(-80px);
}
@media only screen and (max-width: 736px) {
  .p-about__box:first-child.is-on {
    transform: translateY(0);
  }
}

.p-about__box:last-child {
  grid-area: 1/2/2/4;
  background: #FFF;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-about__box:last-child {
    grid-area: 2/2/4/4;
  }
}
.p-about__box:last-child.is-on {
  transform: translateY(0);
}
@media only screen and (max-width: 736px) {
  .p-about__box:last-child.is-on {
    transform: translateY(0);
  }
}

.p-about__title-logo {
  width: 20vw;
  height: auto;
}
@media only screen and (max-width: 736px) {
  .p-about__title-logo {
    width: 180px;
  }
}

.p-about__description-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}

.p-about__description {
  position: relative;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #FFF;
  opacity: 0.8;
}
@media only screen and (max-width: 736px) {
  .p-about__description {
    font-size: 14px;
  }
}

.p-about__box-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-first {
  position: relative;
}

.p-first__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.p-first__background {
  width: 100%;
  height: 100%;
  background: #c50018;
  transition: all 2s ease-in-out;
  scale: 1 0;
  transform-origin: top;
}
.p-first__background.is-on {
  scale: 1 1;
}

.p-first__inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1440px;
  height: 150vw;
  max-height: 2160px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-first__inner {
    height: auto;
    max-height: none;
    padding: 25vw 5vw 10vw;
  }
}

.p-first__photo-wrapper {
  position: absolute;
}
@media only screen and (max-width: 736px) {
  .p-first__photo-wrapper {
    position: relative;
  }
}

.p-first__photo-wrapper--01 {
  top: 10.5%;
  left: 10%;
  width: 39.5%;
}
@media only screen and (max-width: 736px) {
  .p-first__photo-wrapper--01 {
    top: initial;
    left: initial;
    justify-self: start;
    width: 44vw;
  }
}

.p-first__photo-wrapper--02 {
  top: 10.5%;
  right: 10%;
  width: 39.5%;
}
@media only screen and (max-width: 736px) {
  .p-first__photo-wrapper--02 {
    position: absolute;
    top: 25vw;
    right: 5vw;
    width: 44vw;
  }
}

.p-first__photo-wrapper--03 {
  top: 59.8%;
  left: 10%;
  width: 29%;
}
@media only screen and (max-width: 736px) {
  .p-first__photo-wrapper--03 {
    top: initial;
    left: initial;
    justify-self: end;
    margin-top: 1vw;
    width: 35vw;
  }
}

.p-first__photo-wrapper--04 {
  top: 43%;
  right: 10%;
  width: 50%;
}
@media only screen and (max-width: 736px) {
  .p-first__photo-wrapper--04 {
    top: initial;
    right: initial;
    justify-self: end;
    margin-top: 1vw;
    width: 80vw;
  }
}

.p-first__photo {
  width: 100%;
  height: auto;
}

.p-first__credit-list {
  position: absolute;
  top: 85%;
  right: 10%;
}
@media only screen and (max-width: 736px) {
  .p-first__credit-list {
    position: relative;
    top: initial;
    right: initial;
    justify-self: flex-start;
    margin-top: 10vw;
  }
}

.p-first__credit-list__place {
  color: #FFF;
}
.p-first__credit-list__place::after {
  background-color: rgba(255, 255, 255, 0.4);
}

.p-first__credit-list__place--first {
  grid-row: span 2;
}

.p-first__credit-list__place--second {
  grid-row: span 1;
}

.p-first__credit-list__place--third {
  grid-row: span 4;
}

.p-first__credit-list-item::before {
  background: #FFF;
}
.p-first__credit-list-item::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
}

.p-first__credit-list-item-name {
  color: #FFF;
}
.p-first__credit-list-item-name::after {
  background: rgba(255, 255, 255, 0.4);
}

.p-first__credit-list-item-price {
  color: #FFF;
}

.p-first__ornament--01 {
  top: -2%;
  left: -10%;
  width: 10%;
  height: auto;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-first__ornament--01 {
    left: -20%;
    width: 20%;
  }
}
.p-first__ornament--01:has(.is-on) {
  animation: walk-in 4s linear forwards, sway 2s ease-in-out 4s infinite;
}
@media only screen and (max-width: 736px) {
  .p-first__ornament--01:has(.is-on) {
    animation: walk-in-half 4s linear forwards, sway 2s ease-in-out 4s infinite;
  }
}

@keyframes walk-in {
  0% {
    left: -10%;
    top: -2%;
    rotate: 5deg;
  }
  10% {
    top: -1%;
    rotate: -5deg;
  }
  20% {
    top: -2%;
    rotate: 5deg;
  }
  30% {
    top: -1%;
    rotate: -5deg;
  }
  40% {
    top: -2%;
    rotate: 5deg;
  }
  50% {
    top: -1%;
    rotate: -5deg;
  }
  60% {
    top: -2%;
    rotate: 5deg;
  }
  70% {
    top: -1%;
    rotate: -5deg;
  }
  80% {
    top: -2%;
    rotate: 5deg;
  }
  90% {
    top: -1%;
    rotate: -5deg;
  }
  100% {
    top: -2%;
    left: 30%;
    rotate: 5deg;
  }
}
@keyframes walk-in-half {
  0% {
    left: -20%;
    top: -2%;
    rotate: 5deg;
  }
  10% {
    top: -1%;
    rotate: -5deg;
  }
  20% {
    top: -2%;
    rotate: 5deg;
  }
  30% {
    top: -1%;
    rotate: -5deg;
  }
  40% {
    top: -2%;
    rotate: 5deg;
  }
  50% {
    top: -1%;
    rotate: -5deg;
  }
  60% {
    top: -2%;
    rotate: 5deg;
  }
  70% {
    top: -1%;
    rotate: -5deg;
  }
  80% {
    top: -2%;
    rotate: 5deg;
  }
  90% {
    top: -1%;
    rotate: -5deg;
  }
  100% {
    top: -2%;
    left: 10%;
    rotate: 5deg;
  }
}
@keyframes sway {
  0%, 100% {
    rotate: 5deg;
  }
  50% {
    rotate: -5deg;
  }
}
.p-first__ornament--02 {
  top: 3%;
  right: 10%;
  font-size: 86.4px;
  font-family: "Oleo Script Swash Caps", system-ui;
  text-align: end;
  color: #FFF;
  z-index: 20;
}
@media only screen and (max-width: 1440px) {
  .p-first__ornament--02 {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 736px) {
  .p-first__ornament--02 {
    top: 10vw;
    font-size: 8vw;
  }
}

.p-first__ornament--03 {
  top: 47.5%;
  left: 0;
  width: 45%;
  max-width: 864px;
  z-index: 10;
  transform: translateY(-50%);
}
@media only screen and (max-width: 736px) {
  .p-first__ornament--03 {
    top: 37.5%;
    width: 70%;
  }
}

.p-second {
  position: relative;
  background: #FFF;
  z-index: 10;
}

.p-second__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.p-second__background {
  height: 100%;
  background: url(../img/bg_heart.svg) repeat top left/64px 64px;
  transition: all 2s ease-in-out;
  opacity: 0;
  animation: flow-background 4s linear infinite;
}
.p-second__background.is-on {
  opacity: 0.1;
}

@keyframes flow-background {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 64px 64px;
  }
}
.p-second__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 150vw;
  max-height: 2160px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-second__inner {
    height: auto;
    max-height: none;
    padding: 10vw 5vw 20vw;
  }
}

.p-second__photo-wrapper {
  position: absolute;
}
@media only screen and (max-width: 736px) {
  .p-second__photo-wrapper {
    position: relative;
  }
}

.p-second__photo-wrapper--01 {
  top: 5%;
  left: 10%;
  width: 39%;
}
@media only screen and (max-width: 736px) {
  .p-second__photo-wrapper--01 {
    top: initial;
    left: initial;
    justify-self: flex-start;
    width: 80%;
  }
}

.p-second__photo-wrapper--02 {
  top: 10%;
  right: 10%;
  width: 39%;
}
@media only screen and (max-width: 736px) {
  .p-second__photo-wrapper--02 {
    top: initial;
    right: initial;
    justify-self: flex-end;
    margin-top: -5vw;
    width: 80%;
  }
}
.p-second__photo-wrapper--02 img {
  border: solid 30px #c50018;
}
@media only screen and (max-width: 736px) {
  .p-second__photo-wrapper--02 img {
    border-width: 5vw;
  }
}

.p-second__photo-wrapper--03 {
  top: 42%;
  left: 20%;
  width: 60%;
}
@media only screen and (max-width: 736px) {
  .p-second__photo-wrapper--03 {
    top: initial;
    left: initial;
    justify-self: center;
    margin-top: 15vw;
    width: 100%;
  }
}

.p-second__photo {
  width: 100%;
  height: auto;
}

.p-second__credit-list {
  position: absolute;
  top: 80%;
  left: 10%;
  padding: 60px;
  background: #c50018;
}
@media only screen and (max-width: 736px) {
  .p-second__credit-list {
    position: relative;
    top: initial;
    left: initial;
    margin-top: 5vw;
    padding: 10vw 5vw;
  }
}

.p-second__credit-list__place {
  color: #FFF;
}
.p-second__credit-list__place::after {
  background: rgba(255, 255, 255, 0.4);
}

.p-second__credit-list__place--first {
  grid-row: span 3;
}

.p-second__credit-list__place--second {
  grid-row: span 2;
}

.p-second__credit-list__place--third {
  grid-row: span 2;
}

.p-second__credit-list-item::before {
  background: #FFF;
}
.p-second__credit-list-item::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
}

.p-second__credit-list-item-name {
  color: #FFF;
}
.p-second__credit-list-item-name::after {
  background: rgba(255, 255, 255, 0.4);
}

.p-second__credit-list-item-price {
  color: #FFF;
}

.p-third {
  position: relative;
  background: #FFF;
}

.p-third__background-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.p-third__background {
  width: 100%;
  height: 100%;
  background: #7A5457;
  z-index: -10;
  scale: 0 1;
  transition: all 2s ease-in-out;
}

.p-third__inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1440px;
  height: 125vw;
  max-height: 1800px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-third__inner {
    height: auto;
    max-height: none;
    padding: 20vw 5vw 40vw;
  }
}

.p-third__photo-wrapper {
  position: absolute;
}
@media only screen and (max-width: 736px) {
  .p-third__photo-wrapper {
    position: relative;
  }
}

.p-third__photo-wrapper--01 {
  top: 5%;
  left: 10%;
  width: 50%;
}
@media only screen and (max-width: 736px) {
  .p-third__photo-wrapper--01 {
    order: 1;
    top: initial;
    left: initial;
    justify-self: flex-start;
    width: 70vw;
  }
}

.p-third__photo-wrapper--02 {
  top: 55%;
  left: 10%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-third__photo-wrapper--02 {
    order: 3;
    top: initial;
    left: initial;
    justify-self: flex-start;
    margin-top: 10vw;
    width: 60vw;
  }
}

.p-third__photo {
  width: 100%;
  height: auto;
}

.p-third__ornament--01 {
  top: -5%;
  right: 10%;
  width: 25%;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-third__ornament--01 {
    top: -5%;
    right: 0;
    width: 50vw;
  }
}

.p-third__ornament--02 {
  bottom: 0;
  right: -10%;
  width: 60%;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-third__ornament--02 {
    width: 70vw;
  }
}

.p-third__ornament--03 {
  bottom: 2.5%;
  right: 50%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-third__ornament--03 {
    right: 55vw;
    width: 25vw;
  }
}

.p-third__ornament--04 {
  top: 72.5%;
  right: 52.5%;
  width: 15%;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-third__ornament--04 {
    top: 60%;
    right: 15vw;
    width: 20vw;
  }
}

.p-third__credit-list {
  position: absolute;
  top: 55%;
  left: 32.5%;
}
@media only screen and (max-width: 736px) {
  .p-third__credit-list {
    order: 2;
    position: relative;
    top: initial;
    left: initial;
    margin-top: 10vw;
  }
}

.p-third__credit-list__place--first {
  grid-row: span 1;
}

.p-third__credit-list__place--second {
  grid-row: span 3;
}

.p-third__credit-list__place--third {
  grid-row: span 3;
}

.p-third__credit-list__place--fourth {
  grid-row: span 2;
}

.p-fourth {
  position: relative;
}

.p-fourth__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.p-fourth__background {
  height: 100%;
  background: url(../img/bg_heart.svg) repeat top left/64px 64px;
  transition: all 2s ease-in-out;
  opacity: 0;
  animation: flow-background 4s linear infinite;
}
.p-fourth__background.is-on {
  opacity: 0.1;
}

.p-fourth__inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1440px;
  height: 200vw;
  max-height: 2880px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-fourth__inner {
    height: auto;
    max-height: none;
    padding: 10vw 5vw 5vw;
  }
}

.p-fourth__photo-wrapper {
  position: absolute;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper {
    position: relative;
  }
}

.p-fourth__photo-wrapper--01 {
  top: 5%;
  left: 10%;
  width: 55%;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--01 {
    top: initial;
    left: initial;
    width: 70vw;
    justify-self: flex-start;
  }
}

.p-fourth__photo-wrapper--02 {
  top: 33%;
  right: 10%;
  width: 30%;
  z-index: 5;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--02 {
    top: initial;
    right: initial;
    justify-self: flex-end;
    margin-top: -20vw;
    width: 50vw;
  }
}

.p-fourth__photo-wrapper--03 {
  top: 42.5%;
  left: 5%;
  width: 30%;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--03 {
    top: initial;
    left: -5vw;
    justify-self: flex-start;
    margin-top: -10vw;
    width: 60vw;
  }
}
.p-fourth__photo-wrapper--03 img {
  border: solid 20px #c50018;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--03 img {
    border-width: 5vw;
  }
}

.p-fourth__photo-wrapper--04 {
  top: 45%;
  left: 30%;
  width: 35%;
  z-index: 20;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--04 {
    top: initial;
    left: initial;
    justify-self: center;
    margin-top: -5vw;
    width: 80vw;
  }
}

.p-fourth__photo-wrapper--05 {
  top: 50%;
  right: 5%;
  width: 40%;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--05 {
    top: initial;
    right: -5vw;
    justify-self: flex-end;
    margin-top: -5vw;
    width: 60vw;
  }
}
.p-fourth__photo-wrapper--05 img {
  border: solid 20px #c50018;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--05 img {
    border-width: 5vw;
  }
}

.p-fourth__photo-wrapper--06 {
  top: 58.75%;
  left: 10%;
  width: 40%;
}
@media only screen and (max-width: 736px) {
  .p-fourth__photo-wrapper--06 {
    top: initial;
    left: initial;
    justify-self: flex-start;
    margin-top: 10vw;
    width: 70vw;
  }
}

.p-fourth__photo {
  width: 100%;
  height: auto;
}

.p-fourth__ornament--01 {
  top: 11%;
  right: 10%;
  width: 25%;
  z-index: 2;
}
@media only screen and (max-width: 736px) {
  .p-fourth__ornament--01 {
    top: 35vw;
    right: 5%;
    width: 35vw;
  }
}

.p-fourth__ornament--02 {
  top: 67.5%;
  right: 2.5%;
  width: 45%;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-fourth__ornament--02 {
    top: 370vw;
    right: -10vw;
    width: 60vw;
  }
}

.p-fourth__credit-list {
  position: absolute;
  top: 85%;
  left: 5%;
  padding: 60px;
  background: #F9E1E1;
}
@media only screen and (max-width: 736px) {
  .p-fourth__credit-list {
    position: relative;
    top: initial;
    left: initial;
    justify-self: center;
    margin-top: 5vw;
    padding: 10vw 5vw;
  }
}

.p-goods {
  position: relative;
  background: #FFF;
}

.p-goods__background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.p-goods__background {
  width: 100%;
  height: 100%;
  background: #C50018;
  scale: 0 1;
  transform-origin: left;
  transition: all 2s ease-in-out;
  z-index: -10;
}
.p-goods__background.is-on {
  scale: 1 1;
}

.p-goods__inner {
  position: relative;
  display: grid;
  justify-content: center;
  gap: 80px;
  padding: 120px 80px 80px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 100%;
}
@media only screen and (max-width: 736px) {
  .p-goods__inner {
    gap: 40px;
    padding: 20vw 5vw 10vw;
  }
}

.p-goods__section-title {
  font-size: 48px;
  font-family: "Oleo Script Swash Caps", system-ui;
  line-height: 1;
  color: #FFF;
  text-align: center;
}

.p-goods__list {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 960px;
}
@media only screen and (max-width: 736px) {
  .p-goods__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-goods__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.p-goods__list-item-image-wrapper {
  width: 100%;
  border: solid 1px rgba(255, 255, 255, 0.5);
}

.p-goods__list-item-image {
  width: 100%;
  height: auto;
}

.p-goods__credit-list-item::before {
  background: #FFF;
}
.p-goods__credit-list-item::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
}

.p-goods__credit-list-item-name {
  color: #FFF;
}
.p-goods__credit-list-item-name::after {
  background: rgba(255, 255, 255, 0.4);
}

.p-goods__credit-list-item-price {
  color: #FFF;
}

.p-link {
  position: relative;
  background: #C50018;
}

.p-link__inner {
  display: grid;
  gap: 80px;
  padding: 80px;
}
@media only screen and (max-width: 736px) {
  .p-link__inner {
    gap: 20px;
    padding: 10vw 5vw;
  }
}

.p-link__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-inline: auto;
  width: 100%;
  max-width: 960px;
  height: auto;
  aspect-ratio: 2;
  text-decoration: none;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-link__link {
    aspect-ratio: 1.2;
    gap: 24px;
  }
}
@media (any-hover: hover) {
  .p-link__link {
    cursor: pointer;
  }
  .p-link__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .p-link__link:hover::before {
    opacity: 0.8;
    animation: swing 1s ease;
  }
  .p-link__link:hover .p-link__frame-upper::before {
    width: calc(100% - 120px);
  }
  .p-link__link:hover .p-link__frame-upper::after {
    height: calc(100% - 120px);
  }
  .p-link__link:hover .p-link__frame-lower::before {
    height: calc(100% - 120px);
  }
  .p-link__link:hover .p-link__frame-lower::after {
    width: calc(100% - 120px);
  }
  .p-link__link:hover .p-link__main-text {
    text-indent: 0.2em;
    letter-spacing: 0.2em;
  }
  .p-link__link:hover .p-link__sub-text {
    text-indent: 0.4em;
    letter-spacing: 0.4em;
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-link__frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.p-link__frame-upper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.p-link__frame-upper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-top: solid 1px rgba(255, 255, 255, 0.4);
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  transition: all 1s ease-in-out;
}
.p-link__frame-upper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-top: solid 1px rgba(255, 255, 255, 0.4);
  border-right: solid 1px rgba(255, 255, 255, 0.4);
  transition: all 1s ease-in-out;
}

.p-link__frame-lower {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.p-link__frame-lower::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
  border-left: solid 1px rgba(255, 255, 255, 0.4);
  transition: all 1s ease-in-out;
}
.p-link__frame-lower::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
  border-right: solid 1px rgba(255, 255, 255, 0.4);
  transition: all 1s ease-in-out;
}

.p-link__main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  color: #FFF;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-link__main-text {
    font-size: 18px;
  }
}

.p-link__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-link__title {
    flex-direction: column;
    gap: 8px;
  }
}

.p-link__title-line {
  display: block;
  flex-shrink: 0;
  line-height: 1;
}

.p-link__title-line-logo-monchhichi {
  width: 280px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .p-link__title-line-logo-monchhichi {
    width: 240px;
  }
}
@media only screen and (max-width: 960px) {
  .p-link__title-line-logo-monchhichi {
    width: 200px;
  }
}
@media only screen and (max-width: 520px) {
  .p-link__title-line-logo-monchhichi {
    width: 160px;
  }
}

.p-link__title-line-logo-heather {
  width: 280px;
  height: auto;
}
@media only screen and (max-width: 1280px) {
  .p-link__title-line-logo-heather {
    width: 240px;
  }
}
@media only screen and (max-width: 960px) {
  .p-link__title-line-logo-heather {
    width: 200px;
  }
}
@media only screen and (max-width: 520px) {
  .p-link__title-line-logo-heather {
    width: 160px;
  }
}

.p-link__title-line--02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
}
.p-link__title-line--02::before, .p-link__title-line--02::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 1px;
  background: #FFF;
}
.p-link__title-line--02::before {
  transform: rotate(45deg);
}
.p-link__title-line--02::after {
  transform: rotate(-45deg);
}

.p-link__divider {
  display: block;
  width: 64px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-link__divider {
    width: 48px;
  }
}

.p-link__sub-text {
  display: block;
  font-size: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-indent: 0.3em;
  letter-spacing: 0.3em;
  color: #FFF;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-link__sub-text {
    font-size: 16px;
  }
}

.p-link__note-list {
  display: grid;
  margin-inline: auto;
  place-items: center;
  z-index: 10;
}
@media only screen and (max-width: 736px) {
  .p-link__note-list {
    place-items: flex-start;
  }
}

.p-link__note-list-item-inner {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 736px) {
  .p-link__note-list-item-inner {
    font-size: 12px;
  }
}

.p-link__ornament--01 {
  bottom: 0;
  left: -60px;
  width: 200px;
  height: auto;
  z-index: 10;
}
@media only screen and (max-width: 960px) {
  .p-link__ornament--01 {
    width: 160px;
  }
}
@media only screen and (max-width: 520px) {
  .p-link__ornament--01 {
    left: -40px;
    width: 120px;
  }
}

.p-link__ornament--02 {
  bottom: 0;
  right: -60px;
  width: 200px;
  height: auto;
  z-index: 10;
}
@media only screen and (max-width: 960px) {
  .p-link__ornament--02 {
    width: 160px;
  }
}
@media only screen and (max-width: 520px) {
  .p-link__ornament--02 {
    right: -40px;
    width: 120px;
  }
}

.p-credit {
  background: #C50018;
}

.p-credit__inner {
  display: grid;
  justify-content: center;
  gap: 96px;
  margin-inline: auto;
  padding: 80px 80px 120px;
}
@media only screen and (max-width: 736px) {
  .p-credit__inner {
    padding: 10vw 5vw 20vw;
    gap: 64px;
  }
}

.p-credit__model-container {
  display: grid;
  grid-template-columns: 400px 400px;
  gap: 40px;
  align-items: flex-start;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-container {
    grid-template-columns: 1fr;
    place-items: center;
    gap: 24px;
  }
}

.p-credit__model-thumbnail-wrapper {
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding: 60px;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .p-credit__model-thumbnail-wrapper {
    cursor: pointer;
  }
  .p-credit__model-thumbnail-wrapper:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

.p-credit__model-thumbnail {
  width: 100%;
  height: auto;
}

.p-credit__model-text-container {
  display: grid;
  gap: 24px;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-text-container {
    justify-content: center;
    gap: 16px;
  }
}

.p-credit__model-title {
  font-size: 24px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 736px) {
  .p-credit__model-title {
    font-size: 20px;
    text-align: center;
  }
}

.p-credit__model-divider {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 736px) {
  .p-credit__model-divider {
    justify-self: center;
  }
}

.p-credit__model-description-container {
  display: grid;
  gap: 16px;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-description-container {
    place-items: center;
    gap: 8px;
  }
}

.p-credit__model-description {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 736px) {
  .p-credit__model-description {
    text-align: center;
  }
}

.p-credit__model-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.p-credit__model-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.p-credit__model-link::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2264%22%20height%3D%2264%22%20viewBox%3D%220%200%2064%2064%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8.42478%2050.7837L44.412%2014.7965H8V8H56V56H49.2035V19.588L13.2163%2055.5752L8.42478%2050.7837Z%22%20fill%3D%22%23FFF%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}
@media (any-hover: hover) {
  .p-credit__model-link {
    cursor: pointer;
  }
  .p-credit__model-link:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }
}

.p-credit__share-list-container {
  display: grid;
  gap: 24px;
  justify-content: center;
}

.p-credit__share-list-title {
  font-size: 20px;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  font-weight: 400;
  text-align: center;
  color: #FFF;
}

.p-credit__share-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media only screen and (max-width: 736px) {
  .p-credit__share-list {
    gap: 16px;
  }
}

.p-credit__share-list-item-link {
  display: block;
  width: 64px;
  padding: 8px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 736px) {
  .p-credit__share-list-item-link {
    width: 54px;
  }
}
@media (any-hover: hover) {
  .p-credit__share-list-item-link {
    cursor: pointer;
  }
  .p-credit__share-list-item-link:hover {
    opacity: 0.6;
  }
}

.p-credit__share-list-item-icon {
  width: 100%;
  height: auto;
}

.p-credit__divider {
  display: block;
  width: 128px;
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
}

.p-credit__cast-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 8px;
}

.p-credit__cast-list-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 40px;
}
@media only screen and (max-width: 736px) {
  .p-credit__cast-list-item {
    gap: 5vw;
  }
}

.p-credit__cast-list-item-position {
  justify-self: flex-end;
  font-size: 14px;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-align: right;
  color: #FFF;
}

.p-credit__cast-list-item-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.p-credit__cast-list-item-name-link {
  color: rgba(255, 255, 255, 0.6);
}

.p-credit__cast-list-item-name-small {
  font-size: 12px;
}

@media only screen and (max-width: 736px) {
  .u-sp-none {
    display: none !important;
  }
}

.u-fade-in {
  opacity: 0;
}

.u-fade-in.is-on {
  animation: fade-in 1s ease forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u-fade-in-up {
  opacity: 0;
}

.u-fade-in-up.is-on {
  animation: fade-in-up 1s ease forwards;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-slide-in {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.u-slide-in.is-on {
  animation: slide-in 1s ease-in-out forwards;
}

@keyframes slide-in {
  0% {
    clip-path: polygon(-20% -20%, -20% -20%, -20% 120%, -20% 120%);
  }
  100% {
    clip-path: polygon(-20% -20%, 120% -20%, 120% 120%, -20% 120%);
  }
}
.u-blur-in {
  opacity: 0;
}

.u-blur-in.is-on {
  animation: blur-in 2s ease-in-out forwards;
}

@keyframes blur-in {
  0% {
    opacity: 0;
    filter: blur(40px);
    scale: 1.1;
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    scale: 1;
  }
}
.u-rotate-in {
  opacity: 0;
}

.u-rotate-in.is-on {
  animation: rotate-in 1s ease-in-out forwards;
}

@keyframes rotate-in {
  0% {
    transform: rotate(0);
    opacity: 0;
  }
  100% {
    transform: rotate(10deg);
    opacity: 1;
  }
}
.u-roll {
  animation: roll 16s linear infinite;
}

@keyframes roll {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.u-rotate {
  animation: rotate 8s ease-in-out infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0);
  }
}
.u-float {
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media only screen and (min-width: 737px) {
  .u-pc-none {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */