@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&family=Zen+Kaku+Gothic+Antique&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Caprasimo&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: #fff;
}

main {
  overflow: hidden;
}

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

a {
  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;
  overflow: hidden;
  animation: fadeIn 2s forwards;
}

.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%);
  }
}
.pop-up {
  opacity: 0;
}
.pop-up.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;
  }
}
.appearB {
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}
.appearB.active {
  animation: appearB 0.8s 0.4s forwards ease-in-out;
}

@keyframes appearB {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.main_visual {
  position: relative;
  width: 100%;
  height: 259.2vw;
  margin-bottom: 16vw;
  overflow: hidden;
}
.main_visual:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: url(../img/mv_background_pale_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main_visual .image_wrap_parent {
  position: relative;
  width: 100%;
  height: 100%;
}
.main_visual .image_wrap_parent .text_decoration {
  z-index: 8888;
}
.main_visual .image_wrap_parent .summer_knit {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 76.535vw;
  width: 100%;
}
.main_visual .image_wrap_parent .summer_knit .text_decoration {
  position: absolute;
  top: 12vw;
  right: 5.068vw;
  max-width: 23.46667vw;
  width: 100%;
}
.main_visual .image_wrap_parent .half_shirt {
  position: absolute;
  top: 17.86667vw;
  right: 3.46666vw;
  max-width: 36.268vw;
  width: 100%;
}
.main_visual .image_wrap_parent .half_shirt .image_wrap.fadeInOnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .image_wrap_parent .half_shirt .text_decoration {
  position: absolute;
  top: 25.33334vw;
  left: 5.868vw;
  max-width: 23.2vw;
  width: 100%;
  transform: rotate(-21deg);
}
.main_visual .image_wrap_parent .logo_tshirt {
  position: absolute;
  bottom: 71.468vw;
  right: 0;
  max-width: 55.735vw;
  width: 100%;
}
.main_visual .image_wrap_parent .logo_tshirt .image_wrap.fadeInOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .image_wrap_parent .logo_tshirt .text_decoration {
  position: absolute;
  bottom: 18.93334vw;
  left: -6.4vw;
  max-width: 21.868vw;
  width: 100%;
}
.main_visual .title {
  z-index: 8888;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: absolute;
  top: 28.535vw;
  right: 0;
  left: 0;
  max-width: 26.66668vw;
  width: 100%;
  margin: auto;
}
.main_visual .title .tops_wrap,
.main_visual .title .ryobae_wrap {
  width: 13.33334vw;
}
.main_visual .title .tops_wrap .box,
.main_visual .title .ryobae_wrap .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 13.33334vw;
  background: #fff;
}
.main_visual .title .tops_wrap .box.square,
.main_visual .title .ryobae_wrap .box.square {
  border: 1px solid #000;
}
.main_visual .title .tops_wrap .box.top_none,
.main_visual .title .ryobae_wrap .box.top_none {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
.main_visual .title .tops_wrap .box .tops,
.main_visual .title .tops_wrap .box .ryobae,
.main_visual .title .ryobae_wrap .box .tops,
.main_visual .title .ryobae_wrap .box .ryobae {
  display: block;
  font-size: 34px;
}
.main_visual .title .tops_wrap .box .ryobae,
.main_visual .title .ryobae_wrap .box .ryobae {
  font-family: "Shippori Mincho", serif;
  color: #fd94c0;
}
.main_visual .title .tops_wrap .box .ryobae.fadeUpOnTheSpot.first,
.main_visual .title .ryobae_wrap .box .ryobae.fadeUpOnTheSpot.first {
  animation-delay: 0.2s;
}
.main_visual .title .tops_wrap .box .ryobae.fadeUpOnTheSpot.second,
.main_visual .title .ryobae_wrap .box .ryobae.fadeUpOnTheSpot.second {
  animation-delay: 0.4s;
}
.main_visual .title .tops_wrap .box .ryobae.fadeUpOnTheSpot.third,
.main_visual .title .ryobae_wrap .box .ryobae.fadeUpOnTheSpot.third {
  animation-delay: 0.6s;
}
.main_visual .title .tops_wrap .box .tops.fadeUpOnTheSpot.first,
.main_visual .title .ryobae_wrap .box .tops.fadeUpOnTheSpot.first {
  animation-delay: 0.6s;
}
.main_visual .title .tops_wrap .box .tops.fadeUpOnTheSpot.second,
.main_visual .title .ryobae_wrap .box .tops.fadeUpOnTheSpot.second {
  animation-delay: 0.8s;
}
.main_visual .title .tops_wrap .box .tops.fadeUpOnTheSpot.third,
.main_visual .title .ryobae_wrap .box .tops.fadeUpOnTheSpot.third {
  animation-delay: 1s;
}
.main_visual .title .tops_wrap .box .tops.fadeUpOnTheSpot.fourth,
.main_visual .title .ryobae_wrap .box .tops.fadeUpOnTheSpot.fourth {
  animation-delay: 1.2s;
}
.main_visual .title .tops_wrap {
  margin-top: 26.66668vw;
  margin-right: -1px;
}
.main_visual .subtitle {
  position: absolute;
  bottom: 97.067vw;
  left: 4.53333vw;
  max-width: 60.8vw;
  width: 100%;
}
.main_visual .subtitle.fadeInLOnTheSpot {
  animation-delay: 1.4s;
}
.main_visual .logo_wrap {
  position: absolute;
  top: 4vw;
  right: 3.7333275vw;
  max-width: 21.068vw;
  width: 100%;
}
.main_visual .main_description {
  position: absolute;
  bottom: 30.1334vw;
  right: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.main_visual .main_description .how_to_dress {
  margin-bottom: 3.2vw;
  font-size: 14px;
  line-height: 1.6666666667;
}
.main_visual .main_description .glamorous_tops_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.732066vw 0;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops {
  display: flex;
  align-items: center;
  gap: 0;
  height: 41px;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 100%;
  background: #fff;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box.square,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box.square {
  border: 1px solid #000;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box.left_none,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box.left_none {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box.last,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box.last {
  background: transparent;
  border: none;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece,
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous,
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops {
  display: block;
  font-size: 24px;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.first,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.first {
  animation-delay: 0.2s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.second,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.second {
  animation-delay: 0.4s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.third,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.third {
  animation-delay: 0.6s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  color: #fd94c0;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.first,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.first {
  animation-delay: 0.6s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.second,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.second {
  animation-delay: 0.8s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.third,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.third {
  animation-delay: 1s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.fourth,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.fourth {
  animation-delay: 1.2s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.fifth,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.fifth {
  animation-delay: 1.4s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.sixth,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.sixth {
  animation-delay: 1.6s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.seventh,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.seventh {
  animation-delay: 1.8s;
}
.main_visual .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.eighth,
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.eighth {
  animation-delay: 2s;
}
.main_visual .main_description .glamorous_tops_wrap .glamorous_tops {
  margin-top: -1px;
}
.main_visual .main_description .photogenic {
  font-size: 20px;
}
.main_visual .main_description .photogenic .highlight {
  position: relative;
  width: 100%;
  font-size: 20px;
}
.main_visual .main_description .photogenic .highlight:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #488deb;
}

#index {
  z-index: 9999;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
}
#index.isFixed {
  display: flex;
  align-items: flex-end;
}
#index.isHidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#index .anchor_link {
  position: relative;
  max-width: 16.6666666667%;
  width: 100%;
}
#index .anchor_link a {
  width: 100%;
  height: 27.468vw;
}
#index .anchor_link .item_name {
  position: absolute;
  bottom: 4px;
  width: 100%;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
  color: #fff;
  text-align: center;
}

section {
  width: 100%;
  margin-bottom: 21.33334vw;
}
section.pale_blue {
  padding: 10.66666vw 0;
  background: rgba(72, 141, 235, 0.1);
}
section .head_wrap {
  width: 100%;
  margin: 0 auto 3.2vw;
  padding-left: 8vw;
}
section .head_wrap .item_number {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
}
section .head_wrap .item_number .item {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
  text-align: center;
  color: #488deb;
}
section .head_wrap .item_number .number {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 40px;
  letter-spacing: -0.1em;
  color: #488deb;
}
section .head_wrap .item_name span {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 25px;
  background: #fff;
  color: #488deb;
}
section .head_wrap .item_name span.top {
  padding: 9px 9px 4.5px;
}
section .head_wrap .item_name span.bottom {
  padding: 4.5px 9px 9px;
}
section .head_wrap.blue .item_number .item {
  color: #488deb;
}
section .head_wrap.blue .item_number .number {
  color: #488deb;
}
section .head_wrap.blue .item_name span {
  color: #488deb;
}
section .head_wrap.blue .item_name span.top, section .head_wrap.blue .item_name span.bottom {
  border: 1px solid #488deb;
}
section .head_wrap.pink .item_number .item {
  color: #fd94c0;
}
section .head_wrap.pink .item_number .number {
  color: #fd94c0;
}
section .head_wrap.pink .item_name span {
  color: #fd94c0;
}
section .head_wrap.pink .item_name span.top, section .head_wrap.pink .item_name span.bottom {
  border: 1px solid #fd94c0;
}
section .image_wrap_parent {
  position: relative;
  margin-bottom: 8.53334vw;
}
section .image_wrap_parent .image_wrap {
  position: relative;
}
section .image_wrap_parent .image_wrap .price {
  z-index: 8888;
  position: absolute;
  width: 100%;
}
section .image_wrap_parent .image_wrap .price:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
}
section .image_wrap_parent .flex_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
section .image_wrap_parent .catchphrase {
  z-index: 8888;
  position: absolute;
  max-width: 6.135vw;
  width: 100%;
}
section .image_wrap_parent .update_point {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
}
section .image_wrap_parent .update_point .tshirt {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
}
section .image_wrap_parent .update_point .head {
  margin-bottom: 2px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
}
section .image_wrap_parent .update_point .head .highlight {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
}
section .image_wrap_parent .update_point .description_wrap {
  position: relative;
  padding: 2.66667vw;
  background: #fff;
}
section .image_wrap_parent .update_point .description_wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 10.13334vw;
  width: 100%;
  height: 3px;
}
section .image_wrap_parent .update_point .description_wrap .description {
  line-height: 1.3333333333;
}
section .image_wrap_parent .update_point .description_wrap .description .highlight {
  line-height: 1.3333333333;
}
section .image_wrap_parent .update_point.pink .head .highlight {
  color: #fd94c0;
}
section .image_wrap_parent .update_point.pink .description_wrap {
  border: 1px solid #fd94c0;
  border-left: 5px solid #fd94c0;
}
section .image_wrap_parent .update_point.pink .description_wrap:before {
  background: #fd94c0;
}
section .image_wrap_parent .update_point.pink .description_wrap .description .highlight {
  color: #fd94c0;
}
section .image_wrap_parent .update_point.blue .head .highlight {
  color: #488deb;
}
section .image_wrap_parent .update_point.blue .description_wrap {
  border: 1px solid #488deb;
  border-left: 5px solid #488deb;
}
section .image_wrap_parent .update_point.blue .description_wrap:before {
  background: #488deb;
}
section .image_wrap_parent .update_point.blue .description_wrap .description .highlight {
  color: #488deb;
}
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: 16px;
}
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: "Crimson Text", serif;
  font-size: 17px;
  font-weight: 400;
  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: 1.066666vw;
       column-gap: 1.066666vw;
  max-width: 54.4vw;
  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: 1px solid #000;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
section .accordion_wrap {
  margin: 5.335vw auto 12.268vw;
}
section .accordion_wrap button.other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 11.2vw;
  margin: 5.33334vw auto;
  background: #fff;
  border: 1px solid #000;
}
section .accordion_wrap button.other_item.show {
  margin-bottom: 5.335vw;
}
section .accordion_wrap button.other_item.show:before {
  opacity: 0;
}
section .accordion_wrap button.other_item span {
  font-family: "Crimson Text", serif;
  font-weight: 400;
}
section .accordion_wrap .accordion {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
section .accordion_wrap .accordion .credit_wrap {
  padding-top: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap {
  margin-bottom: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap a {
  max-width: 100%;
}
section#logo_tshirts .head_wrap .item_name span.top {
  z-index: 8888;
  border-bottom: none;
}
section#logo_tshirts .head_wrap .item_name span.bottom {
  margin-top: -1px;
}
section#logo_tshirts .image_wrap_parent .image_wrap.first {
  z-index: 7777;
  max-width: 86.934vw;
  margin: 0 0 0 auto;
}
section#logo_tshirts .image_wrap_parent .image_wrap .price {
  bottom: 66.134vw;
  left: 4vw;
  max-width: 17.6vw;
}
section#logo_tshirts .image_wrap_parent .image_wrap .price:before {
  top: -4.26668vw;
  right: -3.2vw;
  transform: rotate(-51deg);
  max-width: 7.2vw;
}
section#logo_tshirts .image_wrap_parent .image_wrap.second {
  max-width: 61.868vw;
  margin: -6.135vw auto 0 0;
}
section#logo_tshirts .image_wrap_parent .image_wrap.third {
  max-width: 61.868vw;
  margin: -20.8vw 0 0 auto;
}
section#logo_tshirts .image_wrap_parent .catchphrase.first {
  top: 106.667vw;
  right: 8.53334vw;
}
section#logo_tshirts .image_wrap_parent .catchphrase.second {
  bottom: 79.735vw;
  right: 44.8vw;
}
section#logo_tshirts .image_wrap_parent .update_point {
  bottom: 34.135vw;
  left: 10.66666vw;
}
section#logo_tshirts .image_wrap_parent .update_point .description_wrap:before {
  right: -10.13334vw;
}
section#summer_knit {
  margin-bottom: 0;
}
section#summer_knit .head_wrap .item_name span.top {
  margin-bottom: -1px;
}
section#summer_knit .head_wrap .item_name span.bottom {
  border-top: none;
}
section#summer_knit .image_wrap_parent .image_wrap .price {
  top: 26.6667vw;
  right: 6.93333vw;
  max-width: 19.2vw;
}
section#summer_knit .image_wrap_parent .image_wrap .price:before {
  bottom: -9.6vw;
  left: -9.33334vw;
  transform: rotate(-48.35deg);
  max-width: 22.668vw;
}
section#summer_knit .image_wrap_parent .flex_wrap {
  margin-top: -27.7333vw;
}
section#summer_knit .image_wrap_parent .flex_wrap .image_wrap.second {
  max-width: calc(100% - 51.2vw);
  margin-top: 29.8667vw;
}
section#summer_knit .image_wrap_parent .flex_wrap .image_wrap.third {
  max-width: 51.2vw;
}
section#summer_knit .image_wrap_parent .catchphrase.first {
  top: 47.468vw;
  right: 6.66666vw;
}
section#summer_knit .image_wrap_parent .catchphrase.second {
  bottom: 27.2vw;
  left: 36.268vw;
}
section#summer_knit .image_wrap_parent .curve_decoration {
  position: absolute;
  width: 100%;
}
section#summer_knit .image_wrap_parent .curve_decoration.top {
  top: -41.0667vw;
  right: 9vw;
  max-width: 49.335vw;
  transform: rotate(-13deg);
}
section#summer_knit .image_wrap_parent .curve_decoration.bottom {
  bottom: -10vw;
  right: 26vw;
  max-width: 44vw;
  transform: scale(-1, 1);
}
section#print_tshirts .head_wrap .item_name span.top {
  z-index: 8888;
  border-bottom: none;
}
section#print_tshirts .head_wrap .item_name span.bottom {
  margin-top: -1px;
}
section#print_tshirts .image_wrap_parent .image_wrap .price {
  bottom: 55.2vw;
  left: 6.4vw;
  max-width: 17.6vw;
}
section#print_tshirts .image_wrap_parent .image_wrap .price:before {
  top: -4.26668vw;
  right: -3.2vw;
  transform: rotate(-51deg);
  max-width: 7.2vw;
}
section#print_tshirts .image_wrap_parent .image_wrap.second {
  max-width: 50.935vw;
  margin: 0 0 0 auto;
}
section#print_tshirts .image_wrap_parent .image_wrap.third {
  max-width: 61.868vw;
  margin: 0 auto 0 0;
}
section#print_tshirts .image_wrap_parent .catchphrase.first {
  top: 103vw;
  right: 7.46666vw;
}
section#print_tshirts .image_wrap_parent .catchphrase.second {
  bottom: 99.467vw;
  left: 22.668vw;
}
section#print_tshirts .image_wrap_parent .update_point {
  bottom: 44.268vw;
  right: 10.66666vw;
}
section#print_tshirts .image_wrap_parent .update_point .description_wrap:before {
  left: -10.13334vw;
}
section#border_tshirts .head_wrap .item_name span.top {
  z-index: 8888;
  border-bottom: none;
}
section#border_tshirts .head_wrap .item_name span.bottom {
  margin-top: -1px;
}
section#border_tshirts .image_wrap_parent {
  margin-bottom: 33.6vw;
}
section#border_tshirts .image_wrap_parent .image_wrap.first {
  max-width: 81.6vw;
  margin: 0 0 5.33334vw auto;
}
section#border_tshirts .image_wrap_parent .image_wrap .price {
  top: 60.535vw;
  right: 4.8vw;
  max-width: 19.2vw;
}
section#border_tshirts .image_wrap_parent .image_wrap .price:before {
  bottom: -5vw;
  left: -1vw;
  transform: rotate(-48.35deg);
  max-width: 7.2vw;
}
section#border_tshirts .image_wrap_parent .flex_wrap .image_wrap {
  max-width: calc((100% - 2.133334vw) / 2);
}
section#border_tshirts .image_wrap_parent .catchphrase.first {
  top: 19.468vw;
  left: 6.93333vw;
}
section#border_tshirts .image_wrap_parent .catchphrase.second {
  bottom: 83.735vw;
  right: 5.33334vw;
}
section#border_tshirts .image_wrap_parent .update_point {
  bottom: -25.06667vw;
  left: 6.93333vw;
}
section#border_tshirts .image_wrap_parent .update_point .description_wrap:before {
  max-width: 17.33334vw;
  top: -9vw;
  right: -2vw;
  transform: rotate(90deg);
}
section#stripe_shirt .head_wrap .item_name span.top {
  margin-bottom: -1px;
}
section#stripe_shirt .head_wrap .item_name span.bottom {
  border-top: none;
}
section#stripe_shirt .image_wrap_parent .image_wrap.first {
  max-width: 86.934vw;
  margin: 0 0 0 auto;
}
section#stripe_shirt .image_wrap_parent .image_wrap .price {
  top: 36.268vw;
  right: 16.268vw;
  max-width: 19.2vw;
}
section#stripe_shirt .image_wrap_parent .image_wrap .price:before {
  bottom: -4.4vw;
  left: 2vw;
  transform: rotate(-48.35deg);
  max-width: 7.2vw;
}
section#stripe_shirt .image_wrap_parent .image_wrap.fourth {
  max-width: 78.668vw;
  margin: 0 auto 0 0;
}
section#stripe_shirt .image_wrap_parent .flex_wrap {
  max-width: 93.868vw;
  margin: -22.668vw auto 6.4vw 0;
}
section#stripe_shirt .image_wrap_parent .flex_wrap .image_wrap.second {
  max-width: 37.6vw;
}
section#stripe_shirt .image_wrap_parent .flex_wrap .image_wrap.third {
  max-width: 49.068vw;
  margin-top: 29.068vw;
}
section#stripe_shirt .image_wrap_parent .catchphrase.first {
  top: 76.8vw;
  left: 22.4vw;
}
section#stripe_shirt .image_wrap_parent .catchphrase.second {
  top: 123.735vw;
  right: 10.13334vw;
}
section#stripe_shirt .image_wrap_parent .stripe_decoration {
  position: absolute;
  width: 100%;
}
section#stripe_shirt .image_wrap_parent .stripe_decoration.top {
  top: -15.2vw;
  right: 9.6vw;
  max-width: 17.6vw;
}
section#stripe_shirt .image_wrap_parent .stripe_decoration.bottom {
  bottom: 138.9334vw;
  left: 18.13334vw;
  max-width: 29.335vw;
}
section#stripe_shirt .image_wrap_parent .update_point {
  bottom: 93.868vw;
  right: 11.73334vw;
}
section#stripe_shirt .image_wrap_parent .update_point .description_wrap:before {
  max-width: 10vw;
  top: 23vw;
  left: -1vw;
  transform: rotate(90deg);
}
section#check_shirt .head_wrap .item_name span.top {
  margin-bottom: -1px;
}
section#check_shirt .head_wrap .item_name span.bottom {
  border-top: none;
}
section#check_shirt .image_wrap_parent .image_wrap.first {
  margin-bottom: 5.33334vw;
}
section#check_shirt .image_wrap_parent .image_wrap .price {
  top: 45.335vw;
  left: 12.268vw;
  max-width: 19.2vw;
}
section#check_shirt .image_wrap_parent .image_wrap .price:before {
  bottom: -5.5vw;
  left: 10vw;
  transform: rotate(45deg);
  max-width: 10vw;
}
section#check_shirt .image_wrap_parent .flex_wrap .image_wrap {
  max-width: calc((100% - 2.133334vw) / 2);
}
section#check_shirt .image_wrap_parent .catchphrase.first {
  top: 10.13334vw;
  right: 5.33334vw;
}
section#check_shirt .image_wrap_parent .catchphrase.second {
  top: 74.934vw;
  left: 6.135vw;
}
section#check_shirt .image_wrap_parent .catchphrase.third {
  bottom: 67.2vw;
  right: 11.468vw;
}
section#check_shirt .image_wrap_parent .check_decoration {
  position: absolute;
  top: -20.535vw;
  right: 9.33334vw;
  max-width: 24.534vw;
  width: 100%;
}

.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: #488deb;
}
.other_information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  color: #fff;
}
.other_information .other_items .arrow_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5.335vw;
}
.other_information .other_items .arrow_wrap .arrow {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 15px;
}
.other_information .other_items .arrow_wrap .arrow:before, .other_information .other_items .arrow_wrap .arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10.8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
}
.other_information .other_items .arrow_wrap .arrow:before {
  transform: rotate(45deg);
}
.other_information .other_items .arrow_wrap .arrow:after {
  transform: rotate(-45deg);
}
.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: #488deb;
}
footer .logo_wrap {
  max-width: 21.33334vw;
  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 #fff;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 15.735vw;
  text-align: center;
  color: #fff;
}
footer .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  line-height: 2.1666666667;
  color: #fff;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  body {
    background: #f0f6fd;
  }
  .main_visual {
    height: 56.296vw;
    margin-bottom: 0;
    background: #d9e7fb;
  }
  .main_visual:before {
    display: none;
  }
  .main_visual .image_wrap_parent .summer_knit {
    right: 8.5657vw;
    left: auto;
    max-width: 49.7077vw;
  }
  .main_visual .image_wrap_parent .summer_knit .text_decoration {
    top: 22.914vw;
    right: 15.22697vw;
    max-width: 11.1277vw;
    transform: rotate(14deg);
  }
  .main_visual .image_wrap_parent .half_shirt {
    top: 2.48902vw;
    right: 7.02782vw;
    max-width: 18.961vw;
  }
  .main_visual .image_wrap_parent .half_shirt .text_decoration {
    top: 5.7106vw;
    right: -3.075vw;
    left: auto;
    max-width: 8.1996vw;
    transform: rotate(-30deg);
  }
  .main_visual .image_wrap_parent .logo_tshirt {
    bottom: 0;
    right: auto;
    left: 17.277vw;
    max-width: 31.113vw;
  }
  .main_visual .image_wrap_parent .logo_tshirt .text_decoration {
    bottom: 24.5977vw;
    left: 0.58565vw;
    max-width: 10.3953vw;
  }
  .main_visual .title {
    top: 4.09956vw;
    right: auto;
    left: 3.73353vw;
    max-width: 15.52vw;
    width: 100%;
    margin: auto;
  }
  .main_visual .title .tops_wrap,
  .main_visual .title .ryobae_wrap {
    width: 7.76vw;
  }
  .main_visual .title .tops_wrap .box,
  .main_visual .title .ryobae_wrap .box {
    height: 7.76vw;
  }
  .main_visual .title .tops_wrap .box .ryobae,
  .main_visual .title .ryobae_wrap .box .ryobae {
    font-size: 71px;
  }
  .main_visual .title .tops_wrap .box .tops,
  .main_visual .title .ryobae_wrap .box .tops {
    font-size: 67px;
  }
  .main_visual .title .tops_wrap {
    margin-top: 15.52vw;
  }
  .main_visual .subtitle {
    bottom: 2.7092vw;
    right: 5.49048vw;
    left: auto;
    max-width: 33.8219vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.46413vw;
    left: auto;
    max-width: 6.5159vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    top: 8vw;
    bottom: auto;
    right: auto;
    left: 14vw;
    max-width: 33.8219vw;
    margin: 0;
  }
  .content_wrap_for_pc #index.isFixed {
    flex-wrap: wrap;
  }
  .content_wrap_for_pc #index .anchor_link {
    max-width: 33.3333333333%;
  }
  .content_wrap_for_pc #index .anchor_link a {
    height: 18.2288vw;
  }
  .content_wrap_for_pc #index .anchor_link .item_name {
    bottom: 7px;
    font-size: 23px;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 27.526vw;
    margin: 0 17.277vw 7.32066vw auto;
    padding: 0 0 5.856512vw;
    background: #fff;
    overflow: hidden;
  }
  .content_wrap_for_pc .section_wrap .main_description {
    position: relative;
    width: 100%;
    height: 25.7692vw;
    margin: 0 auto 4.39239vw;
    padding: 4.97804vw 2.416vw 0;
  }
  .content_wrap_for_pc .section_wrap .main_description:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/section_wrap_top_background_pale_blue.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content_wrap_for_pc .section_wrap .main_description .how_to_dress {
    margin-bottom: 0.87848vw;
    line-height: 1.6666666667;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap {
    z-index: 8888;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 0.732066vw 0;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops {
    display: flex;
    align-items: center;
    gap: 0;
    height: 41px;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 100%;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box.square,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box.square {
    border: 1px solid #000;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box.left_none,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box.left_none {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box.last,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box.last {
    background: transparent;
    border: none;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops {
    display: block;
    font-size: 24px;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.first,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.first {
    animation-delay: 0.2s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.second,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.second {
    animation-delay: 0.4s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .one_piece.fadeUp.third,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .one_piece.fadeUp.third {
    animation-delay: 0.6s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    color: #fd94c0;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.first,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.first {
    animation-delay: 0.6s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.second,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.second {
    animation-delay: 0.8s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .glamorous.fadeUp.third,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .glamorous.fadeUp.third {
    animation-delay: 1s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.fourth,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.fourth {
    animation-delay: 1.2s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.fifth,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.fifth {
    animation-delay: 1.4s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.sixth,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.sixth {
    animation-delay: 1.6s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.seventh,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.seventh {
    animation-delay: 1.8s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box .tops.fadeUp.eighth,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box .tops.fadeUp.eighth {
    animation-delay: 2s;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops {
    margin-top: -1px;
  }
  .content_wrap_for_pc .section_wrap .main_description .photogenic {
    font-size: 20px;
  }
  .content_wrap_for_pc .section_wrap .main_description .photogenic .highlight {
    position: relative;
    width: 100%;
    font-size: 20px;
  }
  .content_wrap_for_pc .section_wrap .main_description .photogenic .highlight:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #488deb;
  }
  .content_wrap_for_pc .section_wrap section {
    margin-bottom: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap section.pale_blue {
    padding: 2.92826vw 0;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    margin: 0 auto 0.87848vw;
    padding-left: 2.1967vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .catchphrase {
    max-width: 1.68375vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .update_point .description_wrap {
    padding: 0.732066vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .update_point .description_wrap:before {
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 24.5977vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap.hidden {
    display: none;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.292826vw;
         column-gap: 0.292826vw;
    max-width: 14.9346vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap.expand a {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap {
    margin: 1.46413vw 0 3.368vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item {
    max-width: 24.5977vw;
    height: 3.075vw;
    margin: 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item.show {
    margin-bottom: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion {
    max-width: 27.526vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .image_wrap.first {
    max-width: 23.8658vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .image_wrap .price {
    bottom: 18.2288vw;
    left: 1.1713vw;
    max-width: 4.75842vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .image_wrap .price:before {
    top: -1.2vw;
    right: -1vw;
    transform: rotate(-51deg);
    max-width: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .image_wrap.second {
    max-width: 16.984vw;
    margin: -1.68375vw auto 0 0;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .image_wrap.third {
    max-width: 16.984vw;
    margin: -5.7106vw 0 0 auto;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .catchphrase.first {
    top: 29.283vw;
    right: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .catchphrase.second {
    bottom: 21.889vw;
    right: 12.2987vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .update_point {
    bottom: 9.444vw;
    left: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#logo_tshirts .image_wrap_parent .update_point .description_wrap:before {
    right: -2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .image_wrap .price {
    top: 7.32066vw;
    right: 1.90337vw;
    max-width: 5.270866vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .image_wrap .price:before {
    bottom: -2.6vw;
    left: -2.4vw;
    transform: rotate(-48.35deg);
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .flex_wrap {
    margin-top: -7.614vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .flex_wrap .image_wrap.second {
    max-width: calc(100% - 14.056vw);
    margin-top: 8.1996vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .flex_wrap .image_wrap.third {
    max-width: 14.056vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .catchphrase.first {
    top: 13.031vw;
    right: 1.83016vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .catchphrase.second {
    bottom: 7.4676vw;
    left: 9.9561vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .curve_decoration.top {
    top: -12.2vw;
    right: 3.075vw;
    max-width: 13.5432vw;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .curve_decoration.bottom {
    bottom: -3.4407vw;
    right: 5.856512vw;
    max-width: 12.07909vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .image_wrap .price {
    bottom: 15.1537vw;
    left: 1.756955vw;
    max-width: 4.75842vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .image_wrap .price:before {
    top: -1.4vw;
    right: -0.2vw;
    max-width: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .image_wrap.second {
    max-width: 14.056vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .image_wrap.third {
    max-width: 16.984vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .catchphrase.first {
    top: 28.2577vw;
    right: 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .catchphrase.second {
    bottom: 27.3797vw;
    left: 6.22255vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .update_point {
    bottom: 12.1528vw;
    right: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#print_tshirts .image_wrap_parent .update_point .description_wrap:before {
    left: -2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent {
    margin-bottom: 9.2245vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .image_wrap.first {
    max-width: 22.4012vw;
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .image_wrap .price {
    top: 16.6911vw;
    right: 1.391vw;
    max-width: 5.270866vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .image_wrap .price:before {
    bottom: -1.2vw;
    left: 0vw;
    max-width: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .flex_wrap .image_wrap {
    max-width: calc((100% - 0.58565vw) / 2);
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .catchphrase.first {
    top: 5.270866vw;
    left: 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .catchphrase.second {
    bottom: 22.914vw;
    right: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .update_point {
    bottom: -6.88197vw;
    left: 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .update_point .description_wrap:before {
    max-width: 4.75842vw;
    top: -2.5vw;
    right: -1vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .image_wrap.first {
    max-width: 23.8658vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .image_wrap .price {
    top: 9.9561vw;
    right: 4.466vw;
    max-width: 5.270866vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .image_wrap .price:before {
    bottom: -1.2vw;
    left: 0vw;
    max-width: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .image_wrap.fourth {
    max-width: 21.596vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .flex_wrap {
    max-width: 25.7692vw;
    margin: -6.22255vw auto 1.756955vw 0;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .flex_wrap .image_wrap.second {
    max-width: 10.3226vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .flex_wrap .image_wrap.third {
    max-width: 13.5432vw;
    margin-top: 7.98vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .catchphrase.first {
    top: 21.084vw;
    left: 6.1499vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .catchphrase.second {
    top: 33.8219vw;
    right: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .stripe_decoration.top {
    top: -4.09956vw;
    right: 2.635435vw;
    max-width: 4.75842vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .stripe_decoration.bottom {
    bottom: 37.775vw;
    left: 4.97804vw;
    max-width: 8.0527vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .update_point {
    bottom: 23.1333vw;
    right: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .update_point .description_wrap:before {
    top: 5.8vw;
    left: 0.3vw;
    max-width: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .image_wrap.first {
    margin-bottom: 5.33334vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .image_wrap .price {
    top: 12.4456vw;
    left: 3.3675vw;
    max-width: 5.270866vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .image_wrap .price:before {
    bottom: -1.8vw;
    left: 2.6vw;
    max-width: 3.4vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .flex_wrap .image_wrap {
    max-width: calc((100% - 0.58565vw) / 2);
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .catchphrase.first {
    top: 2.782vw;
    right: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .catchphrase.second {
    top: 20.498vw;
    left: 1.68375vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .catchphrase.third {
    bottom: 18.4481vw;
    right: 3.14788vw;
  }
  .content_wrap_for_pc .section_wrap section#check_shirt .image_wrap_parent .check_decoration {
    top: -5.637vw;
    right: 2.562229vw;
    max-width: 6.735vw;
  }
  .other_information {
    margin: 0 auto 7.32066vw;
  }
  .other_information .other_items {
    max-width: 24.5977vw;
    margin: 0 auto;
  }
  .other_information .other_items .arrow_wrap {
    right: 1.46413vw;
  }
  footer {
    padding: 4.39239vw 0 2.04978vw;
  }
  footer .logo_wrap {
    max-width: 5.856512vw;
    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;
  }
}
@media screen and (744px <= width < 1360px) {
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops {
    height: 30px;
  }
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .in_one_piece .box,
  .content_wrap_for_pc .section_wrap .main_description .glamorous_tops_wrap .glamorous_tops .box {
    width: 30px;
  }
  .content_wrap_for_pc .section_wrap .main_description .photogenic {
    font-size: 16px;
  }
  .content_wrap_for_pc .section_wrap .main_description .photogenic .highlight {
    font-size: 16px;
  }
  .content_wrap_for_pc .section_wrap section#summer_knit .image_wrap_parent .curve_decoration.top {
    top: -13.4vw;
    right: 0.6vw;
    transform: rotate(0deg);
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .update_point {
    bottom: -8.2vw;
    left: 1vw;
  }
  .content_wrap_for_pc .section_wrap section#border_tshirts .image_wrap_parent .update_point .description_wrap:before {
    top: -2.6vw;
    right: 0.4vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .update_point {
    bottom: 24.8vw;
  }
  .content_wrap_for_pc .section_wrap section#stripe_shirt .image_wrap_parent .update_point .description_wrap:before {
    top: 7vw;
  }
}/*# sourceMappingURL=common.css.map */