@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&family=Playfair+Display:ital,wght@0,400..900;1,400..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: #4d4d4d;
}

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;
}

.blinking {
  opacity: 0;
}
.blinking.active {
  opacity: 1;
  animation: blink 0.6s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  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);
  }
}
.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;
  }
}
.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: 17.33334vw;
  right: 0;
  left: 0;
  max-width: 93.335vw;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .title {
  width: 100%;
}
.main_visual .title_wrap .title.fadeInOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .style {
  position: absolute;
  bottom: 8.53334vw;
  right: 7.2vw;
  max-width: 22.13334vw;
  width: 100%;
}
.main_visual .title_wrap .style.fadeInRotateRBOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .title_wrap .speech_bubble {
  position: absolute;
  top: -13.06668vw;
  right: 1.6vw;
  max-width: 35.468vw;
  width: 100%;
}
.main_visual .title_wrap .speech_bubble.fadeInBOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .on_or_off_wrap {
  z-index: 9999;
  position: absolute;
  top: 21.868vw;
  left: 3.2vw;
  max-width: 40.8vw;
  width: 100%;
}
.main_visual .on_or_off_wrap .on_or_off {
  max-width: 36.268vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .on_or_off_wrap .on_or_off.fadeInOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .on_or_off_wrap .handwritten {
  z-index: -9999;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-height: 24.534vw;
  height: 100%;
  margin: auto;
}
.main_visual .on_or_off_wrap .handwritten svg.handwritten__svg {
  width: 100%;
  height: 100%;
}
.main_visual .on_or_off_wrap .handwritten {
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .on_or_off_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 .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.33334vw;
  left: 4vw;
  max-width: 31.4667vw;
  width: 100%;
}

#index {
  position: relative;
  width: 100%;
  margin: 0 auto 21.33334vw;
  padding-bottom: 12.8vw;
}
#index:before {
  content: "";
  z-index: -9999;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 87.735vw;
  background: #e9f1f2;
}
#index .head_wrap {
  position: relative;
  max-width: 90.135vw;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.66667vw;
}
#index .head_wrap .head .ja {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2px;
  text-align: center;
}
#index .head_wrap .head .en {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2px;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.3571428571;
  text-align: center;
  letter-spacing: 0.1em;
}
#index .head_wrap .collection {
  position: absolute;
  bottom: 7.73334vw;
  right: -18.4vw;
  max-width: 24.534vw;
  width: 100%;
}
#index .anchor_link_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 7.46666vw;
}
#index .anchor_link_wrap .anchor_link {
  max-width: 43.468vw;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a {
  position: relative;
  max-height: 65.602vw;
  margin-bottom: 8px;
}
#index .anchor_link_wrap .anchor_link a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  left: 0;
  width: 100%;
  height: 10px;
  margin: auto;
  background: #f2c7c7;
}
#index .anchor_link_wrap .anchor_link a .text_en {
  position: absolute;
  bottom: 4.53333vw;
  right: 0;
  left: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-family: "Playfair Display", serif;
  line-height: 1.3571428571;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}
#index .anchor_link_wrap .anchor_link .text_ja {
  text-align: center;
  white-space: nowrap;
}
#index .function_head {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 4.26668vw;
}
#index .function_head .dependable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 6px;
       column-gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
}
#index .function_head .dependable .back_slash,
#index .function_head .dependable .slash {
  display: inline-block;
  width: 14.31px;
  height: 0.5px;
  background: #4d4d4d;
}
#index .function_head .dependable .back_slash {
  transform: rotate(55deg);
}
#index .function_head .dependable .slash {
  transform: rotate(-55deg);
}
#index .function_head .with_high_functionality {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#index .function_head .with_high_functionality:before, #index .function_head .with_high_functionality::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30.4vw;
  height: 1px;
  background: #4d4d4d;
}
#index .function_head .with_high_functionality:before {
  left: 0;
}
#index .function_head .with_high_functionality:after {
  right: 0;
}
#index .function_head .with_high_functionality img {
  display: block;
  max-width: 21.868vw;
  margin: 0 auto;
}
#index .function_wrap {
  display: flex;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 6.4vw;
  border-bottom: 1px solid #4d4d4d;
}
#index .function_wrap .function {
  width: -moz-fit-content;
  width: fit-content;
}
#index .function_wrap .function:not(:first-of-type) {
  margin-right: 1.333334vw;
}
#index .function_wrap .function.popUp:nth-of-type(2) {
  animation-delay: 0.2s;
}
#index .function_wrap .function.popUp:nth-of-type(3) {
  animation-delay: 0.4s;
}
#index .function_wrap .function.popUp:nth-of-type(4) {
  animation-delay: 0.6s;
}
#index .function_wrap .function.popUp:nth-of-type(5) {
  animation-delay: 0.8s;
}
#index .function_wrap .function .icon {
  width: 16vw;
  margin: 0 auto 4px;
}
#index .function_wrap .function .text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
}

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

.movie_fix .leeep-wrap {
  max-width: 84.267vw;
  margin: 0 auto 18.13334vw;
}
.movie_fix .leeep-mount {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
}
.movie_fix .leeep-mount iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
.movie_fix .leeep-fallback {
  display: none;
  margin-top: 8px;
  font-size: 12px;
}

section {
  width: 100%;
}
section .introduction {
  width: 100%;
  margin: 0 auto 16vw;
}
section .introduction .head_wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 26px 10.4vw;
}
section .introduction .head_wrap .head .ja {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
}
section .introduction .head_wrap .head .en {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.3571428571;
  letter-spacing: 0.1em;
}
section .introduction .head_wrap .style {
  position: absolute;
  bottom: -1.333334vw;
  right: -10.4vw;
  max-width: 18.13334vw;
  width: 100%;
}
section .introduction .description {
  width: -moz-fit-content;
  width: fit-content;
}
section .introduction .description p {
  line-height: 2.2857142857;
  white-space: nowrap;
}
section .introduction .description p .highlight {
  padding: 2px 1px;
  background: rgba(242, 199, 199, 0.4);
  color: #de7d7d;
  white-space: nowrap;
}
section .subhead {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 4.8vw;
}
section .subhead .check {
  max-width: 14.93333vw;
  width: 100%;
  margin-bottom: 3px;
}
section .subhead .color_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .subhead .color_wrap .color_name {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.325;
  letter-spacing: 0.1em;
}
section .subhead .color_wrap .number {
  font-family: "Bodoni Moda", serif;
  font-size: 27px;
  line-height: 1.962962963;
}
section .swiper {
  margin-bottom: 8.53334vw;
}
section .image_wrap.first {
  margin-bottom: 8.53334vw;
}
section .jacket_off_style {
  position: relative;
  max-width: 78.668vw;
  width: 100%;
  margin-bottom: 8.53334vw;
}
section .jacket_off_style .text_decoration {
  position: absolute;
  width: 100%;
}
section .jacket_off_style .text_decoration:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #4d4d4d;
}
section .jacket_off_style .text_decoration .other {
  display: block;
  max-width: 8.53334vw;
  width: 100%;
  margin: 0 auto 7px;
}
section .jacket_off_style .text_decoration .jacket_off {
  display: block;
  max-width: 3.2vw;
  width: 100%;
  margin: 0 auto;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
  line-height: 2.2857142857;
}
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: #7fccac;
}
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: #7fccac;
}
section #moca01_double_jacket {
  padding-bottom: 16vw;
}
section #moca01_double_jacket .jacket_off_style .text_decoration {
  top: 20.535vw;
  right: -17.86667vw;
  max-width: 12vw;
}
section #moca01_double_jacket .jacket_off_style .text_decoration:before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -11.468vw;
  max-width: 12vw;
}
section #navy02_double_jacket {
  position: relative;
  padding-bottom: 16vw;
}
section #navy02_double_jacket:before {
  content: "";
  z-index: -9999;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 157.068vw;
  background: #e9f1f2;
}
section #navy02_double_jacket .jacket_off_style {
  margin: 0 0 8.53334vw auto;
}
section #navy02_double_jacket .jacket_off_style .text_decoration {
  top: 5.6vw;
  left: -17.86667vw;
  max-width: 18.93334vw;
}
section #navy02_double_jacket .jacket_off_style .text_decoration:before {
  content: "";
  bottom: -3.2vw;
  left: 5.6vw;
  max-width: 18.93334vw;
}
section #beige03_double_jacket {
  margin-bottom: 16vw;
  padding-bottom: 16vw;
}
section #beige03_double_jacket.pale_green {
  background: #e9f1f2;
}
section #beige03_double_jacket .jacket_off_style .text_decoration {
  top: 17.33334vw;
  right: -17.86667vw;
  max-width: 12vw;
}
section #beige03_double_jacket .jacket_off_style .text_decoration:before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -11.468vw;
  max-width: 12vw;
}
section#collarless_jacket .introduction .head_wrap .style {
  position: absolute;
  bottom: -1.333334vw;
  right: 6.135vw;
}
section#collarless_jacket #beige01_collarless_jacket {
  padding-bottom: 16vw;
}
section#collarless_jacket #beige01_collarless_jacket .jacket_off_style .text_decoration {
  top: 50%;
  transform: translateY(-50%);
  right: -17.86667vw;
  max-width: 12vw;
}
section#collarless_jacket #beige01_collarless_jacket .jacket_off_style .text_decoration:before {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -11.468vw;
  max-width: 12vw;
}
section#collarless_jacket #navy02_collarless_jacket {
  margin-bottom: 21.33334vw;
}
section#collarless_jacket #navy02_collarless_jacket .jacket_off_style {
  margin: 0 auto 8.53334vw;
}

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

.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 #7fccac;
}
.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: #4d4d4d;
  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: #7fccac;
}
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 #4d4d4d;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 15.735vw;
  text-align: center;
  color: #4d4d4d;
}
footer .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  line-height: 2.1666666667;
  color: #4d4d4d;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  main {
    position: relative;
    background: #7fccac;
  }
  .pc_hidden {
    display: none;
  }
  .main_visual {
    display: flex;
    margin-bottom: 0;
    padding-bottom: 4.6120096vw;
  }
  .main_visual .image_wrap {
    width: auto;
    height: 46.4866vw;
  }
  .main_visual .title_wrap {
    z-index: 9999;
    bottom: 0;
    right: auto;
    left: 17.8624vw;
    max-width: 43.41198vw;
  }
  .main_visual .title_wrap .style {
    bottom: 6vw;
    right: 3.075vw;
    max-width: 10.2494vw;
  }
  .main_visual .title_wrap .speech_bubble {
    top: 1.68375vw;
    right: auto;
    left: -5.637vw;
    transform: rotate(-36deg);
    max-width: 13.1777vw;
  }
  .main_visual .on_or_off_wrap {
    top: 14.9346vw;
    left: 36.823vw;
    max-width: 17.277vw;
  }
  .main_visual .on_or_off_wrap .on_or_off {
    max-width: 15.447vw;
  }
  .main_visual .on_or_off_wrap .handwritten {
    max-height: 10.3953vw;
  }
  .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: 2vw;
    left: 11.1277vw;
    max-width: 31.845vw;
    margin: 0;
    padding-bottom: 2.12299vw;
  }
  .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:before {
    content: "";
    height: 24.0849vw;
  }
  .content_wrap_for_pc #index .head_wrap {
    max-width: 24vw;
    margin: 0 auto 1.1713vw;
  }
  .content_wrap_for_pc #index .head_wrap .collection {
    bottom: -0.2vw;
    right: -3.6vw;
    max-width: 6.735vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    justify-content: center;
    gap: 0 1.756955vw;
    max-width: 27.965vw;
    margin: 0 auto 2.12299vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: 12vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link a {
    max-height: 18.162vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link a .text_en {
    bottom: 1.24451vw;
  }
  .content_wrap_for_pc #index .function_head {
    max-width: 24.5977vw;
    margin: 0 auto 1.1713vw;
  }
  .content_wrap_for_pc #index .function_head .with_high_functionality:before, .content_wrap_for_pc #index .function_head .with_high_functionality::after {
    content: "";
    width: 8.3455vw;
  }
  .content_wrap_for_pc #index .function_head .with_high_functionality img {
    max-width: 6.00293vw;
  }
  .content_wrap_for_pc #index .function_wrap {
    padding-bottom: 1.756955vw;
  }
  .content_wrap_for_pc #index .function_wrap .function:not(:first-of-type) {
    margin-right: 0.439239vw;
  }
  .content_wrap_for_pc #index .function_wrap .function .icon {
    width: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 38.946vw;
    margin: -4.6120096vw 7.02782vw 9.9561vw 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 8.7848vw;
  }
  .content_wrap_for_pc .section_wrap section .introduction {
    margin: 0 auto 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .introduction .head_wrap {
    margin: 0 auto 39px 3.5876vw;
  }
  .content_wrap_for_pc .section_wrap section .introduction .head_wrap .head .ja {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .content_wrap_for_pc .section_wrap section .introduction .head_wrap .head .en {
    font-size: 58px;
  }
  .content_wrap_for_pc .section_wrap section .introduction .head_wrap .style {
    bottom: -0.58565vw;
    right: -4.39239vw;
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .introduction .description {
    max-width: 31.845vw;
    width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .introduction .description p,
  .content_wrap_for_pc .section_wrap section .introduction .description span {
    font-size: 16px;
  }
  .content_wrap_for_pc .section_wrap section .subhead {
    max-width: 34.554vw;
    margin: 0 auto 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .subhead .check {
    max-width: 5.4178vw;
    margin-bottom: 4px;
  }
  .content_wrap_for_pc .section_wrap section .subhead .color_wrap .color_name {
    font-size: 52px;
  }
  .content_wrap_for_pc .section_wrap section .subhead .color_wrap .number {
    font-size: 35px;
  }
  .content_wrap_for_pc .section_wrap section .swiper {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap.first {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style {
    max-width: 30.2348vw;
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style .text_decoration .other {
    max-width: 2.92826vw;
    margin: 0 auto 9px;
  }
  .content_wrap_for_pc .section_wrap section .jacket_off_style .text_decoration .jacket_off {
    max-width: 1.0986vw;
  }
  .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 #moca01_double_jacket {
    padding-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section #moca01_double_jacket .jacket_off_style .text_decoration {
    top: 8.126vw;
    right: -5.7838vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section #moca01_double_jacket .jacket_off_style .text_decoration:before {
    content: "";
    left: -3.2948vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section #navy02_double_jacket {
    padding-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section #navy02_double_jacket:before {
    z-index: unset;
    height: 47.7311vw;
  }
  .content_wrap_for_pc .section_wrap section #navy02_double_jacket .jacket_off_style {
    margin: 0 0 2.342603vw auto;
  }
  .content_wrap_for_pc .section_wrap section #navy02_double_jacket .jacket_off_style .text_decoration {
    top: 5.270866vw;
    left: -7.39388vw;
    max-width: 7.1748vw;
  }
  .content_wrap_for_pc .section_wrap section #navy02_double_jacket .jacket_off_style .text_decoration:before {
    content: "";
    bottom: -0.951687vw;
    left: 2.04978vw;
    max-width: 7.1748vw;
  }
  .content_wrap_for_pc .section_wrap section #beige03_double_jacket {
    margin-bottom: 7.32066vw;
    padding-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section #beige03_double_jacket .jacket_off_style .text_decoration {
    top: 8.0527vw;
    right: -5.7838vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section #beige03_double_jacket .jacket_off_style .text_decoration:before {
    content: "";
    left: -3.2948vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket .introduction .head_wrap .style {
    bottom: -0.58565vw;
    right: 2.48902vw;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket #beige01_collarless_jacket {
    padding-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket #beige01_collarless_jacket .jacket_off_style .text_decoration {
    right: -5.7838vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket #beige01_collarless_jacket .jacket_off_style .text_decoration:before {
    content: "";
    left: -3.2948vw;
    max-width: 4.09956vw;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket #navy02_collarless_jacket {
    padding-bottom: 7.32066vw;
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap section#collarless_jacket #navy02_collarless_jacket .jacket_off_style {
    margin: 0 auto 2.342603vw;
  }
  .banner_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 50.658895vw;
  }
  .banner_area a {
    max-width: 23.1333vw;
  }
  .banner_area .homeralady {
    margin-bottom: 0;
  }
  .other_information {
    padding: 5.856512vw 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;
    background: #fff;
  }
  footer .logo_wrap {
    max-width: 10.542vw;
    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 */