@charset "UTF-8";

.page .block {
  display: block;
}
.page .hidden {
  display: none;
}
.page .-pc {
  display: block;
}
.page .FadeSlideUp {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}
.page .FadeSlideUp.-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s, transform 1s;
}
.page .FadeSlideDown {
  opacity: 0;
  transform: translate3d(0, -20px, 0);
}
.page .FadeSlideDown.-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s, transform 1s;
}
.page .ZoomOut {
  opacity: 0;
  transform: scale(1.25) rotate(2deg);
}
.page .ZoomOut.-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.2s, transform 1.2s;
}
.page .SlideUp {
  overflow: hidden;
}
.page .SlideUp.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.page .SlideUp > * {
  transform: translate3d(0, 100%, 0);
}
.page .SlideLeft {
  overflow: hidden;
}
.page .SlideLeft.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.page .SlideLeft > * {
  transform: translate3d(100%, 0, 0);
}

.bg-white-off{
  background: unset;
  overflow-x: visible;
}
.page .OverlaySlideLeft {
  position: relative;
  overflow: hidden;
}
.page .OverlaySlideLeft.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(-100%, 0, 0);
}
.page .OverlaySlideLeft::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.page .OverlaySlideRight {
  position: relative;
  overflow: hidden;
}
.page .OverlaySlideRight.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(100%, 0, 0);
}
.page .OverlaySlideRight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.page .SplitSlideUp {
  display: block;
  overflow: hidden;
}
.page .SplitSlideUp.-active > span {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.page .SplitSlideUp > span {
  display: inline-block;
  transform: translate3d(0, 100%, 0);
}
.page .SplitSlideUp > span:nth-child(2) {
  transition-delay: 0.05s;
}
.page .SplitSlideUp > span:nth-child(3) {
  transition-delay: 0.1s;
}
.page .SplitSlideUp > span:nth-child(4) {
  transition-delay: 0.15s;
}
.page .SplitSlideUp > span:nth-child(5) {
  transition-delay: 0.2s;
}
.page .SplitSlideUp > span:nth-child(6) {
  transition-delay: 0.25s;
}
.page .SplitSlideUp > span:nth-child(7) {
  transition-delay: 0.3s;
}
.page .SplitSlideUp > span:nth-child(8) {
  transition-delay: 0.35s;
}
.page .SplitSlideUp > span:nth-child(9) {
  transition-delay: 0.4s;
}
.page .SplitSlideUp > span:nth-child(10) {
  transition-delay: 0.45s;
}
.page .SplitSlideUp > span:nth-child(11) {
  transition-delay: 0.5s;
}
.page .SplitSlideUp > span:nth-child(12) {
  transition-delay: 0.55s;
}
.page .SplitSlideUp > span:nth-child(13) {
  transition-delay: 0.6s;
}
.page .SplitSlideUp > span:nth-child(14) {
  transition-delay: 0.65s;
}
.page .SplitSlideUp > span:nth-child(15) {
  transition-delay: 0.7s;
}
.page .SplitSlideUp > span:nth-child(16) {
  transition-delay: 0.75s;
}
.page .SplitSlideUp > span:nth-child(17) {
  transition-delay: 0.8s;
}
.page .SplitSlideUp > span:nth-child(18) {
  transition-delay: 0.85s;
}
.page .SplitSlideUp > span:nth-child(19) {
  transition-delay: 0.9s;
}
.page .SplitSlideUp > span:nth-child(20) {
  transition-delay: 0.95s;
}
.page .DrawMarker {
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
.page .DrawMarker.-active {
  transition: background-size 0.6s;
  background-size: 100% 100%;
}
.page .ZoomInBack {
  opacity: 0;
  transform: scale(0);
}
.page .ZoomInBack.-active {
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1;
  transform: scale(1);
}
.page .Zooming {
  animation: zooming 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
@keyframes zooming {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.05);
  }
}
.page .BG_unit {
  width: calc(50% - 187.5px);
  height: 100%;
  position: fixed;
  top: 100px;
  z-index: -1;
  background-color: #a9b3c0;
}
.page .BG_unit.-left {
  left: 0;
}
.page .BG_unit.-left .BG_text {
  left: 40px;
}
.page [data-waypoint-current=onepiece1] .BG_unit.-left .BG_text, .page [data-waypoint-current=onepiece2] .BG_unit.-left .BG_text, .page [data-waypoint-current=onepiece3] .BG_unit.-left .BG_text {
  visibility: visible;
  opacity: 1;
}
.page .BG_unit.-right {
  right: 0;
}
.page .BG_unit.-right .BG_text {
  left: 40px;
}
.page [data-waypoint-current=suit1] .BG_unit.-right .BG_text, .page [data-waypoint-current=suit2] .BG_unit.-right .BG_text, .page [data-waypoint-current=suit3] .BG_unit.-right .BG_text, .page [data-waypoint-current=suit4] .BG_unit.-right .BG_text, .page [data-waypoint-current=set1] .BG_unit.-right .BG_text, .page [data-waypoint-current=set2] .BG_unit.-right .BG_text, .page [data-waypoint-current=set3] .BG_unit.-right .BG_text {
  visibility: visible;
  opacity: 1;
}
.page .BG_text {
  position: absolute;
  top: 50%;
  z-index: -2;
  transform: translateY(-50%);
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 1s;
}
.page .BG_text span {
  display: block;
  font-size: 17px;
  margin-top: 13px;
}
.page .BG_img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none;
  transition: 1s !important;
}
.page [data-waypoint-current=kv] .BG_img.-suit1 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=kv] .BG_img.-suit5 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=suit1] .BG_img.-suit1 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=suit2] .BG_img.-suit2 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=suit3] .BG_img.-suit3 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=suit4] .BG_img.-suit4 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=onepiece1] .BG_img.-onepiece1 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=onepiece2] .BG_img.-onepiece2 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=onepiece3] .BG_img.-onepiece3 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=set1] .BG_img.-set1 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=set2] .BG_img.-set2 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=set3] .BG_img.-set3 {
  visibility: visible;
  opacity: 1 !important;
}
.page .Button {
  display: grid;
  place-content: center;
  width: 100%;
  height: 60px;
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  cursor: pointer;
}
.page .Button.-fill {
  color: #fff;
  background-color: #3a4566;
  border-radius: 5px;
}
.page .Button.-fill svg {
  fill: #fff;
}
.page .Button.-stroke {
  color: #a68d4b;
  background-color: #fff;
  border: 1px solid #a68d4b;
  border-radius: 5px;
}
.page .Button.-stroke svg {
  fill: #a68d4b;
}
@media (any-hover: hover) {
  .page .Button.-stroke {
    transition: color 0.4s, background-color 0.4s;
  }
  .page .Button.-stroke svg {
    transition: fill 0.4s;
  }
  .page .Button.-stroke:hover {
    color: #fff;
    background-color: #a68d4b;
  }
  .page .Button.-stroke:hover svg {
    fill: #fff;
  }
}
.page .Button.-menu {
  height: 56px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 5px;
}
.page .Button.-menu.-down {
  padding-left: 15px;
}
.page .Button.-menu.-down svg {
  right: auto;
  left: 15px;
  fill: #fff;
}
.page .Button.-next svg {
  width: 6.9px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.page .Button.-down svg {
  width: 13px;
  height: 7px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  fill: #000;
}
.page .Button.-cart {
  height: 38px;
  font-size: 12px;
  border: none;
  border-radius: 5px;
}
.page .Button.-detail {
  height: 40px;
  background-color: #fff;
  border-radius: 5px;
}
.page .Button.-list {
  border-radius: 8px;
}
.page .Button.-size {
  border-radius: 8px;
}
.page .Button.-roundedFull {
  border-radius: 99px;
}
.page .CoordinateSection {
  padding-top: 92px;
  margin-top: -31px;
}
.page .CoordinateSection + .CoordinateSection {
  margin-top: -71px;
}
.page .CoordinateSection_title {
  position: relative;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  line-height: 36px;
}
.page .CoordinateSection_title.-active::before, .page .CoordinateSection_title.-active::after {
  transition: transform 0.6s;
  transform: scaleY(1);
}
.page .CoordinateSection_title.-active::before {
  transform-origin: top;
}
.page .CoordinateSection_title.-active::after {
  transform-origin: bottom;
}
.page .CoordinateSection_title > span > span {
  font-weight: 600;
}
.page .CoordinateSection_title em {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding-top: 4px;
}
.page .CoordinateSection_title::before, .page .CoordinateSection_title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 100%;
  background-color: #a9b3c0;
  transform: scaleY(0);
}
.page .CoordinateSection_title::before {
  left: 20px;
}
.page .CoordinateSection_title::after {
  right: 20px;
}
.page .CoordinateSection_slider {
  position: relative;
  margin: 8px -20px 0;
  overflow-x: hidden;
}
.page .CoordinateSection_slider img {
  aspect-ratio: 3/4;
}
.page .CoordinateSection_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.page .CoordinateSection_text {
  text-align: center;
  margin: 12px 0 32px;
}
.page .CoordinateSection_scene {
  position: relative;
  background-color: #dcdfed;
  padding: 36px 0;
  margin: 32px 0;
}
.page .CoordinateSection_scene dt {
  width: 100%;
  position: absolute;
  top: -17px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.page .CoordinateSection_sceneList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 6px;
  line-height: 1.5;
}
.page .CoordinateSection_sceneItem {
  display: flex;
  align-items: center;
}
.page .CoordinateSection_sceneItem svg {
  width: 12.7px;
  height: 9px;
  fill: #a68d4b;
}
.page .CoordinateSection_sceneItem span {
  font-size: 14px;
  margin-left: 3px;
}
.page .Coordinate {
  padding: 40px 20px 0;
  margin: 0 -20px;
  overflow: hidden;
}
.page .Coordinate.-setup {
  background-color: #dce8ed;
}
.page .Coordinate.-setup .Coordinate_point {
  margin-top: 28px;
}
.page .Coordinate.-setup.-navy .Coordinate_type, .page .Coordinate.-setup.-mint .Coordinate_type {
  left: -4px;
}
.page .Coordinate.-setup.-ivory .Coordinate_type, .page .Coordinate.-setup.-type5 .Coordinate_type {
  right: -4px;
}
.page .Coordinate.-onepiece {
  background-color: #ede9df;
}
.page .Coordinate.-onepiece.-greige .Coordinate_type, .page .Coordinate.-onepiece.-navy .Coordinate_type {
  left: -4px;
}
.page .Coordinate.-onepiece.-beige .Coordinate_type {
  right: -4px;
}
.page .Coordinate.-ceremony {
  background-color: #dcdfed;
}
.page .Coordinate.-ceremony .Coordinate_type {
  font-size: 20px;
  color: #fff;
  background-color: #a68d4b;
}
.page .Coordinate.-ceremony .Coordinate_type em {
  font-size: 36px;
}
.page .Coordinate.-ceremony.-n1 .Coordinate_type, .page .Coordinate.-ceremony.-n3 .Coordinate_type {
  left: -4px;
}
.page .Coordinate.-ceremony.-n2 .Coordinate_type {
  right: -4px;
}
.page .Coordinate.-navy .Coordinate_type {
  color: #fff;
  background-color: #2b4255;
}
.page .Coordinate.-navy .Coordinate_sliderText span::before {
  color: #2b4255;
}
.page .Coordinate.-ivory .Coordinate_type {
  color: #333;
  background-color: #f5ebd6;
}
.page .Coordinate.-ivory .Coordinate_sliderText span::before {
  color: #f5ebd6;
}
.page .Coordinate.-ivory .Coordinate_sliderText span.-corsage::before {
  color: #d0d1d1;
}
.page .Coordinate.-mint .Coordinate_type {
  color: #333;
  background-color: #d7deb5;
}
.page .Coordinate.-mint .Coordinate_sliderText span::before {
  color: #d7deb5;
}
.page .Coordinate.-type5 .Coordinate_type {
  color: #fff;
  background-color: #a68d4b;
}
.page .Coordinate.-type5 .Coordinate_sliderText span::before {
  color: #333;
}
.page .Coordinate.-greige .Coordinate_type {
  color: #fff;
  background-color: #b99c8c;
}
.page .Coordinate.-beige .Coordinate_type {
  color: #333;
  background-color: #e8d1be;
}
.page .Coordinate_title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.666;
  margin-bottom: 8px;
}
.page .Coordinate_type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 124px;
  height: 124px;
  position: absolute;
  top: -28px;
  z-index: 2;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  transform: scale(0) rotate(90deg);
}
.page .Coordinate_type.-active {
  transition: transform 0.5s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(1);
}
.page .Coordinate_type em {
  display: inline-block;
  font-size: 32px;
  font-weight: 600;
  vertical-align: -2px;
  margin: -16px 0 8px;
}
.page .Coordinate_type span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  margin-left: 4px;
}
.page .Coordinate_slider {
  position: relative;
  margin: 0 -20px;
}
.page .Coordinate_slider img {
  aspect-ratio: 3/4;
}
.page .Coordinate_slider .swiper-button-prev,
.page .Coordinate_slider .swiper-button-next {
  width: 32px;
  height: 32px;
  top: 181px;
  margin-top: 0;
  background-color: #a68d4b;
  border-radius: 99px;
}
.page .Coordinate_slider .swiper-button-prev svg,
.page .Coordinate_slider .swiper-button-next svg {
  width: 9.2px;
  height: 16px;
  fill: #fff;
}
.page .Coordinate_slider .swiper-button-prev::after{
  content: none !important;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  left: 12px;
  top: calc(50% - 6.5px);
}
.page .Coordinate_slider .swiper-button-next::after {
  content: none !important;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: calc(50% - 6.5px);
}
.page .Coordinate_slider .swiper-button-prev {
  left: 20px;
}
.page .Coordinate_slider .swiper-button-next {
  right: 20px;
}
.page .Coordinate_sliderTitle {
  display: table;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 19px;
  padding-bottom: 9px;
  margin: 13px auto 0;
  border-bottom: 1px solid #333;
}
.page .Coordinate_sliderTitle span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #333;
  margin-right: 8px;
}
.page .Coordinate_sliderText {
  text-align: center;
  font-size: 12px;
  margin-top: 8px;
}
.page .Coordinate_sliderText span {
  margin: 0 0.25em;
}
.page .Coordinate_sliderText span::before {
  content: "●";
}
.page .Coordinate_point {
  padding: 20px 20px 32px;
  margin-top: 25px;
  background-color: #fff;
}
.page .Coordinate_pointTitle {
  position: relative;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
}
.page .Coordinate_pointTitle .Marker {
  font-weight: 600;
}
.page .Coordinate_pointStar {
  position: absolute;
  fill: #a68d4b;
  animation: sparkle 1s infinite alternate linear;
}
.page .Coordinate_pointStar.-n1 {
  width: 27px;
  height: 27px;
  top: 5px;
  left: 0;
}
.page .Coordinate_pointStar.-n2 {
  width: 14px;
  height: 14px;
  top: 24px;
  left: 19px;
  animation-delay: 0.2s;
}
.page .Coordinate_pointStar.-n3 {
  width: 14px;
  height: 14px;
  top: 24px;
  right: 19px;
}
.page .Coordinate_pointStar.-n4 {
  width: 27px;
  height: 27px;
  top: 5px;
  right: 0;
  animation-delay: 0.2s;
}
@keyframes sparkle {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.page .Coordinate_pointText {
  text-align: justify;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.page .CoordinateProduct {
  width: 136px;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 50px;
}
.page .CoordinateProduct_imgHolder {
  overflow: hidden;
}
.page .CoordinateProduct_img {
  aspect-ratio: 29/49;
}
.page .CoordinateProduct_name {
  text-align: center;
  line-height: 1.5;
  margin-top: 10px;
}
.page .CoordinateProduct .Button {
  position: absolute;
  bottom: 0;
}
.page .Holder {
  width: 375px;
  margin: auto;
  background-color: #fff;
}
.page .Inner {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.page .IntroSection {
  padding-top: 40px;
}
.page .IntroSection_title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.666;
}
.page .IntroSection_title span {
  font-weight: 600;
}
.page .IntroSection_text {
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
  margin-top: 20px;
}
.page .KV {
  height: 569px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  overflow: hidden;
}
.page .KV_img {
  display: block;
  aspect-ratio: 768/1165;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
  opacity: 0;
}
.page .KV_img:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 0;
}
.page .KV_img:nth-child(1) {
  opacity: 1;
}
.page .KV_img:nth-child(2) {
  transform: scale(1.2);
}
.page .KV_img:nth-child(3) {
  transform: scale(1.2);
}
.page .KV_img:nth-child(4) {
  transform: translate3d(0, 6%, 0);
}
.page .KV_img:nth-child(5) {
  transform: translate3d(0, 4%, 0);
}
.page .KV_img:nth-child(6) {
  transform: translate3d(5%, 0, 0);
}
.page .KV_img:nth-child(7) {
  transform: translate3d(-5%, 0, 0);
}
.page .KV_img:nth-child(8) {
  transform: translate3d(5%, 0, 0);
}
.page .KV.-active .KV_img {
  opacity: 1;
}
.page .KV.-active .KV_img:nth-child(2) {
  transform: scale(1);
  transition: 1s;
  transition-delay: 0.2s;
}
.page .KV.-active .KV_img:nth-child(3) {
  transform: scale(1);
  transition: 1s;
  transition-delay: 0.4s;
}
.page .KV.-active .KV_img:nth-child(4) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 0.6s;
}
.page .KV.-active .KV_img:nth-child(5) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 0.8s;
}
.page .KV.-active .KV_img:nth-child(6) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1s;
}
.page .KV.-active .KV_img:nth-child(7) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.1s;
}
.page .KV.-active .KV_img:nth-child(8) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.2s;
}
.page .Loading {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background-color: #fff;
}
.page .Loading.-inactive {
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  pointer-events: none;
}
.page .Loading_logo {
  width: 180px;
  fill: #333;
}
.page .Loading_items {
  display: flex;
  margin: 20px auto 0;
  gap: 7px;
}
.page .Loading_item {
  width: 7px;
  height: 7px;
  background-color: #a9b3c0;
  border-radius: 99px;
  transform: scale(0);
  animation: scaling 2s infinite;
}
.page .Loading_item:nth-child(2) {
  animation-delay: 0.1s;
}
.page .Loading_item:nth-child(3) {
  animation-delay: 0.2s;
}
.page .Loading_item.-inactive {
  animation: none;
}
@keyframes scaling {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
.page .Marker {
  background-image: linear-gradient(transparent 70%, rgba(166, 141, 75, 0.3) 70%, rgba(166, 141, 75, 0.3) 100%, transparent 100%);
}
.page .Menu {
  position: sticky;
  top: 122px;
  z-index: 99;
}
.page .Menu.-show {
  opacity: 1;
  visibility: visible;
}
.page .Menu_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page .Menu_link {
  display: grid;
  place-content: center;
  height: 32px;
  font-size: 12px;
}
.page .Menu_link.-suit {
  background-color: #dce8ed;
}
.page .Menu_link.-onepiece {
  background-color: #ede9df;
}
.page .Menu_link.-set {
  background-color: #dcdfed;
}
.page .Products {
  padding: 40px 0;
  margin: 0 -20px;
}
.page .Products.-recommend {
  background-color: #fff;
}
.page .Products_title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.page .Products_title.-set {
  position: relative;
  margin-top: -20px;
}
.page .Products_title.-set::before {
  content: "";
  width: 212px;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  margin: auto;
  background-color: #333;
}
.page .Products_set {
  display: flex;
  justify-content: center;
  gap: 4px;
  padding-top: 8px;
  margin-bottom: 20px;
}
.page .Products_setUnit {
  width: 64px;
}
.page .Products_setMulti {
  font-size: 18px;
  line-height: 1;
  margin-top: 22px;
}
.page .Products_setText {
  text-align: center;
  font-size: 12px;
  white-space: nowrap;
  margin-top: 4px;
}
.page .Products_list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page .Products_slider {
  position: relative;
}
.page .Products_slider .swiper-container {
  padding-right: 20px;
  padding-left: 20px;
}
.page .Products_slider .swiper-button-prev,
.page .Products_slider .swiper-button-next {
  width: 32px;
  height: 32px;
  top: calc(50% - 16px);
  margin-top: 0;
  background-color: #a68d4b;
  border-radius: 99px;
}
.page .Products_slider .swiper-button-prev svg,
.page .Products_slider .swiper-button-next svg {
  width: 9.2px;
  height: 16px;
  fill: #fff;
}
.page .Products_slider .swiper-button-prev::after{
  content: none;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  left: 12px;
  top: calc(50% - 6.5px);
}
.page .Products_slider .swiper-button-next::after {
  content: none;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: calc(50% - 6.5px);
}
.page .Products_slider .swiper-button-prev {
  left: 10px;
}
.page .Products_slider .swiper-button-next {
  right: 10px;
}
.page .Products_slider .swiper-button-disabled {
  background-color: #999;
  opacity: 0.5;
}
.page .Product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 136px;
  height: auto;
}
.page .Product_lower {
  min-height: 70px;
}
.page .Product_img {
  aspect-ratio: 29/49;
}
.page .Product_name {
  text-align: center;
  margin-top: 8px;
}
.page .Product_price {
  text-align: center;
  line-height: 1;
  margin-top: 8px;
}
.page .Product_price s {
  display: block;
  font-size: 12px;
}
.page .Product_price span {
  display: block;
  margin-top: 5px;
  color: #f00;
}
.page .Product_price.-soldout {
  color: #f00;
}
.page .Product .Button.-detail {
  margin-top: 8px;
}
.page .QA {
  background-color: #f5f5f5;
  padding: 60px 0;
}
.page .QA_title {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  color: #a68d4b;
}
.page .QA_titleEn {
  display: block;
  font-size: 18px;
  font-weight: 600;
}
.page .QA_titleJa {
  display: block;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.286;
  margin-top: 20px;
}
.page .QA_item {
  position: relative;
  margin-top: 12px;
}
.page .QA_item:nth-child(n+2) {
  margin-top: 40px;
}
.page .QA_no {
  display: block;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 600 !important;
  color: #a68d4b;
  padding-left: 40px;
  margin-left: -20px;
  margin-bottom: 20px;
}
.page .QA_no::before {
  content: "";
  width: 32px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #a68d4b;
}
.page .QA_q {
  font-size: 14px;
  font-weight: 700 !important;
  line-height: 1.714;
}
.page .QA_a {
  text-align: justify;
  font-size: 14px;
  line-height: 1.714;
  margin-top: 20px;
}
.page .QA_imgContainer {
  display: flex;
  gap: 15px;
  margin-top: 32px;
}
.page .QA_img {
  width: 160px !important;
  aspect-ratio: 1/1;
}
.page .QA_buttonContainer {
  margin-top: 40px;
}
.page .QA .Button {
  height: 60px;
}
.page .QA .Button + .Button {
  margin-top: 20px;
}
.page .QA .Button.-stroke {
  border-radius: 0;
}
.page .QA .Button svg {
  width: 8px;
  height: 14px;
  right: 20px;
}
.page .theme-ladies-ceremony {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}
.page .theme-ladies-ceremony *,
.page .theme-ladies-ceremony ::before,
.page .theme-ladies-ceremony ::after {
  box-sizing: border-box;
}
.page .theme-ladies-ceremony img {
  width: 100%;
  height: auto;
}
.page .theme-ladies-ceremony [data-lazy] {
  opacity: 0;
}
.page .theme-ladies-ceremony [data-lazy].-loaded {
  opacity: 1;
  transition: opacity 0.5s;
}
.page .theme-ladies-ceremony span,
.page .theme-ladies-ceremony em {
  vertical-align: baseline;
  font-weight: inherit;
}