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

a {
  display: block;
  width: 100%;
  height: 100%;
  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;
}

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

.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);
  }
}
.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%);
  }
}
.main_visual {
  position: relative;
  width: 100%;
  background: #dbd690;
}
.main_visual .logo_wrap {
  z-index: 9999;
  position: absolute;
  top: 5.335vw;
  left: 5.335vw;
  max-width: 23.468vw;
  width: 100%;
}
.main_visual .swiper.fadeInImgROnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .image_wrap {
  position: relative;
  max-width: 96.1206vw;
  width: 100%;
  min-height: 56.223vw;
  height: 100%;
  margin: 0 auto;
}
.main_visual .image_wrap img {
  display: block;
  position: absolute;
}
.main_visual .image_wrap img.first {
  max-width: 26.2812vw;
  top: 0;
  left: 24.2319vw;
}
.main_visual .image_wrap img.first.shrinkOnTheSpot {
  animation-delay: 0.2s;
}
.main_visual .image_wrap img.second {
  max-width: 16.0322vw;
  top: 3.001467vw;
  right: 0;
}
.main_visual .image_wrap img.second.shrinkOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .image_wrap img.third {
  max-width: 26.2812vw;
  bottom: 0;
  right: 17.643vw;
}
.main_visual .image_wrap img.third.shrinkOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .image_wrap img.fourth {
  max-width: 16.1786vw;
  top: 5.92972vw;
  left: 9.151vw;
}
.main_visual .image_wrap img.fourth.shrinkOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .image_wrap img.fifth {
  max-width: 16.0322vw;
  bottom: 0;
  left: 0;
}
.main_visual .image_wrap img.fifth.shrinkOnTheSpot {
  animation-delay: 1s;
}
.main_visual .title_wrap {
  z-index: 9999;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto 4.8vw;
  /*========= 手書き風文字（MV） ===============*/
  /* 手書き風文字SVG画像の表示設定　*/
  /* 手書き風文字SVG画像の配置　*/
  /* 手書き風文字SVG画像の大きさ　*/
  /*========= 手書き風に見せるためのCSS ===============*/
}
.main_visual .title_wrap img {
  display: block;
}
.main_visual .title_wrap .title {
  max-width: 78vw;
  width: 100%;
  margin: 0 auto 22vw;
}
.main_visual .title_wrap .title .title_text_top {
  max-width: 60vw;
  margin-bottom: 4.8vw;
  transform: rotate(-5deg);
}
.main_visual .title_wrap .title .title_text_top.fadeInImgLOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .title_wrap .title .highlight {
  position: absolute;
  top: 12.7vw;
  left: 8.6vw;
  max-width: 72vw;
  transform: rotate(-5deg);
}
.main_visual .title_wrap .title .title_text_bottom {
  max-width: 66.667vw;
  margin-bottom: 4.8vw;
  transform: rotate(-5deg);
}
.main_visual .title_wrap .title .title_text_bottom.fadeInImgLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .title .title_text_bottom_7 {
  position: absolute;
  top: 6.7vw;
  right: 2.6vw;
  max-width: 25.06667vw;
}
.main_visual .title_wrap .title .title_text_bottom_7.fadeInImgLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title_wrap .subtitle {
  max-width: 90.935vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .subtitle.fadeInImgBOnTheSpot {
  animation-delay: 1s;
}
.main_visual .title_wrap #handwritten {
  z-index: -9999;
  position: absolute;
  top: -1.5vw;
  left: 11vw;
  max-width: 36.8vw;
  width: 100%;
  height: 18.4vw;
}
.main_visual .title_wrap #handwritten_text {
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual .title_wrap #handwritten_text svg {
  width: 36.8vw;
  height: 18.4vw;
}
.main_visual .title_wrap #mask-sp .cls-1,
.main_visual .title_wrap #mask-pc .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 90; /*線の太さを指定する*/
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* 線の間隔を指定する */
  stroke-dashoffset: 1500; /* 線の位置を指定する */
}

.introduction {
  width: 100%;
}
.introduction .main_description {
  width: 100%;
  margin-bottom: 16vw;
  padding: 16vw 0 16vw;
  line-height: 2.5714285714;
  text-align: center;
  background: #dbd690;
}
.introduction .movie_wrap {
  max-width: 73.6vw;
  width: 100%;
  height: 100%;
  margin: 0 auto 16vw;
  background: #fff;
}
.introduction .movie_wrap iframe {
  width: 100%;
  min-height: 130.935vw;
  height: 100%;
  aspect-ratio: 16/9;
}

#index {
  position: relative;
  width: 100%;
  margin-bottom: 26.6667vw;
}
#index .head_wrap {
  position: absolute;
  top: 6.4vw;
  left: 0;
  max-width: 49.6vw;
  width: 100%;
  margin-bottom: 3.46666vw;
}
#index .head_wrap .text_wrap {
  max-width: 38.934vw;
  width: 100%;
  margin-left: 4.8vw;
}
#index .head_wrap .arrow {
  width: 100%;
  margin-left: -1.066666vw;
}
#index .anchor_link_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4.26666vw;
  max-width: 87.468vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap.sp_hidden {
  display: none;
}
#index .anchor_link_wrap .anchor_link {
  display: flex;
  justify-content: flex-end;
  gap: 4.26666vw;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a {
  display: block;
  position: relative;
  max-width: 41.6vw;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link a .text {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.866666vw;
  height: 100%;
  font-family: "Optima", serif;
  font-size: 20px;
  text-align: center;
  color: #fff;
  writing-mode: vertical-rl;
}

section {
  width: 100%;
  margin-bottom: 26.6667vw;
}
section .head_wrap {
  position: relative;
  width: 100%;
  margin-bottom: 7.46666vw;
}
section .head_wrap .style_number {
  width: 100%;
  margin-bottom: 2.133334vw;
}
section .head_wrap .style_number span {
  display: block;
  width: 100%;
}
section .head_wrap .style_number .style {
  font-family: "Optima", serif;
  font-size: 16px;
  text-align: center;
}
section .head_wrap .style_number .number {
  font-family: "Optima", serif;
  font-size: 52px;
  text-align: center;
}
section .head_wrap .autumn_classics_wrap {
  position: absolute;
  top: 14vw;
  left: 10.66666vw;
}
section .head_wrap .autumn_classics_wrap .autumn_classics {
  position: absolute;
  top: 1.6vw;
  left: 0;
  max-width: 17.86667vw;
}
section .head_wrap .head {
  width: 100%;
}
section .head_wrap .head .top {
  margin-bottom: 2.133334vw;
  font-size: 20px;
  text-align: center;
}
section .head_wrap .head .bottom {
  font-size: 28px;
  text-align: center;
}
section .image_catchphrase_wrap {
  position: relative;
}
section .image_catchphrase_wrap .catchphrase {
  z-index: 9999;
  position: absolute;
  max-width: 20.267vw;
  width: 100%;
}
section .swiper {
  width: 100%;
}
section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8.53334vw;
  line-height: 2.1428571429;
}
section .credit_wrap {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
  padding-top: 7.46666vw;
}
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;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
}
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;
}
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.6vw;
       column-gap: 1.6vw;
  max-width: 57.4vw;
  width: 100%;
}
section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 30px;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
section .credit_wrap .other_item_wrap {
  margin-top: 20px;
}
section .credit_wrap .other_item_wrap .other_item {
  margin-bottom: 6px;
  font-family: "Crimson Text", serif;
}
section .credit_wrap .other_item_wrap .details_wrap {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
section .credit_wrap .other_item_wrap .details_wrap a {
  display: inline;
  width: 50px;
  text-decoration: underline;
}
section .credit_wrap .other_item_wrap .details_wrap a.earring {
  width: 74px;
}
section .credit_wrap .other_item_wrap .details_wrap a span {
  font-size: 12px;
}
section .image_style_name_number_en_wrap {
  position: relative;
  width: 100%;
}
section .image_style_name_number_en_wrap .style_name_number_en {
  position: absolute;
  max-width: 17.06666vw;
  width: 100%;
  font-family: "Optima", serif;
  font-size: 10px;
  line-height: 2;
}
section#style1 .head_wrap .style_number .number {
  color: #dbd690;
}
section#style1 .head_wrap .head .bottom {
  color: #dbd690;
}
section#style1 .image_catchphrase_wrap .catchphrase {
  bottom: -45.335vw;
  right: 8vw;
}
section#style1 .image_wrap.third {
  max-width: 66.667vw;
  margin: 0 0 7.46666vw auto;
}
section#style1 .swiper {
  max-width: 66.667vw;
  margin: 0 auto 0 0;
}
section#style1 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  left: 5.335vw;
}
section#style1 .credit_wrap:before {
  background: #dbd690;
}
section#style1 .credit_wrap .credit .details_wrap a {
  background: #dbd690;
}
section#style2 .head_wrap .style_number .number {
  color: #85bbc7;
}
section#style2 .head_wrap .head .bottom {
  color: #85bbc7;
}
section#style2 .image_catchphrase_wrap .catchphrase {
  bottom: -58.935vw;
  left: 8vw;
}
section#style2 .image_wrap.second {
  max-width: 66.667vw;
  margin: 0 0 0 auto;
}
section#style2 .image_wrap.third {
  max-width: 66.667vw;
  margin: 0 auto 7.46666vw 0;
}
section#style2 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  right: 5.335vw;
  text-align: right;
}
section#style2 .credit_wrap:before {
  background: #85bbc7;
}
section#style2 .credit_wrap .credit .details_wrap a {
  background: #85bbc7;
}
section#style3 .head_wrap .style_number .number {
  color: #dbd690;
}
section#style3 .head_wrap .head .bottom {
  color: #dbd690;
}
section#style3 .image_catchphrase_wrap .catchphrase {
  bottom: -61.335vw;
  right: 8vw;
}
section#style3 .image_wrap.second {
  max-width: 66.667vw;
  margin: 0 auto 7.46666vw 0;
}
section#style3 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  right: 5.335vw;
  text-align: right;
}
section#style3 .credit_wrap:before {
  background: #dbd690;
}
section#style3 .credit_wrap .credit .details_wrap a {
  background: #dbd690;
}
section#style4 .head_wrap .style_number .number {
  color: #85bbc7;
}
section#style4 .head_wrap .head .bottom {
  color: #85bbc7;
}
section#style4 .image_catchphrase_wrap .catchphrase {
  bottom: -77.335vw;
  left: 8vw;
}
section#style4 .image_wrap.second {
  max-width: 66.667vw;
  margin: 0 0 7.46666vw auto;
}
section#style4 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  left: 5.335vw;
}
section#style4 .credit_wrap:before {
  background: #85bbc7;
}
section#style4 .credit_wrap .credit .details_wrap a {
  background: #85bbc7;
}
section#style5 .head_wrap .style_number .number {
  color: #dbd690;
}
section#style5 .head_wrap .head .bottom {
  color: #dbd690;
}
section#style5 .image_catchphrase_wrap .catchphrase {
  bottom: -66.934vw;
  right: 8vw;
}
section#style5 .swiper {
  max-width: 66.667vw;
  margin: 0 auto 7.46666vw 0;
}
section#style5 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  right: 5.335vw;
  text-align: right;
}
section#style5 .credit_wrap:before {
  background: #dbd690;
}
section#style5 .credit_wrap .credit .details_wrap a {
  background: #dbd690;
}
section#style6 .head_wrap .style_number .number {
  color: #85bbc7;
}
section#style6 .head_wrap .head .bottom {
  color: #85bbc7;
}
section#style6 .image_catchphrase_wrap .catchphrase {
  bottom: -44.268vw;
  left: 8vw;
}
section#style6 .swiper {
  max-width: 66.667vw;
  margin: 0 0 7.46666vw auto;
}
section#style6 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  left: 5.335vw;
}
section#style6 .credit_wrap:before {
  background: #85bbc7;
}
section#style6 .credit_wrap .credit .details_wrap a {
  background: #85bbc7;
}
section#style7 {
  margin-bottom: 21.33334vw;
}
section#style7 .head_wrap .style_number .number {
  color: #dbd690;
}
section#style7 .head_wrap .head .bottom {
  color: #dbd690;
}
section#style7 .image_catchphrase_wrap .catchphrase {
  bottom: -43.2vw;
  right: 8vw;
}
section#style7 .image_wrap.second {
  max-width: 66.667vw;
  margin: 0 auto 7.46666vw 0;
}
section#style7 .image_style_name_number_en_wrap .style_name_number_en {
  bottom: 8vw;
  right: 5.335vw;
  text-align: right;
}
section#style7 .credit_wrap:before {
  background: #dbd690;
}
section#style7 .credit_wrap .credit .details_wrap a {
  background: #dbd690;
}

.other_items {
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto 20vw;
}
.other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #dbd690;
}
.other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}

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

footer {
  width: 100%;
  padding: 16vw 0 6.4vw;
  background: #dbd690;
}
footer .logo_wrap {
  max-width: 41.8667vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
}
footer .instagram {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 12.53333vw;
}
footer .related_links_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8.53334vw;
}
footer .related_links_wrap .related_link {
  display: flex;
  align-items: center;
  max-width: 78.935vw;
  width: 100%;
  height: 15.735vw;
  margin: 0 auto;
  border: 1px solid #000;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 15.735vw;
  text-align: center;
}
footer .annotation {
  max-width: 78.935vw;
  width: 100%;
  margin: 0 auto 13.86666vw;
  font-size: 12px;
  line-height: 2.1666666667;
}
footer .onward_crosset {
  max-width: 42.135vw;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 744px) {
  .pc_hidden {
    display: none;
  }
  .main_visual .swiper.pc_hidden {
    display: none;
  }
  .main_visual .logo_wrap {
    top: 1.5625vw;
    left: 1.756955vw;
    max-width: 10.9287vw;
  }
  .main_visual .title_wrap {
    max-width: 92.533vw;
    margin: 0 auto 1.756955vw;
    /*========= 手書き風文字（MV） ===============*/
    /* 手書き風文字SVG画像の表示設定　*/
    /* 手書き風文字SVG画像の大きさ　*/
  }
  .main_visual .title_wrap .title {
    max-width: 40.996vw;
    margin: 0 auto 8.2vw;
  }
  .main_visual .title_wrap .title .title_text_top {
    max-width: 34.7736vw;
    margin-bottom: 3vw;
  }
  .main_visual .title_wrap .title .highlight {
    top: 7.6vw;
    left: 24.2vw;
    max-width: 40.996vw;
  }
  .main_visual .title_wrap .title .title_text_bottom {
    max-width: 37.5468vw;
    margin-bottom: 4.8vw;
  }
  .main_visual .title_wrap .title .title_text_bottom_7 {
    top: 4.1vw;
    right: 17.4vw;
    max-width: 14.2758vw;
  }
  .main_visual .title_wrap .subtitle {
    max-width: 100%;
  }
  .main_visual .title_wrap #handwritten {
    top: -1.2vw;
    left: 26vw;
    max-width: 20.9376vw;
    height: 10.542vw;
  }
  .main_visual .title_wrap #handwritten_text svg {
    width: 20.9376vw;
    height: 10.542vw;
  }
  .introduction {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7.32066vw;
    padding: 8.346vw 0 7.32066vw;
    background: #dbd690;
  }
  .introduction .main_description {
    max-width: 37.555vw;
    margin-bottom: 0;
    padding: 0;
  }
  .introduction .movie_wrap {
    max-width: 20.205vw;
    margin: 0;
  }
  .introduction .movie_wrap iframe {
    min-height: 35.94493vw;
  }
  #index {
    max-width: 72.0357vw;
    margin: 0 auto 14.6413vw;
    padding: 14.6413vw 0 0;
  }
  #index .head_wrap {
    top: 17vw;
    left: -2.2vw;
    max-width: 19.76577vw;
    margin-bottom: 0;
  }
  #index .head_wrap .text_wrap {
    max-width: 15.593vw;
    margin-left: 2.342603vw;
  }
  #index .head_wrap .arrow {
    margin-top: -0.6vw;
    margin-left: 0.2vw;
  }
  #index .anchor_link_wrap {
    gap: 1.1713vw;
    max-width: 67.936vw;
  }
  #index .anchor_link_wrap.pc_hidden {
    display: none;
  }
  #index .anchor_link_wrap.sp_hidden {
    display: flex;
  }
  #index .anchor_link_wrap .anchor_link {
    gap: 1.1713vw;
    width: 100%;
  }
  #index .anchor_link_wrap .anchor_link a {
    max-width: 16.1054vw;
  }
  #index .anchor_link_wrap .anchor_link a .text {
    left: 0.80527vw;
    font-size: 22px;
  }
  section {
    position: relative;
    margin-bottom: 11.7136vw;
  }
  section .content_wrap_pc.first {
    display: flex;
    justify-content: space-between;
  }
  section .content_wrap_pc.second {
    max-width: 18.302vw;
    width: 100%;
  }
  section .head_wrap {
    max-width: 24.5977vw;
    margin: 0;
  }
  section .head_wrap .style_number {
    margin-bottom: 0.58565vw;
  }
  section .head_wrap .autumn_classics_wrap {
    top: 3.8vw;
    left: 1.5vw;
  }
  section .head_wrap .autumn_classics_wrap .autumn_classics {
    top: 0.4vw;
    max-width: 100%;
  }
  section .head_wrap .head {
    margin-bottom: 4.539vw;
  }
  section .head_wrap .head .top {
    margin-bottom: 0.58565vw;
  }
  section .image_catchphrase_wrap {
    max-width: 33.968vw;
    width: 100%;
  }
  section .image_catchphrase_wrap .image_wrap.first {
    margin-bottom: 4.39239vw;
  }
  section .image_catchphrase_wrap .catchphrase {
    max-width: 5.564vw;
  }
  section .swiper {
    width: 100%;
  }
  section .description {
    max-width: 89.6vw;
    width: 100%;
    margin: 0 auto 8.53334vw;
    line-height: 2.1428571429;
  }
  section .credit_wrap {
    max-width: 27vw;
    margin: 0 auto;
    padding-top: 2.04978vw;
  }
  section .credit_wrap .credit {
    -moz-column-gap: 0.292826vw;
         column-gap: 0.292826vw;
  }
  section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.439239vw;
         column-gap: 0.439239vw;
    max-width: 17.57vw;
  }
  section .credit_wrap .credit .details_wrap a {
    width: 76px;
    height: 30px;
  }
  section .style_name_number_en.sp_hidden {
    display: block;
    position: absolute;
    max-width: 23.0606vw;
    font-family: "Optima", serif;
    font-size: 16px;
    line-height: 2;
    writing-mode: vertical-rl;
  }
  section#style1 {
    max-width: 72.548vw;
    margin: 0 7.32066vw 11.7136vw auto;
    padding-right: 8.712vw;
  }
  section#style1 .content_wrap_pc.second {
    margin: -44.876vw auto 0 3.14788vw;
  }
  section#style1 .image_catchphrase_wrap .catchphrase {
    top: 5.8599vw;
    bottom: auto;
    right: 1.90337vw;
  }
  section#style1 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style1 .swiper {
    max-width: 100%;
    margin: 0 0 2.92826vw;
  }
  section#style1 .style_name_number_en {
    top: 16.838vw;
    right: 0;
  }
  section#style2 {
    padding: 11.7136vw 0;
    background: rgba(133, 187, 199, 0.14);
  }
  section#style2 .content_wrap_pc.first {
    flex-direction: row-reverse;
    max-width: 62.8112vw;
    width: 100%;
    margin: 0 auto;
  }
  section#style2 .content_wrap_pc.second {
    z-index: 9999;
    position: relative;
    margin: -41.0693vw 21.816vw 0 auto;
  }
  section#style2 .image_catchphrase_wrap .catchphrase {
    top: 2.781844vw;
    bottom: auto;
    left: auto;
    right: 2.562229vw;
  }
  section#style2 .image_wrap.second {
    max-width: 100%;
    margin: 0 0 2.92826vw;
  }
  section#style2 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style2 .style_name_number_en {
    top: 28.551vw;
    bottom: auto;
    right: auto;
    left: 9.81vw;
  }
  section#style3 {
    max-width: 72.548vw;
    margin: 0 7.32066vw 17.515vw auto;
    padding-right: 8.712vw;
  }
  section#style3 .content_wrap_pc.second {
    margin: -41.0693vw auto 0 3.14788vw;
  }
  section#style3 .image_catchphrase_wrap .catchphrase {
    top: 2.781844vw;
    bottom: auto;
    right: 2.342603vw;
  }
  section#style3 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style3 .style_name_number_en {
    top: 16.838vw;
    right: 0;
  }
  section#style4 {
    padding: 11.7136vw 0 20.9376vw;
    background: rgba(133, 187, 199, 0.14);
  }
  section#style4 .content_wrap_pc.first {
    flex-direction: row-reverse;
    max-width: 62.8112vw;
    width: 100%;
    margin: 0 auto;
  }
  section#style4 .content_wrap_pc.second {
    margin: -41.0693vw 21.816vw 0 auto;
  }
  section#style4 .image_catchphrase_wrap .catchphrase {
    bottom: 28.331vw;
    left: auto;
    right: 4.39239vw;
  }
  section#style4 .image_wrap.second {
    max-width: 100%;
    margin: 0 0 2.92826vw;
  }
  section#style4 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style4 .style_name_number_en {
    top: 28.551vw;
    bottom: auto;
    right: auto;
    left: 9.81vw;
  }
  section#style5 {
    max-width: 72.548vw;
    margin: 0 7.32066vw 17.515vw auto;
    padding-right: 8.712vw;
  }
  section#style5 .content_wrap_pc.second {
    margin: -37.043vw auto 0 3.14788vw;
  }
  section#style5 .image_catchphrase_wrap .catchphrase {
    top: 10.2489vw;
    bottom: auto;
    right: auto;
    left: 4.68521vw;
  }
  section#style5 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style5 .style_name_number_en {
    top: 16.838vw;
    right: 0;
  }
  section#style6 {
    padding: 11.7136vw 0 20.9376vw;
    background: rgba(133, 187, 199, 0.14);
  }
  section#style6 .content_wrap_pc.first {
    flex-direction: row-reverse;
    max-width: 62.8112vw;
    width: 100%;
    margin: 0 auto;
  }
  section#style6 .content_wrap_pc.second {
    margin: -37.043vw 21.816vw 0 auto;
  }
  section#style6 .image_catchphrase_wrap .catchphrase {
    top: 16.838vw;
    bottom: auto;
    left: 3.2211vw;
  }
  section#style6 .image_wrap.second {
    max-width: 100%;
    margin: 0 0 2.92826vw;
  }
  section#style6 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style6 .swiper {
    max-width: 100%;
    margin: 0;
  }
  section#style6 .style_name_number_en {
    top: 28.551vw;
    bottom: auto;
    right: auto;
    left: 9.81vw;
  }
  section#style7 {
    max-width: 72.548vw;
    margin: 0 7.32066vw 17.515vw auto;
    padding-right: 8.712vw;
  }
  section#style7 .content_wrap_pc.second {
    margin: -37.3355vw auto 0 3.14788vw;
  }
  section#style7 .image_catchphrase_wrap .catchphrase {
    top: 14.8609vw;
    bottom: auto;
    right: 4.1vw;
  }
  section#style7 .image_wrap.third {
    max-width: 100%;
    margin: 0;
  }
  section#style7 .style_name_number_en {
    top: 16.838vw;
    right: 0;
  }
  .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 11.7136vw;
  }
  footer {
    padding: 4.466vw 0 1.756955vw;
  }
  footer .logo_wrap {
    max-width: 11.274vw;
    margin: 0 auto 3.88vw;
  }
  footer .instagram {
    width: 2.19619vw;
    height: 2.19619vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap {
    justify-content: space-between;
    max-width: 69.693vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap .related_link {
    max-width: 21.6696vw;
    height: 4.3197vw;
    margin: 0;
  }
  footer .related_links_wrap .related_link:not(:last-of-type) {
    margin-bottom: 0;
  }
  footer .related_links_wrap .related_link a {
    line-height: 4.3197vw;
  }
  footer .annotation {
    max-width: 100%;
    margin: 0 auto 3.807vw;
    text-align: center;
  }
  footer .onward_crosset {
    max-width: 11.567vw;
  }
}
@media screen and (744px <= width < 1255px) {
  section .head_wrap {
    max-width: 36.5977vw;
  }
  section .head_wrap .autumn_classics_wrap {
    top: 5.2vw;
    left: 2.7vw;
  }
  section .credit_wrap {
    max-width: 29vw;
  }
  section#style1 {
    max-width: 84.548vw;
  }
  section#style1 .content_wrap_pc.second {
    margin: -36.876vw auto 0 8.14788vw;
  }
  section#style2 .content_wrap_pc.first {
    max-width: 74.8112vw;
  }
  section#style2 .content_wrap_pc.second {
    margin: -31.0693vw 21.816vw 0 auto;
  }
  section#style2 .style_name_number_en {
    left: 5.8vw;
  }
  section#style3 {
    max-width: 84.548vw;
  }
  section#style3 .content_wrap_pc.second {
    margin: -31.0693vw auto 0 8.14788vw;
  }
  section#style4 .content_wrap_pc.first {
    max-width: 74.8112vw;
  }
  section#style4 .content_wrap_pc.second {
    margin: -37.0693vw 21.816vw 0 auto;
  }
  section#style4 .style_name_number_en {
    left: 5.8vw;
  }
  section#style5 {
    max-width: 84.548vw;
  }
  section#style5 .content_wrap_pc.second {
    margin: -25.043vw auto 0 8.14788vw;
  }
  section#style6 .content_wrap_pc.first {
    max-width: 74.8112vw;
  }
  section#style6 .content_wrap_pc.second {
    margin: -26.043vw 21.816vw 0 auto;
  }
  section#style6 .style_name_number_en {
    left: 5.8vw;
  }
  section#style7 {
    max-width: 84.548vw;
  }
  section#style7 .content_wrap_pc.second {
    margin: -25.3355vw auto 0 8.14788vw;
  }
}/*# sourceMappingURL=common.css.map */