@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&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: 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 2s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInOnTheSpot {
  opacity: 0;
  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%);
  }
}
.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%;
  padding-bottom: 29.8667vw;
  background: #f2d8d8;
  overflow: hidden;
}
.main_visual .title_wrap {
  z-index: 8888;
  position: absolute;
  top: 65.4vw;
  right: 0;
  left: 0;
  max-width: 68vw;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .line {
  position: absolute;
  bottom: 5.6vw;
  right: 0;
  left: 0;
  width: 100%;
  height: 7px;
  margin: auto;
  background: #f2d8d8;
}
.main_visual .title_wrap .line.fadeInLOnTheSpot {
  animation-delay: 2.8s;
}
.main_visual .title_wrap .title {
  max-width: 65.602vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .title.fadeInLOnTheSpot {
  animation-delay: 2.4s;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 3.2vw;
  left: 2.66667vw;
  max-width: 21.068vw;
  width: 100%;
}
.main_visual .tag_wrap {
  position: absolute;
  bottom: 4.268vw;
  right: 5.068vw;
  max-width: 26.6667vw;
  width: 100%;
}
.main_visual .tag_wrap .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 23px;
  transform: rotate(14deg);
  background: #fff;
  border: 1px solid #000;
}
.main_visual .tag_wrap .tag:not(:last-of-type) {
  margin-bottom: 10px;
}
.main_visual .tag_wrap .tag span {
  display: inline-block;
  line-height: 1.7857142857;
  text-align: center;
}
.main_visual .tag_wrap .tag:first-of-type.fadeInLOnTheSpot {
  animation-delay: 2.4s;
}
.main_visual .tag_wrap .tag:nth-of-type(2).fadeInLOnTheSpot {
  animation-delay: 2.8s;
}
.main_visual .tag_wrap .tag:nth-of-type(3).fadeInLOnTheSpot {
  animation-delay: 3.2s;
}

#index {
  z-index: 9999;
  width: 100%;
  background: #f2d8d8;
  padding-bottom: 20.8vw;
}
#index .head_wrap {
  position: relative;
  max-width: 56.802vw;
  width: 100%;
  margin: 0 auto 4.26668vw;
}
#index .head_wrap .line {
  position: absolute;
  bottom: 8.26666vw;
  right: 0;
  left: 0;
  max-width: 38.4vw;
  width: 100%;
  height: 6px;
  margin: auto;
  background: #fff;
}
#index .head_wrap .line.fadeInL {
  animation-delay: 0.2s;
}
#index .head_wrap .speech_bubble {
  position: absolute;
  top: -14.668vw;
  left: -5.868vw;
  max-width: 9.883vw;
  width: 100%;
}
#index .head_wrap .speech_bubble .handwritten {
  width: 100%;
}
#index .head_wrap .speech_bubble .handwritten svg.handwritten__svg {
  width: 100%;
  min-height: 22.4vw;
  height: 100%;
}
#index .head_wrap .speech_bubble .handwritten svg.handwritten__svg image.handwritten__img {
  width: auto;
  height: 100%;
}
#index .head_wrap .speech_bubble .handwritten .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
#index .head_wrap .speech_bubble .speech_bubble_inner {
  position: absolute;
  top: 50%;
  left: 1.066666vw;
  transform: translateY(-50%);
  max-width: 2.93334vw;
  width: 100%;
}
#index .head_wrap .head {
  width: 100%;
}
#index .head_wrap .head.adaptive {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto 14px;
}
#index .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4.8vw 1.066666vw;
  max-width: 94.934vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link {
  position: relative;
  max-width: calc((100% - 2.133332vw) / 3);
  width: 100%;
  height: 100%;
}
#index .anchor_link_wrap .anchor_link .temperature {
  position: absolute;
  top: 7px;
  left: 7px;
  max-width: 5.33334vw;
  width: 100%;
  overflow: hidden;
}
#index .anchor_link_wrap .anchor_link .temperature img {
  display: block;
  width: 100%;
  height: auto;
}
#index .anchor_link_wrap .anchor_link .situation {
  position: absolute;
  bottom: -12px;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}

section {
  width: 100%;
}
section.salmon_pink {
  background: #f2d8d8;
}
section .image_wrap_main {
  position: relative;
  width: 100%;
}
section .image_wrap_main .head_wrap {
  position: absolute;
  max-width: 36.268vw;
  width: 100%;
}
section .image_wrap_main .main_item {
  position: absolute;
  width: 100%;
}
section .image_wrap_main .main_item .item_name {
  width: 100%;
  margin-bottom: 7px;
}
section .image_wrap_main .main_item .price {
  width: 100%;
  margin: 0 auto;
}
section .image_wrap_main .main_item .line {
  position: absolute;
  max-width: 11.468vw;
  width: 100%;
}
section .image_wrap_main .description {
  position: absolute;
  width: 100%;
}
section .image_wrap_second {
  position: relative;
  width: 100%;
}
section .image_wrap_second .description {
  position: absolute;
  width: 100%;
}
section .image_wrap_second .main_item {
  position: absolute;
  width: 100%;
}
section .image_wrap_second .main_item .item_name {
  width: 100%;
  margin-bottom: 7px;
}
section .image_wrap_second .main_item .price {
  width: 100%;
  margin: 0 auto;
}
section .image_wrap_second .main_item .line {
  position: absolute;
  max-width: 11.468vw;
  width: 100%;
}
section .image_wrap_third {
  position: relative;
  width: 100%;
}
section .image_wrap_third .description {
  position: absolute;
  width: 100%;
}
section .spring_tops_point_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
}
section .spring_tops_point_wrap .head_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 4.8vw;
  padding: 0 0 1.6vw 5.33334vw;
  border-bottom: 1px solid #000;
}
section .spring_tops_point_wrap .head_wrap .text_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  max-width: 17.33334vw;
  width: 100%;
  height: 10.4vw;
}
section .spring_tops_point_wrap .head_wrap .text_wrap .spring_tops {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 7.46666vw;
  width: 100%;
}
section .spring_tops_point_wrap .head_wrap .text_wrap .point {
  max-width: 13.6vw;
  width: 100%;
}
section .spring_tops_point_wrap .head_wrap .thumbnail {
  position: absolute;
  top: 5.6vw;
  right: 3.46666vw;
  max-width: 18.66666vw;
  width: 100%;
}
section .spring_tops_point_wrap .features_wrap {
  width: 100%;
  padding-left: 8vw;
}
section .spring_tops_point_wrap .features_wrap .feature {
  display: flex;
  align-items: center;
  width: 100%;
}
section .spring_tops_point_wrap .features_wrap .feature:not(:last-of-type) {
  margin-bottom: 15px;
}
section .spring_tops_point_wrap .features_wrap .feature .check_box {
  width: 16px;
  height: 16px;
  margin-right: 2.93334vw;
}
section .spring_tops_point_wrap .features_wrap .feature .text {
  font-size: 13px;
}
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.salmon_pink a {
  background: #f2d8d8;
}
section .credit_wrap .credit .details_wrap.white a {
  background: #fff;
}
section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 26.6667vw;
  width: 100%;
  height: 30px;
}
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.salmon_pink a {
  background: #f2d8d8;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap.white a {
  background: #fff;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap a {
  max-width: 100%;
}
section#style01 {
  margin-bottom: 37.868vw;
}
section#style01 .image_wrap_main {
  margin-bottom: 13.868vw;
}
section#style01 .image_wrap_main .head_wrap {
  bottom: -8.8vw;
  left: 8.53334vw;
}
section#style01 .image_wrap_main .main_item {
  top: 49.335vw;
  right: 11.73334vw;
  max-width: 16vw;
}
section#style01 .image_wrap_main .main_item .price {
  max-width: 14.135vw;
}
section#style01 .image_wrap_main .main_item .line {
  top: 50%;
  transform: translateY(-50%);
  left: -14.668vw;
}
section#style01 .image_wrap_second {
  max-width: 78.935vw;
  margin: 0 0 7.46666vw auto;
}
section#style01 .image_wrap_second .description {
  top: 14.135vw;
  left: -9.068vw;
  max-width: 16.8vw;
}
section#style02 {
  padding-bottom: 42.135vw;
}
section#style02 .image_wrap_main {
  margin-bottom: 7.46666vw;
}
section#style02 .image_wrap_main .image_wrap {
  max-width: 89.6vw;
  margin: 0 auto 0 0;
}
section#style02 .image_wrap_main .head_wrap {
  top: -16.535vw;
  right: 4.8vw;
}
section#style02 .image_wrap_main .main_item {
  top: 31.2vw;
  left: 8.8vw;
  max-width: 16vw;
}
section#style02 .image_wrap_main .main_item .item_name {
  max-width: 10.66666vw;
}
section#style02 .image_wrap_main .main_item .price {
  max-width: 14.93333vw;
}
section#style02 .image_wrap_main .main_item .line {
  bottom: -9vw;
  right: -6.4vw;
  transform: rotate(15deg) scaleX(-1);
}
section#style02 .image_wrap_main .description {
  top: 37.067vw;
  right: 8.26666vw;
  max-width: 10.66666vw;
}
section#style03 {
  margin-bottom: 32.8vw;
}
section#style03 .image_wrap_main {
  margin-bottom: 5.33334vw;
}
section#style03 .image_wrap_main .head_wrap {
  top: -20.8vw;
  left: 7.2vw;
}
section#style03 .image_wrap_main .main_item.jacket {
  top: 37.6vw;
  right: 10.4vw;
  max-width: 17.068vw;
}
section#style03 .image_wrap_main .main_item.jacket .price {
  max-width: 14.4vw;
}
section#style03 .image_wrap_main .main_item.jacket .line {
  top: 6vw;
  left: -12vw;
  transform: rotate(-15deg);
}
section#style03 .image_wrap_main .main_item.pants {
  bottom: 56.268vw;
  right: 4.8vw;
  max-width: 16vw;
}
section#style03 .image_wrap_main .main_item.pants .price {
  max-width: 14.135vw;
}
section#style03 .image_wrap_main .main_item.pants .line {
  top: 9vw;
  transform: rotate(-20deg);
  left: -12vw;
}
section#style03 .image_wrap_main .description {
  top: 45.335vw;
  left: 11.2vw;
  max-width: 11.73334vw;
}
section#style03 .image_wrap_second {
  max-width: 78.935vw;
  margin: 0 auto 5.33334vw 0;
}
section#style03 .image_wrap_second .main_item.tops {
  top: 20.267vw;
  right: 14.4vw;
  max-width: 14.4vw;
}
section#style03 .image_wrap_second .main_item.tops .price {
  max-width: 14.135vw;
}
section#style03 .image_wrap_second .main_item.tops .line {
  top: 6vw;
  left: -12vw;
  transform: rotate(-15deg);
}
section#style03 .image_wrap_second .description {
  top: 14.135vw;
  left: -9.068vw;
  max-width: 16.8vw;
}
section#style03 .image_wrap_third {
  max-width: 78.935vw;
  margin: 0 8vw 7.46666vw auto;
}
section#style03 .image_wrap_third .description {
  top: -78.134vw;
  right: -2.133334vw;
  max-width: 10.13334vw;
}
section#style04 {
  margin-bottom: 31.735vw;
}
section#style04 .image_wrap_main .image_wrap {
  max-width: 76.8vw;
  margin: 0 auto 0 0;
}
section#style04 .image_wrap_main .head_wrap {
  top: -11.468vw;
  right: 4.8vw;
}
section#style04 .image_wrap_main .description {
  top: 46.4vw;
  right: 6.93333vw;
  max-width: 10.13334vw;
}
section#style04 .image_wrap_second {
  max-width: 89.6vw;
  margin: 0 0 7.46666vw auto;
}
section#style04 .image_wrap_second .main_item {
  top: 16vw;
  left: 9.868vw;
  max-width: 16vw;
}
section#style04 .image_wrap_second .main_item .item_name {
  max-width: 10.66666vw;
}
section#style04 .image_wrap_second .main_item .price {
  max-width: 15.2vw;
}
section#style04 .image_wrap_second .main_item .line {
  top: 15vw;
  transform: rotate(25deg) scaleX(-1);
  left: 14vw;
}
section#style05 {
  padding-bottom: 26.9334vw;
}
section#style05 .image_wrap_main {
  margin-bottom: 18.93334vw;
}
section#style05 .image_wrap_main .image_wrap {
  max-width: 86.934vw;
  margin: 0 0 0 auto;
}
section#style05 .image_wrap_main .head_wrap {
  bottom: -11.468vw;
  left: 4.53333vw;
}
section#style05 .image_wrap_main .main_item {
  top: 22.13334vw;
  right: 3.7333275vw;
  max-width: 14.135vw;
}
section#style05 .image_wrap_main .main_item .item_name {
  max-width: 13.868vw;
}
section#style05 .image_wrap_main .main_item .line {
  bottom: -10vw;
  right: 6vw;
  transform: rotate(-30deg);
}
section#style05 .image_wrap_main .description {
  top: -10.4vw;
  left: 6.135vw;
  max-width: 10.13334vw;
}
section#style06 {
  margin-bottom: 16vw;
  padding-bottom: 18.66666vw;
}
section#style06 .image_wrap_main {
  margin-bottom: 8.53334vw;
}
section#style06 .image_wrap_main .image_wrap {
  max-width: 81.068vw;
  margin: 0 auto 0 0;
}
section#style06 .image_wrap_main .head_wrap {
  top: -13.06668vw;
  right: 4.8vw;
}
section#style06 .image_wrap_main .main_item {
  top: 43.468vw;
  right: 32.8vw;
  max-width: 14.4vw;
}
section#style06 .image_wrap_main .main_item .item_name {
  max-width: 13.868vw;
}
section#style06 .image_wrap_main .main_item .price {
  max-width: 14.4vw;
}
section#style06 .image_wrap_main .main_item .line {
  bottom: -10vw;
  right: 6vw;
  transform: rotate(-30deg);
}
section#style06 .image_wrap_main .description {
  top: 46.935vw;
  right: 4.8vw;
  max-width: 10.13334vw;
}
section#style06 .spring_tops_point_wrap .head_wrap .thumbnail {
  top: 2vw;
}

.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: #f2d8d8;
}
.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: #f2d8d8;
}
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 #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) {
  body {
    background: #f8ecec;
  }
  .pc_hidden {
    display: none;
  }
  .main_visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0;
    background: #f8ecec;
  }
  .main_visual.pc_hidden {
    display: none;
  }
  .main_visual .image_wrap_parent.top {
    max-width: 57.394vw;
  }
  .main_visual .image_wrap_parent.bottom {
    display: block;
    max-width: calc(100% - 57.394vw);
  }
  .main_visual .image_wrap_parent .image_wrap.first {
    flex: 0 0 auto;
    width: var(--first-width);
    height: var(--first-height);
    overflow: hidden;
    position: relative;
  }
  .main_visual .image_wrap_parent .image_wrap.first img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main_visual .image_wrap_parent .image_wrap.second {
    flex: 0 0 21.084vw;
    width: 21.084vw;
  }
  .main_visual .image_wrap_parent .image_wrap.third {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .main_visual .image_wrap_parent .image_wrap.third img {
    display: block;
    flex: 0 0 auto;
    width: 50%;
  }
  .main_visual .image_wrap_parent .image_wrap.fourth {
    flex: 0 0 auto;
    width: var(--third-width);
    height: var(--fourth-height);
    overflow: hidden;
    position: relative;
  }
  .main_visual .image_wrap_parent .image_wrap.fourth img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main_visual .title_wrap {
    top: auto;
    bottom: 3.514vw;
    max-width: 37.2626vw;
  }
  .main_visual .title_wrap .line {
    bottom: 3.001467vw;
    height: 15px;
  }
  .main_visual .title_wrap .title {
    max-width: 36.3841vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.46413vw;
    left: auto;
    max-width: 6.5159vw;
  }
  .main_visual .tag_wrap {
    bottom: 17.2035vw;
    right: 27.965vw;
    max-width: 9.51687vw;
  }
  .main_visual .tag_wrap .tag {
    height: 30px;
  }
  .main_visual .tag_wrap .tag:not(:last-of-type) {
    margin-bottom: 18px;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 3vw;
    left: 11.86vw;
    max-width: 32.87vw;
    padding: 5.051244vw 0 0;
    background: #f8ecec;
  }
  .content_wrap_for_pc #index.isFixed {
    display: block;
  }
  .content_wrap_for_pc #index.isHidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .content_wrap_for_pc #index .head_wrap {
    max-width: 19.76577vw;
    margin: 0 auto 1.537333vw;
  }
  .content_wrap_for_pc #index .head_wrap .line {
    bottom: 2.782vw;
    max-width: 13.6976vw;
    height: 8px;
  }
  .content_wrap_for_pc #index .head_wrap .speech_bubble {
    top: -5.051244vw;
    left: -2.04978vw;
    max-width: 3.075vw;
  }
  .content_wrap_for_pc #index .head_wrap .speech_bubble .handwritten svg.handwritten__svg {
    min-height: 7.76vw;
  }
  .content_wrap_for_pc #index .head_wrap .speech_bubble .speech_bubble_inner {
    left: 0.366032vw;
    max-width: 1.025vw;
  }
  .content_wrap_for_pc #index .head_wrap .head.adaptive {
    max-width: 14.6413vw;
    margin: 0 auto 18px;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    gap: 1.68375vw 0.366032vw;
    max-width: 100%;
    margin: 0;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: calc((100% - 0.732064vw666vw) / 3);
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .temperature {
    top: 8px;
    left: 8px;
    max-width: 1.83016vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .situation {
    bottom: -13px;
    font-size: 19px;
    line-height: 1.7368421053;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 31.3324vw;
    width: 100%;
    margin: 0 11.4207vw 0 auto;
    padding-top: 4.39239vw;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_main .head_wrap {
    max-width: 9.9561vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_main .main_item .line {
    max-width: 3.14788vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_second .main_item .line {
    max-width: 3.14788vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .head_wrap {
    margin: 0 auto 1.3177196vw;
    padding: 0 0 0.512445vw 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .head_wrap .text_wrap {
    max-width: 4.75842vw;
    height: 2.8556vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .head_wrap .text_wrap .spring_tops {
    max-width: 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .head_wrap .text_wrap .point {
    max-width: 3.73353vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .head_wrap .thumbnail {
    top: 1.46413vw;
    right: 0.951687vw;
    max-width: 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .features_wrap {
    padding-left: 2.1967vw;
  }
  .content_wrap_for_pc .section_wrap section .spring_tops_point_wrap .features_wrap .feature .check_box {
    margin-right: 0.80527vw;
  }
  .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#style01 {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_main {
    margin-bottom: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_main .head_wrap {
    z-index: 9999;
    bottom: -6.295757vw;
    left: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_main .main_item {
    top: 15.22697vw;
    right: 4.3197vw;
    max-width: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_main .main_item .price {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_main .main_item .line {
    top: 1.4vw;
    transform: none;
    left: -3.8vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_second {
    max-width: 25.476vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section#style01 .image_wrap_second .description {
    top: 7.98vw;
    left: -2.2694vw;
    max-width: 4.539vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 {
    padding-bottom: 8.492vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .image_wrap {
    max-width: 27.965vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .head_wrap {
    top: -4.3197vw;
    right: 2.1967vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .main_item {
    top: 10.9287vw;
    left: 3.368vw;
    max-width: 4.3197vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .main_item .item_name {
    max-width: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .main_item .price {
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .main_item .line {
    bottom: -1.4vw;
    right: -3.2vw;
    transform: rotate(20deg) scaleX(-1);
  }
  .content_wrap_for_pc .section_wrap section#style02 .image_wrap_main .description {
    top: 11.201vw;
    right: 2.8556vw;
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 {
    margin-bottom: 9.80969vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main {
    margin-bottom: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .head_wrap {
    top: -4.09956vw;
    left: 1.976577vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.jacket {
    top: 12.1528vw;
    right: 3.807vw;
    max-width: 4.6857vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.jacket .price {
    max-width: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.jacket .line {
    top: 1.8vw;
    left: -3.8vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.pants {
    bottom: 17.8624vw;
    right: 1.391vw;
    max-width: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.pants .price {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .main_item.pants .line {
    top: 2vw;
    left: -3.8vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_main .description {
    top: 15.081vw;
    left: 3.73353vw;
    max-width: 3.2211vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_second {
    max-width: 24.5977vw;
    margin: 0 auto 1.61054vw 0;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_second .main_item.tops {
    top: 5.051244vw;
    right: 5.637vw;
    max-width: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_second .main_item.tops .price {
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_second .main_item.tops .line {
    top: 3.8vw;
    left: -2vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_third {
    max-width: 24.5977vw;
    margin: 0 2.562229vw 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section#style03 .image_wrap_third .description {
    top: -22.694vw;
    right: -0.366032vw;
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 {
    margin-bottom: 7.98vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_main .image_wrap {
    max-width: 24.012vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_main .head_wrap {
    top: -5.4178vw;
    right: 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_main .description {
    top: 13.6976vw;
    right: 2.48902vw;
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_second {
    max-width: 27.965vw;
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_second .main_item {
    top: 5.7106vw;
    left: 3.14788vw;
    max-width: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_second .main_item .item_name {
    max-width: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_second .main_item .price {
    max-width: 4.246vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap_second .main_item .line {
    top: 3vw;
    left: 4.4vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 {
    padding-bottom: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main {
    margin-bottom: 6.3695vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .image_wrap {
    max-width: 27.16vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .head_wrap {
    bottom: -4.026358vw;
    left: 1.24451vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .main_item {
    top: 7.4676vw;
    right: 1.0986vw;
    max-width: 3.88vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .main_item .item_name {
    max-width: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .main_item .line {
    bottom: -2.8vw;
    right: 2vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap_main .description {
    top: -3.5876vw;
    left: 1.68375vw;
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 {
    margin-bottom: 7.32066vw;
    padding-bottom: 5.125vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .image_wrap {
    max-width: 26.062vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .head_wrap {
    top: -3.075vw;
    right: 1.537333vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .main_item {
    top: 14.715vw;
    right: 8.7848vw;
    max-width: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .main_item .item_name {
    max-width: 3.807vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .main_item .price {
    max-width: 3.95315vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .main_item .line {
    bottom: -2.8vw;
    right: 2vw;
    transform: rotate(-30deg);
  }
  .content_wrap_for_pc .section_wrap section#style06 .image_wrap_main .description {
    top: 16.1791vw;
    right: 1.1713vw;
    max-width: 2.782vw;
  }
  .content_wrap_for_pc .section_wrap section#style06 .spring_tops_point_wrap .head_wrap .thumbnail {
    top: 0;
  }
  .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;
  }
}/*# sourceMappingURL=common.css.map */