@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&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: "Shippori Mincho", serif;
  font-size: 14px;
  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 1s forwards;
}

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

.fadeInImgT {
  opacity: 0;
}
.fadeInImgT.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;
  }
}
.fadeInImgTOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgB {
  opacity: 0;
}
.fadeInImgB.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;
  }
}
.fadeInImgBOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgL {
  opacity: 0;
}
.fadeInImgL.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;
  }
}
.fadeInImgLOnTheSpot {
  opacity: 0;
  animation-name: fadeInImgFromLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fadeInImgR {
  opacity: 0;
}
.fadeInImgR.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;
  }
}
.fadeInImgROnTheSpot {
  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;
  animation-name: shrink;
  animation-duration: 3s;
}

.shrinkAccordingToScroll {
  width: 100%;
  overflow: hidden;
}
.shrinkAccordingToScroll.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;
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 8vw;
  overflow: hidden;
}
.main_visual .title_wrap_parent {
  z-index: 9999;
  position: absolute;
  bottom: 26.6667vw;
  right: 0;
  left: 0;
  max-width: 93.335vw;
  width: 100%;
  margin: auto;
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .title_wrap_parent .handwritten {
  z-index: -9999;
  position: absolute;
  bottom: 11vw;
  right: 18.8vw;
  max-width: 54.668vw;
  width: 100%;
  max-height: 8.53334vw;
  height: 100%;
}
.main_visual .title_wrap_parent .handwritten svg.handwritten__svg {
  width: 100%;
  height: 100%;
}
.main_visual .title_wrap_parent .handwritten .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 90;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.main_visual .title_wrap_parent .catchphrase {
  position: absolute;
  top: -7.4vw;
  left: 0;
  max-width: 40.8vw;
  width: 100%;
}
.main_visual .title_wrap_parent .title_wrap .title.adult_casual {
  max-width: 91vw;
  width: 100%;
  margin: 0 0 0 auto;
}
.main_visual .title_wrap_parent .title_wrap .title.adult_casual.fadeInOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap_parent .title_wrap .title.spring_wardrobe {
  max-width: 61.068vw;
  width: 100%;
  margin: 0 auto 5.06666vw;
}
.main_visual .title_wrap_parent .title_wrap .title.spring_wardrobe.fadeInOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .title_wrap_parent .subtitle_wrap {
  max-width: 36.535vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap_parent .subtitle_wrap .the_must_have {
  margin-bottom: 2.133334vw;
}
.main_visual .title_wrap_parent .subtitle_wrap .for_spring {
  max-width: 20.267vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.335vw;
  right: 5.335vw;
  max-width: 21.068vw;
  width: 100%;
}

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

#index {
  max-width: 90.135vw;
  width: 100%;
  margin: 0 auto 26.6667vw;
}
#index .title {
  max-width: 34.934vw;
  width: 100%;
  margin: 0 auto 5.335vw;
}
#index .anchor_link_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3.2vw 1.066666vw;
}
#index .anchor_link_wrap .anchor_link {
  max-width: 29.335vw;
  width: 100%;
  height: 100%;
}
#index .anchor_link_wrap .anchor_link a {
  margin-bottom: 5px;
}
#index .anchor_link_wrap .anchor_link .item_name p {
  font-family: "Marcellus", serif;
  text-align: center;
  letter-spacing: 0.2em;
}

section {
  width: 100%;
  padding: 16.8vw 0;
}
section.off_white {
  background: #fcfbf5;
}
section .head_wrap {
  max-width: 84.267vw;
  width: 100%;
  margin: 0 auto 6.93333vw;
  border-bottom: 1px solid #000;
}
section .head_wrap .subhead {
  width: 100%;
  margin-bottom: 1.866666vw;
}
section .head_wrap .head {
  width: 100%;
  margin-bottom: 3.7333275vw;
  font-family: "Marcellus", serif;
  font-size: 44px;
  line-height: 1.5227272727;
  letter-spacing: 0.2em;
}
section .head_wrap .head.fadeIn {
  animation-delay: 0.4s;
}
section .head_wrap .head .pink {
  font-family: "Marcellus", serif;
  font-size: 44px;
  line-height: 1.5227272727;
  letter-spacing: 0.2em;
  color: #ff9bb9;
}
section .main_item_introduction {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 84.267vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
}
section .main_item_introduction .credit {
  width: 100%;
}
section .main_item_introduction .credit .item_name {
  padding: 0 8px 0 10px;
  line-height: 1.5714285714;
  border-left: 2px solid #ff9bb9;
  width: -moz-fit-content;
  width: fit-content;
}
section .main_item_introduction .credit .item_name.white {
  background: #fff;
}
section .main_item_introduction .credit .item_name.off_white {
  background: #fcfbf5;
}
section .main_item_introduction .credit .item_name p {
  line-height: 1.5714285714;
}
section .main_item_introduction .credit .price_catchphrase_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 40vw;
  /*========= 手書き風文字 ===============*/
  /* 手書き風文字SVG画像の表示設定　*/
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .handwritten {
  position: absolute;
  bottom: 6px;
  width: 23.73334vw;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap {
  display: flex;
  align-items: center;
  position: relative;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap .yen,
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap .price {
  font-family: "Cinzel", serif;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap .yen {
  margin: -10px 1px 0 0;
  font-size: 20px;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap .price {
  font-size: 30px;
  line-height: 2.1333333333;
}
section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .text_wrap .tax {
  margin-bottom: -2px;
  font-size: 10px;
  white-space: nowrap;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap {
  padding-bottom: 22px;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap .catchphrase {
  display: flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap .catchphrase:not(:last-child) {
  margin-bottom: 8px;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap .catchphrase .icon_check {
  position: relative;
  width: 10px;
  height: 10px;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap .catchphrase .icon_check img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section .main_item_introduction .credit .price_catchphrase_wrap .catchphrase_wrap .catchphrase .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  white-space: nowrap;
}
section .image_wrap_parent {
  position: relative;
}
section .image_wrap_parent .catchphrase {
  z-index: 9999;
  position: absolute;
  max-width: 16vw;
  width: 100%;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 7.46666vw;
  line-height: 2.1428571429;
}
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;
  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: #ff9bb9;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
section .accordion_wrap {
  margin: 5.335vw 0 8.53334vw;
}
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.335vw 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;
}
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 .accordion_wrap .accordion .credit_wrap .credit .details_wrap.pink a {
  background: #ff9bb9;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.salmon_pink a {
  background: #f89e9e;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.brown a {
  background: #987c59;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.white a {
  background: #fff;
}
section#item01 .head_wrap .subhead {
  max-width: 13.6vw;
}
section#item01 .image_wrap_parent .swiper {
  max-width: 88vw;
  margin: 0 auto 5.335vw 0;
}
section#item01 .image_wrap_parent .image_wrap {
  max-width: 67.2vw;
  margin: 0 0 9.6vw auto;
}
section#item01 .image_wrap_parent .catchphrase {
  bottom: 34.4vw;
  left: 10vw;
  transform: rotate(-5deg);
}
section#item02 .head_wrap .subhead {
  max-width: 14.135vw;
}
section#item02 .image_wrap_parent .image_wrap.first {
  margin: 0 auto 5.335vw;
}
section#item02 .image_wrap_parent .image_wrap.second {
  max-width: 70.4vw;
  margin: 0 0 9.6vw auto;
}
section#item02 .image_wrap_parent .catchphrase {
  bottom: 47.6vw;
  left: 14vw;
  transform: rotate(-10deg);
}
section#item03 .head_wrap .subhead {
  max-width: 13.868vw;
}
section#item03 .image_wrap_parent .swiper {
  max-width: 84.267vw;
  margin: 0 auto;
}
section#item03 .image_wrap_parent .image_wrap {
  max-width: 84.267vw;
  margin: 0 auto 9.6vw;
}
section#item03 .image_wrap_parent .catchphrase {
  top: 16vw;
  left: 9.6vw;
  transform: rotate(-5deg);
}
section#item04 .head_wrap .subhead {
  max-width: 14.135vw;
}
section#item04 .image_wrap_parent .image_wrap.first {
  margin: 0 auto 5.335vw;
}
section#item04 .image_wrap_parent .image_wrap.second {
  max-width: 62.4vw;
  margin: 0 auto 9.6vw 13.33333vw;
}
section#item04 .image_wrap_parent .catchphrase {
  bottom: 25.6vw;
  right: 9.2vw;
  transform: rotate(6deg);
}
section#item05 .head_wrap .subhead {
  max-width: 14.135vw;
}
section#item05 .image_wrap_parent .image_wrap.first {
  max-width: 88vw;
  margin: 0 auto 5.335vw 0;
}
section#item05 .image_wrap_parent .image_wrap.second {
  max-width: 62.4vw;
  margin: 0 auto 9.6vw 10.66666vw;
}
section#item05 .image_wrap_parent .catchphrase {
  bottom: 67vw;
  right: 11vw;
  transform: rotate(6deg);
}
section#item06 .head_wrap .subhead {
  max-width: 14.135vw;
}
section#item06 .image_wrap_parent .image_wrap.first {
  margin: 0 auto 5.335vw;
}
section#item06 .image_wrap_parent .image_wrap.second {
  max-width: 62.4vw;
  margin: 0 auto 9.6vw 13.33333vw;
}
section#item06 .image_wrap_parent .catchphrase {
  bottom: 70.6vw;
  right: 10.2vw;
  transform: rotate(6deg);
}

.other_information {
  width: 100%;
  padding: 0 0 16vw;
}
.other_information .other_items {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto;
}
.other_information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ff9bb9;
}
.other_information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
.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: #000;
  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: #ff9bb9;
}
footer .logo_wrap {
  max-width: 21.33334vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
}
footer .instagram {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 12.53333vw;
}
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-family: "Roboto", sans-serif;
  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;
  line-height: 2.1666666667;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  main {
    background: #fff5f8;
  }
  .pc_hidden {
    display: none;
  }
  .main_visual {
    margin-bottom: 0;
  }
  .main_visual .swiper {
    display: none;
  }
  .main_visual .title_wrap_parent {
    bottom: 4.466vw;
    max-width: 78.185vw;
  }
  .main_visual .title_wrap_parent .handwritten {
    bottom: 4.2vw;
    right: 0;
    max-width: 25.696vw;
    max-height: 2.782vw;
  }
  .main_visual .title_wrap_parent .catchphrase {
    top: 7px;
    max-width: 17.4231vw;
  }
  .main_visual .title_wrap_parent .title_wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.68375vw;
  }
  .main_visual .title_wrap_parent .title_wrap .title.adult_casual {
    max-width: 48.756vw;
    margin: 27px 0 0;
  }
  .main_visual .title_wrap_parent .title_wrap .title.spring_wardrobe {
    max-width: 24.8902vw;
    margin: 2px 0 0;
  }
  .main_visual .title_wrap_parent .subtitle_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 24.671vw;
    width: 100%;
    margin: 0 auto;
  }
  .main_visual .title_wrap_parent .subtitle_wrap .the_must_have {
    max-width: 14.861vw;
    width: 100%;
    margin-bottom: 0.439239vw;
  }
  .main_visual .title_wrap_parent .subtitle_wrap .for_spring {
    max-width: 9.151vw;
    margin: 0;
  }
  .main_visual .logo_wrap {
    top: 1.46413vw;
    right: 1.46413vw;
    max-width: 6.5159vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 4vw;
    left: 11.1277vw;
    max-width: 34.993vw;
    margin-bottom: 0;
  }
  .content_wrap_for_pc #index.isFixed {
    display: block;
  }
  .content_wrap_for_pc #index.isHidden {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .content_wrap_for_pc #index .title {
    max-width: 12.958vw;
    margin: 0 auto 2.04978vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    gap: 1.391vw 0.58565vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: 11.274vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link a {
    margin-bottom: 10px;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 27.526vw;
    width: 100%;
    margin: 0 15.227vw 0 auto;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .main_description {
    padding: 4.68521vw 1.46413vw 5.56369vw;
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap section {
    padding: 4.6120096vw 0;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    max-width: 23.1333vw;
    margin: 0 auto 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .subhead {
    margin-bottom: 0.512445vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .head {
    margin-bottom: 1.02489vw;
  }
  .content_wrap_for_pc .section_wrap section .main_item_introduction {
    max-width: 23.1333vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap {
    max-width: 11vw;
    /*========= 手書き風文字 ===============*/
    /* 手書き風文字SVG画像の表示設定　*/
  }
  .content_wrap_for_pc .section_wrap section .main_item_introduction .credit .price_catchphrase_wrap .price_wrap .handwritten {
    width: 23.73334vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .catchphrase {
    max-width: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section .description {
    max-width: 24.5977vw;
    margin: 0 auto 2.04978vw;
  }
  .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 0;
  }
  .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#item01 .head_wrap .subhead {
    max-width: 3.73353vw;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap_parent .swiper {
    max-width: 24.1586vw;
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap_parent .image_wrap {
    max-width: 18.4481vw;
    margin: 0 0 2.63543vw auto;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap_parent .catchphrase {
    bottom: 9.4vw;
    left: 3vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .head_wrap .subhead {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap_parent .image_wrap.first {
    margin: 0 auto 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap_parent .image_wrap.second {
    max-width: 19.327vw;
    margin: 0 0 2.63543vw auto;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap_parent .catchphrase {
    bottom: 13vw;
    left: 3.6vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .head_wrap .subhead {
    max-width: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap_parent .swiper {
    max-width: 23.1333vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap_parent .image_wrap {
    max-width: 23.1333vw;
    margin: 0 auto 2.63543vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap_parent .catchphrase {
    top: 4.2vw;
    left: 2.6vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .head_wrap .subhead {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_wrap_parent .image_wrap.first {
    margin: 0 auto 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_wrap_parent .image_wrap.second {
    max-width: 17.515vw;
    margin: 0 auto 2.63543vw 3.66032vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_wrap_parent .catchphrase {
    bottom: 7vw;
    right: 2.6vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .head_wrap .subhead {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap_parent .image_wrap.first {
    max-width: 24.1586vw;
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap_parent .image_wrap.second {
    max-width: 17.1308vw;
    margin: 0 auto 2.63543vw 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap_parent .catchphrase {
    bottom: 18.6vw;
    right: 3vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .head_wrap .subhead {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_wrap_parent .image_wrap.first {
    margin: 0 auto 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_wrap_parent .image_wrap.second {
    max-width: 17.1308vw;
    margin: 0 auto 2.63543vw 3.66032vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_wrap_parent .catchphrase {
    bottom: 19.6vw;
    right: 3vw;
  }
  .other_information {
    padding: 7.32066vw 0 7.32066vw;
  }
  .other_information .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto;
  }
  .other_information .other_items .arrow_wrap {
    right: 1.46413vw;
  }
  footer {
    padding: 4.466vw 0 1.756955vw;
  }
  footer .logo_wrap {
    max-width: 5.856512vw;
    margin: 0 auto 3.73353vw;
  }
  footer .instagram {
    width: 2.19619vw;
    height: 2.19619vw;
    margin: 0 auto 3.4407vw;
  }
  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 */