@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&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%;
}

.swiper {
  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);
  }
}
.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%);
  }
}
.main_visual {
  position: relative;
  width: 100%;
  margin-bottom: 21.33334vw;
  padding-bottom: 17.06666vw;
  background: #cce5de;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.335vw;
  left: 5.86666vw;
  max-width: 29.335vw;
  width: 100%;
}
.main_visual .band {
  z-index: 9999;
  position: absolute;
  top: 22.668vw;
  right: 7.46666vw;
  max-width: 13.794vw;
  width: 100%;
}
.main_visual .band.fadeInImgTOnTheSpot {
  animation-delay: 0.3s;
}
.main_visual .title {
  position: relative;
  width: 100%;
  margin-bottom: 7.73334vw;
  padding-top: 5.335vw;
}
.main_visual .title img {
  display: block;
}
.main_visual .title img.text_3_major {
  z-index: 9999;
  position: absolute;
  top: -32.8vw;
  left: 2.4vw;
  max-width: 40vw;
}
.main_visual .title img.text_3_major.fadeInImgLOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .title img.underline {
  position: absolute;
  top: 18.66666vw;
  right: 0;
  left: 0;
  max-width: 86.668vw;
  margin: auto;
}
.main_visual .title img.underline.fadeInImgLOnTheSpot {
  animation-delay: 1.5s;
}
.main_visual .title img.text_clean_and_comfortable {
  max-width: 80vw;
  margin: 0 9.33334vw 3.2vw auto;
}
.main_visual .title img.text_clean_and_comfortable.fadeInImgLOnTheSpot {
  animation-delay: 0.9s;
}
.main_visual .title img.text_series {
  max-width: 39.468vw;
  margin: 0 29.6vw 0 auto;
}
.main_visual .title img.text_series.fadeInImgLOnTheSpot {
  animation-delay: 1.2s;
}
.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;
}
.main_visual .movie_wrap iframe {
  width: 100%;
  min-height: 130.935vw;
  height: 100%;
  aspect-ratio: 16/9;
}

#index {
  margin-bottom: 21.33334vw;
}
#index .head_wrap {
  width: 100%;
  margin-bottom: 3.46666vw;
}
#index .head_wrap .catchphrase {
  text-align: center;
}
#index .head_wrap .catchphrase.top {
  margin-bottom: 1.6vw;
  font-size: 16px;
  line-height: 1.5;
}
#index .head_wrap .catchphrase.bottom {
  margin-bottom: 2.8vw;
  font-size: 20px;
  line-height: 1.2;
}
#index .head_wrap .head {
  font-family: "Bodoni Moda", serif;
  font-size: 34px;
  letter-spacing: 0.3em;
  text-align: center;
}
#index .anchor_link_wrap {
  width: 100%;
}
#index .anchor_link_wrap .anchor_link {
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a .text_wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a .text_wrap.fadeInImgL {
  animation-delay: 0.3s;
}
#index .anchor_link_wrap .anchor_link a .text_wrap img {
  display: block;
}
#index .anchor_link_wrap .anchor_link a .text_wrap img.number {
  position: absolute;
}
#index .anchor_link_wrap .anchor_link a .image_wrap {
  max-width: 38.4vw;
}
#index .anchor_link_wrap .anchor_link.sweet_cool_series {
  background: #cce5de;
}
#index .anchor_link_wrap .anchor_link.sweet_cool_series a .text_wrap {
  max-width: 52.268vw;
  padding: 13.33333vw 0 10.13334vw 5.86666vw;
}
#index .anchor_link_wrap .anchor_link.sweet_cool_series a .text_wrap img.number {
  top: 11.8vw;
  left: 5.335vw;
  max-width: 5.335vw;
}
#index .anchor_link_wrap .anchor_link.smooth_polyester_series {
  background: #ffdde7;
}
#index .anchor_link_wrap .anchor_link.smooth_polyester_series a .text_wrap {
  max-width: 44.8vw;
  padding: 9.33334vw 0 6.135vw 5.86666vw;
}
#index .anchor_link_wrap .anchor_link.smooth_polyester_series a .text_wrap img.number {
  top: 8.8vw;
  left: 5.335vw;
  max-width: 5.335vw;
}
#index .anchor_link_wrap .anchor_link.georgette_jersey_series {
  background: #cce5de;
}
#index .anchor_link_wrap .anchor_link.georgette_jersey_series a .text_wrap {
  max-width: 45.868vw;
  padding: 9.33334vw 0 6.135vw 5.86666vw;
}
#index .anchor_link_wrap .anchor_link.georgette_jersey_series a .text_wrap img.number {
  top: 9.2vw;
  left: 5.335vw;
  max-width: 5.86666vw;
}

section {
  position: relative;
  width: 100%;
}
section .content_wrap {
  margin-bottom: 21.33334vw;
}
section .content_wrap.first .head_image_wrap .head_wrap {
  width: 100%;
  margin: 0 auto 8.53334vw;
}
section .content_wrap.first .head_image_wrap .head_wrap img {
  display: block;
}
section .content_wrap.first .head_image_wrap .head_wrap img.series_number {
  margin: 0 auto 4.26666vw;
}
section .content_wrap.first .head_image_wrap .head_wrap img.series_name {
  margin: 0 auto 3.2vw;
}
section .content_wrap.first .head_image_wrap .head_wrap img.series_name.fadeInImgB {
  animation-delay: 0.3s;
}
section .content_wrap.first .head_image_wrap .head_wrap img.function {
  margin: 0 auto 4vw;
}
section .content_wrap.first .head_image_wrap .head_wrap img.function.fadeInImgL {
  animation-delay: 0.6s;
}
section .content_wrap.first .head_image_wrap .head_wrap img.arrow {
  max-width: 5.86666vw;
  margin: 0 auto;
}
section .content_wrap.first .head_image_wrap .image_combination_wrap {
  position: relative;
  margin-bottom: 7.46666vw;
}
section .content_wrap.first .image_credit_wrap {
  position: relative;
}
section .content_wrap.second {
  padding-bottom: 16vw;
}
section .content_wrap.second .image_description_wrap .image_combination_wrap {
  position: relative;
  width: 100%;
}
section .content_wrap.second .image_wrap_parent {
  position: relative;
  width: 100%;
}
section .content_wrap.second .image_credit_wrap {
  position: relative;
}
section .content_wrap .combination {
  z-index: 8888;
  position: absolute;
  display: block;
}
section .content_wrap .band {
  z-index: 8888;
  position: absolute;
  right: 8vw;
  max-width: 21.868vw;
  width: 100%;
}
section .content_wrap .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
  font-size: 14px;
  line-height: 2.1428571429;
}
section .content_wrap .credit_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
section .content_wrap .credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
}
section .content_wrap .credit_wrap .credit.sp_hidden {
  display: none;
}
section .content_wrap .credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 16px;
}
section .content_wrap .credit_wrap .credit .items_wrap p {
  line-height: 1;
}
section .content_wrap .credit_wrap .credit .items_wrap .item {
  margin-bottom: 2px;
  font-size: 12px;
}
section .content_wrap .credit_wrap .credit .items_wrap .price {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  letter-spacing: 0.05em;
}
section .content_wrap .credit_wrap .credit .items_wrap .price .tax {
  font-size: 9px;
}
section .content_wrap .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: 57.4vw;
  width: 100%;
}
section .content_wrap .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 30px;
  background: #c4b68e;
}
section .content_wrap .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Crimson Text", serif;
  font-size: 14px;
  color: #fff;
}
section .content_wrap .credit_wrap .other_item_wrap {
  margin-top: 20px;
}
section .content_wrap .credit_wrap .other_item_wrap .other_item {
  margin-bottom: 6px;
  font-family: "Crimson Text", serif;
}
section .content_wrap .credit_wrap .other_item_wrap .details_wrap {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
section .content_wrap .credit_wrap .other_item_wrap .details_wrap a {
  display: inline;
  text-decoration: underline;
}
section .content_wrap .credit_wrap .other_item_wrap .details_wrap a span {
  font-size: 12px;
}
section#sweet_cool_series .content_wrap.first .head_image_wrap .head_wrap {
  max-width: 76.267vw;
}
section#sweet_cool_series .content_wrap.first .head_image_wrap .head_wrap img.series_number {
  max-width: 24.534vw;
}
section#sweet_cool_series .content_wrap.first .head_image_wrap .head_wrap img.function {
  max-width: 57.335vw;
}
section#sweet_cool_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
  top: 10.4vw;
  left: 5.335vw;
  max-width: 52.268vw;
}
section#sweet_cool_series .content_wrap.first .image_credit_wrap .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#sweet_cool_series .content_wrap.first .image_credit_wrap .band {
  top: -14.13333vw;
}
section#sweet_cool_series .content_wrap.second {
  background: #cce5de;
}
section#sweet_cool_series .content_wrap.second .image_combination_wrap {
  max-width: 89.6vw;
  margin: 0 0 7.46666vw auto;
}
section#sweet_cool_series .content_wrap.second .image_combination_wrap .combination {
  top: 52.8vw;
  left: -5.06666vw;
  max-width: 34.668vw;
}
section#sweet_cool_series .content_wrap.second .image_wrap_parent .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#sweet_cool_series .content_wrap.second .image_wrap_parent .band {
  top: -11.2vw;
}
section#sweet_cool_series .content_wrap.second .image_credit_wrap .swiper {
  max-width: 89.6vw;
  margin: 0 0 7.46666vw auto;
}
section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_wrap {
  max-width: 76.267vw;
}
section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_wrap img.series_number {
  max-width: 24.534vw;
}
section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_wrap img.function {
  max-width: 57.335vw;
}
section#smooth_polyester_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
  bottom: 17.33334vw;
  left: 6.66666vw;
  max-width: 53.868vw;
}
section#smooth_polyester_series .content_wrap.first .image_credit_wrap .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#smooth_polyester_series .content_wrap.first .image_credit_wrap .band {
  top: -11.2vw;
}
section#smooth_polyester_series .content_wrap.second {
  background: #ffdde7;
}
section#smooth_polyester_series .content_wrap.second .image_combination_wrap {
  max-width: 89.6vw;
  margin: 0 0 7.46666vw auto;
}
section#smooth_polyester_series .content_wrap.second .image_combination_wrap .combination {
  top: 47.735vw;
  left: -5.335vw;
  max-width: 53.868vw;
}
section#smooth_polyester_series .content_wrap.second .image_credit_wrap .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#smooth_polyester_series .content_wrap.second .image_credit_wrap .band {
  top: -11.2vw;
}
section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_wrap {
  max-width: 76.267vw;
}
section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_wrap img.series_number {
  max-width: 23.468vw;
}
section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_wrap img.function {
  max-width: 42.6667vw;
}
section#georgette_jersey_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
  bottom: 35.468vw;
  left: 7.46666vw;
  max-width: 34.668vw;
}
section#georgette_jersey_series .content_wrap.first .image_credit_wrap .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#georgette_jersey_series .content_wrap.first .image_credit_wrap .band {
  top: -14.13333vw;
}
section#georgette_jersey_series .content_wrap.second {
  margin-bottom: 16vw;
  background: #cce5de;
}
section#georgette_jersey_series .content_wrap.second .image_combination_wrap {
  max-width: 89.6vw;
  margin: 0 0 7.46666vw auto;
}
section#georgette_jersey_series .content_wrap.second .image_combination_wrap .combination {
  top: 8.26666vw;
  left: -5.335vw;
  max-width: 58.668vw;
}
section#georgette_jersey_series .content_wrap.second .image_credit_wrap .image_wrap {
  max-width: 74.4vw;
  margin: 0 auto 7.46666vw 0;
}
section#georgette_jersey_series .content_wrap.second .image_credit_wrap .band {
  top: -11.2vw;
}

.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: #c4b68e;
}
.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_up_navigation {
  width: 48px;
  height: 48px;
  opacity: 0;
}
.scroll_up_navigation.isFixed {
  z-index: 9999;
  position: fixed;
  bottom: 59px;
  right: 10px;
  opacity: 1;
}

.following_navigation {
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0;
}
.following_navigation.isFixed {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 1;
}
.following_navigation a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.866666vw;
       column-gap: 1.866666vw;
  max-width: 33.3333333333%;
  width: 100%;
  height: 49px;
  background: #fff;
  border: 1px solid #707070;
}
.following_navigation a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
}
.following_navigation a.sweet_cool_series:before {
  background: #5fa894;
}
.following_navigation a.smooth_polyester_series:before {
  background: #ff96b8;
}
.following_navigation a.georgette_jersey_series:before {
  background: #5fa894;
}
.following_navigation a span {
  font-family: "Bodoni Moda", serif;
  line-height: 1.3333333333;
}
.following_navigation a .number.green {
  color: #5fa894;
}
.following_navigation a .number.pink {
  color: #ff96b8;
}
.following_navigation a .text {
  font-size: 12px;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  .main_visual {
    margin-bottom: 7.32066vw;
    padding-bottom: 7.32066vw;
  }
  .main_visual .swiper.pc_hidden {
    display: none;
  }
  .main_visual .image_wrap {
    position: relative;
    display: flex;
  }
  .main_visual .image_wrap::after {
    content: "";
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 299px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 200%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), #000 200%);
  }
  .main_visual .image_wrap a {
    display: block;
    max-width: 33.3333333333%;
    width: 100%;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    left: 1.756955vw;
    max-width: 10.7619vw;
  }
  .main_visual .band {
    top: 7.39388vw;
    right: 30.747vw;
    max-width: 6.0911vw;
  }
  .main_visual .title {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 1.756955vw;
         column-gap: 1.756955vw;
    margin: -13.9824vw auto 2.562229vw;
    padding-top: 0;
  }
  .main_visual .title.pc_hidden {
    display: none;
  }
  .main_visual .title img.text_3_major {
    top: -9.0044vw;
    left: 15.7399vw;
    max-width: 12.0509vw;
  }
  .main_visual .title img.underline {
    top: 5.856512vw;
    right: auto;
    left: 21.6696vw;
    max-width: 39.3856vw;
    margin: 0;
  }
  .main_visual .title img.text_clean_and_comfortable {
    max-width: 36.6769vw;
    margin: 0;
  }
  .main_visual .title img.text_series {
    max-width: 16.47148vw;
    margin: 0;
  }
  .main_visual .subtitle_en {
    max-width: 30.2348vw;
    margin: 0 auto 11.1277vw;
  }
  .main_visual .main_description {
    margin-bottom: 7.32066vw;
    font-size: 18px;
  }
  .main_visual .movie_wrap {
    max-width: 20.205vw;
  }
  .main_visual .movie_wrap iframe {
    min-height: 35.94493vw;
  }
  #index {
    max-width: 89.605vw;
    width: 100%;
    margin: 0 auto 14.6413vw;
  }
  #index .head_wrap {
    margin-bottom: 0.951687vw;
  }
  #index .head_wrap .catchphrase.top {
    margin-bottom: 0.439239vw;
  }
  #index .head_wrap .catchphrase.bottom {
    margin-bottom: 0.146413vw;
  }
  #index .anchor_link_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #index .anchor_link_wrap .anchor_link {
    max-width: 27.526vw;
  }
  #index .anchor_link_wrap .anchor_link a .image_wrap {
    max-width: 10.542vw;
  }
  #index .anchor_link_wrap .anchor_link.sweet_cool_series a .text_wrap {
    max-width: 14.05561vw;
    padding: 3.66032vw 0 2.92826vw 1.83016vw;
  }
  #index .anchor_link_wrap .anchor_link.sweet_cool_series a .text_wrap img.number {
    top: 3.3vw;
    left: 1.5625vw;
    max-width: 1.5625vw;
  }
  #index .anchor_link_wrap .anchor_link.smooth_polyester_series a .text_wrap {
    max-width: 12.0796vw;
    padding: 2.562229vw 0 1.83016vw 1.756955vw;
  }
  #index .anchor_link_wrap .anchor_link.smooth_polyester_series a .text_wrap img.number {
    top: 2.4vw;
    left: 1.5625vw;
    max-width: 1.5625vw;
  }
  #index .anchor_link_wrap .anchor_link.georgette_jersey_series a .text_wrap {
    max-width: 12.5188vw;
    padding: 2.562229vw 0 1.83016vw 1.684vw;
  }
  #index .anchor_link_wrap .anchor_link.georgette_jersey_series a .text_wrap img.number {
    top: 2.4vw;
    left: 1.5625vw;
    max-width: 1.61054vw;
  }
  section {
    position: relative;
    width: 100%;
  }
  section .content_wrap {
    margin-bottom: 0;
  }
  section .content_wrap.first {
    margin-bottom: 7.32066vw;
  }
  section .content_wrap.first .head_image_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap {
    width: 100%;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap {
    margin: 0 auto 2.63543vw;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.series_number {
    margin: 0 auto 2.48902vw;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.series_name {
    margin: 0 auto 2.781844vw;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.function {
    margin: 0 auto 1.684vw;
  }
  section .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.arrow {
    max-width: 1.61054vw;
  }
  section .content_wrap.first .head_image_wrap .image_combination_wrap {
    width: 100%;
    margin-bottom: 0;
  }
  section .content_wrap.first .image_credit_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  section .content_wrap.second {
    margin-bottom: 11.7136vw;
    padding-bottom: 5.856512vw;
  }
  section .content_wrap.second .image_description_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  section .content_wrap.second .image_description_wrap .description {
    padding-top: 9.2245vw;
  }
  section .content_wrap.second .image_credit_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  section .content_wrap .band {
    right: auto;
    max-width: 6.36896vw;
  }
  section .content_wrap .description {
    max-width: 24.5977vw;
    margin: 0;
  }
  section .content_wrap .credit_wrap {
    max-width: 27.5vw;
    margin: 0;
  }
  section .content_wrap .credit_wrap .credit {
    -moz-column-gap: 0.439239vw;
         column-gap: 0.439239vw;
  }
  section .content_wrap .credit_wrap .credit .details_wrap {
    max-width: 17.57vw;
    -moz-column-gap: 0.439239vw;
         column-gap: 0.439239vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap {
    max-width: 65.3739vw;
    margin: 0 auto 0 16.7648vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .head_description_wrap {
    max-width: 25.476vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap {
    max-width: 100%;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.series_number {
    max-width: 6.735vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.function {
    max-width: 15.593vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .image_combination_wrap {
    max-width: 33.968vw;
  }
  section#sweet_cool_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
    top: 3.66032vw;
    left: 1.83016vw;
    max-width: 17.643vw;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap {
    max-width: 60.3226vw;
    margin: -11.201vw auto 0 17.515vw;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap .image_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap .band {
    top: -24.027vw;
    right: -6.076133vw;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 15.593vw;
  }
  section#sweet_cool_series .content_wrap.second {
    padding-bottom: 0;
  }
  section#sweet_cool_series .content_wrap.second .image_description_wrap {
    max-width: 65.0078vw;
    margin: 0 auto 0 17.515vw;
  }
  section#sweet_cool_series .content_wrap.second .image_description_wrap .image_combination_wrap {
    max-width: 30.308vw;
    margin: 0;
  }
  section#sweet_cool_series .content_wrap.second .image_description_wrap .image_combination_wrap .combination {
    top: 17.8624vw;
    left: -1.684vw;
    max-width: 11.7136vw;
  }
  section#sweet_cool_series .content_wrap.second .image_wrap_parent {
    position: relative;
    width: 100%;
    margin-top: -27.3797vw;
  }
  section#sweet_cool_series .content_wrap.second .image_wrap_parent .image_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 0 17.515vw;
  }
  section#sweet_cool_series .content_wrap.second .image_wrap_parent .band {
    top: 11.567vw;
    right: 12.8111vw;
  }
  section#sweet_cool_series .content_wrap.second .image_credit_wrap {
    flex-direction: row-reverse;
    max-width: 61.274vw;
    margin: 0 auto 0 17.515vw;
  }
  section#sweet_cool_series .content_wrap.second .image_credit_wrap .swiper {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#sweet_cool_series .content_wrap.second .image_credit_wrap .credit_wrap {
    padding-top: 4.39239vw;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap {
    flex-direction: row-reverse;
    max-width: 65.52vw;
    margin: 0 16.545vw 0 auto;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_description_wrap {
    max-width: 25.476vw;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap {
    max-width: 100%;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.series_number {
    max-width: 6.735vw;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.function {
    max-width: 15.593vw;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .image_combination_wrap {
    max-width: 33.968vw;
  }
  section#smooth_polyester_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
    bottom: 5.6vw;
    left: 2.2vw;
    max-width: 18.1557vw;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap {
    flex-direction: row-reverse;
    max-width: 60.3226vw;
    margin: -10.3953vw 17.0576vw 0 auto;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap .image_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap .band {
    top: -35.4vw;
    left: -6.076133vw;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 14.8609vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_description_wrap {
    flex-direction: row-reverse;
    max-width: 60.6887vw;
    margin: 0 auto 0 18.082vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_description_wrap .image_combination_wrap {
    max-width: 30.2348vw;
    margin: 0;
  }
  section#smooth_polyester_series .content_wrap.second .image_description_wrap .image_combination_wrap .combination {
    top: 16.1786vw;
    left: -1.83016vw;
    max-width: 18.2288vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap {
    flex-direction: row-reverse;
    max-width: 57.8333vw;
    margin: -27.3797vw auto 0 20.9376vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap .image_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap .band {
    top: 7.687vw;
    right: -5.08982vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap .credit_wrap {
    padding-top: 31.845vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap {
    max-width: 65.3739vw;
    margin: 0 auto 0 16.838vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_description_wrap {
    max-width: 25.1834vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap {
    max-width: 100%;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.series_number {
    max-width: 6.4427vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .head_description_wrap .head_wrap img.function {
    max-width: 11.7136vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .image_combination_wrap {
    max-width: 33.968vw;
  }
  section#georgette_jersey_series .content_wrap.first .head_image_wrap .image_combination_wrap .combination {
    bottom: 12.006vw;
    left: 2.562229vw;
    max-width: 11.7136vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap {
    max-width: 60.3226vw;
    margin: -10.3953vw auto 0 17.515vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap .image_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap .band {
    top: -23.8658vw;
    right: -6.36896vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 14.8609vw;
  }
  section#georgette_jersey_series .content_wrap.second {
    margin-bottom: 9.375vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_description_wrap {
    max-width: 65.0078vw;
    margin: 0 auto 0 17.515vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_description_wrap .image_combination_wrap {
    max-width: 30.308vw;
    margin: 0;
  }
  section#georgette_jersey_series .content_wrap.second .image_description_wrap .image_combination_wrap .combination {
    top: 2.85505vw;
    left: -1.83016vw;
    max-width: 19.1801vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap {
    max-width: 62.1528vw;
    margin: -27.3797vw auto 0 17.515vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap .image_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap .band {
    top: 7.5408vw;
    left: -1.391vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap .credit_wrap {
    padding-top: 31.845vw;
  }
  .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: #c4b68e;
  }
  .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_up_navigation.isFixed {
    bottom: 32px;
    right: 21px;
  }
  .following_navigation {
    display: block;
    max-width: 50px;
    width: 100%;
  }
  .following_navigation.isFixed {
    bottom: 140px;
    left: auto;
    right: 0;
  }
  .following_navigation a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    height: 160px;
  }
  .following_navigation a:before {
    bottom: auto;
    top: 0;
    right: 0;
    left: auto;
    width: 4px;
    height: 100%;
  }
  .following_navigation a span {
    display: block;
    text-align: center;
  }
  .following_navigation a span.number {
    width: 100%;
    margin-bottom: 6px;
  }
  .following_navigation a span.text {
    writing-mode: vertical-rl;
  }
  .following_navigation a.sweet_cool_series {
    padding: 19px 0 18px;
  }
  .following_navigation a.smooth_polyester_series {
    padding: 25px 0 24px;
  }
  .following_navigation a.georgette_jersey_series {
    padding: 24px 0 24px;
  }
  .information .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 9.375vw;
  }
  .information .other_series {
    max-width: 42.46vw;
  }
}
@media screen and (744px <= width < 1320px) {
  section#sweet_cool_series .content_wrap.first .image_credit_wrap {
    margin: -3vw auto 0 17.515vw;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 8vw;
  }
  section#sweet_cool_series .content_wrap.first .image_credit_wrap .band {
    top: -32vw;
  }
  section#sweet_cool_series .content_wrap.second .image_wrap_parent {
    margin-top: -17vw;
  }
  section#sweet_cool_series .content_wrap.second .image_wrap_parent .band {
    top: 1.5vw;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap {
    margin: -3vw 17.0576vw 0 auto;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 8vw;
  }
  section#smooth_polyester_series .content_wrap.first .image_credit_wrap .band {
    top: -32.5vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap {
    margin: -20vw auto 0 20.9376vw;
  }
  section#smooth_polyester_series .content_wrap.second .image_credit_wrap .credit_wrap {
    padding-top: 25vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap {
    margin: -1vw auto 0 17.515vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap .credit_wrap {
    padding-top: 6vw;
  }
  section#georgette_jersey_series .content_wrap.first .image_credit_wrap .band {
    top: -33.5vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap {
    margin: -17vw auto 0 17.515vw;
  }
  section#georgette_jersey_series .content_wrap.second .image_credit_wrap .credit_wrap {
    padding-top: 22vw;
  }
}
.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 */