@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Marcellus&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/puv5inx.css");
@font-face {
  font-family: "Optima";
  font-style: normal;
  font-weight: normal;
  src: local("Optima"), url("OPTIMA.woff") format("woff");
}
@media screen and (max-width: 743px) {
  .sp_hidden {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff7e6;
}

main {
  overflow: hidden;
}

body,
h2,
h3,
h4,
p,
span,
a {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

a {
  z-index: 9999;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

.image_wrap,
.swiper {
  width: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.active {
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInOnTheSpot {
  opacity: 0;
  animation: fadeIn 2s forwards;
  overflow: hidden;
}

.fadeInT {
  opacity: 0;
}
.fadeInT.active {
  animation-name: fadeInImgFromTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromTop {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInTOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInB {
  opacity: 0;
}
.fadeInB.active {
  animation-name: fadeInImgFromBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromBottom {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInBOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInL {
  opacity: 0;
}
.fadeInL.active {
  animation-name: fadeInImgFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInLOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInR {
  opacity: 0;
}
.fadeInR.active {
  animation-name: fadeInImgFromRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes fadeInImgFromRight {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.fadeInROnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeUp {
  opacity: 0;
}
.fadeUp.active {
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpOnTheSpot {
  opacity: 0;
  animation: fadeUp 1s forwards;
}

.shrink {
  width: 100%;
  overflow: hidden;
}
.shrink.active img {
  animation-name: shrink;
  animation-duration: 3s;
}

@keyframes shrink {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.shrinkOnTheSpot {
  width: 100%;
  overflow: hidden;
  animation-name: shrinkOnTheSpot;
  animation-duration: 3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes shrinkOnTheSpot {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.floating {
  opacity: 0;
}
.floating.active {
  opacity: 1;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.popUp {
  opacity: 0;
}
.popUp.active {
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.popUpOnTheSpot {
  opacity: 0;
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.bouncing {
  opacity: 0;
}
.bouncing.active {
  animation: bounce 1s ease forwards;
}

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-8px) scale(1.2);
  }
  50% {
    transform: translateY(0) scale(0.8);
  }
  70% {
    transform: translateY(-8px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 13.335vw;
  overflow: hidden;
}
.main_visual .title_wrap {
  z-index: 9999;
  position: absolute;
  bottom: 22.13334vw;
  right: 0;
  left: 0;
  max-width: 69.6vw;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .subtitle {
  position: absolute;
  top: -10.66666vw;
  left: -8.53334vw;
  max-width: 38.668vw;
  width: 100%;
}
.main_visual .title_wrap .subtitle.fadeInLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .title {
  width: 100%;
}
.main_visual .title_wrap .title.fadeInLOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .title_wrap .handwritten {
  z-index: 9999;
  position: absolute;
  bottom: -10.13334vw;
  right: -7.73334vw;
  max-width: 46.4vw;
  width: 100%;
  max-height: 11.2vw;
  height: 100%;
}
.main_visual .title_wrap .handwritten svg.handwritten__svg {
  width: 100%;
  height: 100%;
}
.main_visual .title_wrap .handwritten {
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .title_wrap .handwritten .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.main_visual .title_wrap .speech_bubble {
  position: absolute;
  top: -22.4vw;
  right: -13.868vw;
  max-width: 29.335vw;
  width: 100%;
}
.main_visual .title_wrap .speech_bubble.popUpOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 7.2vw;
  left: 4vw;
  max-width: 30.934vw;
  width: 100%;
}

.main_description {
  width: 100%;
  line-height: 2.5714285714;
  text-align: center;
}

section {
  width: 100%;
  padding: 16vw 0;
}
section.pale_pink {
  background: #fcecec;
}
section .head_wrap {
  width: 100%;
  margin-bottom: 6.4vw;
}
section .head_wrap .look_number {
  max-width: 14.93333vw;
  width: 100%;
  margin: 0 auto 8px;
}
section .head_wrap .head {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
section .head_wrap .head .text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #f5607f;
}
section .head_wrap .head .text .highlight {
  display: block;
  position: absolute;
  margin-bottom: 3px;
  width: 100%;
  height: 8px;
  background: rgba(245, 96, 127, 0.2);
}
section .image_wrap_parent {
  position: relative;
}
section .image_wrap_parent .image_wrap,
section .image_wrap_parent .swiper {
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
}
section .image_wrap_parent .speech_bubble_wrap {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}
section .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  z-index: 9999;
  position: absolute;
  max-width: 29.335vw;
  width: 100%;
}
section .image_wrap_parent .speech_bubble_wrap .line {
  z-index: 9999;
  position: absolute;
  max-width: 14.66666vw;
  width: 100%;
}
section .image_wrap_parent .decoration_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
section .image_wrap_parent .decoration_wrap .ribbon,
section .image_wrap_parent .decoration_wrap .heart {
  z-index: 9999;
  position: absolute;
  width: 100%;
}
section .credit_wrap {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
section .credit_wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 1px;
}
section .credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .credit_wrap .credit.sp_hidden {
  display: none;
}
section .credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 12px;
}
section .credit_wrap .credit .items_wrap p {
  line-height: 1;
}
section .credit_wrap .credit .items_wrap .item {
  margin-bottom: 2px;
  font-size: 12px;
}
section .credit_wrap .credit .items_wrap .price {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
section .credit_wrap .credit .items_wrap .price .tax {
  font-size: 9px;
}
section .credit_wrap .credit .details_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 2.66667vw;
       column-gap: 2.66667vw;
  max-width: 56vw;
  width: 100%;
}
section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 26.6667vw;
  width: 100%;
  height: 30px;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #f5607f;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-size: 16px;
  color: #f5607f;
}
section .credit_wrap .credit .details_wrap.expand a {
  max-width: 100%;
}
section#look_01 .image_wrap_parent .image_wrap {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_01 .image_wrap_parent .speech_bubble_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_01 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  top: 3.7333275vw;
  right: -5.068vw;
}
section#look_01 .image_wrap_parent .speech_bubble_wrap .line {
  top: 23.73334vw;
  right: 12.268vw;
  transform: rotate(105deg);
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
  max-width: 16.8vw;
  top: 12vw;
  left: 18.4vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
  animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-11 {
  0% {
    transform: rotate(-11deg);
  }
  100% {
    transform: rotate(11deg);
  }
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
  max-width: 9.868vw;
  top: 62.4vw;
  left: 3.2vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
  animation: kakuKaku19 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku19 {
  0% {
    transform: rotate(19deg);
  }
  100% {
    transform: rotate(-19deg);
  }
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
  max-width: 16.8vw;
  top: 114.9334vw;
  right: 12.268vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
  animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku14 {
  0% {
    transform: rotate(14deg);
  }
  100% {
    transform: rotate(-14deg);
  }
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
  max-width: 9.868vw;
  bottom: 90.935vw;
  left: 10.4vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
  animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-13 {
  0% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(13deg);
  }
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
  max-width: 16.8vw;
  bottom: 52vw;
  right: 8.26666vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
  animation: kakuKaku12 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku12 {
  0% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
  max-width: 14.668vw;
  bottom: -5.33334vw;
  left: 18.4vw;
}
section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6).movingJerkily {
  animation: kakuKaku-8 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-8 {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
section#look_02 .image_wrap_parent .swiper {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_02 .image_wrap_parent .speech_bubble_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_02 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  bottom: 1.066666vw;
  right: -7.73334vw;
}
section#look_02 .image_wrap_parent .speech_bubble_wrap .line {
  bottom: 24vw;
  right: 5.6vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:first-of-type {
  max-width: 14.4vw;
  top: -4.53333vw;
  left: 19.468vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:first-of-type.movingJerkily {
  animation: kakuKaku11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku11 {
  0% {
    transform: rotate(11deg);
  }
  100% {
    transform: rotate(-11deg);
  }
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
  max-width: 9.33334vw;
  top: 52.534vw;
  left: 3.7333275vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
  animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-11 {
  0% {
    transform: rotate(-11deg);
  }
  100% {
    transform: rotate(11deg);
  }
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
  max-width: 12.8vw;
  top: 97.867vw;
  right: 11.2vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3).movingJerkily {
  animation: kakuKaku15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku15 {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
  max-width: 12.8vw;
  bottom: 88.8vw;
  left: 8.53334vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4).movingJerkily {
  animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-15 {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
  max-width: 9.33334vw;
  bottom: 52vw;
  right: 8.26666vw;
}
section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
  animation: kakuKaku17 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku17 {
  0% {
    transform: rotate(17deg);
  }
  100% {
    transform: rotate(-17deg);
  }
}
section#look_03 {
  margin-bottom: 8.7848vw;
}
section#look_03 .image_wrap_parent .image_wrap {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_03 .image_wrap_parent .swiper.second {
  max-width: 73.6vw;
  margin: 0 0 10.66666vw auto;
  border-radius: 10px 0 0 10px;
}
section#look_03 .image_wrap_parent .speech_bubble_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw 0;
}
section#look_03 .image_wrap_parent .speech_bubble_wrap .swiper {
  z-index: 9999;
}
section#look_03 .image_wrap_parent .speech_bubble_wrap .swiper.third {
  border-radius: 0 10px 10px 0;
}
section#look_03 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  bottom: 26.4vw;
  right: -12.268vw;
}
section#look_03 .image_wrap_parent .speech_bubble_wrap .line {
  top: 44.268vw;
  right: -4.8vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
  max-width: 16.8vw;
  top: -2.4vw;
  right: 14.93333vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
  animation: kakuKaku12 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku12 {
  0% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
  max-width: 9.868vw;
  top: 48vw;
  left: 3.2vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
  animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-13 {
  0% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(13deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
  max-width: 16.8vw;
  top: 127.2vw;
  right: 22.934vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
  animation: kakuKaku15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku15 {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
  max-width: 9.868vw;
  top: 165.335vw;
  left: 8.26666vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
  animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-15 {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
  max-width: 16.8vw;
  bottom: 112.267vw;
  right: 1.6vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
  animation: kakuKaku10 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku10 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
  max-width: 7.73334vw;
  bottom: 70.4vw;
  right: 21.868vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6).movingJerkily {
  animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-13 {
  0% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(13deg);
  }
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(7) {
  max-width: 12.268vw;
  bottom: -3.46666vw;
  left: 37.868vw;
}
section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(7).movingJerkily {
  animation: kakuKaku9 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku9 {
  0% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(-9deg);
  }
}
section#look_04 .image_wrap_parent .swiper {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_04 .image_wrap_parent .speech_bubble_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_04 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  max-width: 33.068vw;
  bottom: 27.7333vw;
  left: -10.66666vw;
}
section#look_04 .image_wrap_parent .speech_bubble_wrap .line {
  bottom: 19.468vw;
  left: 12.53333vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:first-of-type {
  max-width: 14.4vw;
  top: -3.2vw;
  left: 19.468vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:first-of-type.movingJerkily {
  animation: kakuKaku-10 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-10 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
  max-width: 9.33334vw;
  top: 48.8vw;
  left: 3.7333275vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
  animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku14 {
  0% {
    transform: rotate(14deg);
  }
  100% {
    transform: rotate(-14deg);
  }
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
  max-width: 12.8vw;
  top: 99.467vw;
  right: 11.2vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3).movingJerkily {
  animation: kakuKaku-16 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-16 {
  0% {
    transform: rotate(-16deg);
  }
  100% {
    transform: rotate(16deg);
  }
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
  max-width: 12.8vw;
  bottom: 86.934vw;
  left: 8.53334vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4).movingJerkily {
  animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku14 {
  0% {
    transform: rotate(14deg);
  }
  100% {
    transform: rotate(-14deg);
  }
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
  max-width: 9.33334vw;
  bottom: 59.467vw;
  right: 8.26666vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
  animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-11 {
  0% {
    transform: rotate(-11deg);
  }
  100% {
    transform: rotate(11deg);
  }
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6) {
  max-width: 6.93333vw;
  bottom: -3.46666vw;
  left: 22.934vw;
}
section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6).movingJerkily {
  animation: kakuKaku21 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku21 {
  0% {
    transform: rotate(21deg);
  }
  100% {
    transform: rotate(-21deg);
  }
}
section#look_05 .image_wrap_parent .swiper {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_05 .image_wrap_parent .speech_bubble_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_05 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  max-width: 37.067vw;
  top: 2.93334vw;
  left: -13.335vw;
}
section#look_05 .image_wrap_parent .speech_bubble_wrap .line {
  bottom: 60.8vw;
  left: 3.2vw;
  transform: rotate(180deg);
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
  max-width: 16.8vw;
  top: -2.4vw;
  left: 18.4vw;
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
  animation: kakuKaku-9 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-9 {
  0% {
    transform: rotate(-9deg);
  }
  100% {
    transform: rotate(9deg);
  }
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
  max-width: 9.868vw;
  top: 48vw;
  left: 3.2vw;
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
  animation: kakuKaku15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku15 {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
  max-width: 16.8vw;
  top: 112.267vw;
  right: 2.133334vw;
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
  animation: kakuKaku10 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku10 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
  max-width: 9.868vw;
  bottom: 62.4vw;
  right: 9.068vw;
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
  animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-15 {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
  max-width: 16.8vw;
  bottom: 15.46668vw;
  left: 7.2vw;
}
section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
  animation: kakuKaku9 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku9 {
  0% {
    transform: rotate(9deg);
  }
  100% {
    transform: rotate(-9deg);
  }
}
section#look_06 .image_wrap_parent .image_wrap {
  max-width: 73.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_06 .image_wrap_parent .speech_bubble_wrap {
  max-width: 89.6vw;
  margin: 0 auto 10.66666vw;
}
section#look_06 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  max-width: 33.8667vw;
  bottom: 31.735vw;
  left: 0.8vw;
}
section#look_06 .image_wrap_parent .speech_bubble_wrap .line {
  bottom: 57.0667vw;
  left: 15.46668vw;
  transform: scaleX(-1);
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:first-of-type {
  max-width: 14.4vw;
  top: -2.93334vw;
  left: 19.468vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:first-of-type.movingJerkily {
  animation: kakuKaku-10 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-10 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
  max-width: 9.33334vw;
  top: 49.335vw;
  left: 3.7333275vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
  animation: kakuKaku11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku11 {
  0% {
    transform: rotate(11deg);
  }
  100% {
    transform: rotate(-11deg);
  }
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
  max-width: 12.8vw;
  top: 99.467vw;
  right: 2.66667vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3).movingJerkily {
  animation: kakuKaku-14 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-14 {
  0% {
    transform: rotate(-14deg);
  }
  100% {
    transform: rotate(14deg);
  }
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
  max-width: 12.8vw;
  bottom: 86.934vw;
  left: 8.53334vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4).movingJerkily {
  animation: kakuKaku19 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku19 {
  0% {
    transform: rotate(19deg);
  }
  100% {
    transform: rotate(-19deg);
  }
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
  max-width: 9.33334vw;
  bottom: 59.2vw;
  right: 8.26666vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
  animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-15 {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6) {
  max-width: 6.93333vw;
  bottom: -3.7333275vw;
  left: 20.8vw;
}
section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6).movingJerkily {
  animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-13 {
  0% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(13deg);
  }
}
section#look_07 {
  margin-bottom: 8.7848vw;
}
section#look_07 .image_wrap_parent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10.66666vw 3.2vw;
}
section#look_07 .image_wrap_parent .image_wrap.first, section#look_07 .image_wrap_parent .image_wrap.second {
  max-width: 43.2vw;
}
section#look_07 .image_wrap_parent .image_wrap.second {
  margin-top: 34.135vw;
}
section#look_07 .image_wrap_parent .speech_bubble_wrap {
  max-width: 89.6vw;
}
section#look_07 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
  max-width: 33.8667vw;
  top: -14.93333vw;
  left: -2.66667vw;
}
section#look_07 .image_wrap_parent .speech_bubble_wrap .line {
  top: 12.268vw;
  left: 13.868vw;
  transform: scaleX(-1) rotate(75deg);
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
  max-width: 16.8vw;
  top: 10.4vw;
  right: 23.468vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
  animation: kakuKaku11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku11 {
  0% {
    transform: rotate(11deg);
  }
  100% {
    transform: rotate(-11deg);
  }
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
  max-width: 9.868vw;
  top: 61vw;
  left: 13.335vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
  animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-13 {
  0% {
    transform: rotate(-13deg);
  }
  100% {
    transform: rotate(13deg);
  }
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
  max-width: 16.8vw;
  top: 92.8vw;
  right: 5.6vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
  animation: kakuKaku-8 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-8 {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
  max-width: 16.8vw;
  bottom: 96.6vw;
  left: 8vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
  animation: kakuKaku10 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku10 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
  max-width: 9.868vw;
  bottom: 74.2vw;
  right: 13.335vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
  animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku-11 {
  0% {
    transform: rotate(-11deg);
  }
  100% {
    transform: rotate(11deg);
  }
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
  max-width: 10.13334vw;
  bottom: 7.8vw;
  left: 22.13334vw;
}
section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6).movingJerkily {
  animation: kakuKaku13 0.4s steps(2, start) infinite alternate;
}
@keyframes kakuKaku13 {
  0% {
    transform: rotate(13deg);
  }
  100% {
    transform: rotate(-13deg);
  }
}

.other_information {
  width: 100%;
  margin: 0 auto 16vw;
}
.other_information .other_items {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 78px;
  margin: 0 auto;
}
.other_information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f3afbd;
  border-radius: 9999px;
}
.other_information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
.other_information .staff_credit p {
  font-family: "Bodoni Moda", serif;
  font-size: 12px;
  line-height: 2.1666666667;
  text-align: center;
}

footer {
  width: 100%;
  padding: 16vw 0 7.46666vw;
  background: #f3afbd;
}
footer .logo_wrap {
  max-width: 50.668vw;
  width: 100%;
  margin: 0 auto 10.66666vw;
}
footer .instagram {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 10.66666vw;
}
footer .related_links_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8.53334vw;
}
footer .related_links_wrap .related_link {
  display: flex;
  align-items: center;
  max-width: 78.935vw;
  width: 100%;
  height: 15.735vw;
  margin: 0 auto;
  border: 1px solid #000;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 15.735vw;
  text-align: center;
}
footer .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  font-weight: 400;
  line-height: 2.1666666667;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  .main_visual {
    margin-bottom: 4.39239vw;
  }
  .main_visual .title_wrap {
    bottom: 17.8624vw;
    max-width: 28.4044vw;
  }
  .main_visual .title_wrap .subtitle {
    top: -4.39239vw;
    left: -3.4407vw;
    max-width: 15.813vw;
  }
  .main_visual .title_wrap .handwritten {
    bottom: -4.09956vw;
    right: -3.14788vw;
    max-width: 18.961vw;
    max-height: 4.539vw;
  }
  .main_visual .title_wrap .speech_bubble {
    top: -9.2977vw;
    right: -5.7106vw;
    max-width: 12.006vw;
  }
  .main_visual .logo_wrap {
    top: 1.3177196vw;
    left: 1.1713vw;
    max-width: 14.056vw;
  }
  section {
    padding: 5.856512vw 0;
  }
  section .head_wrap {
    margin-bottom: 4.39239vw;
  }
  section .head_wrap .look_number {
    max-width: 6.3695vw;
    margin: 0 auto 12px;
  }
  section .head_wrap .head .text {
    font-size: 31px;
  }
  section .head_wrap .head .text .highlight {
    margin-bottom: 4px;
    height: 13px;
  }
  section .image_wrap_parent {
    display: flex;
    justify-content: space-between;
    max-width: 58.346vw;
    margin: 0 auto;
  }
  section .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    max-width: 8.0527vw;
  }
  section .image_wrap_parent .speech_bubble_wrap .line {
    max-width: 4.026358vw;
  }
  section .credit_wrap {
    max-width: 58.346vw;
    margin: 0 auto;
  }
  section .credit_wrap.hidden {
    display: none;
  }
  section .credit_wrap .credit {
    max-width: 24.5977vw;
  }
  section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.732066vw;
         column-gap: 0.732066vw;
    max-width: 14.9346vw;
  }
  section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  section#look_01 {
    padding-top: 8.63833vw;
  }
  section#look_01 .image_wrap_parent .image_wrap {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_01 .image_wrap_parent .speech_bubble_wrap {
    max-width: 20.205vw;
    margin: 6.88197vw 0 0;
  }
  section#look_01 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    top: 2.8556vw;
    right: -1.90337vw;
  }
  section#look_01 .image_wrap_parent .speech_bubble_wrap .line {
    top: 8.346vw;
    right: 2.8556vw;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
    max-width: 4.6120096vw;
    top: 3.88vw;
    left: -3.368vw;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
    max-width: 2.7092vw;
    top: 19.1801vw;
    left: -9.375vw;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
    max-width: 4.6120096vw;
    top: auto;
    bottom: -1.61054vw;
    right: auto;
    left: 22.182vw;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
    max-width: 2.7092vw;
    bottom: 15.5198vw;
    right: -14.056vw;
    left: auto;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
    max-width: 4.6120096vw;
    top: 1.83016vw;
    bottom: auto;
    right: -9.375vw;
  }
  section#look_01 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
    display: none;
  }
  section#look_01 .credit_wrap {
    margin-top: -3.95315vw;
  }
  section#look_01 .credit_wrap .credit {
    margin: 0 -2.1967vw 0 auto;
  }
  section#look_01 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_02 .image_wrap_parent {
    flex-direction: row-reverse;
  }
  section#look_02 .image_wrap_parent .swiper {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_02 .image_wrap_parent .speech_bubble_wrap {
    max-width: 20.205vw;
    margin: 5.7838vw 0 0;
  }
  section#look_02 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    bottom: -1.24451vw;
    right: -3.66032vw;
  }
  section#look_02 .image_wrap_parent .speech_bubble_wrap .line {
    bottom: 5.051244vw;
    right: 0;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:first-of-type {
    max-width: 3.95315vw;
    top: 0.366032vw;
    left: -2.562229vw;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
    max-width: 2.562229vw;
    top: 19.76577vw;
    left: -10.7619vw;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
    animation: kakuKaku-25 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-25 {
    0% {
      transform: rotate(-25deg);
    }
    100% {
      transform: rotate(25deg);
    }
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
    max-width: 3.514vw;
    top: auto;
    bottom: -2.04978vw;
    right: 21.596vw;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
    max-width: 3.514vw;
    top: 9.375vw;
    bottom: auto;
    right: -5.56369vw;
    left: auto;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
    max-width: 2.562229vw;
    bottom: 9.151vw;
    right: -11.86vw;
  }
  section#look_02 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
    animation: kakuKaku27 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku27 {
    0% {
      transform: rotate(27deg);
    }
    100% {
      transform: rotate(-27deg);
    }
  }
  section#look_02 .credit_wrap {
    margin-top: -5.125vw;
  }
  section#look_02 .credit_wrap .credit {
    margin: 0 auto 0 -2.1967vw;
  }
  section#look_02 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_03 .image_wrap_parent {
    flex-wrap: wrap;
  }
  section#look_03 .image_wrap_parent .image_wrap {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_03 .image_wrap_parent .swiper.second {
    max-width: 20.205vw;
    margin: 6.88197vw 0 0;
    border-radius: 10px;
  }
  section#look_03 .image_wrap_parent .speech_bubble_wrap {
    max-width: 20.205vw;
    margin: -3.075vw auto 0 17.8624vw;
  }
  section#look_03 .image_wrap_parent .speech_bubble_wrap .swiper.third {
    border-radius: 10px;
  }
  section#look_03 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    bottom: 7.1748vw;
    right: -3.514vw;
  }
  section#look_03 .image_wrap_parent .speech_bubble_wrap .line {
    top: 12.1528vw;
    right: 0.146413vw;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
    max-width: 4.6120096vw;
    top: 1.83016vw;
    right: -9.375vw;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
    max-width: 4.6120096vw;
    top: 9.59008vw;
    left: -3.368vw;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
    animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-11 {
    0% {
      transform: rotate(-11deg);
    }
    100% {
      transform: rotate(11deg);
    }
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
    max-width: 2.7092vw;
    top: 30.747vw;
    right: auto;
    left: -9.0044vw;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
    animation: kakuKaku19 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku19 {
    0% {
      transform: rotate(19deg);
    }
    100% {
      transform: rotate(-19deg);
    }
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
    max-width: 2.7092vw;
    top: auto;
    bottom: 26.135vw;
    right: -14.056vw;
    left: auto;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
    animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-13 {
    0% {
      transform: rotate(-13deg);
    }
    100% {
      transform: rotate(13deg);
    }
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
    max-width: 4.6120096vw;
    bottom: 13.6976vw;
    right: auto;
    left: 7.39388vw;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
    animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku14 {
    0% {
      transform: rotate(14deg);
    }
    100% {
      transform: rotate(-14deg);
    }
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
    display: none;
  }
  section#look_03 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(7) {
    display: none;
  }
  section#look_03 .credit_wrap {
    margin-top: -10.7619vw;
  }
  section#look_03 .credit_wrap .credit {
    margin: 0 -9.375vw 0 auto;
  }
  section#look_03 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_04 .image_wrap_parent {
    flex-direction: row-reverse;
  }
  section#look_04 .image_wrap_parent .swiper {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_04 .image_wrap_parent .speech_bubble_wrap {
    max-width: 20.205vw;
    margin: 5.7838vw 0 0;
  }
  section#look_04 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    max-width: 9.151vw;
    bottom: 8.712vw;
    left: -5.56369vw;
  }
  section#look_04 .image_wrap_parent .speech_bubble_wrap .line {
    bottom: 6.4427vw;
    left: 0.80527vw;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:first-of-type {
    max-width: 3.95315vw;
    top: 0.366032vw;
    left: -3.001467vw;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:first-of-type.movingJerkily {
    animation: kakuKaku11 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku11 {
    0% {
      transform: rotate(11deg);
    }
    100% {
      transform: rotate(-11deg);
    }
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
    max-width: 2.562229vw;
    top: 19.76577vw;
    left: -10.7619vw;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
    animation: kakuKaku-25 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-25 {
    0% {
      transform: rotate(-25deg);
    }
    100% {
      transform: rotate(25deg);
    }
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
    max-width: 3.514vw;
    top: 8.4193vw;
    right: -6.00293vw;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3).movingJerkily {
    animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-15 {
    0% {
      transform: rotate(-15deg);
    }
    100% {
      transform: rotate(15deg);
    }
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
    max-width: 3.514vw;
    bottom: -2.04978vw;
    right: 21.596vw;
    left: auto;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4).movingJerkily {
    animation: kakuKaku15 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku15 {
    0% {
      transform: rotate(15deg);
    }
    100% {
      transform: rotate(-15deg);
    }
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
    max-width: 2.562229vw;
    bottom: 9.151vw;
    right: -11.4207vw;
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
    animation: kakuKaku27 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku27 {
    0% {
      transform: rotate(27deg);
    }
    100% {
      transform: rotate(-27deg);
    }
  }
  section#look_04 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6) {
    display: none;
  }
  section#look_04 .credit_wrap {
    margin-top: -5.125vw;
  }
  section#look_04 .credit_wrap .credit {
    margin: 0 auto 0 -2.1967vw;
  }
  section#look_04 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_05 .image_wrap_parent .swiper {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_05 .image_wrap_parent .speech_bubble_wrap {
    max-width: 20.205vw;
    margin: 6.88197vw 0 0;
  }
  section#look_05 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    max-width: 10.176vw;
    top: 6.88197vw;
    left: -5.7838vw;
  }
  section#look_05 .image_wrap_parent .speech_bubble_wrap .line {
    bottom: 10.615vw;
    left: -1.24451vw;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
    max-width: 4.6120096vw;
    top: 3.88vw;
    left: -3.368vw;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
    animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-11 {
    0% {
      transform: rotate(-11deg);
    }
    100% {
      transform: rotate(11deg);
    }
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
    max-width: 2.7092vw;
    top: 19.1801vw;
    left: -9.375vw;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
    animation: kakuKaku19 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku19 {
    0% {
      transform: rotate(19deg);
    }
    100% {
      transform: rotate(-19deg);
    }
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
    max-width: 4.6120096vw;
    top: auto;
    bottom: -1.61054vw;
    right: auto;
    left: 22.182vw;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
    animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku14 {
    0% {
      transform: rotate(14deg);
    }
    100% {
      transform: rotate(-14deg);
    }
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
    max-width: 2.7092vw;
    bottom: 7.1748vw;
    right: -13.8365vw;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
    animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-13 {
    0% {
      transform: rotate(-13deg);
    }
    100% {
      transform: rotate(13deg);
    }
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
    max-width: 4.6120096vw;
    top: 1.83016vw;
    bottom: auto;
    right: -9.375vw;
    left: auto;
  }
  section#look_05 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
    animation: kakuKaku12 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku12 {
    0% {
      transform: rotate(12deg);
    }
    100% {
      transform: rotate(-12deg);
    }
  }
  section#look_05 .credit_wrap {
    margin-top: -3.95315vw;
  }
  section#look_05 .credit_wrap .credit {
    margin: 0 -2.1967vw 0 auto;
  }
  section#look_05 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_06 .image_wrap_parent {
    flex-direction: row-reverse;
  }
  section#look_06 .image_wrap_parent .image_wrap {
    max-width: 20.205vw;
    margin: 6.4427vw 0 0;
  }
  section#look_06 .image_wrap_parent .speech_bubble_wrap {
    max-width: 30.381vw;
    margin: 0;
  }
  section#look_06 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    max-width: 9.2977vw;
    bottom: 15.1537vw;
    left: 0.732066vw;
  }
  section#look_06 .image_wrap_parent .speech_bubble_wrap .line {
    bottom: 22.0357vw;
    left: 4.75842vw;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:first-of-type {
    max-width: 3.95315vw;
    top: 0.366032vw;
    left: -2.562229vw;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:first-of-type.movingJerkily {
    animation: kakuKaku11 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku11 {
    0% {
      transform: rotate(11deg);
    }
    100% {
      transform: rotate(-11deg);
    }
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2) {
    max-width: 2.562229vw;
    top: 19.9127vw;
    left: -10.7619vw;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(2).movingJerkily {
    animation: kakuKaku-25 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-25 {
    0% {
      transform: rotate(-25deg);
    }
    100% {
      transform: rotate(25deg);
    }
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3) {
    max-width: 3.514vw;
    top: 9.375vw;
    right: -5.56369vw;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(3).movingJerkily {
    animation: kakuKaku-15 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-15 {
    0% {
      transform: rotate(-15deg);
    }
    100% {
      transform: rotate(15deg);
    }
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4) {
    max-width: 3.514vw;
    bottom: -2.04978vw;
    right: 21.596vw;
    left: auto;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(4).movingJerkily {
    animation: kakuKaku15 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku15 {
    0% {
      transform: rotate(15deg);
    }
    100% {
      transform: rotate(-15deg);
    }
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5) {
    max-width: 2.562229vw;
    bottom: 9.151vw;
    right: -11.4207vw;
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(5).movingJerkily {
    animation: kakuKaku27 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku27 {
    0% {
      transform: rotate(27deg);
    }
    100% {
      transform: rotate(-27deg);
    }
  }
  section#look_06 .image_wrap_parent .decoration_wrap .heart:nth-of-type(6) {
    display: none;
  }
  section#look_06 .credit_wrap {
    margin-top: -5.125vw;
  }
  section#look_06 .credit_wrap .credit {
    margin: 0 auto 0 -2.1967vw;
  }
  section#look_06 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  section#look_07 {
    padding-bottom: 8.7848vw;
  }
  section#look_07 .image_wrap_parent {
    justify-content: flex-start;
    gap: 0 3.88vw;
    max-width: 48.463vw;
  }
  section#look_07 .image_wrap_parent .image_wrap.first, section#look_07 .image_wrap_parent .image_wrap.second {
    max-width: 20.24172vw;
  }
  section#look_07 .image_wrap_parent .image_wrap.first {
    margin-left: 4.09956vw;
  }
  section#look_07 .image_wrap_parent .image_wrap.second {
    margin-top: 11.201vw;
  }
  section#look_07 .image_wrap_parent .speech_bubble_wrap {
    max-width: 30.381vw;
    margin-top: -2.1967vw;
  }
  section#look_07 .image_wrap_parent .speech_bubble_wrap .speech_bubble {
    max-width: 9.2977vw;
    top: -2.782vw;
    left: 0.951687vw;
  }
  section#look_07 .image_wrap_parent .speech_bubble_wrap .line {
    top: 4.6857vw;
    left: 5.8599vw;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:first-of-type {
    max-width: 4.6120096vw;
    top: 1.83016vw;
    right: -12.006vw;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:first-of-type.movingJerkily {
    animation: kakuKaku12 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku12 {
    0% {
      transform: rotate(12deg);
    }
    100% {
      transform: rotate(-12deg);
    }
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2) {
    max-width: 4.6120096vw;
    top: 9.59008vw;
    left: -9.9561vw;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(2).movingJerkily {
    animation: kakuKaku-11 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-11 {
    0% {
      transform: rotate(-11deg);
    }
    100% {
      transform: rotate(11deg);
    }
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3) {
    max-width: 2.7092vw;
    top: 31.113vw;
    right: auto;
    left: -15.5198vw;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(3).movingJerkily {
    animation: kakuKaku19 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku19 {
    0% {
      transform: rotate(19deg);
    }
    100% {
      transform: rotate(-19deg);
    }
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4) {
    max-width: 2.7092vw;
    bottom: 38.4339vw;
    right: -17.1308vw;
    left: auto;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(4).movingJerkily {
    animation: kakuKaku-13 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku-13 {
    0% {
      transform: rotate(-13deg);
    }
    100% {
      transform: rotate(13deg);
    }
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5) {
    max-width: 4.6120096vw;
    bottom: 25.403vw;
    right: auto;
    left: -3.95315vw;
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(5).movingJerkily {
    animation: kakuKaku14 0.4s steps(2, start) infinite alternate;
  }
  @keyframes kakuKaku14 {
    0% {
      transform: rotate(14deg);
    }
    100% {
      transform: rotate(-14deg);
    }
  }
  section#look_07 .image_wrap_parent .decoration_wrap .ribbon:nth-of-type(6) {
    display: none;
  }
  section#look_07 .credit_wrap {
    margin-top: -10.7619vw;
  }
  section#look_07 .credit_wrap .credit {
    margin: 0 -10.908vw 0 auto;
  }
  section#look_07 .credit_wrap .credit:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .other_information {
    margin: 0 auto 7.32066vw;
  }
  .other_information .other_items {
    max-width: 24.5977vw;
    margin: 0 auto;
  }
  footer {
    padding: 4.39239vw 0 2.04978vw;
  }
  footer .logo_wrap {
    max-width: 13.031vw;
    margin: 0 auto 2.92826vw;
  }
  footer .instagram {
    width: 2.19619vw;
    height: 2.19619vw;
    margin: 0 auto 2.92826vw;
  }
  footer .related_links_wrap {
    justify-content: space-between;
    max-width: 69.693vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap .related_link {
    max-width: 21.6696vw;
    height: 4.3197vw;
    margin: 0;
  }
  footer .related_links_wrap .related_link:not(:last-of-type) {
    margin-bottom: 0;
  }
  footer .related_links_wrap .related_link a {
    line-height: 4.3197vw;
  }
  footer .annotation {
    max-width: 100%;
    margin: 0 auto 3.807vw;
    text-align: center;
  }
  footer .onward_crosset {
    max-width: 11.567vw;
  }
}/*# sourceMappingURL=common.css.map */