@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,700;1,700&family=Noto+Serif+JP:wght@600&family=Roboto:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?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=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@media screen and (max-width: 743px) {
  .sp_hidden {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

body,
h2,
h3,
h4,
p,
span,
a {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  color: #000;
}

a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

img {
  width: 100%;
  height: auto;
}

.image_wrap {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes shrink {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 21.33334vw;
  padding: 0 0 17.06666vw;
  background: linear-gradient(135deg, #f2faff, #8dd2fa);
  background: -moz-linear-gradient(-45deg, #f2faff, #8dd2fa);
  background-size: 150% 150%;
  animation-name: gradation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@keyframes gradation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
.main_visual .image_wrap {
  display: flex;
  justify-content: space-between;
}
.main_visual .image_wrap.sp_hidden {
  display: none;
}
.main_visual .image_wrap img {
  max-width: 50%;
}
.main_visual .image_wrap img.second {
  margin-top: 13.6vw;
}
.main_visual .image_wrap img.fadeInImgBOnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .logo_wrap {
  position: absolute;
  top: 3.7333275vw;
  right: 4vw;
  max-width: 29.335vw;
}
.main_visual .title {
  position: relative;
  width: 100%;
  height: 89.068vw;
  margin: -12vw 4.53333vw 8.8vw auto;
  padding-top: 13.86666vw;
}
.main_visual .title img {
  display: block;
}
.main_visual .title img.underline {
  position: absolute;
  top: 24.8vw;
  right: 4.53333vw;
  max-width: 65.868vw;
  margin: auto;
}
.main_visual .title img.underline.fadeInImgLOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .title img.text_4 {
  position: absolute;
  bottom: 6.4vw;
  right: 3.46666vw;
  max-width: 28.8vw;
}
.main_visual .title img.text_4.fadeInImgLOnTheSpot {
  animation-delay: 1s;
}
.main_visual .title img.catchphrase {
  position: absolute;
  top: 0;
  left: 4.26666vw;
  max-width: 41.335vw;
}
.main_visual .title img.catchphrase.fadeInOnTheSpot {
  animation-delay: 1.4s;
}
.main_visual .title img.still_life {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 53.335vw;
}
.main_visual .title img.still_life.fadeInImgTOnTheSpot {
  animation-delay: 1.6s;
}
.main_visual .title img.smooth_and_beautiful {
  max-width: 62.4vw;
  margin: 0 5.86666vw 0.533334vw auto;
}
.main_visual .title img.smooth_and_beautiful.fadeInImgLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title img.made_with_series {
  max-width: 47.735vw;
  margin: 0 7.73334vw 1.066666vw auto;
}
.main_visual .title img.made_with_series.fadeInImgLOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .title img.comfortable_summer_style {
  max-width: 35.468vw;
  margin: 0 20.267vw 0 auto;
}
.main_visual .title img.comfortable_summer_style.fadeInImgLOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .main_description {
  width: 100%;
  margin-bottom: 17.06666vw;
  font-size: 13px;
  line-height: 2.3076923077;
  text-align: center;
}
.main_visual .movie_wrap {
  max-width: 73.6vw;
  width: 100%;
  height: 100%;
  margin: 0 auto 17.06666vw;
}
.main_visual .movie_wrap iframe {
  width: 100%;
  min-height: 130.935vw;
  height: 100%;
  aspect-ratio: 16/9;
}
.main_visual .introduction {
  z-index: 1111;
  position: relative;
  width: 100%;
  height: 173.335vw;
  margin: 0 auto 8.53334vw;
  padding: 10.93333vw 0 12vw;
}
.main_visual .introduction:before {
  content: "";
  z-index: -9999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 76.8vw;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: url(../img/introduction_background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.main_visual .introduction .head_wrap {
  position: relative;
  max-width: 54.9334vw;
  width: 100%;
  margin: 0 auto 9.06666vw;
}
.main_visual .introduction .head_wrap .underline {
  z-index: -9999;
  position: absolute;
  top: 20.535vw;
  right: 0;
  left: 0;
  max-width: 50.4vw;
  width: 100%;
  margin: auto;
}
.main_visual .introduction .head_wrap .underline.fadeInImgL.active {
  animation-delay: 0.2s;
}
.main_visual .introduction .still_life_wrap {
  position: relative;
  max-width: 87.468vw;
  width: 100%;
  margin: 0 auto 9.868vw;
}
.main_visual .introduction .still_life_wrap .still_life.fadeInImgT.active {
  animation-delay: 0.4s;
}
.main_visual .introduction .still_life_wrap .item_name {
  position: absolute;
}
.main_visual .introduction .still_life_wrap .item_name.fadeInImgL.active {
  animation-delay: 0.6s;
}
.main_visual .introduction .still_life_wrap .item_name.skipper_collar_blouse {
  top: -5.6vw;
  right: -0.533334vw;
  max-width: 32vw;
}
.main_visual .introduction .still_life_wrap .item_name.frilled_blouse {
  bottom: -4.8vw;
  right: -3.7333275vw;
  max-width: 25.6vw;
}
.main_visual .introduction .still_life_wrap .item_name.wide_pants {
  top: 4.8vw;
  left: -2.133334vw;
  max-width: 22.4vw;
}
.main_visual .introduction .still_life_wrap .item_name.tapered_trousers {
  bottom: -0.533334vw;
  left: 6.93333vw;
  max-width: 28.8vw;
}
.main_visual .introduction .still_life_wrap .arrow {
  position: absolute;
}
.main_visual .introduction .still_life_wrap .arrow.fadeInImgT.active, .main_visual .introduction .still_life_wrap .arrow.fadeInImgB.active {
  animation-delay: 0.8s;
  animation-duration: 0.5s;
}
.main_visual .introduction .still_life_wrap .arrow.skipper_collar_blouse {
  top: -0.266667vw;
  right: 12vw;
  max-width: 3.7333275vw;
}
.main_visual .introduction .still_life_wrap .arrow.frilled_blouse {
  bottom: 1.333334vw;
  right: 2.66667vw;
  max-width: 6.4vw;
}
.main_visual .introduction .still_life_wrap .arrow.wide_pants {
  top: 9.868vw;
  left: 9.06666vw;
  max-width: 6.135vw;
}
.main_visual .introduction .still_life_wrap .arrow.tapered_trousers {
  bottom: 4.26666vw;
  left: 29.335vw;
  max-width: 5.06666vw;
}
.main_visual .introduction .series_name {
  max-width: 47.468vw;
  width: 100%;
  margin: 0 auto 5.33333vw;
}
.main_visual .introduction .series_name.fadeInImgL.active {
  animation-delay: 0.8s;
}
.main_visual .introduction .function_wrap {
  max-width: 54.4vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .introduction .function_wrap.fadeInImgL.active {
  animation-delay: 1s;
}
.main_visual .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 9.33334vw;
  line-height: 2.1428571429;
}

.credit_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
.credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
}
.credit_wrap .credit.sp_hidden {
  display: none;
}
.credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 13px;
}
.credit_wrap .credit .items_wrap p {
  line-height: 1;
}
.credit_wrap .credit .items_wrap .item {
  margin-bottom: 2px;
  font-size: 12px;
}
.credit_wrap .credit .items_wrap .price {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  letter-spacing: 0.05em;
}
.credit_wrap .credit .items_wrap .price .tax {
  font-size: 9px;
}
.credit_wrap .credit .details_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
  max-width: 60vw;
  width: 100%;
}
.credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 30px;
  background: #292e55;
}
.credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Crimson Text", serif;
  font-size: 14px;
  color: #fff;
}
.credit_wrap .other_item_wrap .other_item {
  margin-bottom: 6px;
  font-family: "Crimson Text", serif;
}
.credit_wrap .other_item_wrap .details_wrap {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.credit_wrap .other_item_wrap .details_wrap a {
  display: inline;
  text-decoration: underline;
}
.credit_wrap .other_item_wrap .details_wrap a span {
  font-size: 12px;
}

#index {
  margin-bottom: 21.33334vw;
}
#index .head {
  max-width: 94.934vw;
  width: 100%;
  margin: 0 auto 5.6vw;
  padding-bottom: 6.135vw;
  border-bottom: 1px solid #000;
}
#index .head img {
  display: block;
  max-width: 38.934vw;
  margin: 0 auto;
}
#index .anchor_link_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 94.934vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link {
  max-width: 22.934vw;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link.fadeInImgB.active {
  animation-delay: 0.4s;
}
#index .anchor_link_wrap .anchor_link a {
  display: block;
  width: 100%;
  height: 100%;
}
#index .anchor_link_wrap .anchor_link a img {
  display: block;
}
#index .anchor_link_wrap .anchor_link a img.style_number {
  max-width: 11.73334vw;
  margin: 0 auto 2.93334vw;
}

section {
  width: 100%;
  margin-bottom: 26.6667vw;
}
section .head_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 6.4vw;
       column-gap: 6.4vw;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw 6.93333vw;
}
section .head_wrap img {
  display: block;
}
section .head_wrap .text.fadeInImgL.active {
  animation-delay: 0.2s;
}
section .head_wrap .underline {
  position: absolute;
  bottom: -4.26666vw;
  left: 8.8vw;
  max-width: 75.735vw;
}
section .head_wrap .underline.fadeInImgL.active {
  animation-delay: 0.4s;
}
section .image_wrap.first {
  max-width: 89.6vw;
}
section .swiper {
  max-width: 89.6vw;
  width: 100%;
}
section .image_text_wrap {
  position: relative;
  width: 100%;
  margin-bottom: 7.46666vw;
}
section .image_text_wrap.yellow {
  background: #fffbb2;
}
section .image_text_wrap.blue {
  background: #8dd2fa;
}
section .image_text_wrap .image_wrap.second {
  max-width: 74vw;
}
section .image_text_wrap .swiper {
  max-width: 74vw;
}
section .image_text_wrap .combination {
  position: absolute;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
  font-size: 14px;
  line-height: 2.1428571429;
}
section#style01 .head_wrap .style_number {
  max-width: 12.53333vw;
}
section#style01 .head_wrap .text {
  max-width: 63.468vw;
}
section#style01 .image_wrap.first {
  margin: 0 auto 0 0;
}
section#style01 .image_text_wrap .swiper {
  margin: 0 0 0 auto;
}
section#style01 .image_text_wrap .combination {
  max-width: 7.2vw;
  height: 72.268vw;
  top: 19.468vw;
  left: 9.33334vw;
}
section#style02 .head_wrap .style_number {
  max-width: 13.068vw;
}
section#style02 .head_wrap .text {
  max-width: 51.2vw;
}
section#style02 .image_wrap.first {
  margin: 0 0 0 auto;
}
section#style02 .image_text_wrap .image_wrap.second {
  margin: 0 auto 0 0;
}
section#style02 .image_text_wrap .combination {
  max-width: 7.2vw;
  height: 83.2vw;
  top: 13.86666vw;
  right: 9.33334vw;
}
section#style03 .head_wrap .style_number {
  max-width: 13.068vw;
}
section#style03 .head_wrap .text {
  max-width: 68.267vw;
}
section#style03 .swiper {
  margin: 0 auto 0 0;
}
section#style03 .image_text_wrap .image_wrap.second {
  margin: 0 0 0 auto;
}
section#style03 .image_text_wrap .combination {
  max-width: 7.2vw;
  height: 72.268vw;
  top: 19.468vw;
  left: 9.33334vw;
}
section#style04 .head_wrap .style_number {
  max-width: 13.6vw;
}
section#style04 .head_wrap .text {
  max-width: 59.735vw;
}
section#style04 .swiper {
  margin: 0 0 0 auto;
}
section#style04 .image_text_wrap .image_wrap.second {
  margin: 0 auto 0 0;
}
section#style04 .image_text_wrap .combination {
  max-width: 7.2vw;
  height: 83.2vw;
  top: 13.86666vw;
  right: 9.33334vw;
}

.information .other_items {
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto 16vw;
}
.information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #292e55;
}
.information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  color: #fff;
}
.information .other_series {
  max-width: 84.267vw;
  width: 100%;
  margin: 0 auto;
}
.information .other_series a {
  display: block;
  width: 100%;
  height: 100%;
}

.scroll_navigation {
  width: 48px;
  height: 48px;
  opacity: 0;
}
.scroll_navigation.isFixed {
  z-index: 9999;
  position: fixed;
  bottom: 10px;
  right: 10px;
  opacity: 1;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  .credit_wrap {
    max-width: 28vw;
  }
  .credit_wrap .credit {
    -moz-column-gap: 0.439239vw;
         column-gap: 0.439239vw;
  }
  .credit_wrap .credit .details_wrap {
    max-width: 17.57vw;
    -moz-column-gap: 0.439239vw;
         column-gap: 0.439239vw;
  }
  .main_visual {
    margin-bottom: 11.7136vw;
    padding: 0 0 9.375vw;
  }
  .main_visual .image_wrap {
    max-width: 75.842vw;
    margin: 0 0 0 auto;
  }
  .main_visual .image_wrap.pc_hidden {
    display: none;
  }
  .main_visual .image_wrap.sp_hidden {
    display: flex;
  }
  .main_visual .image_wrap img.second {
    margin-top: 0;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: auto;
    left: 1.756955vw;
    max-width: 10.7619vw;
  }
  .main_visual .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 53.9537vw;
    height: 16.911vw;
    margin: 5.92972vw auto 5.8599vw 24.0849vw;
    padding-top: 0;
  }
  .main_visual .title img.underline {
    top: 5.856512vw;
    right: auto;
    left: -1.02489vw;
    max-width: 34.334vw;
  }
  .main_visual .title img.underline.pc_hidden {
    display: none;
  }
  .main_visual .title img.text_4 {
    top: -3.5876vw;
    bottom: auto;
    right: 10.8vw;
    max-width: 15.081vw;
  }
  .main_visual .title img.catchphrase {
    top: -39.2vw;
    left: -15.1537vw;
    max-width: 19.5466vw;
  }
  .main_visual .title img.still_life {
    top: -29.2vw;
    bottom: auto;
    left: -23.0606vw;
    max-width: 32.3578vw;
  }
  .main_visual .title img.smooth_and_beautiful {
    max-width: 32.6506vw;
    margin: 0;
  }
  .main_visual .title img.made_with_series {
    max-width: 19.034vw;
    margin: 0;
  }
  .main_visual .title img.comfortable_summer_style {
    max-width: 18.5218vw;
    margin: 0 auto 0 9.9561vw;
  }
  .main_visual .main_description {
    margin-bottom: 7.32066vw;
    font-size: 18px;
  }
  .main_visual .introduction_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 68vw;
    width: 100%;
    margin: 0 17.4231vw 0 auto;
  }
  .main_visual .introduction_wrap .introduction {
    height: 64.5686vw;
    margin: 0;
    padding: 4.1vw 0 4.39239vw;
  }
  .main_visual .introduction_wrap .introduction:before {
    max-width: 29.267vw;
  }
  .main_visual .introduction_wrap .introduction .head_wrap {
    max-width: 20.498vw;
    margin: 0 auto 3.368vw;
  }
  .main_visual .introduction_wrap .introduction .head_wrap .underline {
    top: 7.687vw;
    max-width: 18.741vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap {
    max-width: 32.6506vw;
    margin: 0 auto 4.1vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .item_name.skipper_collar_blouse {
    top: -2.04978vw;
    right: -0.219619vw;
    max-width: 11.4202vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .item_name.frilled_blouse {
    bottom: -1.684vw;
    right: -1.02489vw;
    max-width: 9.151vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .item_name.wide_pants {
    top: 1.83016vw;
    left: -0.658858vw;
    max-width: 7.9795vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .item_name.tapered_trousers {
    bottom: -0.0732068vw;
    left: 2.63543vw;
    max-width: 10.3226vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .arrow.skipper_collar_blouse {
    top: -0.146413vw;
    right: 4.466vw;
    max-width: 1.391vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .arrow.frilled_blouse {
    bottom: 0.513vw;
    right: 0.951687vw;
    max-width: 2.416vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .arrow.wide_pants {
    top: 3.66032vw;
    left: 3.4407vw;
    max-width: 2.2694vw;
  }
  .main_visual .introduction_wrap .introduction .still_life_wrap .arrow.tapered_trousers {
    bottom: 1.61054vw;
    left: 10.981vw;
    max-width: 1.90337vw;
  }
  .main_visual .introduction_wrap .introduction .series_name {
    max-width: 16.618vw;
    margin: 0 auto 2.85505vw;
  }
  .main_visual .introduction_wrap .introduction .function_wrap {
    max-width: 19.6198vw;
  }
  .main_visual .introduction_wrap .description_credit_wrap {
    max-width: 28vw;
    width: 100%;
  }
  .main_visual .introduction_wrap .description_credit_wrap .movie_wrap {
    max-width: 20.205vw;
    width: 100%;
    margin: 0 auto 4.39239vw;
  }
  .main_visual .introduction_wrap .description_credit_wrap .movie_wrap iframe {
    min-height: 35.94493vw;
  }
  .main_visual .introduction_wrap .description_credit_wrap .description {
    max-width: 100%;
    margin: 0 auto 2.562229vw;
  }
  .main_visual .introduction_wrap .description_credit_wrap .credit_wrap {
    max-width: 100%;
  }
  #index {
    margin-bottom: 11.7136vw;
  }
  #index .head {
    max-width: 69.9859vw;
    width: 100%;
    margin: 0 auto 4.75842vw;
    padding-bottom: 1.61054vw;
  }
  #index .head img {
    max-width: 10.542vw;
  }
  #index .anchor_link_wrap {
    max-width: 69.9859vw;
  }
  #index .anchor_link_wrap .anchor_link {
    max-width: 14.2026vw;
  }
  #index .anchor_link_wrap .anchor_link a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #index .anchor_link_wrap .anchor_link a img.style_number {
    max-width: 3.2211vw;
    margin: 0;
  }
  #index .anchor_link_wrap .anchor_link a img.style_image {
    max-width: 9.51687vw;
  }
  section {
    margin-bottom: 13.1777vw;
  }
  section .head_image_wrap {
    display: flex;
    justify-content: space-between;
    max-width: 68.595vw;
    margin: 0 auto;
  }
  section .head_image_wrap .head_description_wrap {
    max-width: 32.211vw;
    width: 100%;
  }
  section .head_image_wrap .head_description_wrap .head_wrap {
    -moz-column-gap: 1.83016vw;
         column-gap: 1.83016vw;
    max-width: 32.211vw;
    margin: 0 0 8.858vw 0;
  }
  section .head_image_wrap .head_description_wrap .head_wrap .underline {
    bottom: -2.562229vw;
    left: 3.88vw;
    max-width: 28.331vw;
  }
  section .head_image_wrap .head_description_wrap .description {
    max-width: 24.5977vw;
    margin: 0 auto;
  }
  section .head_image_wrap .image_wrap.first {
    max-width: 30.308vw;
  }
  section .swiper {
    max-width: 30.308vw;
  }
  section .image_text_wrap {
    margin-bottom: 0;
  }
  section .image_text_wrap .image_wrap.second {
    max-width: 25.7692vw;
  }
  section .image_text_wrap .swiper {
    max-width: 25.7692vw;
  }
  section#style01 .head_wrap .style_number {
    max-width: 3.368vw;
  }
  section#style01 .head_wrap .text {
    max-width: 26.062vw;
  }
  section#style01 .image_wrap.first {
    margin: 0;
  }
  section#style01 .image_text_wrap {
    max-width: 44.876vw;
    margin: -24.0849vw auto 0 0;
  }
  section#style01 .image_text_wrap .combination {
    max-width: 1.0986vw;
    height: 19.6198vw;
    top: -9.81vw;
    left: 9.0044vw;
  }
  section#style01 .credit_wrap {
    margin: -8.492vw 17vw 0 auto;
  }
  section#style02 .head_image_wrap {
    flex-direction: row-reverse;
  }
  section#style02 .head_image_wrap .head_description_wrap .head_wrap .style_number {
    max-width: 3.4407vw;
  }
  section#style02 .head_image_wrap .head_description_wrap .head_wrap .text {
    max-width: 20.791vw;
  }
  section#style02 .head_image_wrap .image_wrap.first {
    margin: 0;
  }
  section#style02 .image_text_wrap {
    max-width: 44.7297vw;
    margin: -21.889vw 0 0 auto;
  }
  section#style02 .image_text_wrap .combination {
    max-width: 1.0986vw;
    height: 22.621vw;
    top: -11.274vw;
    right: 9.0044vw;
    left: auto;
  }
  section#style02 .credit_wrap {
    margin: -10.9287vw auto 0 17vw;
  }
  section#style03 .head_wrap .style_number {
    max-width: 3.4407vw;
  }
  section#style03 .head_wrap .text {
    max-width: 26.8668vw;
  }
  section#style03 .swiper {
    margin: 0;
  }
  section#style03 .image_text_wrap {
    max-width: 45.388vw;
    margin: -21.889vw auto 0 0;
  }
  section#style03 .image_text_wrap .image_wrap.second {
    margin: 0 0 0 auto;
  }
  section#style03 .image_text_wrap .combination {
    max-width: 1.0986vw;
    height: 19.6198vw;
    top: -9.81vw;
    left: 9.2977vw;
  }
  section#style03 .credit_wrap {
    margin: -10.542vw 17vw 0 auto;
  }
  section#style04 .head_image_wrap {
    flex-direction: row-reverse;
  }
  section#style04 .head_image_wrap .head_description_wrap .head_wrap .style_number {
    max-width: 3.5876vw;
  }
  section#style04 .head_image_wrap .head_description_wrap .head_wrap .text {
    max-width: 24.5247vw;
  }
  section#style04 .head_image_wrap .swiper {
    margin: 0;
  }
  section#style04 .image_text_wrap {
    max-width: 44.7297vw;
    margin: -21.889vw 0 0 auto;
  }
  section#style04 .image_text_wrap .combination {
    max-width: 1.0986vw;
    height: 22.621vw;
    top: -11.274vw;
    right: 9.0044vw;
    left: auto;
  }
  section#style04 .credit_wrap {
    margin: -10.9287vw auto 0 17vw;
  }
  .information .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 9.375vw;
  }
  .information .other_series {
    max-width: 42.46vw;
  }
}
.p-footer {
  padding-top: 120px;
}

@media (max-width: 767px) {
  .p-footer {
    padding: 80px 0px 0px;
  }
}
.p-footer__btn {
  margin: 0 auto 240px;
  max-width: 712px;
}

@media (max-width: 767px) {
  .p-footer__btn {
    margin: 0 auto 90px;
  }
}
.p-footer__btn-list {
  display: flex;
  margin: 0 -20px;
}

@media (max-width: 767px) {
  .p-footer__btn-list {
    display: block;
    margin: 0;
  }
}
.p-footer__btn-item {
  width: 50%;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .p-footer__btn-item {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
  }
}
.p-footer__btn-item a {
  display: block;
  background: #c4b68e;
  color: #fff;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  padding: 30px 0;
  text-align: center;
}

.p-footer__inner {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-footer__inner {
    width: auto;
    padding: 0 20px;
  }
}
.p-footer__link {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .p-footer__link {
    gap: 12px;
  }
}
.p-footer__linkItem {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1001px) {
  .p-footer__linkItem {
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 1000px) {
  .p-footer__linkItem {
    width: calc(50% - 0.6rem);
    height: 70px;
  }
}
.p-footer__linkInner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #bcac83;
}

@media (max-width: 1000px) {
  .p-footer__linkInner {
    height: 70px;
  }
}
.p-footer__linkInner svg {
  display: block;
  width: auto;
  height: 100%;
}

.p-footer__linkInner path {
  fill: #fff;
}

.p-footer__note {
  text-align: center;
  font-size: 14px;
  line-height: 1.7857142857;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  margin-bottom: 80px;
}

@media (max-width: 1000px) {
  .p-footer__note {
    font-size: 12px;
    text-align: left;
    line-height: 2;
    padding: 0 20px;
    margin-bottom: 70px;
  }
}
.p-footer__bottom {
  background-color: #bcac83;
  padding-top: 120px;
  margin-top: 240px;
}

@media (max-width: 767px) {
  .p-footer__bottom {
    padding-top: 40px;
    margin-top: 80px;
  }
}
.p-footer__brand-logo {
  width: 137px;
}

.p-footer__brand-logo,
.p-footer__sns-list {
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__sns-list {
  align-items: center;
  margin-top: 100px;
}

@media (max-width: 767px) {
  .p-footer__sns-list {
    margin-top: 70px;
  }
}
.p-footer__sns-item {
  display: table;
  transition: opacity 0.5s;
  margin: 0 auto;
  padding: 0 15px;
}

.p-footer__sns-item img {
  text-align: center;
  width: 30px;
}

.p-footer__sns-item:hover {
  opacity: 0.6;
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5.6rem;
  gap: 1.2rem;
}

@media (max-width: 767px) {
  .p-footer__nav-list {
    gap: 10px;
    margin-top: 70px;
  }
}
.p-footer__nav-item {
  color: #fff;
  font-family: "EB Garamond", serif;
  letter-spacing: -0.03em;
  transition: opacity 0.5s;
}

@media (max-width: 767px) {
  .p-footer__nav-item {
    font-size: 12px;
  }
}
.p-footer__nav-item:hover {
  opacity: 0.6;
}

.p-footer__company-logo {
  display: block;
  width: 140px;
  margin-top: 5.6rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .p-footer__company-logo {
    margin-top: 70px;
  }
}
.p-footer__copyright {
  margin-top: 6rem;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-family: "EB Garamond", serif;
  padding-bottom: 40px;
}

@media (max-width: 767px) {
  .p-footer__copyright {
    font-size: 12px;
    margin-top: 70px;
  }
}/*# sourceMappingURL=common.css.map */