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;
  font-weight: 400;
  line-height: 0.9;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: #EEE;
}

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

.l-header__link-line--02 {
  font-size: 30px;
}
@media only screen and (max-width: 736px) {
  .l-header__link-line--02 {
    font-size: 18px;
  }
}

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

.l-footer {
  position: relative;
  display: grid;
  place-items: center;
  padding: 24px 80px;
  background-color: #800f0f;
}
@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;
  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__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: #FFF;
  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%22white%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: 14px;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-name {
    font-size: 12px;
  }
}
.c-credit-list__item-name::after {
  content: "";
  display: block;
  min-width: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 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: 20px;
  font-family: "Playfair Display", serif;
  line-height: 1;
  color: #FFF;
}
@media only screen and (max-width: 1080px) {
  .c-credit-list__item-price {
    font-size: 16px;
  }
}

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

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

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

.p-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.p-background--01 {
  background-color: #800f0f;
  transition: background-color 0.6s ease-in-out;
  z-index: -30;
}

.p-background--01.is-on {
  background-color: #FFF;
}

.p-background--02 {
  z-index: -20;
}

.p-background--03 {
  z-index: -10;
}

.p-mainvisual__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 100vh 1fr;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__inner {
    grid-template-columns: 1fr;
    grid-template-rows: 100vh auto auto;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__inner {
    grid-template-rows: auto auto auto;
  }
}

.p-mainvisual__text-container {
  display: grid;
  grid-template-rows: subgrid;
  grid-area: 1/1/3/3;
  z-index: 10;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__text-container {
    grid-area: 1/1/4/2;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__text-container {
    grid-area: 2/1/4/2;
  }
}

.p-mainvisual__title-container {
  display: grid;
  grid-area: 1/1/2/2;
  align-self: flex-end;
  height: -moz-fit-content;
  height: fit-content;
  padding: 80px;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-container {
    padding: 40px;
    place-items: center;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-container {
    padding: 20vw 5vw;
    align-self: center;
  }
}

.p-mainvisual__title-introduction {
  color: #FFF;
  letter-spacing: 0.1em;
}

.p-mainvisual__title-introduction-line--01 {
  font-size: 28px;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__title-introduction-line--01 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-introduction-line--01 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-introduction-line--01 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .p-mainvisual__title-introduction-line--01 {
    font-size: 14px;
  }
}

.p-mainvisual__title-introduction-line--02 {
  font-size: 60px;
  font-style: italic;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__title-introduction-line--02 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-introduction-line--02 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-introduction-line--02 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .p-mainvisual__title-introduction-line--02 {
    font-size: 20px;
  }
}

.p-mainvisual__title-introduction-line--03 {
  font-size: 60px;
  font-family: "ballet", serif;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__title-introduction-line--03 {
    font-size: 54px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-introduction-line--03 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-introduction-line--03 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 540px) {
  .p-mainvisual__title-introduction-line--03 {
    font-size: 24px;
  }
}

.p-mainvisual__title {
  display: grid;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title {
    place-items: center;
  }
}

.p-mainvisual__title-line {
  display: block;
  color: #FFF;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 0.8;
  white-space: nowrap;
  filter: drop-shadow(0 0 8px #FFF);
}

.p-mainvisual__title-line--01 {
  font-size: 130px;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__title-line--01 {
    font-size: 110px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-line--01 {
    font-size: 84px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-line--01 {
    font-size: 67px;
  }
}
@media only screen and (max-width: 540px) {
  .p-mainvisual__title-line--01 {
    font-size: 42px;
  }
}

.p-mainvisual__title-line--02 {
  font-size: 192px;
  letter-spacing: -0.1em;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__title-line--02 {
    font-size: 160px;
    letter-spacing: -0.09em;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__title-line--02 {
    font-size: 120px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__title-line--02 {
    font-size: 96px;
  }
}
@media only screen and (max-width: 540px) {
  .p-mainvisual__title-line--02 {
    font-size: 60px;
  }
}

.p-mainvisual__description-container {
  display: grid;
  align-self: center;
  align-items: center;
  gap: 96px;
  padding: 80px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__description-container {
    grid-area: 3/1/4/2;
    padding: 40px;
    gap: 64px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__description-container {
    grid-area: 2/1/3/2;
    padding: 5vw;
    gap: 24px;
  }
}

.p-mainvisual__description {
  font-size: 18px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__description {
    text-align: center;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__description {
    font-size: 14px;
  }
}

.p-mainvisual__hero-wrapper {
  position: relative;
  grid-area: 1/2/3/4;
  padding: 40px;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__hero-wrapper {
    grid-area: 1/1/3/2;
    padding: 40px;
  }
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__hero-wrapper {
    padding: 5vw;
  }
}

.p-mainvisual__hero-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid #FFF;
  border-radius: 9999px;
}
@media only screen and (max-width: 736px) {
  .p-mainvisual__hero-frame {
    top: 2.5vw;
    left: 2.5vw;
    right: 2.5vw;
    bottom: 2.5vw;
  }
}

.p-mainvisual__hero {
  width: 100%;
  height: auto;
  border-radius: 9999px;
}

.p-mainvisual__ornament--01 {
  top: 20vh;
  left: 10vw;
  width: 60px;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__ornament--01 {
    top: 15vw;
    left: 5vw;
    width: 7.5vw;
  }
}

.p-mainvisual__ornament--02 {
  top: 97.5vh;
  left: 25vw;
  width: 60px;
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__ornament--02 {
    top: 120vw;
    left: 80vw;
    width: 7.5vw;
  }
}

.p-mainvisual__ornament--03 {
  top: 60px;
  right: 60px;
  width: 240px;
  z-index: 10;
}
@media only screen and (max-width: 1440px) {
  .p-mainvisual__ornament--03 {
    width: 160px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-mainvisual__ornament--03 {
    top: 5vw;
    right: 5vw;
    width: 20vw;
  }
}

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

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

.p-nordic__photo-wrapper--01 {
  top: 15%;
  left: 15%;
  width: 50%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__photo-wrapper--01 {
    top: initial;
    left: initial;
    justify-self: flex-end;
    width: 80vw;
  }
}

.p-nordic__photo-wrapper--02 {
  top: 50%;
  left: 70%;
  width: 25%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__photo-wrapper--02 {
    top: initial;
    left: initial;
    margin-top: 5vw;
    width: 60vw;
  }
}

.p-nordic__photo-wrapper--03 {
  top: 70%;
  left: 27.5%;
  width: 40%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__photo-wrapper--03 {
    top: initial;
    left: initial;
    justify-self: center;
    margin-top: 15vw;
    width: 60vw;
  }
}

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

.p-nordic__credit-list {
  position: absolute;
  top: 87.5%;
  left: 72.5%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__credit-list {
    position: relative;
    top: initial;
    left: initial;
    justify-self: flex-end;
    margin-top: 5vw;
  }
}

.p-nordic__ornament--01 {
  top: 2.5%;
  left: 12.5%;
  width: 22.5%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__ornament--01 {
    top: 0;
    left: 5%;
    width: 35%;
  }
}

.p-nordic__ornament--02 {
  top: 10%;
  left: 85%;
  width: 10%;
}
@media only screen and (max-width: 736px) {
  .p-nordic__ornament--02 {
    top: 40%;
    left: 80%;
    width: 15%;
  }
}

.p-fur-hood__inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1440px;
  height: 90vw;
  max-height: 1296px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    height: auto;
    max-height: none;
    padding: 20vw 5vw;
  }
}

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

.p-fur-hood__photo-wrapper--01 {
  top: 15%;
  left: 30%;
  width: 35%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__photo-wrapper--01 {
    top: initial;
    left: initial;
    grid-column: span 2;
    justify-self: center;
    width: 70vw;
  }
}

.p-fur-hood__photo-wrapper--02 {
  top: 25%;
  left: 5%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__photo-wrapper--02 {
    top: initial;
    left: initial;
    margin-top: 5vw;
    width: 100%;
  }
}

.p-fur-hood__photo-wrapper--03 {
  top: 57.5%;
  left: 7.5%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__photo-wrapper--03 {
    top: initial;
    left: initial;
    margin: 15vw -5vw 0 0;
    width: calc(100% + 5vw);
  }
}

.p-fur-hood__photo-wrapper--04 {
  top: 45%;
  left: 70%;
  width: 25%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__photo-wrapper--04 {
    top: initial;
    left: initial;
    grid-column: span 2;
    justify-self: flex-end;
    margin-top: 5vw;
    width: 60vw;
  }
}

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

.p-fur-hood__credit-list {
  position: absolute;
  top: 70%;
  right: 32.5%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__credit-list {
    position: relative;
    top: initial;
    right: initial;
    left: 5vw;
    grid-column: span 2;
    margin-top: 5vw;
  }
}

.p-fur-hood__ornament--01 {
  top: 0;
  left: 5%;
  width: 12.5%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__ornament--01 {
    top: -5%;
    left: 5%;
    width: 25%;
  }
}

.p-fur-hood__ornament--02 {
  top: 20%;
  left: 80%;
  width: 15%;
}
@media only screen and (max-width: 736px) {
  .p-fur-hood__ornament--02 {
    top: 60%;
    left: 5%;
    width: 25%;
  }
}

.p-jacquard__inner {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 1440px;
  height: 90vw;
  max-height: 1296px;
  margin-inline: auto;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    height: auto;
    max-height: none;
    padding: 20vw 5vw;
  }
}

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

.p-jacquard__photo-wrapper--01 {
  top: 10%;
  left: 0;
  width: 37.5%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__photo-wrapper--01 {
    top: initial;
    left: -5vw;
    grid-column: span 2;
    width: 80vw;
  }
}

.p-jacquard__photo-wrapper--02 {
  top: 35%;
  left: 40%;
  width: 37.5%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__photo-wrapper--02 {
    top: initial;
    left: initial;
    grid-column: span 2;
    margin-top: 5vw;
    width: 60vw;
    justify-self: center;
  }
}

.p-jacquard__photo-wrapper--03 {
  top: 25%;
  left: 85%;
  width: 15%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__photo-wrapper--03 {
    top: initial;
    left: initial;
    margin-top: 5vw;
    width: 100%;
  }
}

.p-jacquard__photo-wrapper--04 {
  top: 50%;
  left: 80%;
  width: 15%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__photo-wrapper--04 {
    top: initial;
    left: initial;
    margin-top: 5vw;
    width: 100%;
  }
}

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

.p-jacquard__credit-list {
  position: absolute;
  top: 70%;
  right: 65%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__credit-list {
    position: relative;
    top: initial;
    right: initial;
    grid-column: span 2;
    justify-self: flex-end;
    margin-top: 5vw;
  }
}

.p-jacquard__ornament--01 {
  top: 2.5%;
  left: 35%;
  width: 15%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__ornament--01 {
    top: 2%;
    left: 65%;
    width: 30%;
  }
}

.p-jacquard__ornament--02 {
  top: 17.5%;
  left: 67.5%;
  width: 10%;
}
@media only screen and (max-width: 736px) {
  .p-jacquard__ornament--02 {
    top: 90%;
    left: 5%;
    width: 20%;
  }
}

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

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

.p-mitten__photo-wrapper--01 {
  top: 10%;
  left: 50%;
  width: 45%;
}
@media only screen and (max-width: 736px) {
  .p-mitten__photo-wrapper--01 {
    top: initial;
    left: initial;
    width: 80vw;
    justify-self: flex-end;
  }
}

.p-mitten__photo-wrapper--02 {
  top: 30%;
  left: 0;
  width: 18%;
}
@media only screen and (max-width: 736px) {
  .p-mitten__photo-wrapper--02 {
    top: initial;
    left: initial;
    margin-top: -10vw;
    width: 60vw;
  }
}

.p-mitten__photo-wrapper--03 {
  top: 30%;
  left: 20%;
  width: 32%;
}
@media only screen and (max-width: 736px) {
  .p-mitten__photo-wrapper--03 {
    top: initial;
    left: initial;
    margin: 10vw -5vw 0;
    width: calc(100% + 10vw);
  }
}

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

.p-mitten__credit-list {
  position: absolute;
  top: 65%;
  right: 54%;
}
@media only screen and (max-width: 736px) {
  .p-mitten__credit-list {
    position: relative;
    top: initial;
    right: initial;
    justify-self: center;
    margin-top: 10vw;
  }
}

.p-mitten__ornament--01 {
  top: 80%;
  left: 5%;
  width: 12.5%;
}
@media only screen and (max-width: 736px) {
  .p-mitten__ornament--01 {
    top: 45%;
    left: 70%;
    width: 25%;
  }
}

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

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

.p-cardigan__photo-wrapper--01 {
  top: 15%;
  left: 32.5%;
  width: 42.5%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__photo-wrapper--01 {
    top: initial;
    left: -5vw;
    width: 40vw;
  }
}

.p-cardigan__photo-wrapper--02 {
  top: 7.5%;
  left: 10%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__photo-wrapper--02 {
    top: initial;
    left: initial;
    margin-top: 10vw;
    width: 80vw;
    justify-self: center;
  }
}

.p-cardigan__photo-wrapper--03 {
  top: 35%;
  left: 5%;
  width: 17.5%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__photo-wrapper--03 {
    position: absolute;
    top: 10vw;
    left: initial;
    right: 5vw;
    width: 40vw;
  }
}

.p-cardigan__photo-wrapper--04 {
  top: 25%;
  left: 77.5%;
  width: 17.5%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__photo-wrapper--04 {
    top: initial;
    left: initial;
    right: -5vw;
    justify-self: flex-end;
    margin-top: 10vw;
    width: 50vw;
  }
}

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

.p-cardigan__credit-list {
  position: absolute;
  top: 70%;
  right: 70%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__credit-list {
    position: relative;
    top: initial;
    right: initial;
    margin-top: 10vw;
  }
}

.p-cardigan__ornament--01 {
  top: 2.5%;
  left: 27.5%;
  width: 7.5%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__ornament--01 {
    top: 25%;
    left: 77.5%;
    width: 20%;
  }
}

.p-cardigan__ornament--02 {
  top: 70%;
  left: 77.5%;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-cardigan__ornament--02 {
    top: 70%;
    left: 2.5%;
    width: 40%;
  }
}

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

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

.p-boa__photo-wrapper--01 {
  top: 10%;
  left: 50%;
  width: 45%;
}
@media only screen and (max-width: 736px) {
  .p-boa__photo-wrapper--01 {
    top: initial;
    left: initial;
    width: 80vw;
  }
}

.p-boa__photo-wrapper--02 {
  top: 18.5%;
  left: 10%;
  width: 35%;
}
@media only screen and (max-width: 736px) {
  .p-boa__photo-wrapper--02 {
    top: initial;
    left: initial;
    right: -5vw;
    margin-top: 5vw;
    width: 50vw;
    justify-self: flex-end;
  }
}

.p-boa__photo-wrapper--03 {
  top: 47.5%;
  left: 15%;
  width: 32.5%;
}
@media only screen and (max-width: 736px) {
  .p-boa__photo-wrapper--03 {
    top: initial;
    left: 10vw;
    margin-top: -5vw;
    width: 60vw;
  }
}

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

.p-boa__credit-list {
  position: absolute;
  top: 75%;
  left: 52.5%;
}
@media only screen and (max-width: 736px) {
  .p-boa__credit-list {
    position: relative;
    top: initial;
    left: initial;
    justify-self: flex-end;
    margin-top: 15vw;
  }
}

.p-boa__ornament--01 {
  top: 32.5%;
  left: 0;
  width: 22.5%;
}
@media only screen and (max-width: 736px) {
  .p-boa__ornament--01 {
    top: 75%;
    left: 5%;
    width: 35%;
  }
}

.p-boa__ornament--02 {
  top: 80%;
  left: 70%;
  width: 30%;
}
@media only screen and (max-width: 736px) {
  .p-boa__ornament--02 {
    top: 30%;
    left: 60%;
    width: 40%;
  }
}

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

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

.p-turtleneck__photo-wrapper--01 {
  top: 10%;
  left: 10%;
  width: 50%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__photo-wrapper--01 {
    top: initial;
    left: initial;
    width: 60vw;
    justify-self: center;
  }
}

.p-turtleneck__photo-wrapper--02 {
  top: 15%;
  left: 62.5%;
  width: 25%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__photo-wrapper--02 {
    top: initial;
    left: initial;
    justify-self: flex-end;
    margin-top: 15vw;
    width: 80vw;
  }
}

.p-turtleneck__photo-wrapper--03 {
  top: 50%;
  left: 75%;
  width: 25%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__photo-wrapper--03 {
    top: initial;
    left: -5vw;
    margin-top: 5vw;
    width: 75vw;
  }
}

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

.p-turtleneck__credit-list {
  position: absolute;
  top: 80%;
  left: 65%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__credit-list {
    position: relative;
    top: initial;
    left: initial;
    margin-top: 15vw;
  }
}

.p-turtleneck__ornament--01 {
  top: 80%;
  left: 0;
  width: 20%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__ornament--01 {
    top: 50%;
    left: 5%;
    width: 35%;
  }
}

.p-turtleneck__ornament--02 {
  top: 90%;
  left: 82.5%;
  width: 12.5%;
}
@media only screen and (max-width: 736px) {
  .p-turtleneck__ornament--02 {
    top: 87.5%;
    left: 70%;
    width: 25%;
  }
}

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

.p-link__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-inline: auto;
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1;
  text-decoration: none;
  z-index: 0;
}
@media only screen and (max-width: 736px) {
  .p-link__link {
    gap: 24px;
  }
}
@media (any-hover: hover) {
  .p-link__link {
    cursor: pointer;
  }
  .p-link__link:hover::before {
    border-width: 8px;
  }
  .p-link__link:hover .p-link__main-text {
    text-indent: 0.4em;
    letter-spacing: 0.4em;
  }
  .p-link__link:hover .p-link__sub-text {
    text-indent: 0.4em;
    letter-spacing: 0.4em;
  }
}
.p-link__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border: solid 1px #FFF;
  z-index: 10;
  transition: all 0.4s ease-in-out;
}
.p-link__link::after {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  right: -200px;
  bottom: -200px;
  display: block;
  background: no-repeat center/contain url("../img/img_brush.webp");
  pointer-events: none;
  z-index: -10;
  opacity: 0.15;
}
@media only screen and (max-width: 736px) {
  .p-link__link::after {
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
  }
}

.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__divider {
  display: block;
  width: 64px;
  height: 1px;
  background-color: #FFF;
  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: 700;
  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;
  width: 100%;
  max-width: 600px;
}

.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-shopper__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 40px auto;
  align-items: center;
  padding: 160px 80px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1080px) {
  .p-shopper__inner {
    grid-template-columns: auto;
    grid-template-rows: auto 20px auto;
  }
}
@media only screen and (max-width: 736px) {
  .p-shopper__inner {
    padding: 20vw 5vw;
  }
}

.p-shopper__hero-wrapper {
  grid-area: 1/1/2/3;
  width: 600px;
}
@media only screen and (max-width: 1440px) {
  .p-shopper__hero-wrapper {
    width: 480px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-shopper__hero-wrapper {
    grid-area: 1/1/3/2;
  }
}
@media only screen and (max-width: 540px) {
  .p-shopper__hero-wrapper {
    width: 100%;
  }
}

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

.p-shopper__text-container {
  display: grid;
  gap: 24px;
  grid-area: 1/2/1/4;
  justify-content: center;
  align-items: center;
  width: 540px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1440px) {
  .p-shopper__text-container {
    width: 400px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-shopper__text-container {
    grid-area: 2/1/4/2;
    justify-self: center;
  }
}
@media only screen and (max-width: 540px) {
  .p-shopper__text-container {
    width: 100%;
  }
}

.p-shopper__title {
  display: grid;
}

.p-shopper__title-line {
  display: block;
  text-align: center;
  font-weight: 400;
  color: #444;
}

.p-shopper__title-line--01 {
  font-size: 256px;
  font-family: "ballet", serif;
  line-height: 0.6;
  text-indent: -0.5em;
}
@media only screen and (max-width: 1440px) {
  .p-shopper__title-line--01 {
    font-size: 216px;
  }
}
@media only screen and (max-width: 540px) {
  .p-shopper__title-line--01 {
    font-size: 144px;
  }
}

.p-shopper__title-line--02 {
  font-size: 128px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.7;
  text-indent: -0.1em;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 1440px) {
  .p-shopper__title-line--02 {
    font-size: 108px;
  }
}
@media only screen and (max-width: 540px) {
  .p-shopper__title-line--02 {
    font-size: 72px;
  }
}

.p-shopper__note {
  text-align: center;
}

.p-shopper__note-inner {
  font-size: 14px;
  color: #999;
}

.p-shopper__ornament--01 {
  top: 60%;
  left: 80%;
  width: 20%;
}
@media only screen and (max-width: 1080px) {
  .p-shopper__ornament--01 {
    top: 70%;
    left: 80%;
    width: 30%;
  }
}
@media only screen and (max-width: 540px) {
  .p-shopper__ornament--01 {
    top: 70%;
    left: 70%;
    width: 30%;
  }
}

.p-campaign__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  margin-inline: auto;
  padding: 160px 80px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 1080px) {
  .p-campaign__inner {
    grid-template-columns: auto;
    grid-template-rows: auto 30px auto;
  }
}
@media only screen and (max-width: 736px) {
  .p-campaign__inner {
    padding: 20vw 5vw;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__inner {
    grid-template-rows: auto 20px auto;
  }
}

.p-campaign__title {
  display: grid;
  gap: 24px;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__title {
    width: 360px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-campaign__title {
    grid-area: 1/1/3/2;
    justify-self: center;
    z-index: 20;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__title {
    width: 100%;
  }
}

.p-campaign__title-line {
  display: block;
  text-align: center;
  font-weight: 400;
  color: #444;
}

.p-campaign__title-line--01 {
  font-size: 240px;
  font-family: "ballet", serif;
  line-height: 0.4;
  text-indent: -0.5em;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__title-line--01 {
    font-size: 200px;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__title-line--01 {
    font-size: 140px;
  }
}

.p-campaign__title-line--02 {
  font-size: 96px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 0.7;
  text-indent: -0.1em;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__title-line--02 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__title-line--02 {
    font-size: 60px;
  }
}

.p-campaign__description-container {
  position: relative;
  display: grid;
  gap: 32px;
  padding: 100px 80px 80px;
  width: 600px;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__description-container {
    gap: 24px;
    padding: 80px 60px 60px;
    width: 480px;
  }
}
@media only screen and (max-width: 1080px) {
  .p-campaign__description-container {
    grid-area: 2/1/4/2;
    justify-self: center;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__description-container {
    width: 100%;
    padding: 60px 40px 40px;
  }
}

.p-campaign__description-frame {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.p-campaign__description-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 9/2;
  background: no-repeat center/contain url("../img/img_frame.webp");
  z-index: 10;
}
.p-campaign__description-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 9/2;
  background: no-repeat center/contain url("../img/img_frame.webp");
  transform: rotate(180deg);
  z-index: 10;
}

.p-campaign__description-title {
  font-size: 24px;
  text-align: center;
  color: #444;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__description-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__description-title {
    font-size: 18px;
  }
}

.p-campaign__description-list {
  display: grid;
  gap: 24px;
}

.p-campaign__description-list-item {
  display: grid;
  justify-content: center;
}

.p-campaign__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 auto;
  background: #444;
}

.p-campaign__description-list-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
  color: #444;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__description-list-title {
    font-size: 16px;
  }
}

.p-campaign__description-list-text {
  font-size: 16px;
  line-height: 2;
  color: #666;
  text-align: center;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__description-list-text {
    font-size: 14px;
  }
}

.p-campaign__description-list-text-link {
  color: #666;
}

.p-campaign__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: auto;
  aspect-ratio: 2;
  padding: 40px 20px;
  text-decoration: none;
  z-index: 0;
}
@media only screen and (max-width: 540px) {
  .p-campaign__link {
    aspect-ratio: initial;
    gap: 16px;
    padding: 32px 12px;
  }
}
@media (any-hover: hover) {
  .p-campaign__link {
    cursor: pointer;
  }
  .p-campaign__link:hover::before {
    border-width: 4px;
  }
  .p-campaign__link:hover .p-campaign__link-line {
    text-indent: 0.3em;
    letter-spacing: 0.3em;
  }
}
.p-campaign__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border: solid 1px #444;
  z-index: 10;
  transition: all 0.4s ease-in-out;
}
.p-campaign__link::after {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  right: -80px;
  bottom: -80px;
  display: block;
  background: no-repeat center/contain url("../img/img_brush.webp");
  pointer-events: none;
  z-index: -10;
  opacity: 0.1;
}

.p-campaign__link-line {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  color: #444;
  transition: all 0.4s ease-in-out;
}

.p-campaign__link-line--01 {
  font-size: 20px;
  text-indent: -0.1em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__link-line--01 {
    font-size: 16px;
  }
}

.p-campaign__link-line--02 {
  font-size: 16px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-indent: -0.1em;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 1440px) {
  .p-campaign__link-line--02 {
    font-size: 14px;
  }
}

.p-campaign__ornament--01 {
  top: 70%;
  left: 5%;
  width: 15%;
}
@media only screen and (max-width: 1080px) {
  .p-campaign__ornament--01 {
    top: 45%;
    left: 0;
    width: 20%;
  }
}
@media only screen and (max-width: 540px) {
  .p-campaign__ornament--01 {
    top: 45%;
    left: 0;
    width: 20%;
  }
}

.p-credit {
  background-color: #800f0f;
}

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

.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__model-container {
  display: grid;
  grid-template-columns: 240px 240px;
  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 {
  width: 100%;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-thumbnail-wrapper {
    width: 200px;
  }
}

.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 {
  display: grid;
  gap: 8px;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-title {
    justify-content: center;
  }
}

.p-credit__model-title-ja {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media only screen and (max-width: 736px) {
  .p-credit__model-title-ja {
    font-size: 18px;
    text-align: center;
  }
}

.p-credit__model-title-en {
  font-size: 16px;
  font-weight: 400;
  font-family: "Cormorant SC", serif;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}
@media only screen and (max-width: 736px) {
  .p-credit__model-title-en {
    font-size: 14px;
    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 {
    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__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-small {
  font-size: 12px;
}

.u-font-ballet {
  font-family: "Ballet", serif;
}

.u-font-cormorant {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.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-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);
  }
}/*# sourceMappingURL=style.css.map */