@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Zen+Kaku+Gothic+New&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%);
  }
}
.pop-up {
  opacity: 0;
}
.pop-up.active {
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.popUpOnTheSpot {
  opacity: 0;
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.main_visual {
  position: relative;
  width: 100%;
  padding-bottom: 11.73334vw;
  background: #81cac5;
}
.main_visual .logo_wrap {
  position: absolute;
  top: 4vw;
  left: 4.53333vw;
  max-width: 28.268vw;
  width: 100%;
}
.main_visual .logo_wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.main_visual .appeal_point {
  position: absolute;
  top: 21.868vw;
  left: 6.135vw;
  max-width: 18.66666vw;
  width: 100%;
}
.main_visual .appeal_point img {
  display: block;
  max-width: 10.13334vw;
  transform: rotate(-6deg);
}
.main_visual .appeal_point img.can_move {
  margin: 0 0 8px;
}
.main_visual .appeal_point img.can_move.fadeInImgLOnTheSpot {
  animation-delay: 1.5s;
}
.main_visual .appeal_point img.cool {
  margin: 0 0 8px 11px;
}
.main_visual .appeal_point img.cool.fadeInImgLOnTheSpot {
  animation-delay: 1.8s;
}
.main_visual .appeal_point img.photogenic {
  margin: 0 0 0 22px;
}
.main_visual .appeal_point img.photogenic.fadeInImgLOnTheSpot {
  animation-delay: 2.1s;
}
.main_visual .title_wrap {
  position: relative;
  max-width: 80vw;
  width: 100%;
  margin: 0 auto 6.4vw;
  padding-top: 5.86666vw;
}
.main_visual .title_wrap .catchphrase {
  position: absolute;
  top: -2.8vw;
  left: 1.6vw;
  max-width: 36.8vw;
  width: 100%;
}
.main_visual .title_wrap .catchphrase.fadeInImgTOnTheSpot {
  animation-delay: 1.2s;
}
.main_visual .title_wrap .subtitle {
  max-width: 40.8vw;
  width: 100%;
  margin: 0 auto 1.6vw;
}
.main_visual .title_wrap .subtitle.popUpOnTheSpot {
  animation-delay: 0.9s;
}
.main_visual .title_wrap .underline {
  position: absolute;
  bottom: -13.5vw;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
}
.main_visual .title_wrap .underline.fadeInImgLOnTheSpot {
  animation-delay: 0.6s;
}
.main_visual .title_wrap .title {
  max-width: 79.468vw;
  width: 100%;
  margin: 0 auto;
}
.main_visual .title_wrap .title.fadeInImgLOnTheSpot {
  animation-delay: 0.3s;
}

.main_description {
  margin-bottom: 11.73334vw;
  font-size: 13px;
  line-height: 2;
  text-align: center;
}

.movie_wrap {
  max-width: 73.6vw;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.movie_wrap iframe {
  width: 100%;
  min-height: 130.935vw;
  height: 100%;
  aspect-ratio: 16/9;
}

#index {
  width: 100%;
  margin-bottom: 16vw;
  padding-bottom: 11.73334vw;
  background: #81cac5;
}
#index .anchor_link_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
#index .anchor_link_wrap .anchor_link {
  max-width: 20.8vw;
  width: 100%;
}
#index .anchor_link_wrap .anchor_link .number {
  max-width: 6.93333vw;
  width: 100%;
  margin: 0 auto 4px;
}
#index .anchor_link_wrap .anchor_link a {
  display: block;
  width: 100%;
  height: 100%;
}

.section_wrap section {
  position: relative;
  width: 100%;
  padding-top: 31.735vw;
  margin-bottom: 16vw;
}
.section_wrap section .head {
  z-index: 9999;
  position: absolute;
  max-width: 72.534vw;
  width: 100%;
}
.section_wrap section .image_catchphrase_wrap {
  position: relative;
  width: 100%;
}
.section_wrap section .image_catchphrase_wrap .catchphrase {
  z-index: 9999;
  position: absolute;
}
.section_wrap section .description {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 8vw;
  line-height: 1.8571428571;
}
.section_wrap section .credit_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 5.33333vw;
}
.section_wrap section .credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section_wrap section .credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 8px;
}
.section_wrap section .credit_wrap .credit .items_wrap p {
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}
.section_wrap section .credit_wrap .credit .items_wrap .item {
  font-size: 12px;
}
.section_wrap section .credit_wrap .credit .items_wrap .price {
  font-size: 12px;
}
.section_wrap section .credit_wrap .credit .items_wrap .price .tax {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
}
.section_wrap section .credit_wrap .credit .details_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 4px;
       column-gap: 4px;
  max-width: 52vw;
  width: 100%;
}
.section_wrap section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30.934vw;
  height: 30px;
  background: #64a7a2;
}
.section_wrap section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  color: #fff;
}
.section_wrap section button.other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 46px;
  margin: 5.33333vw auto;
  border: 1px solid #64a7a2;
}
.section_wrap section button.other_item:before {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: #64a7a2;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.section_wrap section button.other_item:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 24px;
  height: 1px;
  background: #64a7a2;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
.section_wrap section button.other_item.show {
  margin-bottom: 5.33333vw;
}
.section_wrap section button.other_item.show:before {
  opacity: 0;
}
.section_wrap section button.other_item.show:after {
  transform: translateY(-50%) rotate(180deg);
}
.section_wrap section button.other_item span {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  color: #64a7a2;
}
.section_wrap section .accordion {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.section_wrap section .accordion .credit_wrap .credit .details_wrap {
  margin-bottom: 0;
}
.section_wrap section .accordion .credit_wrap .credit .details_wrap a {
  max-width: 100%;
  width: 100%;
}
.section_wrap section#item_01 .head {
  top: 0;
  left: 8vw;
}
.section_wrap section#item_01 .image_catchphrase_wrap {
  max-width: 80vw;
  margin: 0 0 0 auto;
}
.section_wrap section#item_01 .image_catchphrase_wrap .catchphrase {
  bottom: 24vw;
  left: 12.53333vw;
}
.section_wrap section#item_01 .image_wrap.second {
  max-width: 84.267vw;
  margin: 0 auto 7.46666vw 0;
}
.section_wrap section#item_02 {
  background: #fff9aa;
  padding: 45.0667vw 0 13.33333vw;
}
.section_wrap section#item_02 .head {
  top: 13.33333vw;
  left: 12.53333vw;
}
.section_wrap section#item_02 .image_catchphrase_wrap {
  margin: 0 auto 7.46666vw;
}
.section_wrap section#item_02 .image_catchphrase_wrap .catchphrase {
  top: 17.33334vw;
  right: 6.66666vw;
}
.section_wrap section#item_03 .head {
  top: 0;
  right: 8vw;
}
.section_wrap section#item_03 .image_catchphrase_wrap.first {
  max-width: 80.268vw;
  margin: 0 auto 0 0;
}
.section_wrap section#item_03 .image_catchphrase_wrap.first .catchphrase {
  bottom: -11.2vw;
  right: 13.068vw;
}
.section_wrap section#item_03 .image_catchphrase_wrap.second {
  margin: 0 auto 7.46666vw;
}
.section_wrap section#item_03 .image_catchphrase_wrap.second .image_wrap {
  max-width: 60.535vw;
  margin: 0 0 0 auto;
}
.section_wrap section#item_03 .image_catchphrase_wrap.second .function_list {
  position: absolute;
  top: 29.068vw;
  left: 10.66666vw;
  max-width: 20.8vw;
  width: 100%;
}
.section_wrap section#item_04 {
  background: #fff9aa;
  padding: 52.268vw 0 13.33333vw;
}
.section_wrap section#item_04 .head {
  top: 13.33333vw;
  left: 8vw;
}
.section_wrap section#item_04 .image_catchphrase_wrap {
  max-width: 80.268vw;
  margin: 0 0 0 auto;
}
.section_wrap section#item_04 .image_catchphrase_wrap .catchphrase {
  top: 26.9334vw;
  left: -12vw;
}
.section_wrap section#item_04 .image_wrap.second {
  max-width: 60.535vw;
  margin: 0 auto 7.46666vw 0;
}
.section_wrap section#item_05 .head {
  top: 0;
  right: 8vw;
}
.section_wrap section#item_05 .image_wrap.first {
  max-width: 80.268vw;
  margin: 0 auto 0 0;
}
.section_wrap section#item_05 .image_catchphrase_wrap {
  max-width: 84.267vw;
  margin: 0 0 7.46666vw auto;
}
.section_wrap section#item_05 .image_catchphrase_wrap .catchphrase {
  max-width: 22.366vw;
  top: -7.73334vw;
  left: -8vw;
}
.section_wrap section#item_06 {
  background: #fff9aa;
  padding: 45.0667vw 0 13.33333vw;
}
.section_wrap section#item_06 .head {
  top: 13.33333vw;
  right: 8vw;
}
.section_wrap section#item_06 .image_wrap.first {
  max-width: 80.268vw;
  margin: 0 auto 0 0;
}
.section_wrap section#item_06 .image_wrap.second {
  max-width: 60.535vw;
  margin: 0 0 0 auto;
}
.section_wrap section#item_06 .image_catchphrase_wrap {
  max-width: 60.535vw;
  margin: 0 auto 7.46666vw 13.33333vw;
}
.section_wrap section#item_06 .image_catchphrase_wrap .catchphrase {
  top: -57.0667vw;
  left: 3.46666vw;
}
.section_wrap section#item_07 .head {
  top: 0;
  left: 12.53333vw;
}
.section_wrap section#item_07 .swiper {
  margin: 0 auto;
}
.section_wrap section#item_07 .image_catchphrase_wrap {
  max-width: 60.535vw;
  margin: 0 0 7.46666vw auto;
}
.section_wrap section#item_07 .image_catchphrase_wrap .catchphrase {
  top: -13.6vw;
  left: -27.2vw;
}
.section_wrap section#item_08 {
  background: #fff9aa;
  padding: 45.0667vw 0 13.33333vw;
}
.section_wrap section#item_08 .head {
  top: 13.33333vw;
  left: 8vw;
}
.section_wrap section#item_08 .image_catchphrase_wrap {
  max-width: 80.268vw;
  margin: 0 0 0 auto;
}
.section_wrap section#item_08 .image_catchphrase_wrap .catchphrase {
  top: 35.7334vw;
  left: -4.8vw;
}
.section_wrap section#item_08 .image_wrap.second {
  max-width: 60.535vw;
  margin: 0 auto 7.46666vw 0;
}
.section_wrap .information .other_items {
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto 13.33333vw;
}
.section_wrap .information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #81cac5;
}
.section_wrap .information .other_items a span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: #fff;
}
.section_wrap .information .staff_credit_wrap {
  width: 100%;
  margin: 0 auto 21.33334vw;
  padding: 0 0 16vw;
  border-bottom: 1px solid #000;
}
.section_wrap .information .staff_credit_wrap p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  line-height: 1.6666666667;
  text-align: center;
}
.section_wrap .information .footer {
  padding-bottom: 2.133334vw;
}
.section_wrap .information .footer .logo_wrap {
  max-width: 37.334vw;
  width: 100%;
  margin: 0 auto 16vw;
}
.section_wrap .information .footer .logo_wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.section_wrap .information .footer .instagram {
  width: 36px;
  height: 36px;
  margin: 0 auto 16vw;
}
.section_wrap .information .footer .instagram a {
  display: block;
  width: 100%;
  height: 100%;
}
.section_wrap .information .footer .online_shop,
.section_wrap .information .footer .shop_list {
  max-width: 89.6vw;
  width: 100%;
  height: 20.8vw;
  margin: 0 auto 13.33333vw;
}
.section_wrap .information .footer .online_shop a,
.section_wrap .information .footer .shop_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #81cac5;
}
.section_wrap .information .footer .online_shop a span,
.section_wrap .information .footer .shop_list a span {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.3em;
  color: #fff;
}
.section_wrap .information .footer .online_shop {
  margin-bottom: 8vw;
}
.section_wrap .information .footer .shop_list {
  margin-bottom: 16vw;
}
.section_wrap .information .footer .attention {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 17.06666vw;
  font-size: 12px;
  line-height: 1.6666666667;
}
.section_wrap .information .footer .onward_crosset {
  max-width: 35.468vw;
  width: 100%;
  margin: 0 auto 15.735vw;
}
.section_wrap .information .footer .copyright {
  width: 100%;
}
.section_wrap .information .footer .copyright p {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 744px) {
  body {
    background: #81cac5;
  }
  .pc_hidden {
    display: none;
  }
  .main_visual {
    padding-bottom: 0;
  }
  .main_visual .logo_wrap {
    top: 2.2694vw;
    left: 4.1vw;
    max-width: 9.151vw;
  }
  .main_visual .appeal_point {
    top: 9.73649vw;
    right: 3.07467vw;
    left: auto;
    max-width: 8.63833vw;
  }
  .main_visual .appeal_point img {
    max-width: 4.39239vw;
    transform: rotate(7deg);
  }
  .main_visual .appeal_point img.can_move {
    margin: 0 0 5px auto;
  }
  .main_visual .appeal_point img.cool {
    margin: 0 auto 5px;
  }
  .main_visual .appeal_point img.photogenic {
    margin: 0 auto 0 0;
  }
  .main_visual .title_wrap {
    max-width: 39.678vw;
    margin: -38.287vw auto 0 6.661788vw;
    padding-top: 0;
  }
  .main_visual .title_wrap .catchphrase {
    top: -4.246vw;
    left: 1.0986vw;
    max-width: 18.009vw;
  }
  .main_visual .title_wrap .subtitle {
    max-width: 19.9127vw;
    margin: 0 auto 0.732066vw;
  }
  .main_visual .title_wrap .underline {
    bottom: -6.6vw;
  }
  .main_visual .title_wrap .title {
    max-width: 38.873vw;
  }
  .only_pc_layout {
    display: flex;
    justify-content: space-between;
    max-width: 64.9346vw;
    margin: 19vw auto 0;
  }
  .only_pc_layout #index {
    display: none;
    position: fixed;
    top: 0;
    left: 17.57vw;
    max-width: 24.5977vw;
    margin-bottom: 0;
    padding-top: 6vw;
    padding-bottom: 0;
    background: none;
  }
  .only_pc_layout #index.isFixed {
    display: block;
  }
  .only_pc_layout #index .anchor_link_wrap {
    max-width: 100%;
  }
  .only_pc_layout #index .anchor_link_wrap .anchor_link {
    max-width: 5.7106vw;
  }
  .only_pc_layout #index .anchor_link_wrap .anchor_link .number {
    max-width: 1.90337vw;
  }
  .only_pc_layout .section_wrap {
    max-width: 27.526vw;
    width: 100%;
    margin: 0 0 0 auto;
  }
  .only_pc_layout .section_wrap .main_description {
    margin-bottom: 3.2211vw;
  }
  .only_pc_layout .section_wrap .movie_wrap {
    max-width: 20.205vw;
    height: auto;
    margin: 0 auto 3.2211vw;
  }
  .only_pc_layout .section_wrap .movie_wrap iframe {
    min-height: 35.94493vw;
  }
  .only_pc_layout .section_wrap section {
    padding: 13.10398vw 0 4.39239vw;
    margin-bottom: 0;
    background: #fff;
  }
  .only_pc_layout .section_wrap section .head {
    max-width: 19.9127vw;
  }
  .only_pc_layout .section_wrap section .description {
    max-width: 24.5977vw;
    margin: 0 auto 2.04978vw;
  }
  .only_pc_layout .section_wrap section .credit_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 1.5625vw;
  }
  .only_pc_layout .section_wrap section .credit_wrap .credit .details_wrap {
    max-width: 14vw;
  }
  .only_pc_layout .section_wrap section .credit_wrap .credit .details_wrap a {
    width: 8.492vw;
  }
  .only_pc_layout .section_wrap section .credit_wrap .credit .details_wrap.expand a {
    width: 100%;
  }
  .only_pc_layout .section_wrap section button.other_item {
    max-width: 24.5977vw;
    margin: 1.5625vw auto;
  }
  .only_pc_layout .section_wrap section button.other_item.show {
    margin-bottom: 1.5625vw;
  }
  .only_pc_layout .section_wrap section .accordion {
    max-width: 24.5977vw;
  }
  .only_pc_layout .section_wrap section#item_01 .head {
    top: 4.39239vw;
    left: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_01 .image_catchphrase_wrap {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_01 .image_catchphrase_wrap .catchphrase {
    top: 9.151vw;
    bottom: auto;
    left: 3.4407vw;
  }
  .only_pc_layout .section_wrap section#item_01 .image_wrap.second {
    max-width: 23.1333vw;
    margin: 0 auto 2.04978vw 0;
  }
  .only_pc_layout .section_wrap section#item_02 {
    padding: 12.3719vw 0 3.66032vw;
  }
  .only_pc_layout .section_wrap section#item_02 .head {
    top: 3.66032vw;
    left: 3.4407vw;
  }
  .only_pc_layout .section_wrap section#item_02 .image_catchphrase_wrap {
    margin: 0 auto 2.04978vw;
  }
  .only_pc_layout .section_wrap section#item_02 .image_catchphrase_wrap .catchphrase {
    top: 4.75842vw;
    right: 1.83016vw;
  }
  .only_pc_layout .section_wrap section#item_03 .head {
    top: 4.39239vw;
    right: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_03 .image_catchphrase_wrap.first {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_03 .image_catchphrase_wrap.first .catchphrase {
    bottom: -3.07467vw;
    right: 3.5876vw;
  }
  .only_pc_layout .section_wrap section#item_03 .image_catchphrase_wrap.second {
    margin: 0 auto 2.04978vw;
  }
  .only_pc_layout .section_wrap section#item_03 .image_catchphrase_wrap.second .image_wrap {
    max-width: 16.618vw;
  }
  .only_pc_layout .section_wrap section#item_03 .image_catchphrase_wrap.second .function_list {
    top: 7.9795vw;
    left: 2.92826vw;
    max-width: 5.7106vw;
  }
  .only_pc_layout .section_wrap section#item_04 {
    padding: 14.67069vw 0 3.66032vw;
  }
  .only_pc_layout .section_wrap section#item_04 .head {
    top: 3.66032vw;
    left: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_04 .image_catchphrase_wrap {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_04 .image_catchphrase_wrap .catchphrase {
    top: 7.39388vw;
    left: -3.368vw;
  }
  .only_pc_layout .section_wrap section#item_04 .image_wrap.second {
    max-width: 16.618vw;
    margin: 0 auto 2.04978vw 0;
  }
  .only_pc_layout .section_wrap section#item_05 .head {
    top: 4.39239vw;
    right: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_05 .image_wrap.first {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_05 .image_catchphrase_wrap {
    max-width: 23.1333vw;
    margin: 0 0 2.04978vw auto;
  }
  .only_pc_layout .section_wrap section#item_05 .image_catchphrase_wrap .catchphrase {
    max-width: 6.14vw;
    top: -2.12299vw;
    left: -2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_06 {
    padding: 12.3719vw 0 3.66032vw;
  }
  .only_pc_layout .section_wrap section#item_06 .head {
    top: 3.66032vw;
    right: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_06 .image_wrap.first {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_06 .image_wrap.second {
    max-width: 16.618vw;
  }
  .only_pc_layout .section_wrap section#item_06 .image_catchphrase_wrap {
    max-width: 16.618vw;
    margin: 0 auto 2.04978vw 3.66032vw;
  }
  .only_pc_layout .section_wrap section#item_06 .image_catchphrase_wrap .catchphrase {
    top: -15.593vw;
    left: 0.951687vw;
  }
  .only_pc_layout .section_wrap section#item_07 .head {
    top: 4.39239vw;
    left: 3.4407vw;
  }
  .only_pc_layout .section_wrap section#item_07 .image_catchphrase_wrap {
    max-width: 16.618vw;
    margin: 0 0 2.04978vw auto;
  }
  .only_pc_layout .section_wrap section#item_07 .image_catchphrase_wrap .catchphrase {
    top: -3.73353vw;
    left: -7.4676vw;
  }
  .only_pc_layout .section_wrap section#item_08 {
    padding: 12.3719vw 0 3.66032vw;
  }
  .only_pc_layout .section_wrap section#item_08 .head {
    top: 3.66032vw;
    left: 2.19619vw;
  }
  .only_pc_layout .section_wrap section#item_08 .image_catchphrase_wrap {
    max-width: 22.0357vw;
  }
  .only_pc_layout .section_wrap section#item_08 .image_catchphrase_wrap .catchphrase {
    top: 9.81vw;
    left: -1.3177196vw;
  }
  .only_pc_layout .section_wrap section#item_08 .image_wrap.second {
    max-width: 16.618vw;
    margin: 0 auto 2.04978vw 0;
  }
  .only_pc_layout .section_wrap .information {
    padding: 4.39239vw 0 2.562229vw;
    background: #fff;
  }
  .only_pc_layout .section_wrap .information .other_items {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto 3.73353vw;
  }
  .only_pc_layout .section_wrap .information .staff_credit_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 5.856512vw;
    padding: 0 0 4.39239vw;
  }
  .only_pc_layout .section_wrap .information .footer .logo_wrap {
    max-width: 10.2489vw;
    margin: 0 auto 4.39239vw;
  }
  .only_pc_layout .section_wrap .information .footer .instagram {
    margin: 0 auto 4.39239vw;
  }
  .only_pc_layout .section_wrap .information .footer .online_shop,
  .only_pc_layout .section_wrap .information .footer .shop_list {
    max-width: 24.5977vw;
    height: 5.7106vw;
    margin: 0 auto;
  }
  .only_pc_layout .section_wrap .information .footer .online_shop {
    margin-bottom: 2.19619vw;
  }
  .only_pc_layout .section_wrap .information .footer .shop_list {
    margin-bottom: 4.39239vw;
  }
  .only_pc_layout .section_wrap .information .footer .attention {
    max-width: 24.5977vw;
    margin: 0 auto 4.75842vw;
  }
  .only_pc_layout .section_wrap .information .footer .onward_crosset {
    max-width: 9.73649vw;
    width: 100%;
    margin: 0 auto 4.3197vw;
  }
}/*# sourceMappingURL=common.css.map */