@charset "UTF-8";
@keyframes zooming {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes elastic {
  0% {
    transform: scale(0);
  }
  16% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(0.9);
  }
  44% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes wave {
  0% {
    transform: translate3d(0, calc(5 * var(--base)), 0);
  }
  100% {
    transform: translate3d(0, calc(-5 * var(--base)), 0);
  }
}
@keyframes scaling {
  0% {
    transform: scale(0);
  }
  25% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes elastic {
  0% {
    transform: scale(0);
  }
  16% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(0.9);
  }
  44% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.page .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.page .block {
  display: block;
}
.page .hidden {
  display: none;
}
.page .-store {
  display: block;
}
.page .FadeSlideUp {
  opacity: 0;
  transform: translate3d(0, calc(20 * var(--base)), 0);
}
.page .FadeSlideUp.-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1s, transform 1s;
}
.page .FadeSlideDown {
  opacity: 0;
  transform: translate3d(0, calc(-20 * var(--base)), 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 > * {
  transform: translate3d(0, 100%, 0);
}
.page .SlideUp.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.page .SlideLeft {
  overflow: hidden;
}
.page .SlideLeft > * {
  transform: translate3d(100%, 0, 0);
}
.page .SlideLeft.-active > * {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.page .OverlaySlideLeft {
  position: relative;
  overflow: hidden;
}
.page .OverlaySlideLeft::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.page .OverlaySlideLeft.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(-100%, 0, 0);
}
.page .OverlaySlideRight {
  position: relative;
  overflow: hidden;
}
.page .OverlaySlideRight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  z-index: 9;
}
.page .OverlaySlideRight.-active::before {
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translate3d(100%, 0, 0);
}
.page .SplitSlideUp {
  display: block;
  overflow: hidden;
}
.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 .SplitSlideUp.-active > span {
  transition: transform 0.4s;
  transform: translate3d(0, 0, 0);
}
.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;
}
.page .Biziraku {
  padding: 40px 0;
}
.page .Biziraku .Button {
  width: calc(100% - calc(40 * var(--base)));
}
.page .Biziraku_inner {
  position: relative;
}
.page .Biziraku_img {
  aspect-ratio: 0.7071960298;
}
.page .BG {
  width: calc((100vw - 487.5px) * 0.6496);
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
  pointer-events: none;
}
.page .BG_img {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.page [data-waypoint-current=kv] .BG_img.-pink {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=kv] .BG_img.-suit5 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=pink] .BG_img.-pink {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=pink] .BG_img.-suit5 {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=blue] .BG_img.-blue {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=beige] .BG_img.-beige {
  visibility: visible;
  opacity: 1 !important;
}
.page [data-waypoint-current=black] .BG_img.-black {
  visibility: visible;
  opacity: 1 !important;
}
.page .Button {
  display: grid;
  place-content: center;
  width: 65%;
  height: calc(60 * var(--base));
  position: relative;
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  margin: 0 auto;
}
.page .Button.-fill {
  color: #fff;
  background-color: #f49299;
}
.page .Button.-fill svg {
  fill: #fff;
}
.page .Button.-stroke {
  color: #a68d4b;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #a68d4b;
  border-radius: calc(5 * var(--base));
}
.page .Button.-stroke svg {
  fill: #a68d4b;
}
.page .Button.-next svg {
  width: calc(5 * var(--base));
  height: calc(10 * var(--base));
  position: absolute;
  top: 0;
  right: calc(16 * var(--base));
  bottom: 0;
  margin: auto;
}
.page .Button.-down svg {
  width: calc(13 * var(--base));
  height: calc(7 * var(--base));
  position: absolute;
  top: 0;
  right: calc(15 * var(--base));
  bottom: 0;
  margin: auto;
  fill: #000;
}
.page .Button.-up svg {
  width: calc(13 * var(--base));
  height: calc(7 * var(--base));
  position: absolute;
  top: 0;
  right: calc(15 * var(--base));
  bottom: 0;
  margin: auto;
  fill: #000;
  transform: rotate(180deg);
}
.page .Button.-cart {
  height: calc(38 * var(--base));
  font-size: calc(12 * var(--base));
  border: none;
  border-radius: calc(5 * var(--base));
}
.page .Button.-detail {
  height: calc(40 * var(--base));
  border-radius: calc(5 * var(--base));
}
.page .Button.-list {
  border-radius: calc(8 * var(--base));
}
.page .Button.-size {
  border-radius: calc(8 * var(--base));
}
.page .Button.-roundedFull {
  border-radius: calc(99 * var(--base));
}
.page .Campaign {
  margin-top: calc(40 * var(--base));
}
.page .Campaign_title {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: nowrap;
  margin-bottom: calc(8 * var(--base));
}
.page .Campaign_link {
  display: block;
}
.page .Campaign_img {
  aspect-ratio: 2.4632352941;
}
.page .CollectionSection {
  padding-top: calc(40 * var(--base));
  padding-bottom: calc(60 * var(--base));
}
.page .CollectionSection_title {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 700;
}
.page .CollectionSection_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: calc(20 * var(--base));
  margin-top: calc(20 * var(--base));
}
.page .Collection_img {
  aspect-ratio: 0.7857142857;
}
.page .Collection_link {
  display: block;
}
.page .CoordinateSection {
  padding: calc(60 * var(--base)) 0;
  overflow-x: hidden;
  background-color: #f2f2f2;
}
.page .Coordinate {
  margin-top: calc(12 * var(--base));
}
.page .Coordinate_titleHolder {
  width: calc(238 * var(--base));
  position: relative;
  z-index: 2;
  opacity: 0;
}
.page .Coordinate_titleHolder.-left {
  margin-left: calc(-44 * var(--base));
  margin-bottom: calc(-28 * var(--base));
  transform: translate3d(calc(48 * var(--base)), calc(-16 * var(--base)), 0);
}
.page .Coordinate_titleHolder.-right {
  margin-left: auto;
  margin-right: calc(-44 * var(--base));
  margin-bottom: calc(-28 * var(--base));
  transform: translate3d(calc(-48 * var(--base)), calc(-16 * var(--base)), 0);
}
.page .Coordinate_titleHolder.-active {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.page .Coordinate_title {
  aspect-ratio: 2.3498759305;
}
.page .Coordinate_slider {
  position: relative;
  padding-bottom: calc(18 * var(--base));
  margin: 0 calc(-20 * var(--base));
}
.page .Coordinate_slider .swiper-button-prev {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(181 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  left: calc(20 * var(--base));
}
.page .Coordinate_slider .swiper-button-prev svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-right: calc(2 * var(--base));
}
.page .Coordinate_slider .swiper-button-prev::after {
  content: none!important;
}
.page .Coordinate_slider .swiper-button-next {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(181 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  right: calc(20 * var(--base));
}
.page .Coordinate_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-left: calc(2 * var(--base));
}
.page .Coordinate_slider .swiper-button-next::after {
  content: none!important;
}
.page .Coordinate_slider .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--base));
  bottom: 0;
}
.page .Coordinate_slider .swiper-pagination-bullet {
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
}
.page .Coordinate_slider .swiper-pagination-bullet-active {
  background-color: #61c2b5!important;
}
.page .Coordinate_img {
  aspect-ratio: 0.75;
}
.page .Coordinate_def {
  margin: calc(16 * var(--base)) calc(20 * var(--base)) 0;
}
.page .Coordinate_def + .Coordinate_def {
  margin-top: calc(8 * var(--base));
}
.page .Coordinate_defKey {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  color: #61c2b5;
}
.page .Coordinate_list {
  margin-top: calc(8 * var(--base));
  border-bottom: calc(1 * var(--base)) dotted #b3b3b3;
}
.page .Coordinate_item {
  display: flex;
  align-items: center;
  gap: calc(4 * var(--base));
  padding: calc(8 * var(--base)) 0;
  border-top: calc(1 * var(--base)) dotted #b3b3b3;
}
.page .Coordinate_name {
  width: calc(64 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  white-space: nowrap;
}
.page .Coordinate_price {
  flex: 1;
  font-size: calc(14 * var(--base));
  font-weight: 600;
}
.page .Coordinate_price s {
  font-size: calc(11 * var(--base));
  font-weight: 600;
}
.page .Coordinate_price em {
  margin-left: calc(4 * var(--base));
  font-weight: 600;
  color: #c00;
}
.page .Coordinate_price span {
  font-size: calc(12 * var(--base));
  font-weight: 600;
}
.page .Coordinate_link {
  display: grid;
  place-content: center;
  width: calc(80 * var(--base));
  height: calc(32 * var(--base));
  position: relative;
  font-size: calc(12 * var(--base));
  line-height: 1;
  letter-spacing: 0;
  padding-right: calc(4 * var(--base));
}
.page .Coordinate_link span {
  font-weight: 600;
}
.page .Coordinate_link svg {
  width: calc(4 * var(--base));
  height: calc(8 * var(--base));
  position: absolute;
  top: 0;
  right: calc(8 * var(--base));
  bottom: 0;
  margin: auto;
}
.page .Coordinate_link.-navy {
  color: #fff;
  background-color: #474a66;
}
.page .Coordinate_link.-navy svg {
  fill: #fff;
}
.page .Coordinate_link.-gray {
  color: #fff;
  background-color: #8a8e99;
}
.page .Coordinate_link.-gray svg {
  fill: #fff;
}
.page .Coordinate_link.-blue {
  color: #333;
  background-color: #98b3d9;
}
.page .Coordinate_link.-blue svg {
  fill: #333;
}
.page .Coordinate_link.-lightGreen {
  width: calc(120 * var(--base));
  color: #333;
  background-color: #9fc7c7;
}
.page .Coordinate_link.-lightGreen svg {
  fill: #333;
}
.page .Coordinate_link.-comingSoon {
  padding-right: 0;
  font-size: calc(11 * var(--base));
  white-space: nowrap;
}
.page .Holder {
  width: calc(375 * var(--base));
  position: relative;
  z-index: 2;
  /* margin: -509px 0 0 calc((100vw - 487.5px) * 0.6492); */
  margin: 0 0 0 calc((100vw - 487.5px)* 0.6492);
  background-color: #fff;
}
.page .Inner {
  position: relative;
  padding-right: calc(20 * var(--base));
  padding-left: calc(20 * var(--base));
  margin-right: auto;
  margin-left: auto;
}
.page .Instagram {
  padding: calc(40 * var(--base)) 0;
}
.page .Instagram_title {
  text-align: center;
  font-size: calc(17 * var(--base));
  font-weight: 600;
}
.page .Instagram_body {
  margin: calc(16 * var(--base)) calc(20 * var(--base)) 0;
}
.page .Instagram_link {
  display: block;
}
.page .Instagram_bnr {
  aspect-ratio: 2.7334851936;
}
.page .Instagram_accountHolder {
  margin-top: calc(40 * var(--base));
}
.page .Instagram_account {
  aspect-ratio: 1;
}
.page .Instagram_notice {
  text-align: justify;
  font-size: calc(12 * var(--base));
  font-weight: 600;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: calc(8 * var(--base));
}
.page .IntroSection {
  padding: calc(40 * var(--base)) 0 calc(8 * var(--base));
  font-family: "Noto Serif JP", serif;
}
.page .Intro_text {
  position: relative;
  text-align: center;
}
.page .Intro_text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(1 * var(--base));
  height: calc(29 * var(--base));
  background-color: #333;
  transform: rotate(-45deg);
  z-index: 3;
}
.page .Intro_text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(1 * var(--base));
  height: calc(29 * var(--base));
  background-color: #f49299;
  transform: rotate(45deg);
  z-index: 2;
}
.page .Intro_text p {
  font-size: calc(17.5 * var(--base));
  font-weight: 600;
  font-style: italic;
}
.page .Intro_text p:nth-child(n+2) {
  margin-top: calc(32 * var(--base));
}
.page .Intro_text em {
  font-weight: 600;
  font-style: italic;
  color: #f49299;
}
.page .Intro_title {
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  margin-top: calc(32 * var(--base));
}
.page .Intro_title span {
  position: relative;
  z-index: 1;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  vertical-align: calc(-2 * var(--base)) !important;
  color: #fff;
  margin: 0 calc(9 * var(--base));
}
.page .Intro_title svg {
  fill: #f49299;
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(-7 * var(--base));
  margin: auto;
  z-index: -1;
}
.page .Intro_title em {
  display: block;
  font-size: calc(26 * var(--base));
  font-weight: 600;
  color: #f49299;
}
.page .KV {
  height: calc(375 * var(--base));
  position: relative;
  z-index: 1;
  background-color: #98d0c8;
  overflow: hidden;
}
.page .KV.-v1 .KV_img:nth-child(2) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v1 .KV_img:nth-child(3) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v1 .KV_img:nth-child(4) {
  transform: rotate(20deg);
}
.page .KV.-v1 .KV_img:nth-child(5) {
  transform: scale(0);
  transform-origin: 13.802% 13.802%;
}
.page .KV.-v1 .KV_img:nth-child(6) {
  transform: translate3d(8%, 0, 0);
}
.page .KV.-v1 .KV_img:nth-child(7) {
  transform: translate3d(-8%, 0, 0);
}
.page .KV.-v1 .KV_img:nth-child(8) {
  transform: rotate(-45deg);
  transform-origin: 73.438% 85.286%;
}
.page .KV.-v1 .KV_img:nth-child(9) {
  transform: translate3d(8%, -1%, 0);
}
.page .KV.-v2 .KV_img:nth-child(2) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v2 .KV_img:nth-child(3) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v2 .KV_img:nth-child(4) {
  transform: rotate(20deg);
}
.page .KV.-v2 .KV_img:nth-child(5) {
  transform: scale(0);
  transform-origin: 13.802% 13.802%;
}
.page .KV.-v2 .KV_img:nth-child(6) {
  transform: translate3d(8%, 0, 0);
}
.page .KV.-v2 .KV_img:nth-child(7) {
  transform: translate3d(-8%, 0, 0);
}
.page .KV.-v2 .KV_img:nth-child(8) {
  transform: rotate(-45deg);
  transform-origin: 73.438% 85.286%;
}
.page .KV.-v3 .KV_img:nth-child(2) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v3 .KV_img:nth-child(3) {
  transform: translate3d(0, 10%, 0);
}
.page .KV.-v3 .KV_img:nth-child(4) {
  transform: rotate(20deg);
}
.page .KV.-v3 .KV_img:nth-child(5) {
  transform: scale(0);
  transform-origin: 13.802% 13.802%;
}
.page .KV.-v3 .KV_img:nth-child(6) {
  transform: translate3d(8%, 0, 0);
}
.page .KV.-v3 .KV_img:nth-child(7) {
  transform: translate3d(-8%, 0, 0);
}
.page .KV_img {
  display: block;
  aspect-ratio: 1;
  -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.-active.-v1 .KV_img {
  opacity: 1;
}
.page .KV.-active.-v1 .KV_img:nth-child(2) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.2s;
}
.page .KV.-active.-v1 .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.4s;
}
.page .KV.-active.-v1 .KV_img:nth-child(4) {
  transform: rotate(0deg);
  transition: 0.6s;
  transition-delay: 0.6s;
}
.page .KV.-active.-v1 .KV_img:nth-child(5) {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.8s;
}
.page .KV.-active.-v1 .KV_img:nth-child(6) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1s;
}
.page .KV.-active.-v1 .KV_img:nth-child(7) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.2s;
}
.page .KV.-active.-v1 .KV_img:nth-child(8) {
  transform: rotate(0deg);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 1.4s;
}
.page .KV.-active.-v1 .KV_img:nth-child(9) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.6s;
}
.page .KV.-active.-v2 .KV_img {
  opacity: 1;
}
.page .KV.-active.-v2 .KV_img:nth-child(2) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.2s;
}
.page .KV.-active.-v2 .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.4s;
}
.page .KV.-active.-v2 .KV_img:nth-child(4) {
  transform: rotate(0deg);
  transition: 0.6s;
  transition-delay: 0.6s;
}
.page .KV.-active.-v2 .KV_img:nth-child(5) {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.8s;
}
.page .KV.-active.-v2 .KV_img:nth-child(6) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1s;
}
.page .KV.-active.-v2 .KV_img:nth-child(7) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.2s;
}
.page .KV.-active.-v2 .KV_img:nth-child(8) {
  transform: rotate(0deg);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 1.4s;
}
.page .KV.-active.-v3 .KV_img {
  opacity: 1;
}
.page .KV.-active.-v3 .KV_img:nth-child(2) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.2s;
}
.page .KV.-active.-v3 .KV_img:nth-child(3) {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  transition-delay: 0.4s;
}
.page .KV.-active.-v3 .KV_img:nth-child(4) {
  transform: rotate(0deg);
  transition: 0.6s;
  transition-delay: 0.6s;
}
.page .KV.-active.-v3 .KV_img:nth-child(5) {
  transform: scale(1);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.8s;
}
.page .KV.-active.-v3 .KV_img:nth-child(6) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1s;
}
.page .KV.-active.-v3 .KV_img:nth-child(7) {
  transform: translate3d(0, 0, 0);
  transition: 0.6s;
  transition-delay: 1.2s;
}
.page .KV_notice {
  text-align: center;
  font-size: calc(11 * var(--base));
  font-weight: 600;
  margin-top: calc(4 * var(--base));
}
.page .LeftMenu {
  width: 360px;
  height: 528px;
  position: fixed;
  top: calc(50vh - 166px);
  left: calc((100vw - 487.5px) * 0.3246 - 180px);
  z-index: 11;
}
.page .LeftMenu_text {
  position: relative;
  text-align: center;
}
.page .LeftMenu_text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5px;
  height: 38px;
  background-color: #333;
  transform: rotate(-45deg);
  z-index: 3;
}
.page .LeftMenu_text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5px;
  height: 38px;
  background-color: #f49299;
  transform: rotate(45deg);
  z-index: 2;
}
.page .LeftMenu_text p {
  font-size: 23px;
  font-weight: 600;
  font-style: italic;
  white-space: nowrap;
}
.page .LeftMenu_text p:nth-child(n+2) {
  margin-top: 48px;
}
.page .LeftMenu_text em {
  font-weight: 600;
  font-style: italic;
  color: #f49299;
}
.page .LeftMenu_title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 48px;
  margin-bottom: 48px;
}
.page .LeftMenu_title span {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  vertical-align: -2px !important;
  color: #fff;
  margin: 0 13px;
}
.page .LeftMenu_title svg {
  fill: #f49299;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -11px;
  margin: auto;
  z-index: -1;
}
.page .LeftMenu_title em {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: #f49299;
}
.page .LeftMenu_def {
  margin-top: 32px;
}
.page .LeftMenu_defKey {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.page .LeftMenu_list {
  display: grid;
  grid-template-columns: repeat(2, 128px);
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.page .LeftMenu_link {
  display: block;
  border-radius: 8px;
}
.page .LeftMenu_name {
  display: grid;
  place-content: center;
  height: 29px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: 8px 8px 0 0;
  transition: background-color 0.4s;
}
.page .LeftMenu_img {
  border-radius: 0 0 8px 8px;
  transition: opacity 0.4s;
}
.page .Lineup_voice {
  position: relative;
  padding-bottom: calc(54 * var(--base));
  margin-bottom: calc(40 * var(--base));
}
.page .Lineup_voiceTitle {
  width: calc(247 * var(--base));
  position: relative;
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  background-color: #ddf0f0;
  border-radius: calc(8 * var(--base));
  padding: calc(20 * var(--base));
  margin: auto;
}
.page .Lineup_voiceTitle em {
  font-weight: 600;
  color: #61c2b5;
}
.page .Lineup_voiceTitle::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  border-style: solid;
  border-width: calc(16 * var(--base)) calc(10 * var(--base)) 0 calc(10 * var(--base));
  border-color: #ddf0f0 transparent transparent transparent;
}
.page .Lineup_voiceIcon {
  display: grid;
  place-content: center;
  width: calc(40 * var(--base));
  height: calc(40 * var(--base));
  position: absolute;
  top: calc(-20 * var(--base));
  right: 0;
  left: 0;
  margin: auto;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
}
.page .Lineup_voiceIcon svg {
  width: calc(23 * var(--base));
  height: calc(23 * var(--base));
  fill: #fff;
}
.page .Lineup_voiceQuestion {
  position: relative;
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  margin-top: calc(32 * var(--base));
}
.page .Lineup_voiceQuestion::before {
  content: "";
  width: calc(1 * var(--base));
  height: calc(60 * var(--base));
  position: absolute;
  top: 0;
  background-color: #333;
  transform-origin: top;
  left: 0;
  transform: rotate(-30deg);
}
.page .Lineup_voiceQuestion::after {
  content: "";
  width: calc(1 * var(--base));
  height: calc(60 * var(--base));
  position: absolute;
  top: 0;
  background-color: #333;
  transform-origin: top;
  right: 0;
  transform: rotate(30deg);
}
.page .Lineup_voiceNext {
  width: calc(35 * var(--base));
  height: calc(32 * var(--base));
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  fill: #61c2b5;
  animation: wave 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}
.page .Lineup_title {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.6;
  margin: calc(40 * var(--base)) 0 calc(16 * var(--base));
}
.page .Lineup_title span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(89 * var(--base));
  height: calc(24 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
  margin-right: calc(8 * var(--base));
  vertical-align: calc(3 * var(--base)) !important;
}
.page .Lineup_title em {
  display: block;
  font-size: calc(24 * var(--base));
  font-weight: 600;
}
.page .Lineup_slider {
  position: relative;
  padding-bottom: calc(18 * var(--base));
  margin: 0 calc(-20 * var(--base));
}
.page .Lineup_slider .swiper-button-prev {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(180.5 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  left: calc(20 * var(--base));
}
.page .Lineup_slider .swiper-button-prev svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-right: calc(2 * var(--base));
}
.page .Lineup_slider .swiper-button-prev::after {
  content: none!important;
}
.page .Lineup_slider .swiper-button-next {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(180.5 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  right: calc(20 * var(--base));
}
.page .Lineup_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-left: calc(2 * var(--base));
}
.page .Lineup_slider .swiper-button-next::after {
  content: none!important;
}
.page .Lineup_slider .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--base));
  bottom: 0;
}
span.swiper-pagination-bullet {
  display: block!important;
  width: 8px!important;
  height: 8px!important;
  padding: 0!important;
  font-size: 0!important;
  background: none!important;
  border: none!important;
  border-radius: 100%!important;
  background: #000!important;
  opacity: .2!important;
}
.page .Lineup_slider .swiper-pagination-bullet {
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
}
.page .Lineup_slider .swiper-pagination-bullet-active {
  background-color: #61c2b5!important;
  opacity: 1!important;
}
.page .Lineup_img {
  aspect-ratio: 0.75;
}
.page .Lineup_mainImgHolder {
  margin: calc(16 * var(--base)) calc(20 * var(--base));
  overflow: hidden;
}
.page .Lineup_mainImg {
  aspect-ratio: 0.75;
}
.page .Lineup_name {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.5;
  margin-top: calc(16 * var(--base));
}
.page .Lineup_text {
  padding: calc(16 * var(--base)) 0;
  text-align: justify;
  font-family: "Noto Serif JP", serif;
  border-width: calc(1 * var(--base)) 0;
  border-style: solid;
  border-color: #b3b3b3;
}
.page .Lineup_pattern {
  margin-top: calc(24 * var(--base));
}
.page .Lineup_patternImgHolder {
  display: grid;
  grid-template-columns: repeat(2, calc(80 * var(--base)));
  justify-content: center;
  gap: calc(40 * var(--base));
}
.page .Lineup_patternImg {
  aspect-ratio: 0.7547169811;
}
.page .Lineup_patternText {
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  color: #61c2b5;
  margin-top: 50px;
}
.page .Lineup_productList {
  margin: calc(16 * var(--base)) calc(20 * var(--base)) 0;
  border-bottom: calc(1 * var(--base)) dotted #b3b3b3;
}
.page .Lineup_productItem {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--base));
  padding: calc(12 * var(--base)) 0;
  border-top: calc(1 * var(--base)) dotted #b3b3b3;
}
.page .Lineup_productData {
  flex: 1;
  line-height: 1;
}
.page .Lineup_productName {
  font-size: calc(12 * var(--base));
  font-weight: 600;
}
.page .Lineup_productPrice {
  font-size: calc(14 * var(--base));
  font-weight: 600;
  margin-top: calc(4 * var(--base));
}
.page .Lineup_productPrice s {
  font-size: calc(10 * var(--base));
}
.page .Lineup_productPrice em {
  margin-left: calc(4 * var(--base));
  font-size: calc(13 * var(--base));
  color: #c00;
}
.page .Lineup_productPrice span {
  font-size: calc(12 * var(--base));
  font-weight: 600;
}
.page .Lineup_productLink {
  display: grid;
  place-content: center;
  width: calc(79 * var(--base));
  height: calc(32 * var(--base));
  position: relative;
  font-size: calc(12 * var(--base));
  line-height: 1;
  letter-spacing: 0;
  padding-right: calc(4 * var(--base));
}
.page .Lineup_productLink span {
  font-weight: 600;
}
.page .Lineup_productLink svg {
  width: calc(4 * var(--base));
  height: calc(8 * var(--base));
  position: absolute;
  top: 0;
  right: calc(8 * var(--base));
  bottom: 0;
  margin: auto;
}
.page .Lineup_productLink.-navy {
  color: #fff;
  background-color: #474a66;
}
.page .Lineup_productLink.-navy svg {
  fill: #fff;
}
.page .Lineup_productLink.-brown {
  color: #fff;
  background-color: #745336;
}
.page .Lineup_productLink.-brown svg {
  fill: #fff;
}
.page .Lineup_productLink.-blue {
  color: #333;
  background-color: #98b3d9;
}
.page .Lineup_productLink.-blue svg {
  fill: #333;
}
.page .Lineup_productLink.-lightGreen {
  width: calc(120 * var(--base));
  color: #333;
  background-color: #9fc7c7;
}
.page .Lineup_productLink.-lightGreen svg {
  fill: #333;
}
.page .Lineup_productLink.-comingSoon {
  padding-right: 0;
  font-size: calc(11 * var(--base));
  white-space: nowrap;
}
.page .Lineup_data {
  margin: calc(4 * var(--base)) calc(20 * var(--base)) 0;
  letter-spacing: 0.03em;
}
.page .Lineup_data.-size {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--base));
}
.page .Lineup_data.-size .Lineup_dataValue {
  display: flex;
  justify-content: space-between;
  gap: calc(5 * var(--base));
  flex: 1;
}
.page .Lineup_data.-off {
  padding-bottom: calc(14 * var(--base));
}
.page .Lineup_dataKey {
  font-size: calc(14 * var(--base));
  font-weight: 600;
}
.page .Lineup_size {
  font-size: calc(18 * var(--base));
  font-weight: 600;
}
.page .Lineup_line {
  flex: 1;
  position: relative;
}
.page .Lineup_line::before {
  content: "";
  width: 100%;
  height: calc(1 * var(--base));
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #333;
}
.page .Lineup_price {
  position: relative;
  font-size: calc(18 * var(--base));
  font-weight: 600;
}
.page .Lineup_price em {
  position: absolute;
  top: 90%;
  left: 0;
  line-height: 1;
  color: #c00;
}
.page .Lineup_price span {
  font-size: calc(14 * var(--base));
  font-weight: 600;
  vertical-align: calc(2 * var(--base)) !important;
}
.page .Lineup_price.-suit em {
  left: calc(43 * var(--base));
}
.page .Lineup_colorTitle {
  width: calc(247 * var(--base));
  position: relative;
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  padding: calc(12 * var(--base)) 0 calc(16 * var(--base));
  margin: calc(16 * var(--base)) auto calc(4 * var(--base));
  background-color: #ddf0f0;
  border-radius: calc(8 * var(--base));
}
.page .Lineup_colorTitle::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  border-style: solid;
  border-width: calc(16 * var(--base)) calc(10 * var(--base)) 0 calc(10 * var(--base));
  border-color: #ddf0f0 transparent transparent transparent;
}
.page .Lineup_colorTitle em {
  color: #61c2b5;
  font-weight: 600;
}
.page .Lineup_colorTitle span {
  font-size: calc(18 * var(--base));
  font-weight: 600;
}
.page .Lineup_colors {
  display: flex;
  gap: calc(8 * var(--base));
  margin-top: calc(4 * var(--base));
}
.page .Lineup_colorLink {
  display: grid;
  place-content: center;
  position: relative;
  width: calc(79 * var(--base));
  height: calc(32 * var(--base));
  padding-right: calc(8 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1;
}
.page .Lineup_colorLink svg {
  width: calc(4 * var(--base));
  height: calc(8 * var(--base));
  position: absolute;
  top: 0;
  right: calc(8 * var(--base));
  bottom: 0;
  margin: auto;
  fill: #333;
}
.page .Lineup_colorLink.-blue {
  background-color: #98b3d9;
}
.page .Lineup_colorLink.-ivory {
  background-color: #e6e3da;
}
.page .Lineup_colorLink.-lightGreen {
  background-color: #9fc7c7;
  width: calc(121 * var(--base));
}
.page .Lineup_colorLink.-comingSoon {
  padding-right: 0;
}
.page .Lineup_notice {
  text-indent: -1em;
  padding-left: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: calc(12 * var(--base));
  line-height: 1.5;
  margin: calc(4 * var(--base)) 0 0 calc(57 * var(--base));
}
.page .Lineup_notice::before {
  content: "※";
}
.page .Loading {
  --base: 1.3px;
  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: calc(160 * var(--base));
}
.page .Loading_items {
  display: flex;
  margin: calc(16 * var(--base)) auto 0;
  gap: calc(7 * var(--base));
}
.page .Loading_item {
  width: calc(7 * var(--base));
  height: calc(7 * var(--base));
  background-color: #f7b4b4;
  border-radius: calc(99 * var(--base));
  transform: scale(0);
  animation: scaling 2s infinite;
}
.page .Loading_item:nth-child(1) {
  background-color: #f3a566;
}
.page .Loading_item:nth-child(2) {
  background-color: #e85183;
  animation-delay: 0.1s;
}
.page .Loading_item:nth-child(3) {
  background-color: #584093;
  animation-delay: 0.2s;
}
.page .Loading_item.-inactive {
  animation: none;
}
.page .Menu {
  width: 100%;
  position: sticky;
  top: -1px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
}
.page .Menu.-active {
  transition: 0.4s;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  width: 488px;
  position: fixed;
  top: 122px;
}
.page .Menu_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page .Menu_link {
  display: grid;
  place-content: center;
  height: calc(32 * var(--base));
  position: relative;
  font-size: calc(12 * var(--base));
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  cursor: pointer;
  transition: 0.4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .Menu_link::before {
  content: "";
  width: calc(52 * var(--base));
  height: calc(2 * var(--base));
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #61c2b5;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page .Menu_link span {
  font-weight: 600;
}
.page .Menu_link.-active {
  color: #333;
  background-color: #fff;
  pointer-events: none;
}
.page .Menu_link.-active::before {
  transform: scaleX(1);
}
.page .Modal {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483650;
  background-color: rgba(0, 0, 0, 0.75);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.6s, opacity 0.6s;
}
.page .Modal.-active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.page .Modal_inner {
  width: calc(295 * var(--base));
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: calc(8 * var(--base));
}
.page .Modal_contents {
  display: none;
}
.page .Modal_contents.-active {
  display: block;
}
.page .Modal_close {
  width: calc(32 * var(--base));
  height: 0;
  padding-top: calc(32 * var(--base));
  position: absolute;
  top: calc(-8 * var(--base));
  right: calc(-8 * var(--base));
  z-index: 2;
  overflow: hidden;
  background-color: #9b7d61;
  border: none;
  border-radius: calc(99 * var(--base));
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .Modal_close::before {
  content: "";
  width: calc(16 * var(--base));
  height: calc(3 * var(--base));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  transform: rotate(45deg);
}
.page .Modal_close::after {
  content: "";
  width: calc(16 * var(--base));
  height: calc(3 * var(--base));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  transform: rotate(-45deg);
}
.page .Modal_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .Point {
  padding: calc(40 * var(--base)) calc(20 * var(--base));
}
.page .Point_list {
  counter-reset: point;
}
.page .Point_item {
  counter-increment: point;
  position: relative;
}
.page .Point_item + .Point_item {
  margin-top: calc(40 * var(--base));
}
.page .Point_item:nth-child(odd) {
  padding: calc(28 * var(--base)) 0 0 calc(12 * var(--base));
}
.page .Point_item:nth-child(odd) .Point_no {
  left: 0;
}
.page .Point_item:nth-child(odd) .Point_def {
  flex-direction: row-reverse;
}
.page .Point_item:nth-child(even) {
  padding: calc(28 * var(--base)) calc(12 * var(--base)) 0 0;
}
.page .Point_item:nth-child(even) .Point_no {
  right: 0;
}
.page .Point_item.-narrow {
  margin-top: calc(16 * var(--base));
}
.page .Point_item.-functions {
  padding-left: calc(12 * var(--base));
  padding-right: calc(12 * var(--base));
}
.page .Point_item.-functions .Point_no {
  left: calc(29 * var(--base));
}
.page .Point_item.-functions .Point_def {
  display: block;
}
.page .Point_item.-functions .Point_head {
  margin: 0 calc(30 * var(--base));
}
.page .Point_item.-functions .Point_title {
  writing-mode: initial;
  text-orientation: initial;
  text-align: center;
  font-size: calc(14 * var(--base));
  margin-top: calc(16 * var(--base));
}
.page .Point_item.-functions .Point_title em {
  font-size: calc(24 * var(--base));
  margin-top: calc(8 * var(--base));
}
.page .Point_item.-functions .Point_body {
  width: 100%;
}
.page .Point_no {
  width: calc(64 * var(--base));
  height: calc(64 * var(--base));
  position: absolute;
  top: 0;
  z-index: 2;
  text-align: center;
  padding-top: calc(16 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
  transform: scale(0);
}
.page .Point_no::after {
  content: counter(point);
  display: block;
  font-size: calc(24 * var(--base));
}
.page .Point_no.-active {
  animation: elastic 1.5s both;
}
.page .Point_def {
  display: flex;
  gap: calc(20 * var(--base));
}
.page .Point_titleHolder {
  width: calc(50 * var(--base));
  position: relative;
  overflow: hidden;
}
.page .Point_titleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}
.page .Point_titleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}
.page .Point_titleHolder.-active.-horizontal::before {
  transform: translate3d(100%, 0, 0);
}
.page .Point_titleHolder.-horizontal {
  width: 100%;
}
.page .Point_title {
  position: relative;
  writing-mode: vertical-lr;
  text-orientation: upright;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.page .Point_title em {
  display: block;
  font-size: calc(24 * var(--base));
  font-weight: 600;
  color: #61c2b5;
  margin-right: calc(8 * var(--base));
}
.page .Point_icon {
  display: block;
  width: calc(50 * var(--base)) !important;
  height: calc(50 * var(--base)) !important;
  margin-top: calc(8 * var(--base));
  aspect-ratio: 1;
}
.page .Point_body {
  width: calc(213 * var(--base));
}
.page .Point_text {
  text-align: justify;
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1.666;
  letter-spacing: 0;
  margin-top: calc(12 * var(--base));
}
.page .Point_text + .Point_text {
  margin-top: 1.25em;
}
.page .Point_imgHolder {
  overflow: hidden;
}
.page .Point_img {
  aspect-ratio: 1.4159292035;
}
.page .Point_function {
  display: flex;
  gap: calc(22 * var(--base));
  margin-top: calc(32 * var(--base));
}
.page .Point_function:nth-child(odd) {
  flex-direction: row-reverse;
}
.page .Point_functionTitleHolder {
  width: calc(36 * var(--base));
  position: relative;
  overflow: hidden;
}
.page .Point_functionTitleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}
.page .Point_functionTitleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}
.page .Point_functionTitle {
  writing-mode: vertical-lr;
  font-size: calc(30 * var(--base));
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #61c2b5;
  margin-top: calc(1 * var(--base));
}
.page .Point_functionBody {
  width: calc(213 * var(--base));
}
.page .Point_functionImgHolder {
  overflow: hidden;
}
.page .Point_functionImg {
  aspect-ratio: 1.4159292035;
}
.page .Point_functionDef + .Point_functionImgHolder {
  margin-top: calc(32 * var(--base));
}
.page .Point_functionName {
  display: grid;
  place-content: center;
  width: calc(124 * var(--base));
  height: calc(24 * var(--base));
  margin-top: calc(12 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #61c2b5;
  background-color: #fff;
  border-radius: calc(99 * var(--base));
}
.page .Point_functionText {
  text-align: justify;
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1.666;
  letter-spacing: 0;
  margin-top: calc(8 * var(--base));
}
.page .PointDetail {
  padding: calc(60 * var(--base)) calc(20 * var(--base)) calc(40 * var(--base));
}
.page .PointDetail + .PointDetail {
  margin-top: calc(-40 * var(--base));
}
.page .PointDetail_head {
  display: flex;
  gap: calc(20 * var(--base));
}
.page .PointDetail_titleHolder {
  width: calc(50 * var(--base));
  position: relative;
  overflow: hidden;
}
.page .PointDetail_titleHolder::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: #ddf0f0;
}
.page .PointDetail_titleHolder.-active::before {
  transition: 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translate3d(0, 100%, 0);
}
.page .PointDetail_title {
  writing-mode: vertical-rl;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.page .PointDetail_title em {
  display: block;
  font-size: calc(30 * var(--base));
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #61c2b5;
  margin-right: calc(2 * var(--base));
}
.page .PointDetail_imgHolder {
  flex: 1;
  position: relative;
  margin-right: calc(12 * var(--base));
  overflow: hidden;
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate {
  transition: 0.6s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate.-n1 {
  transition-delay: 0.2s;
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate.-n2 {
  transition-delay: 0.4s;
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate.-n3 {
  transition-delay: 0.6s;
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate.-n4 {
  transition-delay: 0.2s;
}
.page .PointDetail_imgHolder.-active .PointDetail_indicate.-n5 {
  transition-delay: 0.4s;
}
.page .PointDetail_img {
  aspect-ratio: 0.6657894737;
}
.page .PointDetail_indicate {
  display: grid;
  place-content: center;
  width: calc(40 * var(--base));
  height: calc(40 * var(--base));
  position: absolute;
  z-index: 2;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
  opacity: 0;
}
.page .PointDetail_indicate::before {
  content: "";
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
  position: absolute;
  z-index: 1;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
}
.page .PointDetail_indicate::after {
  content: "";
  width: calc(40 * var(--base));
  height: calc(1 * var(--base));
  position: absolute;
  z-index: -1;
  background-color: #61c2b5;
}
.page .PointDetail_indicate.-n1 {
  top: calc(116 * var(--base));
  right: calc(36 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}
.page .PointDetail_indicate.-n1::before {
  top: calc(-10 * var(--base));
  left: calc(-10 * var(--base));
}
.page .PointDetail_indicate.-n1::after {
  top: calc(-7 * var(--base));
  left: calc(-6 * var(--base));
  transform: rotate(45deg);
  transform-origin: top left;
}
.page .PointDetail_indicate.-n2 {
  top: calc(182 * var(--base));
  left: calc(40 * var(--base));
  transform: translate3d(calc(-16 * var(--base)), calc(16 * var(--base)), 0);
}
.page .PointDetail_indicate.-n2::before {
  top: calc(-9 * var(--base));
  right: calc(-9 * var(--base));
}
.page .PointDetail_indicate.-n2::after {
  top: calc(-6 * var(--base));
  right: calc(-5 * var(--base));
  transform: rotate(-45deg);
  transform-origin: top right;
}
.page .PointDetail_indicate.-n3 {
  top: calc(252 * var(--base));
  right: calc(28 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}
.page .PointDetail_indicate.-n3::before {
  top: calc(-17 * var(--base));
  left: calc(-7 * var(--base));
}
.page .PointDetail_indicate.-n3::after {
  top: calc(-14 * var(--base));
  left: calc(-4 * var(--base));
  transform: rotate(52deg);
  transform-origin: top left;
}
.page .PointDetail_indicate.-n4 {
  top: calc(130 * var(--base));
  right: calc(40 * var(--base));
  transform: translate3d(calc(16 * var(--base)), calc(16 * var(--base)), 0);
}
.page .PointDetail_indicate.-n4::before {
  top: calc(-13 * var(--base));
  left: calc(-8 * var(--base));
}
.page .PointDetail_indicate.-n4::after {
  top: calc(-10 * var(--base));
  left: calc(-4 * var(--base));
  transform: rotate(50deg);
  transform-origin: top left;
}
.page .PointDetail_indicate.-n5 {
  top: calc(228 * var(--base));
  left: calc(40 * var(--base));
  transform: translate3d(calc(-16 * var(--base)), calc(16 * var(--base)), 0);
}
.page .PointDetail_indicate.-n5::before {
  top: calc(-10 * var(--base));
  right: calc(-10 * var(--base));
}
.page .PointDetail_indicate.-n5::after {
  top: calc(-6 * var(--base));
  right: calc(-5 * var(--base));
  transform: rotate(-45deg);
  transform-origin: top right;
}
.page .PointDetail_intro {
  margin-top: calc(12 * var(--base));
}
.page .PointDetail_introTitle {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
}
.page .PointDetail_introText {
  text-align: justify;
  font-size: calc(12 * var(--base));
  line-height: 1.666;
  letter-spacing: 0;
}
.page .PointDetail_list {
  counter-reset: point-detail;
}
.page .PointDetail_item {
  counter-increment: point-detail;
  margin-top: calc(24 * var(--base));
}
.page .PointDetail_functionTitle {
  display: grid;
  place-content: center;
  height: calc(40 * var(--base));
  position: relative;
  padding-left: calc(36 * var(--base));
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #61c2b5;
  background-color: #fff;
  border-radius: calc(99 * var(--base));
}
.page .PointDetail_functionTitle::before {
  content: counter(point-detail);
  display: grid;
  place-content: center;
  width: calc(48 * var(--base));
  height: calc(48 * var(--base));
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: calc(24 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
}
.page .PointDetail_functionText {
  text-align: justify;
  font-size: calc(12 * var(--base));
  line-height: 1.666;
  letter-spacing: 0;
  margin-top: calc(8 * var(--base));
}
.page .RecommendSection {
  padding: calc(32 * var(--base)) 0 calc(40 * var(--base));
  background-color: #f7e8e1;
}
.page .Recommend_slider {
  position: relative;
  margin: calc(16 * var(--base)) calc(-20 * var(--base)) 0;
}
.page .Recommend_slider .swiper-container {
  padding-left: calc(12 * var(--base));
}
.page .Recommend_slider .swiper-button-prev {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(127 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #9b7d61;
  border-radius: calc(99 * var(--base));
  left: calc(20 * var(--base));
}
.page .Recommend_slider .swiper-button-prev svg {
  width: calc(9 * var(--base));
  height: calc(15 * var(--base));
  fill: #9b7d61;
  margin-right: calc(2 * var(--base));
}
.page .Recommend_slider .swiper-button-prev::after {
  content: none!important;
}
.page .Recommend_slider .swiper-button-next {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(127 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #9b7d61;
  border-radius: calc(99 * var(--base));
  right: calc(20 * var(--base));
}
.page .Recommend_slider .swiper-button-next svg {
  width: calc(9 * var(--base));
  height: calc(15 * var(--base));
  fill: #9b7d61;
  margin-left: calc(2 * var(--base));
}
.page .Recommend_slider .swiper-button-next::after {
  content: none!important;
}
.page .Recommend_slider .Button {
  height: calc(40 * var(--base));
  margin-top: calc(12 * var(--base));
}
.page .Recommend_img {
  aspect-ratio: 0.5918367347;
}
.page .SideMenu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    height: 424px;
    position: fixed;
    top: calc(50% - 115px);
    z-index: 11;
    margin-left: calc((100vw - 487.5px)* 0.8246 + 387.5px);
}
.page .SideMenu .Button {
  height: 64px;
  font-size: 16px;
}
.page .SideMenu .Button.-next svg {
  width: 6px;
  height: 12px;
  right: 16px;
}
.page .SideMenu_logo {
  display: block;
  width: 160px !important;
  height: 160px !important;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1;
}
.page .Suggest {
  padding: calc(60 * var(--base)) 0 calc(40 * var(--base));
}
.page .Suggest + .Suggest {
  position: relative;
  padding-top: calc(40 * var(--base));
}
.page .Suggest + .Suggest::before {
  content: "";
  width: calc(100% - calc(40 * var(--base)));
  height: 0;
  position: absolute;
  top: 0;
  left: calc(20 * var(--base));
  border-top: calc(1 * var(--base)) dotted #b3b3b3;
}
.page .Suggest .Button {
  margin-top: calc(32 * var(--base));
}
.page .Suggest_slider {
  position: relative;
  margin: calc(20 * var(--base)) calc(-20 * var(--base)) 0;
}
.page .Suggest_slider .swiper-container {
  padding-left: calc(16 * var(--base));
}
.page .Suggest_slider .swiper-button-prev {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(76 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  left: calc(20 * var(--base));
}
.page .Suggest_slider .swiper-button-prev svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-right: calc(2 * var(--base));
}
.page .Suggest_slider .swiper-button-prev::after {
  content: none!important;
}
.page .Suggest_slider .swiper-button-next {
  width: calc(32 * var(--base));
  height: calc(32 * var(--base));
  top: calc(76 * var(--base));
  margin-top: 0;
  background-color: #fff;
  border: calc(1 * var(--base)) solid #61c2b5;
  border-radius: calc(99 * var(--base));
  right: calc(20 * var(--base));
}
.page .Suggest_slider .swiper-button-next svg {
  width: calc(8 * var(--base));
  height: calc(16 * var(--base));
  fill: #61c2b5;
  margin-left: calc(2 * var(--base));
}
.page .Suggest_slider .swiper-button-next::after {
  content: none!important;
}
.page .Suggest_slider .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: calc(12 * var(--base));
  bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,0px)!important;
}
.page .Suggest_slider .swiper-pagination-bullet {
  width: calc(6 * var(--base));
  height: calc(6 * var(--base));
}
.page .Suggest_slider .swiper-pagination-bullet-active {
  background-color: #61c2b5;
}
.page .Suggest_img {
  aspect-ratio: 0.75;
}
.page .Suggest_link {
  display: grid;
  place-content: center;
  width: calc(80 * var(--base));
  height: calc(32 * var(--base));
  position: relative;
  font-size: calc(12 * var(--base));
  line-height: 1;
  letter-spacing: 0;
  padding-right: calc(4 * var(--base));
  margin: calc(12 * var(--base)) auto 0;
}
.page .Suggest_link span {
  font-weight: 600;
}
.page .Suggest_link svg {
  width: calc(4 * var(--base));
  height: calc(8 * var(--base));
  position: absolute;
  top: 0;
  right: calc(8 * var(--base));
  bottom: 0;
  margin: auto;
}
.page .Suggest_link.-navy {
  color: #fff;
  background-color: #474a66;
}
.page .Suggest_link.-navy svg {
  fill: #fff;
}
.page .Suggest_link.-gray {
  color: #fff;
  background-color: #8a8e99;
}
.page .Suggest_link.-gray svg {
  fill: #fff;
}
.page .Suggest_link.-ivory {
  color: #333;
  background-color: #e6e3da;
}
.page .Suggest_link.-ivory svg {
  fill: #333;
}
.page .Suggest_link.-blue {
  color: #333;
  background-color: #98b3d9;
}
.page .Suggest_link.-blue svg {
  fill: #333;
}
.page .Suggest_link.-lightGreen {
  width: calc(120 * var(--base));
  color: #333;
  background-color: #9fc7c7;
}
.page .Suggest_link.-lightGreen svg {
  fill: #333;
}
.page .Suggest_link.-comingSoon {
  width: 100%;
  height: calc(12 * var(--base));
  padding-right: 0;
}
.page .Tab_headGroup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(12 * var(--base));
  padding: 0 calc(20 * var(--base));
  border-bottom: calc(1 * var(--base)) solid #61c2b5;
}
.page .Tab_head {
  display: grid;
  place-content: center;
  height: calc(40 * var(--base));
  position: relative;
  top: calc(1 * var(--base));
  font-size: calc(14 * var(--base));
  font-weight: 600;
  color: #fff;
  background-color: #61c2b5;
  border-style: solid;
  border-width: calc(1 * var(--base)) calc(1 * var(--base)) 0 calc(1 * var(--base));
  border-color: #61c2b5;
  border-radius: calc(8 * var(--base)) calc(8 * var(--base)) 0 0;
  cursor: pointer;
  transition: 0.4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .Tab_head::before {
  content: "";
  width: calc(52 * var(--base));
  height: calc(2 * var(--base));
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #61c2b5;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page .Tab_head.-active {
  color: #333;
  background-color: #fff;
  pointer-events: none;
}
.page .Tab_head.-active::before {
  transform: scaleX(1);
}
.page .Tab_bodyGroup {
  background-color: #fff;
}
.page .PointTab {
  margin-top: calc(60 * var(--base));
}
.page .PointTab_headGroup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(12 * var(--base));
}
.page .PointTab_head {
  display: grid;
  place-content: center;
  height: calc(60 * var(--base));
  position: relative;
  text-align: center;
  font-size: calc(14 * var(--base));
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(8 * var(--base)) calc(8 * var(--base)) 0 0;
  cursor: pointer;
  transition: 0.4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .PointTab_head::before {
  content: "";
  width: calc(52 * var(--base));
  height: calc(2 * var(--base));
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #61c2b5;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.page .PointTab_head span {
  font-weight: 600;
}
.page .PointTab_head em {
  font-size: calc(18 * var(--base));
  font-weight: 600;
}
.page .PointTab_head.-active {
  color: #333;
  background-color: #ddf0f0;
  pointer-events: none;
}
.page .PointTab_head.-active::before {
  transform: scaleX(1);
}
.page .PointTab_bodyGroup {
  background-color: #ddf0f0;
}
.page .PointTab_body {
  display: none;
  opacity: 0;
}
.page .PointTab_body.-active {
  display: block;
  transition: opacity 0.4s;
}
.page .Title {
  text-align: center;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: calc(16 * var(--base));
}
.page .Title span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(89 * var(--base));
  height: calc(24 * var(--base));
  font-size: calc(12 * var(--base));
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #61c2b5;
  border-radius: calc(99 * var(--base));
  margin-right: calc(8 * var(--base));
  vertical-align: calc(3 * var(--base)) !important;
}
.page .Title em {
  display: block;
  font-size: calc(24 * var(--base));
  font-weight: 600;
  line-height: 1.5;
}
.page .Voice {
  position: relative;
  padding: calc(20 * var(--base)) 0;
  margin-top: calc(20 * var(--base));
  background-color: #f2f2f2;
  opacity: 0;
}
.page .Voice:nth-child(odd) {
  transform: translate3d(calc(20 * var(--base)), 0, 0);
}
.page .Voice:nth-child(odd) .Voice_text svg {
  right: 100%;
}
.page .Voice:nth-child(even) {
  transform: translate3d(calc(-20 * var(--base)), 0, 0);
}
.page .Voice:nth-child(even) .Voice_body {
  flex-direction: row-reverse;
}
.page .Voice:nth-child(even) .Voice_text svg {
  left: 100%;
  transform: scaleX(-1);
}
.page .Voice::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 0 0 calc(24 * var(--base)) calc(24 * var(--base));
  border-color: transparent transparent transparent #fff;
}
.page .Voice.-active {
  transition: 0.6s;
  opacity: 1;
}
.page .Voice.-active:nth-child(odd) {
  transform: translate3d(0, 0, 0);
}
.page .Voice.-active:nth-child(even) {
  transform: translate3d(0, 0, 0);
}
.page .Voice_head {
  display: flex;
  justify-content: center;
  gap: calc(30 * var(--base));
  line-height: 1.5;
}
.page .Voice_no {
  position: relative;
  font-size: calc(18 * var(--base));
  font-weight: 600;
  color: #61c2b5;
}
.page .Voice_no::after {
  content: "";
  width: calc(20 * var(--base));
  height: calc(1 * var(--base));
  position: absolute;
  top: 0;
  right: calc(-25 * var(--base));
  bottom: 0;
  margin: auto;
  background-color: #61c2b5;
}
.page .Voice_no em {
  font-size: calc(24 * var(--base));
  font-weight: 600;
}
.page .Voice_title {
  font-size: calc(24 * var(--base));
  font-weight: 600;
  color: #61c2b5;
}
.page .Voice_body {
  display: flex;
  align-items: flex-start;
  gap: calc(24 * var(--base));
  padding: 0 calc(20 * var(--base));
  margin-top: calc(16 * var(--base));
}
.page .Voice_avatar {
  width: calc(80 * var(--base)) !important;
  height: calc(80 * var(--base)) !important;
  aspect-ratio: 1;
}
.page .Voice_text {
  position: relative;
  padding: calc(12 * var(--base));
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(12 * var(--base));
  line-height: 1.666;
  margin-top: calc(4 * var(--base));
  background-color: #fff;
  border-radius: calc(8 * var(--base));
}
.page .Voice_text svg {
  width: calc(16 * var(--base));
  height: calc(16 * var(--base));
  position: absolute;
  top: calc(20 * var(--base));
  fill: #fff;
}
.page .theme-ladies-biziraku-series {
  --base: 1.3px;
  font-family: "Noto Serif JP", serif;
  font-size: calc(14 * var(--base));
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #333;
}
.page .theme-ladies-biziraku-series::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #fee7e9 0%, #fff3e7 100%);
  pointer-events: none;
  box-sizing: border-box;
}
.page .theme-ladies-biziraku-series * {
  box-sizing: border-box;
}
.page .theme-ladies-biziraku-series::after {
  box-sizing: border-box;
}
.page .theme-ladies-biziraku-series img {
  width: 100%;
  height: auto;
}
.page .theme-ladies-biziraku-series span {
  vertical-align: baseline;
}
.page .theme-ladies-biziraku-series em {
  vertical-align: baseline;
}
.page .theme-ladies-biziraku-series s {
  vertical-align: baseline;
}
.page .m-footer.l-footer {
  position: relative;
  z-index: 11;
}
@media (any-hover: hover) {
  .page .Button.-fill {
    transition: background-color 0.4s;
  }
  .page .Button.-fill:hover {
    background-color: #f6a9af;
  }
  .page .Button.-next svg {
    transition: transform 0.4s;
  }
  .page .Button.-next:hover svg {
    transform: translate3d(calc(4 * var(--base)), 0, 0);
  }
  .page .Button.-up svg {
    transition: transform 0.4s;
  }
  .page .Button.-up:hover svg {
    transform: translate3d(0, calc(-4 * var(--base)), 0) rotate(180deg);
  }
  .page .Campaign_link {
    transition: opacity 0.4s;
  }
  .page .Campaign_link:hover {
    opacity: 0.7;
  }
  .page .Collection_link {
    transition: opacity 0.4s;
  }
  .page .Collection_link:hover {
    opacity: 0.7;
  }
  .page .Coordinate_slider .swiper-button-prev {
    transition: background-color 0.4s;
  }
  .page .Coordinate_slider .swiper-button-prev svg {
    transition: fill 0.4s;
  }
  .page .Coordinate_slider .swiper-button-prev:hover {
    background-color: #61c2b5;
  }
  .page .Coordinate_slider .swiper-button-prev:hover svg {
    fill: #fff;
  }
  .page .Coordinate_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .page .Coordinate_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .page .Coordinate_slider .swiper-button-next:hover {
    background-color: #61c2b5;
  }
  .page .Coordinate_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
  .page .Coordinate_link svg {
    transition: transform 0.4s;
  }
  .page .Coordinate_link:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
  .page .Instagram_link {
    transition: opacity 0.4s;
  }
  .page .Instagram_link:hover {
    opacity: 0.7;
  }
  .page .LeftMenu_link:hover .LeftMenu_name {
    background-color: #86d0c6;
  }
  .page .LeftMenu_link:hover .LeftMenu_img {
    opacity: 0.7;
  }
  .page .Lineup_slider .swiper-button-prev {
    transition: background-color 0.4s;
  }
  .page .Lineup_slider .swiper-button-prev svg {
    transition: fill 0.4s;
  }
  .page .Lineup_slider .swiper-button-prev:hover {
    background-color: #61c2b5;
  }
  .page .Lineup_slider .swiper-button-prev:hover svg {
    fill: #fff;
  }
  .page .Lineup_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .page .Lineup_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .page .Lineup_slider .swiper-button-next:hover {
    background-color: #61c2b5;
  }
  .page .Lineup_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
  .page .Lineup_productLink svg {
    transition: transform 0.4s;
  }
  .page .Lineup_productLink:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
  .page .Lineup_colorLink svg {
    transition: transform 0.4s;
  }
  .page .Lineup_colorLink:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
  .page .Menu_link:hover {
    background-color: #86d0c6;
  }
  .page .Modal_close {
    transition: background-color 0.4s;
  }
  .page .Modal_close:hover {
    background-color: #a68a70;
  }
  .page .Recommend_slider .swiper-button-prev {
    transition: background-color 0.4s;
  }
  .page .Recommend_slider .swiper-button-prev svg {
    transition: fill 0.4s;
  }
  .page .Recommend_slider .swiper-button-prev:hover {
    background-color: #9b7d61;
  }
  .page .Recommend_slider .swiper-button-prev:hover svg {
    fill: #fff;
  }
  .page .Recommend_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .page .Recommend_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .page .Recommend_slider .swiper-button-next:hover {
    background-color: #9b7d61;
  }
  .page .Recommend_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
  .page .Suggest_slider .swiper-button-prev {
    transition: background-color 0.4s;
  }
  .page .Suggest_slider .swiper-button-prev svg {
    transition: fill 0.4s;
  }
  .page .Suggest_slider .swiper-button-prev:hover {
    background-color: #61c2b5;
  }
  .page .Suggest_slider .swiper-button-prev:hover svg {
    fill: #fff;
  }
  .page .Suggest_slider .swiper-button-next {
    transition: background-color 0.4s;
  }
  .page .Suggest_slider .swiper-button-next svg {
    transition: fill 0.4s;
  }
  .page .Suggest_slider .swiper-button-next:hover {
    background-color: #61c2b5;
  }
  .page .Suggest_slider .swiper-button-next:hover svg {
    fill: #fff;
  }
  .page .Suggest_link svg {
    transition: transform 0.4s;
  }
  .page .Suggest_link:hover svg {
    transform: translate3d(calc(3 * var(--base)), 0, 0);
  }
  .page .Tab_head:hover {
    background-color: #86d0c6;
  }
  .page .PointTab_head:hover {
    background-color: #86d0c6;
  }
}
.wrapper .pane-footer{
  position: relative;
    z-index: 11;
}
.page .pagetop_btn{
  margin-top: 30px !important;
  background-color: #fff !important;
  border: 2px solid #000 !important;
  color: #000 !important;
}