@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Marcellus&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/puv5inx.css");
@import url("https://use.typekit.net/cgq0pel.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 3s forwards;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-8px) scale(1.2);
  }
  50% {
    transform: translateY(0) scale(0.8);
  }
  70% {
    transform: translateY(-8px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.fadeInRotateRBOnTheSpot {
  opacity: 0;
  animation: fadeInRotateRB 1s forwards;
}

@keyframes fadeInRotateRB {
  from {
    opacity: 0;
    transform: rotate(10deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 10.93333vw;
  overflow: hidden;
}
.main_visual .title_wrap {
  z-index: 9999;
  position: absolute;
  bottom: 16.268vw;
  right: 0;
  left: 0;
  max-width: 92.267vw;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .subtitle {
  max-width: 61.335vw;
  width: 100%;
  margin: 0 auto 16px 1.066666vw;
}
.main_visual .title_wrap .handwritten {
  z-index: -9999;
  position: absolute;
  bottom: 9.868vw;
  right: 0;
  left: 0;
  max-width: 90.668vw;
  width: 100%;
  max-height: 7.2vw;
  height: 100%;
  margin: auto;
}
.main_visual .title_wrap .handwritten svg.handwritten__svg {
  width: 100%;
  height: 100%;
}
.main_visual .title_wrap .handwritten {
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .title_wrap .handwritten .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.main_visual .title_wrap .title {
  width: 100%;
}
.main_visual .title_wrap .title.main {
  max-width: 90.135vw;
  margin: 0 auto 4px;
}
.main_visual .title_wrap .title.main.fadeInOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .title.collection5 {
  max-width: 42.6667vw;
  margin: 0 auto;
}
.main_visual .title_wrap .title.collection5.fadeInRotateRBOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.33334vw;
  left: 4vw;
  max-width: 31.4667vw;
  width: 100%;
}

#index {
  max-width: 90.135vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 47px 4px;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link {
  position: relative;
  max-width: calc((100% - 8px) / 3);
  width: 100%;
}
#index .anchor_link_wrap .anchor_link .head {
  z-index: 9999;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link .head.style01 {
  top: -2.12299vw;
  max-width: 18.13334vw;
}
#index .anchor_link_wrap .anchor_link .head.style02 {
  top: -2.12299vw;
  max-width: 20.267vw;
}
#index .anchor_link_wrap .anchor_link .head.style03 {
  top: -2.2694vw;
  max-width: 20vw;
}
#index .anchor_link_wrap .anchor_link .head.style04 {
  top: -1.976577vw;
  max-width: 20vw;
}
#index .anchor_link_wrap .anchor_link .head.style05 {
  top: -2.12299vw;
  max-width: 20.535vw;
}
#index .anchor_link_wrap .anchor_link a {
  max-height: 56.802vw;
  margin-bottom: 4px;
}
#index .anchor_link_wrap .anchor_link .item_used {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link .item_used img {
  display: block;
  max-width: 6.93333vw;
}
#index .anchor_link_wrap .anchor_link .item_used .plus {
  display: inline-block;
  position: relative;
  width: 9px;
  height: 1px;
  line-height: 1;
  vertical-align: middle;
  background: currentColor;
  color: #000;
}
#index .anchor_link_wrap .anchor_link .item_used .plus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

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

/* Leep動画埋め込み */
.leeep-wrap {
  max-width: 84.267vw;
  margin: 0 auto 10.66666vw;
}

.leeep-mount {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
}
.leeep-mount iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

.leeep-fallback {
  display: none;
  margin-top: 8px;
  font-size: 12px;
}

.introduction {
  width: 100%;
  padding: 16vw 0;
  background: #eff7f6;
}
.introduction .head_wrap_parent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 82.134vw;
  width: 100%;
  margin: 0 auto 2.66667vw;
}
.introduction .head_wrap_parent .text_decoration {
  position: absolute;
  top: 50%;
  max-width: 32.8vw;
  width: 100%;
}
.introduction .head_wrap_parent .text_decoration.left {
  left: -15.46668vw;
  transform: rotate(-90deg) translateY(-50%);
}
.introduction .head_wrap_parent .text_decoration.right {
  right: -15.46668vw;
  transform: rotate(90deg) translateY(-50%);
}
.introduction .head_wrap_parent .head_wrap {
  position: relative;
  max-width: 51.2vw;
  width: 100%;
  margin: 0 auto;
}
.introduction .head_wrap_parent .head_wrap .handwritten {
  z-index: -9999;
  position: absolute;
  bottom: 4.8vw;
  right: 0;
  left: 0;
  width: 100%;
  max-height: 4.268vw;
  height: 100%;
  margin: auto;
}
.introduction .head_wrap_parent .head_wrap .handwritten svg.handwritten__svg {
  width: 100%;
  height: 100%;
}
.introduction .head_wrap_parent .head_wrap .handwritten {
  /*========= 手書き風に見せるためのCSS ===============*/
}
.introduction .head_wrap_parent .head_wrap .handwritten .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}
.introduction .head_wrap_parent .head_wrap .head {
  max-width: 46.4vw;
  width: 100%;
  margin: 0 auto;
}
.introduction .loop-slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 12vw;
}
.introduction .loop-slider .loop-slider-inner {
  display: flex;
  width: 490.68vw;
  animation: loopAnimation 10s linear infinite;
}
@keyframes loopAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.introduction .loop-slider .loop-slider-inner .card {
  max-width: 49.068vw;
  width: 100%;
}
.introduction .loop-slider .loop-slider-inner .card .still_life_image {
  position: relative;
  width: 100%;
  padding-bottom: 2px;
  margin-bottom: 17px;
}
.introduction .loop-slider .loop-slider-inner .card .still_life_image::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 14.4vw;
  width: 100%;
  height: 1px;
  background: #000;
}
.introduction .loop-slider .loop-slider-inner .card .item_name {
  width: 100%;
  margin: 0 auto;
}
.introduction .loop-slider .loop-slider-inner .card .item_name.double-breasted_jacket {
  max-width: 38.668vw;
}
.introduction .loop-slider .loop-slider-inner .card .item_name.collarless_jacket {
  max-width: 25.868vw;
}
.introduction .loop-slider .loop-slider-inner .card .item_name.wide_pants {
  max-width: 23.73334vw;
}
.introduction .loop-slider .loop-slider-inner .card .item_name.tapered_pants {
  max-width: 30.934vw;
}
.introduction .loop-slider .loop-slider-inner .card .item_name.belted_skirt {
  max-width: 26.4vw;
}
.introduction .function_wrap_parent {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 22.13334vw;
  padding: 13.6vw 0 4.53333vw;
  background: #fff;
}
.introduction .function_wrap_parent .catchphrase_wrap {
  position: absolute;
  top: -7px;
  right: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.introduction .function_wrap_parent .catchphrase_wrap p {
  margin-bottom: 10px;
  text-align: center;
}
.introduction .function_wrap_parent .catchphrase_wrap .highly_functional {
  max-width: 21.868vw;
  width: 100%;
  margin: 0 auto;
}
.introduction .function_wrap_parent .function_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  max-width: 79.735vw;
  margin: 0 auto;
}
.introduction .function_wrap_parent .function_wrap .function img {
  display: block;
  width: 16vw;
  margin: 0 auto 4px;
}
.introduction .function_wrap_parent .function_wrap .function .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  line-height: 1.2727272727;
  text-align: center;
}

section {
  width: 100%;
}
section.pale_blue {
  background: rgba(152, 186, 214, 0.16);
}
section .head_image_wrap {
  position: relative;
  margin: 0 auto 5.33334vw;
}
section .head_image_wrap .head_wrap {
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  right: 0;
  left: 0;
  max-width: 89.6vw;
  width: 100%;
  margin: auto;
  padding-right: 10px;
}
section .head_image_wrap .head_wrap .style_number {
  max-width: 41.0667vw;
  width: 100%;
}
section .head_image_wrap .head_wrap .smart_beauty {
  max-width: 16.268vw;
  width: 100%;
}
section .item_used {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7.46666vw 8vw;
}
section .item_used .still_life_image {
  max-width: 14.93333vw;
  width: 100%;
}
section .item_used .plus {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 1px;
  line-height: 1;
  vertical-align: middle;
  background: currentColor;
  color: #000;
}
section .item_used .plus:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
section .item_used .text {
  width: 100%;
  margin-left: 4px;
}
section .catchphrase {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7.46666vw 8vw;
}
section .catchphrase p {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  line-height: 1.8888888889;
}
section .catchphrase p.highlight {
  display: block;
  padding: 0 8px;
  background: #98bad6;
  color: #fff;
}
section .catchphrase p.highlight.fadeInL {
  animation-delay: 0.4s;
}
section .jacket_off_style {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 9.6vw;
}
section .jacket_off_style .text_decoration {
  max-width: 9.6vw;
  width: 100%;
}
section .jacket_off_style .image_wrap {
  max-width: 78.668vw;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
  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: #98bad6;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
section .accordion_wrap {
  margin: 5.33334vw 0;
}
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.33334vw;
}
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%;
  background: #98bad6;
}
section#style01 {
  padding: 26.4vw 0 10.66666vw;
}
section#style01 .head_image_wrap .head_wrap {
  top: -17.33334vw;
}
section#style01 .head_image_wrap .head_wrap .style_number {
  max-width: 35.468vw;
}
section#style01 .item_used .text {
  max-width: 48vw;
}
section#style01 .catchphrase p.normal {
  margin-bottom: 14px;
}
section#style01 .catchphrase p.highlight:not(:last-of-type) {
  margin-bottom: 10px;
}
section#style01 .jacket_off_style {
  padding-left: 6.66666vw;
}
section#style02 {
  padding: 29.335vw 0 5.33334vw;
}
section#style02 .head_image_wrap .head_wrap {
  top: -18.13334vw;
}
section#style02 .head_image_wrap .swiper {
  max-width: 89.6vw;
}
section#style02 .item_used .text {
  max-width: 36.535vw;
}
section#style02 .catchphrase p.highlight {
  margin-bottom: 14px;
}
section#style02 .jacket_off_style {
  padding-right: 6.66666vw;
}
section#style02 .jacket_off_style .text_decoration {
  transform: rotate(180deg);
}
section#style03 {
  position: relative;
  padding: 23.46667vw 0 5.33334vw;
}
section#style03:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 318.135vw;
  margin: auto;
  background: rgba(152, 186, 214, 0.16);
}
section#style03 .head_image_wrap .head_wrap {
  top: -18.13334vw;
}
section#style03 .item_used .text {
  max-width: 47.735vw;
}
section#style03 .catchphrase p.normal {
  margin-bottom: 14px;
}
section#style03 .catchphrase p.highlight:not(:last-of-type) {
  margin-bottom: 10px;
}
section#style03 .jacket_off_style {
  padding-left: 6.66666vw;
}
section#style04 {
  padding: 24.8vw 0 5.33334vw;
}
section#style04 .head_image_wrap .head_wrap {
  top: -19.468vw;
}
section#style04 .head_image_wrap .image_wrap {
  max-width: 89.6vw;
  margin: 0 auto 7.46666vw 0;
}
section#style04 .item_used .text {
  max-width: 27.2vw;
}
section#style04 .catchphrase p.normal {
  margin-bottom: 14px;
}
section#style04 .catchphrase p.highlight:not(:last-of-type) {
  margin-bottom: 10px;
}
section#style04 .image_wrap.second {
  max-width: 78.668vw;
  margin: 0 0 9.6vw auto;
}
section#style05 {
  margin-bottom: 16vw;
  padding: 25.33334vw 0 0;
}
section#style05 .head_image_wrap .head_wrap {
  top: -20vw;
}
section#style05 .item_used .text {
  max-width: 20.8vw;
}
section#style05 .catchphrase p.highlight {
  margin-bottom: 14px;
}
section#style05 .image_wrap.second {
  max-width: 78.668vw;
  margin: 0 auto 9.6vw;
}

.banner_area {
  max-width: 84.267vw;
  width: 100%;
  margin: 0 auto;
}

.other_information {
  width: 100%;
  padding: 21.33334vw 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: #fff;
  border: 1px solid #98bad6;
}
.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);
}

footer {
  width: 100%;
  padding: 16vw 0 7.46666vw;
  background: #98bad6;
}
footer .logo_wrap {
  max-width: 38.4vw;
  width: 100%;
  margin: 0 auto 11.2vw;
}
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) {
  main {
    position: relative;
    background: #dfe8ef;
  }
  .pc_hidden {
    display: none;
  }
  .main_visual {
    display: flex;
    margin-bottom: 0;
  }
  .main_visual .image_wrap {
    max-width: 50%;
  }
  .main_visual .title_wrap {
    bottom: 2.636vw;
    max-width: 42.826vw;
  }
  .main_visual .title_wrap .subtitle {
    max-width: 24.817vw;
    margin: 0 auto 11px -1.24451vw;
  }
  .main_visual .title_wrap .handwritten {
    bottom: 4.539vw;
    max-width: 42.094vw;
    max-height: 3.2948vw;
  }
  .main_visual .title_wrap .title.main {
    max-width: 41.8746vw;
    margin: 0 auto 6px 0;
  }
  .main_visual .title_wrap .title.collection5 {
    max-width: 19.8395vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.46413vw;
    left: auto;
    max-width: 12.07909vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 3.9vw;
    left: 6.295757vw;
    max-width: 41.4354vw;
    margin: 0;
  }
  .content_wrap_for_pc #index.isFixed {
    display: block;
  }
  .content_wrap_for_pc #index.isHidden {
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .content_wrap_for_pc #index .head {
    max-width: 25.3299vw;
    width: 100%;
    margin: 0 auto 3.73353vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: 8.0527vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .head.style01 {
    top: -2.2694vw;
    max-width: 4.97804vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .head.style02 {
    top: -2.2694vw;
    max-width: 5.56369vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .head.style03 {
    top: -2.2694vw;
    max-width: 5.49048vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .head.style04 {
    top: -2.2694vw;
    max-width: 5.49048vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .head.style05 {
    top: -2.416vw;
    max-width: 5.637vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link a {
    max-height: 15.593vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link .item_used img {
    max-width: 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 38.946vw;
    margin: 0 7.02782vw 7.32066vw auto;
    padding: 5.856512vw 0 0;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .main_description {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap {
    /* Leep動画埋め込み */
  }
  .content_wrap_for_pc .section_wrap .leeep-wrap {
    max-width: 23.1333vw;
    margin: 0 auto 5.125vw;
  }
  .content_wrap_for_pc .section_wrap .introduction {
    padding: 5.49048vw 0 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent {
    max-width: 28.0381vw;
    margin: 0 auto 2.782vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .text_decoration {
    max-width: 10.542vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .text_decoration.left {
    left: -4.905vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .text_decoration.right {
    right: -4.905vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .head_wrap {
    max-width: 17.4237vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .head_wrap .handwritten {
    bottom: 1.61054vw;
    max-height: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap_parent .head_wrap .head {
    max-width: 15.813vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider {
    margin-bottom: 4.466vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner {
    width: 154.47vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card {
    max-width: 15.447vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .still_life_image {
    margin-bottom: 19px;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .still_life_image::after {
    max-width: 4.466vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .item_name.double-breasted_jacket {
    max-width: 12.006vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .item_name.collarless_jacket {
    max-width: 7.98vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .item_name.wide_pants {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .item_name.tapered_pants {
    max-width: 9.59008vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider .loop-slider-inner .card .item_name.belted_skirt {
    max-width: 8.1996vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent {
    max-width: 31.845vw;
    margin: 0 auto;
    padding: 4.6857vw 0 1.68375vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent .catchphrase_wrap {
    top: -9px;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent .catchphrase_wrap p {
    margin-bottom: 12px;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent .catchphrase_wrap .highly_functional {
    max-width: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent .function_wrap {
    gap: 12px 22px;
    max-width: 27.16vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .function_wrap_parent .function_wrap .function img {
    width: 5.4178vw;
    margin: 0 auto 5px;
  }
  .content_wrap_for_pc .section_wrap section .head_image_wrap {
    margin: 0 auto 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section .head_image_wrap .head_wrap {
    max-width: 33.2362vw;
    padding-right: 0;
  }
  .content_wrap_for_pc .section_wrap section .head_image_wrap .head_wrap .style_number {
    max-width: 15.081vw;
  }
  .content_wrap_for_pc .section_wrap section .head_image_wrap .head_wrap .smart_beauty {
    max-width: 7.4676vw;
  }
  .content_wrap_for_pc .section_wrap section .item_used {
    margin: 0 auto 2.04978vw 2.636vw;
  }
  .content_wrap_for_pc .section_wrap section .item_used .still_life_image {
    max-width: 6.00293vw;
  }
  .content_wrap_for_pc .section_wrap section .item_used .plus {
    width: 20px;
  }
  .content_wrap_for_pc .section_wrap section .catchphrase {
    margin: 0 auto 2.636vw 2.636vw;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style {
    margin-bottom: 2.636vw;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style .text_decoration {
    max-width: 3.2211vw;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style .image_wrap {
    max-width: 30.2348vw;
  }
  .content_wrap_for_pc .section_wrap section .description {
    max-width: 27.526vw;
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 27.526vw;
  }
  .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: 27.526vw;
    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 {
    padding: 12.5188vw 0 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .head_image_wrap .head_wrap {
    top: -6.8087vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .head_image_wrap .head_wrap .style_number {
    max-width: 12.958vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .item_used .text {
    max-width: 18.8144vw;
  }
  .content_wrap_for_pc .section_wrap section#style01 .catchphrase p.highlight:not(:last-of-type) {
    margin-bottom: 14px;
  }
  .content_wrap_for_pc .section_wrap section#style01 .jacket_off_style {
    padding-left: 2.8556vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 {
    padding: 12.738vw 0 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .head_image_wrap .head_wrap {
    top: -6.88197vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .head_image_wrap .swiper {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section#style02 .item_used .text {
    max-width: 14.2758vw;
  }
  .content_wrap_for_pc .section_wrap section#style02 .jacket_off_style {
    padding-right: 2.8556vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 {
    padding: 8.2723vw 0 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#style03:before {
    height: 110.469vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .head_image_wrap .head_wrap {
    top: -6.8087vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .head_image_wrap .head_wrap .style_number {
    max-width: 14.788vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .item_used .text {
    max-width: 18.741vw;
  }
  .content_wrap_for_pc .section_wrap section#style03 .catchphrase p.highlight:not(:last-of-type) {
    margin-bottom: 14px;
  }
  .content_wrap_for_pc .section_wrap section#style03 .jacket_off_style {
    padding-left: 2.8556vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 {
    padding: 8.3455vw 0 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .head_image_wrap .head_wrap {
    top: -6.955vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .head_image_wrap .image_wrap {
    max-width: 100%;
    margin: 0 auto 2.04978vw 0;
  }
  .content_wrap_for_pc .section_wrap section#style04 .item_used .text {
    max-width: 10.615vw;
  }
  .content_wrap_for_pc .section_wrap section#style04 .catchphrase p.highlight:not(:last-of-type) {
    margin-bottom: 14px;
  }
  .content_wrap_for_pc .section_wrap section#style04 .image_wrap.second {
    max-width: 30.2348vw;
    margin: 0 auto 2.636vw 0;
  }
  .content_wrap_for_pc .section_wrap section#style05 {
    margin-bottom: 0;
    padding: 8.7116vw 0 4.97804vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .head_image_wrap .head_wrap {
    top: -7.248vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .item_used .text {
    max-width: 8.126vw;
  }
  .content_wrap_for_pc .section_wrap section#style05 .image_wrap.second {
    max-width: 30.2348vw;
    margin: 0 auto 2.636vw 0;
  }
  .banner_area {
    max-width: 23.1333vw;
    margin: 0 auto;
  }
  .other_information {
    padding: 5.856512vw 0 16vw;
  }
  .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;
  }
}
@media screen and (744px <= width < 1112px) {
  .content_wrap_for_pc #index .index_inner {
    padding: 2vw 0 1.6vw;
  }
  .content_wrap_for_pc #index .index_inner .description_wrap .description {
    font-size: 12px;
  }
  .content_wrap_for_pc #index .index_inner .description_wrap .description span {
    font-size: 12px;
  }
  .content_wrap_for_pc #index .index_inner .description_wrap .description .tab_hidden {
    display: block;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap {
    gap: 0 0.292826vw;
    max-width: 39.0196vw;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link {
    max-width: 9vw;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link a {
    margin-bottom: 8px;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link .style_number {
    top: -15px;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link .style_name p {
    font-size: 8px;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link .style_name p.top {
    margin-bottom: 7px;
  }
  .content_wrap_for_pc #index .index_inner .anchor_link_wrap .anchor_link .style_name .times {
    width: 8px;
    height: 8px;
    margin: 0 auto 4px;
  }
}/*# sourceMappingURL=common.css.map */