@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Marcellus&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&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: 13px;
  font-weight: 700;
  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: 10.13334vw;
  background: #f5f3a8;
  overflow: hidden;
}
.main_visual .catchphrase {
  position: absolute;
  top: 13.335vw;
  right: 3.7333275vw;
  max-width: 53.868vw;
  width: 100%;
}
.main_visual .catchphrase.fadeInLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .image_wrap_parent {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.main_visual .image_wrap_parent.sp_hidden {
  display: none;
}
.main_visual .image_wrap_parent .vertical_stacking {
  display: flex;
  flex-wrap: wrap;
  gap: 2.133334vw 0;
  justify-content: flex-end;
  max-width: 51.735vw;
  width: 100%;
}
.main_visual .image_wrap_parent .vertical_stacking .second {
  max-width: 45.0667vw;
}
.main_visual .image_wrap_parent .vertical_stacking .second.fadeInTOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .image_wrap_parent .third {
  max-width: 46.4vw;
  margin-top: 26.9334vw;
}
.main_visual .image_wrap_parent .third.fadeInTOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .image_wrap_parent .fourth {
  position: absolute;
  bottom: -9.068vw;
  right: 0;
  max-width: 29.068vw;
}
.main_visual .image_wrap_parent .fourth.fadeInBOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .title_wrap {
  position: relative;
  max-width: 74.135vw;
  width: 100%;
  margin: -13.6vw auto 0;
}
.main_visual .title_wrap .highlight {
  max-width: 59.467vw;
  width: 100%;
  margin: 0 auto 4px;
  background: #fff;
  height: 30px;
}
.main_visual .title_wrap .highlight p {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #3792bc;
}
.main_visual .title_wrap .title {
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .title.fadeUpOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .handwritten {
  position: absolute;
  bottom: -6vw;
  right: -1.2vw;
  max-width: 43.2vw;
  width: 100%;
}
.main_visual .title_wrap .handwritten svg.handwritten__svg {
  width: 100%;
  min-height: 9.068vw;
  height: 100%;
}
.main_visual .title_wrap .handwritten svg.handwritten__svg image.handwritten__img {
  width: auto;
  height: 100%;
}
.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 .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 3.2vw;
  right: 1.866666vw;
  max-width: 21.068vw;
  width: 100%;
}

.main_description {
  width: 100%;
  padding-bottom: 10.66666vw;
  line-height: 2;
  text-align: center;
  background: #f5f3a8;
}

.movie_fix {
  background: #f5f3a8;
}
.movie_fix .leeep-wrap {
  max-width: 84.267vw;
  margin: 0 auto;
}
.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;
}

.loop-slider {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.loop-slider .loop-slider-inner {
  display: flex;
  width: 274.136vw;
  animation: loopAnimation 7s linear infinite;
}
@keyframes loopAnimation {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.loop-slider .loop-slider-inner .card {
  max-width: 137.068vw;
  width: 100%;
}

.introduction {
  position: relative;
  width: 100%;
  padding: 13.33334vw 0 11.73334vw;
  background: #f5f3a8;
}
.introduction .loop-slider {
  bottom: -3.2vw;
}
.introduction .still_life_wrap {
  position: relative;
  margin-bottom: 7px;
}
.introduction .still_life_wrap .still_life {
  max-width: 97.867vw;
  width: 100%;
}
.introduction .still_life_wrap .pick_up_items {
  position: absolute;
  top: 0;
  right: 2.93334vw;
  max-width: 34.135vw;
  width: 100%;
}
.introduction .head_wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}
.introduction .head_wrap .catchphrase {
  position: absolute;
  top: -6.135vw;
  left: -9.068vw;
  transform: rotate(-12deg);
  max-width: 34.668vw;
  width: 100%;
  height: 17px;
  background: #fff;
}
.introduction .head_wrap .catchphrase p {
  font-size: 12px;
  line-height: 1.4166666667;
  text-align: center;
  color: #a6d543;
}
.introduction .head_wrap .subhead {
  max-width: 36.8vw;
  width: 100%;
  margin: 0 auto;
}
.introduction .head_wrap .head {
  width: -moz-fit-content;
  width: fit-content;
}
.introduction .head_wrap .head p {
  font-size: 28px;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  text-align: center;
}
.introduction .features_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.introduction .features_wrap .feature {
  display: flex;
  align-items: center;
}
.introduction .features_wrap .feature:not(:last-of-type) {
  margin-bottom: 8px;
}
.introduction .features_wrap .feature .icon_check {
  width: 17.25px;
  height: 16px;
  margin-right: 10px;
}

.stylist_profile {
  position: relative;
  margin-bottom: 16.53334vw;
  padding: 16.53334vw 0;
}
.stylist_profile .loop-slider {
  bottom: 0;
}
.stylist_profile .head_wrap {
  max-width: 66.934vw;
  width: 100%;
  margin: 0 auto 13px;
}
.stylist_profile .head_wrap .subhead {
  max-width: 53.868vw;
  width: 100%;
  margin: 0 auto 6px;
}
.stylist_profile .head_wrap .head_en {
  width: 100%;
  margin: 0 auto;
}
.stylist_profile .head_wrap .head_ja {
  z-index: 9999;
  position: relative;
  width: 100%;
  margin-top: -3.46666vw;
}
.stylist_profile .head_wrap .head_ja p {
  font-size: 14px;
  line-height: 1.4285714286;
  text-align: center;
}
.stylist_profile .card {
  display: flex;
  align-items: stretch;
  max-width: 81.335vw;
  margin: 0 auto;
}
.stylist_profile .card .thumbnail {
  width: 26.4vw;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.stylist_profile .card .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stylist_profile .card .details_wrap {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 26.4vw);
  width: 100%;
  padding: 2.4vw 4.53333vw;
  background: #f2f2f2;
}
.stylist_profile .card .details_wrap .details_wrap_inner .name_wrap {
  display: flex;
  align-items: baseline;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
}
.stylist_profile .card .details_wrap .details_wrap_inner .name_wrap .name {
  margin-right: 4px;
  font-size: 10px;
}
.stylist_profile .card .details_wrap .details_wrap_inner .name_wrap .suffix {
  font-size: 8px;
}
.stylist_profile .card .details_wrap .details_wrap_inner .description {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.7777777778;
  letter-spacing: -0.05em;
}
.stylist_profile .miho_takahashi {
  margin-bottom: 8.53334vw;
}
.stylist_profile .chika_watanabe .head_wrap .head_en {
  max-width: 47.735vw;
}

#index {
  width: 100%;
  margin-bottom: 21.33334vw;
}
#index .head {
  max-width: 34.135vw;
  width: 100%;
  margin: 0 auto 2.93334vw;
}
#index .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.133334vw 1.066666vw;
  max-width: 92.535vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link {
  position: relative;
  max-width: calc((100% - 2.133332vw) / 3);
  width: 100%;
  height: 100%;
}

section {
  width: 100%;
}
section.yellow {
  background: #f5f3a8;
}
section.yellow .head_wrap {
  background: #fff;
}
section .head_wrap {
  width: 100%;
  padding-bottom: 6.93333vw;
}
section .head_wrap .color_of {
  margin-bottom: 9px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
}
section .head_wrap img {
  display: block;
  margin: 0 auto;
}
section .image_wrap_parent {
  position: relative;
}
section .image_wrap_parent .swiper {
  max-width: 94.934vw;
}
section .image_wrap_parent .casual,
section .image_wrap_parent .basic {
  z-index: 8888;
  position: absolute;
  width: 100%;
}
section .image_wrap_parent .casual {
  top: 6.135vw;
  right: 5.33334vw;
  max-width: 9.6vw;
}
section .image_wrap_parent .basic {
  top: 5.33334vw;
  left: 7.46666vw;
  max-width: 11.468vw;
}
section .image_wrap {
  max-width: 78.935vw;
}
section .catchphrase {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 7.2vw 10.66666vw;
  font-size: 14px;
  line-height: 1.6428571429;
}
section .catchphrase .highlight {
  font-size: 14px;
  line-height: 1.6428571429;
}
section .catchphrase .highlight.green {
  border-bottom: 1px solid #a6d543;
}
section .catchphrase .highlight.blue {
  border-bottom: 1px solid #8dc6e0;
}
section .description_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 9.6vw;
  padding: 5.068vw 5.868vw;
  background: #f2f2f2;
}
section .description_wrap .description {
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6666666667;
}
section .description_wrap .thumbnail {
  position: absolute;
  top: -6.4vw;
  right: -6.4vw;
  width: 12.8vw;
  height: 12.8vw;
}
section .description_wrap .thumbnail img {
  border-radius: 50%;
}
section .description_wrap .comment {
  position: absolute;
  bottom: -8px;
  right: 25px;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-align: center;
  border-bottom: 1px solid #000;
}
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.yellow a {
  background: #f5f3a8;
}
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;
  font-weight: 400;
}
section .accordion_wrap {
  margin: 5.335vw auto 12.268vw;
}
section .accordion_wrap button.other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 11.2vw;
  margin: 5.33334vw auto;
  background: #fff;
  border: 1px solid #000;
}
section .accordion_wrap button.other_item.show {
  margin-bottom: 5.335vw;
}
section .accordion_wrap button.other_item.show:before {
  opacity: 0;
}
section .accordion_wrap button.other_item span {
  font-family: "Crimson Text", serif;
}
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#blue {
  margin-bottom: 16vw;
}
section#blue .head_wrap img {
  max-width: 44.5334vw;
}
section#blue .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#blue .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#blue .credit_wrap {
  margin: 0 auto 12.268vw;
}
section#yellow {
  padding-bottom: 16vw;
  margin-bottom: 16vw;
}
section#yellow .head_wrap img {
  max-width: 72.8vw;
}
section#yellow .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#yellow .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#yellow .image_wrap {
  margin: 0 0 9.33334vw auto;
}
section#yellow .credit_wrap {
  margin: 0 auto 12.268vw;
}
section#pink_stripe {
  margin-bottom: 16vw;
}
section#pink_stripe .head_wrap img {
  max-width: 58.668vw;
}
section#pink_stripe .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#pink_stripe .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#pink_stripe .image_wrap {
  margin: 0 0 9.33334vw auto;
}
section#beige {
  margin-bottom: 3.7333275vw;
}
section#beige .head_wrap img {
  max-width: 50.4vw;
}
section#beige .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#beige .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#beige .image_wrap {
  margin: 0 0 9.33334vw auto;
}
section#slate_gray {
  padding-bottom: 16vw;
  margin-bottom: 16vw;
}
section#slate_gray .head_wrap img {
  max-width: 52.8vw;
}
section#slate_gray .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#slate_gray .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#blue_stripe {
  margin-bottom: 3.7333275vw;
}
section#blue_stripe .head_wrap img {
  max-width: 58.668vw;
}
section#blue_stripe .image_wrap_parent.first .swiper {
  margin: 0 0 5.33334vw auto;
}
section#blue_stripe .image_wrap_parent.second .swiper {
  margin: 0 auto 5.33334vw 0;
}
section#blue_stripe .image_wrap {
  margin: 0 0 9.33334vw auto;
}

#menu {
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 2.66667vw;
  bottom: 2.66667vw;
  width: 52px;
  height: 52px;
}

#modal_wrap {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 19.2vw 0;
  background: #f5f3a8;
  overflow-y: auto;
}
#modal_wrap #modal {
  position: relative;
  width: 100%;
}
#modal_wrap #modal #close {
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: -10vw;
  right: 5.33334vw;
  max-width: 24px;
  width: 100%;
  height: 24px;
}
#modal_wrap #modal #modal_inner {
  position: relative;
  padding: 15.735vw 0;
}
#modal_wrap #modal #modal_inner .loop-slider.top {
  top: 0;
}
#modal_wrap #modal #modal_inner .loop-slider.bottom {
  bottom: 0;
}
#modal_wrap #modal #modal_inner .head {
  max-width: 44.268vw;
  width: 100%;
  margin: 0 auto 6.4vw;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.133334vw 1.066666vw;
  max-width: 92.535vw;
  width: 100%;
  margin: 0 auto;
}
#modal_wrap #modal #modal_inner .anchor_link_wrap .anchor_link {
  position: relative;
  max-width: calc((100% - 2.133332vw) / 3);
  width: 100%;
  height: 100%;
}

.other_information {
  width: 100%;
  margin: 0 auto 16vw;
}
.other_information .other_items {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 78px;
  margin: 0 auto;
}
.other_information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f5f3a8;
}
.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: #f5f3a8;
}
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: 700;
  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: #e9f4d1;
  }
  .pc_hidden {
    display: none;
  }
  #menu.pc_hidden {
    display: none;
  }
  .main_visual {
    padding-bottom: 3.807vw;
  }
  .main_visual .catchphrase {
    top: 6.076133vw;
    right: 4.246vw;
    max-width: 24.8902vw;
  }
  .main_visual .image_wrap_parent.sp_hidden {
    display: flex;
  }
  .main_visual .image_wrap_parent.pc_hidden {
    display: none;
  }
  .main_visual .image_wrap_parent .image_wrap.first {
    max-width: 39.7516vw;
    margin-right: 9.51687vw;
  }
  .main_visual .image_wrap_parent .image_wrap.second {
    max-width: 18.961vw;
    margin-top: 2.12299vw;
  }
  .main_visual .image_wrap_parent .image_wrap.third {
    max-width: 30.82vw;
    margin-top: 9.6638vw;
  }
  .main_visual .image_wrap_parent .image_wrap.fourth {
    top: 2.8556vw;
    bottom: auto;
    right: auto;
    left: 35.5789vw;
    max-width: 15.593vw;
  }
  .main_visual .title_wrap {
    max-width: 32.2846vw;
    margin: -10.542vw auto 0;
  }
  .main_visual .title_wrap .highlight {
    max-width: 25.9155vw;
    margin: 0 auto 6px;
    height: 48px;
  }
  .main_visual .title_wrap .highlight p {
    font-size: 31px;
    line-height: 1.5483870968;
  }
  .main_visual .title_wrap .handwritten {
    bottom: -2.6vw;
    right: -0.6vw;
    max-width: 18.8878vw;
  }
  .main_visual .title_wrap .handwritten svg.handwritten__svg {
    min-height: 4.026358vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.46413vw;
    left: auto;
    max-width: 6.5159vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 3vw;
    left: 11.4939vw;
    max-width: 33.7487vw;
    margin-bottom: 0;
  }
  .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 {
    max-width: 12.1528vw;
    margin: 0 auto 1.1713vw;
  }
  .content_wrap_for_pc #index .anchor_link_wrap {
    gap: 0.732066vw 0.366032vw;
    max-width: 100%;
  }
  .content_wrap_for_pc #index .anchor_link_wrap .anchor_link {
    max-width: calc((100% - 0.732064vw) / 3);
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 27.526vw;
    width: 100%;
    margin: 0 11.4207vw 0 auto;
    background: #fff;
  }
  .content_wrap_for_pc .section_wrap .main_description {
    padding: 4.6857vw 0 3.807vw;
  }
  .content_wrap_for_pc .section_wrap .movie_fix .leeep-wrap {
    max-width: 23.1333vw;
  }
  .content_wrap_for_pc .section_wrap .loop-slider .loop-slider-inner {
    width: 75.2572vw;
  }
  .content_wrap_for_pc .section_wrap .loop-slider .loop-slider-inner .card {
    max-width: 37.6286vw;
  }
  .content_wrap_for_pc .section_wrap .introduction {
    padding: 3.66032vw 0 3.22108vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .loop-slider {
    bottom: -0.88vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .still_life_wrap .still_life {
    max-width: 26.8668vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .still_life_wrap .pick_up_items {
    right: 0.87848vw;
    max-width: 9.2977vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap .catchphrase {
    top: -1.68375vw;
    left: -2.48902vw;
    max-width: 9.51687vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap .subhead {
    max-width: 10.103vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile {
    margin-bottom: 4.539vw;
    padding: 4.539vw 0 5.856512vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile::after {
    height: 3.514vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .head_wrap {
    max-width: 18.3748vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .head_wrap .subhead {
    max-width: 14.6413vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .head_wrap .head_ja {
    margin-top: -0.951687vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .card {
    max-width: 22.328vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .card .thumbnail {
    width: 7.248vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .card .details_wrap {
    max-width: calc(100% - 7.248vw);
    padding: 0.658858vw 1.24451vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .miho_takahashi {
    margin-bottom: 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap .stylist_profile .chika_watanabe .head_wrap .head_en {
    max-width: 13.10398vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    padding-bottom: 1.90337vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .swiper {
    max-width: 26.062vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .casual {
    top: 1.68375vw;
    right: 1.46413vw;
    max-width: 2.636vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap_parent .basic {
    top: 1.24451vw;
    left: 2.04978vw;
    max-width: 3.14788vw;
  }
  .content_wrap_for_pc .section_wrap section .image_wrap {
    max-width: 21.6696vw;
  }
  .content_wrap_for_pc .section_wrap section .catchphrase {
    margin: 0 auto 1.976577vw 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section .description_wrap {
    max-width: 21.6696vw;
    margin: 0 auto 2.636vw;
    padding: 1.391vw 1.61054vw;
  }
  .content_wrap_for_pc .section_wrap section .description_wrap .thumbnail {
    top: -1.61054vw;
    right: -1.61054vw;
    width: 3.22108vw;
    height: 3.22108vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 24.5977vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap.hidden {
    display: none;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.292826vw;
         column-gap: 0.292826vw;
    max-width: 14.9346vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap.expand a {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap {
    margin: 1.46413vw 0 3.368vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item {
    max-width: 24.5977vw;
    height: 3.075vw;
    margin: 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item.show {
    margin-bottom: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion {
    max-width: 27.526vw;
  }
  .content_wrap_for_pc .section_wrap section#blue {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#blue .head_wrap img {
    max-width: 12.1528vw;
  }
  .content_wrap_for_pc .section_wrap section#blue .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#blue .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#blue .credit_wrap {
    margin: 0 auto 3.368vw;
  }
  .content_wrap_for_pc .section_wrap section#yellow {
    padding-bottom: 4.39239vw;
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#yellow .head_wrap img {
    max-width: 19.9127vw;
  }
  .content_wrap_for_pc .section_wrap section#yellow .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#yellow .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#yellow .image_wrap {
    margin: 0 0 2.562229vw auto;
  }
  .content_wrap_for_pc .section_wrap section#yellow .credit_wrap {
    margin: 0 auto 3.368vw;
  }
  .content_wrap_for_pc .section_wrap section#pink_stripe {
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#pink_stripe .head_wrap img {
    max-width: 16.1059vw;
  }
  .content_wrap_for_pc .section_wrap section#pink_stripe .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#pink_stripe .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#pink_stripe .image_wrap {
    margin: 0 0 2.562229vw auto;
  }
  .content_wrap_for_pc .section_wrap section#beige {
    margin-bottom: 2.92826vw;
  }
  .content_wrap_for_pc .section_wrap section#beige .head_wrap img {
    max-width: 13.8365vw;
  }
  .content_wrap_for_pc .section_wrap section#beige .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#beige .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#beige .image_wrap {
    margin: 0 0 2.562229vw auto;
  }
  .content_wrap_for_pc .section_wrap section#slate_gray {
    padding-bottom: 4.39239vw;
    margin-bottom: 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#slate_gray .head_wrap img {
    max-width: 14.4949vw;
  }
  .content_wrap_for_pc .section_wrap section#slate_gray .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#slate_gray .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#blue_stripe {
    padding-bottom: 2.92826vw;
    margin-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section#blue_stripe .head_wrap img {
    max-width: 16.1059vw;
  }
  .content_wrap_for_pc .section_wrap section#blue_stripe .image_wrap_parent.first .swiper {
    margin: 0 0 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section#blue_stripe .image_wrap_parent.second .swiper {
    margin: 0 auto 1.46413vw 0;
  }
  .content_wrap_for_pc .section_wrap section#blue_stripe .image_wrap {
    margin: 0 0 2.562229vw auto;
  }
  .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 */