@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Oranienbaum&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rochester&family=Shippori+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Jost:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Marcellus&family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Caprasimo&display=swap");
@import url("https://use.typekit.net/puv5inx.css");
@font-face {
  font-family: "Optima";
  font-style: normal;
  font-weight: normal;
  src: local("Optima"), url("OPTIMA.woff") format("woff");
}
@media screen and (max-width: 743px) {
  .sp_hidden {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
}

main {
  overflow: hidden;
}

body,
h2,
h3,
h4,
p,
span,
a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

.image_wrap,
.swiper {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes shrink {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
.shrinkOnTheSpot {
  width: 100%;
  overflow: hidden;
  animation-name: shrinkOnTheSpot;
  animation-duration: 3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes shrinkOnTheSpot {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.floating {
  opacity: 0;
}
.floating.active {
  opacity: 1;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.pop-up {
  opacity: 0;
}
.pop-up.active {
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.popUpOnTheSpot {
  opacity: 0;
  animation: popup 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.appearB {
  opacity: 0;
  transform: translateY(100%);
  will-change: transform, opacity;
}
.appearB.active {
  animation: appearB 0.8s 0.4s forwards ease-in-out;
}

@keyframes appearB {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.main_visual {
  position: relative;
  width: 100%;
  height: 157.335vw;
  margin-bottom: 13.868vw;
  overflow: hidden;
  background: #f2672e;
}
.main_visual .image_wrap {
  position: absolute;
  width: 100%;
}
.main_visual .image_wrap.first {
  bottom: 0;
  left: 0;
  max-width: 49.068vw;
}
.main_visual .image_wrap.second {
  top: 0;
  right: 0;
  max-width: 63.468vw;
}
.main_visual .catchphrase {
  position: absolute;
  top: 31.735vw;
  left: 5.6vw;
  transform: rotate(-12deg);
  max-width: 44.5334vw;
  width: 100%;
}
.main_visual .catchphrase.fadeInLOnTheSpot {
  animation-delay: 0.4s;
}
.main_visual .title {
  position: absolute;
  bottom: 19.2vw;
  right: 7.46666vw;
  max-width: 49.335vw;
  width: 100%;
}
.main_visual .title.fadeInTOnTheSpot {
  animation-delay: 0.8s;
}
.main_visual .logo_wrap {
  position: absolute;
  bottom: 2.66667vw;
  right: 2.66667vw;
  max-width: 21.068vw;
  width: 100%;
}

#index {
  position: relative;
  max-width: 75.2vw;
  width: 100%;
  margin: 0 auto 21.33334vw;
  padding-top: 2px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
#index .head {
  width: 100%;
  padding: 4.26668vw 0 4vw;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
#index .head img {
  display: block;
  max-width: 34.934vw;
  margin: 0 auto;
}
#index .price {
  width: 100%;
  padding: 4.26668vw 0 3.7333275vw;
  border-bottom: 1px solid #000;
}
#index .price img {
  display: block;
  max-width: 65.868vw;
  margin: 0 auto;
}
#index .catchphrase {
  width: 100%;
  padding: 5.068vw 0 4.8vw;
}
#index .catchphrase img {
  display: block;
  max-width: 45.335vw;
  margin: 0 auto;
}
#index .good_price {
  position: absolute;
  top: 8.268vw;
  left: -5.068vw;
  transform: rotate(-14deg);
  max-width: 21.068vw;
  width: 100%;
}

section {
  width: 100%;
  margin-bottom: 21.33334vw;
}
section .head_wrap {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto 12.8vw;
  border-bottom: 2px solid #000;
}
section .head_wrap .item_number {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  padding: 0 0 9px 10px;
  border-bottom: 2px solid #000;
}
section .head_wrap .item_number .good_item {
  margin-right: 9px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 8px;
}
section .head_wrap .item_number .number {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
}
section .head_wrap .item_name_price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.8vw 4vw 4.53333vw 2.66667vw;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
section .head_wrap .item_name_price .item_name .highlight {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 900;
}
section .head_wrap .item_name_price .item_name .highlight:before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: #f2672e;
}
section .head_wrap .item_name_price .price {
  max-width: 30.4vw;
  width: 100%;
  padding: 1.333334vw 0 1.066666vw 6.135vw;
  border-left: 1px solid #000;
}
section .head_wrap .item_name_price .price img {
  display: block;
  max-width: 24vw;
  margin: 0 0 0 auto;
}
section .head_wrap .point_wrap_parent {
  max-width: 85.335vw;
  width: 100%;
  margin: 0 auto;
  padding: 6.135vw 0 5.868vw;
}
section .head_wrap .point_wrap_parent .subhead {
  margin-bottom: 5px;
  font-family: "Caprasimo", serif;
  font-size: 8px;
}
section .head_wrap .point_wrap_parent .point_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6vw;
}
section .head_wrap .point_wrap_parent .point_wrap .point {
  display: flex;
  align-items: center;
  margin-right: 1.6vw;
}
section .head_wrap .point_wrap_parent .point_wrap .point .dot {
  display: block;
  width: 4px;
  height: 4px;
  margin-right: 5px;
  background: #f2672e;
  border-radius: 9999px;
}
section .head_wrap .point_wrap_parent .point_wrap .point .text {
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
section .image_wrap {
  position: relative;
}
section .catchphrase {
  position: absolute;
  max-width: 13.06668vw;
  width: 100%;
}
section .image_bar_wrap,
section .image_text_wrap,
section .image_catchphrase_wrap {
  position: relative;
  width: 100%;
}
section .image_bar_wrap .bar {
  z-index: 9999;
  position: absolute;
  width: 100%;
  height: 5px;
  background: #f2672e;
}
section .image_text_wrap .text_decoration {
  position: absolute;
  width: 100%;
}
section .credit_wrap {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
}
section .credit_wrap:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 1px;
}
section .credit_wrap .credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section .credit_wrap .credit.sp_hidden {
  display: none;
}
section .credit_wrap .credit:not(:last-of-type) {
  margin-bottom: 16px;
}
section .credit_wrap .credit .items_wrap p {
  line-height: 1;
}
section .credit_wrap .credit .items_wrap .item {
  margin-bottom: 2px;
  font-size: 12px;
}
section .credit_wrap .credit .items_wrap .price {
  font-family: "Crimson Text", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
section .credit_wrap .credit .items_wrap .price .tax {
  font-size: 9px;
}
section .credit_wrap .credit .details_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1.066666vw;
       column-gap: 1.066666vw;
  max-width: 54.4vw;
  width: 100%;
}
section .credit_wrap .credit .details_wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 26.6667vw;
  width: 100%;
  height: 30px;
  background: #fff;
  border: 1px solid #000;
}
section .credit_wrap .credit .details_wrap a span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
section .accordion_wrap {
  margin: 5.335vw auto 12.268vw;
}
section .accordion_wrap button.other_item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 11.2vw;
  margin: 5.33334vw auto;
  background: #fff;
  border: 1px solid #000;
}
section .accordion_wrap button.other_item.show {
  margin-bottom: 5.335vw;
}
section .accordion_wrap button.other_item.show:before {
  opacity: 0;
}
section .accordion_wrap button.other_item span {
  font-family: "Crimson Text", serif;
  font-weight: 400;
}
section .accordion_wrap .accordion {
  max-width: 89.6vw;
  width: 100%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
section .accordion_wrap .accordion .credit_wrap {
  padding-top: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap {
  margin-bottom: 0;
}
section .accordion_wrap .accordion .credit_wrap .credit .details_wrap a {
  max-width: 100%;
}
section#item01 .image_wrap.first {
  max-width: 92.267vw;
  margin: 0 auto 7.46666vw 0;
  border-right: 5px solid #f2672e;
}
section#item01 .image_wrap.second {
  max-width: 88vw;
  margin: 0 0 6.4vw auto;
  border-bottom: 5px solid #f2672e;
}
section#item01 .image_wrap.second .catchphrase {
  top: 16vw;
  left: 12.8vw;
  transform: rotate(-12deg);
}
section#item01 .image_wrap.third {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6.4vw;
}
section#item01 .image_wrap.third a {
  max-width: calc((100% - 1.066666vw) / 2);
}
section#item02 .image_wrap.first {
  z-index: 8888;
  max-width: 58.935vw;
  margin: 0 auto 0 9.868vw;
}
section#item02 .image_wrap.second {
  max-width: 77.6vw;
  margin: 0 0 6.4vw auto;
}
section#item02 .image_wrap.third {
  max-width: 89.6vw;
  margin: 0 auto 6.4vw;
}
section#item02 .image_bar_wrap.first .bar {
  max-width: 43.2vw;
  top: 4vw;
  right: 11vw;
  transform: rotate(21deg);
}
section#item02 .image_bar_wrap.second .bar {
  max-width: 88.8vw;
  bottom: 13vw;
  right: -40vw;
  transform: rotate(-20deg);
}
section#item02 .image_bar_wrap .catchphrase {
  top: -11.73334vw;
  left: 9.068vw;
  transform: rotate(25deg);
}
section#item02 .image_text_wrap {
  margin: -6.93333vw auto 16vw;
}
section#item02 .image_text_wrap .text_decoration {
  position: absolute;
  top: 13.868vw;
  left: 9.868vw;
  max-width: 31.2vw;
  width: 100%;
}
section#item03 .image_wrap.first {
  max-width: 89.6vw;
  margin: 0 auto 7.46666vw;
  border-right: 5px solid #f2672e;
}
section#item03 .image_wrap.second {
  max-width: 78.935vw;
  margin: 0 0 7.46666vw auto;
}
section#item03 .image_wrap.third {
  max-width: 78.935vw;
  margin: 0 auto 6.4vw 0;
  border-top: 5px solid #f2672e;
}
section#item03 .image_catchphrase_wrap .catchphrase {
  top: -16.268vw;
  right: 17.33334vw;
  transform: rotate(9deg);
}
section#item04 .image_wrap.first {
  margin: 0 auto;
}
section#item04 .image_wrap.second {
  max-width: 50.4vw;
  margin: 0 auto 0 6.66666vw;
}
section#item04 .image_wrap.third {
  max-width: 86.934vw;
  margin: 0 auto 6.4vw;
}
section#item04 .image_bar_wrap.first {
  margin-bottom: 8.8vw;
}
section#item04 .image_bar_wrap.first .bar.first {
  max-width: 88.8vw;
  top: 9vw;
  left: -17vw;
  transform: rotate(-20deg);
}
section#item04 .image_bar_wrap.first .bar.second {
  content: "";
  z-index: 9999;
  position: absolute;
  width: 100%;
  height: 5px;
  background: #f2672e;
  max-width: 53.868vw;
  bottom: -7.6vw;
  right: -2vw;
  transform: rotate(20deg);
}
section#item04 .image_text_wrap {
  margin: 0 auto 8.53334vw;
}
section#item04 .image_text_wrap .text_decoration {
  position: absolute;
  top: 22.4vw;
  right: 6.66666vw;
  max-width: 31.2vw;
  width: 100%;
}
section#item04 .image_catchphrase_wrap .catchphrase {
  top: -6.4vw;
  left: 11.73334vw;
  transform: rotate(23deg);
}
section#item05 .head_wrap .item_name_price.first {
  border-bottom: none;
}
section#item05 .image_wrap.first {
  margin: 0 auto 12.8vw;
}
section#item05 .image_wrap.second {
  max-width: 86.934vw;
  margin: 0 0 0 auto;
  border-top: 5px solid #f2672e;
}
section#item05 .image_wrap.third {
  max-width: 63.468vw;
  margin: -13.33334vw auto 6.4vw 0;
  border-right: 5px solid #f2672e;
}
section#item05 .image_catchphrase_wrap .catchphrase {
  top: 15.735vw;
  left: 15.735vw;
  transform: rotate(-16deg);
}
section#item06 .loop-slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 7.46666vw;
}
section#item06 .loop-slider .loop-slider-inner {
  display: flex;
  width: 212.808vw;
  animation: loopAnimation 7s linear infinite;
}
@keyframes loopAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
section#item06 .loop-slider .loop-slider-inner .card {
  max-width: 35.468vw;
  width: 100%;
  margin-right: 0.533334vw;
}
section#item06 .image_wrap.first {
  max-width: 92.267vw;
  margin: 0 auto 7.46666vw 0;
}
section#item06 .image_wrap.second {
  max-width: 78.935vw;
  margin: 0 5.33334vw 6.4vw auto;
}
section#item06 .image_bar_wrap.first .bar {
  max-width: 43.2vw;
  top: 4vw;
  right: -2vw;
  transform: rotate(23deg);
}
section#item06 .image_bar_wrap.first .text_decoration {
  position: absolute;
  bottom: 14.668vw;
  right: 4vw;
  max-width: 31.2vw;
  width: 100%;
}
section#item06 .image_bar_wrap.second .bar {
  max-width: 88.8vw;
  top: 5vw;
  left: 5vw;
  transform: rotate(-23deg);
}
section#item06 .image_bar_wrap.second .catchphrase {
  top: 27.7333vw;
  left: 15.46668vw;
  transform: rotate(-19deg);
}

.other_information {
  width: 100%;
  margin: 0 auto 16vw;
}
.other_information .other_items {
  position: relative;
  max-width: 89.6vw;
  width: 100%;
  height: 78px;
  margin: 0 auto;
}
.other_information .other_items a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f2672e;
}
.other_information .other_items a span {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
}
.other_information .other_items .arrow_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5.335vw;
}
.other_information .other_items .arrow_wrap .arrow {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 15px;
}
.other_information .other_items .arrow_wrap .arrow:before, .other_information .other_items .arrow_wrap .arrow:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10.8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000;
  transform-origin: calc(100% - 0.5px) 50%;
}
.other_information .other_items .arrow_wrap .arrow:before {
  transform: rotate(45deg);
}
.other_information .other_items .arrow_wrap .arrow:after {
  transform: rotate(-45deg);
}
.other_information .staff_credit p {
  font-family: "Bodoni Moda", serif;
  font-size: 12px;
  line-height: 2.1666666667;
  text-align: center;
}

footer {
  width: 100%;
  padding: 16vw 0 7.46666vw;
  background: #f2672e;
}
footer .logo_wrap {
  max-width: 21.33334vw;
  width: 100%;
  margin: 0 auto 10.66666vw;
}
footer .instagram {
  width: 8vw;
  height: 8vw;
  margin: 0 auto 10.66666vw;
}
footer .related_links_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8.53334vw;
}
footer .related_links_wrap .related_link {
  display: flex;
  align-items: center;
  max-width: 78.935vw;
  width: 100%;
  height: 15.735vw;
  margin: 0 auto;
  border: 1px solid #000;
}
footer .related_links_wrap .related_link:not(:last-of-type) {
  margin-bottom: 4.26666vw;
}
footer .related_links_wrap .related_link a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 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;
  }
  body {
    background: #ffe2d6;
  }
  .main_visual {
    display: flex;
    align-items: center;
    height: auto;
    margin-bottom: 0;
  }
  .main_visual .image_wrap {
    position: static;
  }
  .main_visual .image_wrap.first {
    max-width: 37.4822vw;
  }
  .main_visual .image_wrap.second {
    max-width: 37.531vw;
  }
  .main_visual .catchphrase {
    top: auto;
    bottom: 15.081vw;
    left: auto;
    right: 31.113vw;
    max-width: 12.1528vw;
  }
  .main_visual .title {
    bottom: 8.63833vw;
    right: 4.905vw;
    max-width: 27.3065vw;
  }
  .main_visual .logo_wrap {
    top: 1.537333vw;
    right: 1.46413vw;
    left: auto;
    max-width: 6.5159vw;
  }
  .content_wrap_for_pc {
    width: 100%;
  }
  .content_wrap_for_pc #index {
    display: none;
    position: fixed;
    top: 8vw;
    left: 14vw;
    max-width: 28.7701vw;
    margin: 0;
    padding-top: 3px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
  }
  .content_wrap_for_pc #index.isFixed {
    display: block;
  }
  .content_wrap_for_pc #index.isHidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .content_wrap_for_pc #index .head {
    padding: 1.68375vw 0 1.46413vw;
  }
  .content_wrap_for_pc #index .head img {
    max-width: 13.3241vw;
  }
  .content_wrap_for_pc #index .price {
    padding: 1.61054vw 0 1.46413vw;
  }
  .content_wrap_for_pc #index .price img {
    max-width: 25.1834vw;
  }
  .content_wrap_for_pc #index .catchphrase {
    padding: 1.90337vw 0;
  }
  .content_wrap_for_pc #index .catchphrase img {
    max-width: 17.277vw;
  }
  .content_wrap_for_pc #index .good_price {
    top: 2.48902vw;
    left: -3.95315vw;
    max-width: 9.444vw;
  }
  .content_wrap_for_pc .section_wrap {
    max-width: 27.526vw;
    margin: 0 12vw 7.32066vw auto;
    padding: 4.09956vw 0 4.39239vw;
    background: #fff;
    overflow: hidden;
  }
  .content_wrap_for_pc .section_wrap section {
    margin-bottom: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap {
    max-width: 24.5977vw;
    margin: 0 auto 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .item_name_price {
    padding: 1.3177196vw 1.0986vw 1.24451vw 0.732066vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .item_name_price .price {
    max-width: 8.3455vw;
    padding: 0.366032vw 0 0.292826vw 1.68375vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .item_name_price .price img {
    max-width: 6.58858vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .point_wrap_parent {
    max-width: 23.4266vw;
    padding: 1.68375vw 0 1.61054vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .point_wrap_parent .point_wrap {
    gap: 0.439239vw;
  }
  .content_wrap_for_pc .section_wrap section .head_wrap .point_wrap_parent .point_wrap .point {
    margin-right: 0.439239vw;
  }
  .content_wrap_for_pc .section_wrap section .catchphrase {
    max-width: 3.5876vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap {
    max-width: 24.5977vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap.hidden {
    display: none;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap {
    -moz-column-gap: 0.292826vw;
         column-gap: 0.292826vw;
    max-width: 14.9346vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap a {
    max-width: 7.32066vw;
  }
  .content_wrap_for_pc .section_wrap section .credit_wrap .credit .details_wrap.expand a {
    max-width: 100%;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap {
    margin: 1.46413vw 0 3.368vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item {
    max-width: 24.5977vw;
    height: 3.075vw;
    margin: 1.46413vw auto;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap button.other_item.show {
    margin-bottom: 1.46413vw;
  }
  .content_wrap_for_pc .section_wrap section .accordion_wrap .accordion {
    max-width: 27.526vw;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap.first {
    max-width: 25.3299vw;
    margin: 0 auto 2.04978vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap.second {
    max-width: 24.1586vw;
    margin: 0 0 1.756955vw auto;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap.second .catchphrase {
    top: 4.39239vw;
    left: 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap.third {
    margin-bottom: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#item01 .image_wrap.third a {
    max-width: calc((100% - 0.292826vw) / 2);
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap.first {
    max-width: 16.1791vw;
    margin: 0 auto 0 2.7092vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap.second {
    max-width: 21.3036vw;
    margin: 0 0 0 auto;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_wrap.third {
    max-width: 24.5977vw;
    margin: 0 auto 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_bar_wrap.first .bar {
    max-width: 11.86vw;
    top: 1vw;
    right: 3.2vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_bar_wrap.second .bar {
    max-width: 24.9255vw;
    bottom: 3.4vw;
    right: -8vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_bar_wrap .catchphrase {
    top: -3.22108vw;
    left: 3.95315vw;
    transform: rotate(25deg);
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_text_wrap {
    margin: -1.90337vw auto 4.39239vw;
  }
  .content_wrap_for_pc .section_wrap section#item02 .image_text_wrap .text_decoration {
    top: 3.807vw;
    left: 2.7092vw;
    max-width: 8.5657vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap.first {
    max-width: 24.5977vw;
    margin: 0 auto 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap.second {
    max-width: 21.6696vw;
    margin: 0 0 2.04978vw auto;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_wrap.third {
    max-width: 21.6696vw;
    margin: 0 auto 1.756955vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item03 .image_catchphrase_wrap .catchphrase {
    top: -4.466vw;
    right: 4.75842vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_wrap.second {
    max-width: 13.8365vw;
    margin: 0 auto 0 1.83016vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_wrap.third {
    max-width: 23.8658vw;
    margin: 0 auto 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_bar_wrap.first {
    margin-bottom: 2.416vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_bar_wrap.first .bar.first {
    max-width: 19.5466vw;
    top: 1.8vw;
    left: -1vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_bar_wrap.first .bar.second {
    max-width: 15.22697vw;
    bottom: -2vw;
    right: -1vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_text_wrap {
    margin: 0 auto 2.342603vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_text_wrap .text_decoration {
    top: 6.1499vw;
    right: 1.83016vw;
    max-width: 8.5657vw;
  }
  .content_wrap_for_pc .section_wrap section#item04 .image_catchphrase_wrap .catchphrase {
    top: -1.756955vw;
    left: 5.051244vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap.first {
    margin: 0 auto 3.514vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap.second {
    max-width: 23.8658vw;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_wrap.third {
    max-width: 17.4237vw;
    margin: -3.66032vw auto 1.756955vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item05 .image_catchphrase_wrap .catchphrase {
    top: 4.3197vw;
    left: 4.3197vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 {
    margin-bottom: 0;
  }
  .content_wrap_for_pc .section_wrap section#item06 .loop-slider {
    margin-bottom: 2.04978vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .loop-slider .loop-slider-inner {
    width: 58.41894vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .loop-slider .loop-slider-inner .card {
    max-width: 9.73649vw;
    margin-right: 0.146413vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_wrap.first {
    max-width: 25.3299vw;
    margin: 0 auto 2.04978vw 0;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_wrap.second {
    max-width: 21.6696vw;
    margin: 0 1.46413vw 0 auto;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_bar_wrap.first .bar {
    max-width: 10.981vw;
    top: 0.4vw;
    right: 1vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_bar_wrap.first .text_decoration {
    bottom: 4.026358vw;
    right: 1.0986vw;
    max-width: 8.5657vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_bar_wrap.second {
    margin-bottom: 1.756955vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_bar_wrap.second .bar {
    max-width: 24.9255vw;
    top: 1.4vw;
    left: 1vw;
  }
  .content_wrap_for_pc .section_wrap section#item06 .image_bar_wrap.second .catchphrase {
    top: 7.614vw;
    left: 4.246vw;
  }
  .other_information {
    margin: 0 auto 7.32066vw;
  }
  .other_information .other_items {
    max-width: 24.5977vw;
    margin: 0 auto;
  }
  .other_information .other_items .arrow_wrap {
    right: 1.46413vw;
  }
  footer {
    padding: 4.39239vw 0 2.04978vw;
  }
  footer .logo_wrap {
    max-width: 5.856512vw;
    margin: 0 auto 2.92826vw;
  }
  footer .instagram {
    width: 2.19619vw;
    height: 2.19619vw;
    margin: 0 auto 2.92826vw;
  }
  footer .related_links_wrap {
    justify-content: space-between;
    max-width: 69.693vw;
    margin: 0 auto 3.4407vw;
  }
  footer .related_links_wrap .related_link {
    max-width: 21.6696vw;
    height: 4.3197vw;
    margin: 0;
  }
  footer .related_links_wrap .related_link:not(:last-of-type) {
    margin-bottom: 0;
  }
  footer .related_links_wrap .related_link a {
    line-height: 4.3197vw;
  }
  footer .annotation {
    max-width: 100%;
    margin: 0 auto 3.807vw;
    text-align: center;
  }
  footer .onward_crosset {
    max-width: 11.567vw;
  }
}
@media screen and (744px <= width < 1186px) {
  .content_wrap_for_pc .section_wrap .introduction {
    max-width: 25vw;
  }
  .content_wrap_for_pc .section_wrap .introduction .head_wrap .head .effortless span {
    max-width: 12vw;
  }
}/*# sourceMappingURL=common.css.map */